:root {
  --black: #0a0a0a;
  --charcoal: #171719;
  --charcoal-2: #242427;
  --paper: #f5f2eb;
  --white: #ffffff;
  --muted: #a6a6ad;
  --ink: #151516;
  --orange: #ff4500;
  --pink: #ff1493;
  --purple: #8a2be2;
  --teal: #20b2aa;
  --yellow: #ffd700;
  --gradient-hot: linear-gradient(110deg, var(--orange), var(--pink));
  --gradient-cool: linear-gradient(110deg, var(--teal), var(--purple));
  --shadow: 0 24px 70px rgba(0,0,0,.2);
  --radius: 24px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Montserrat", Arial, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1; }
h1, h2 { font-family: "Bebas Neue", Impact, sans-serif; font-weight: 400; letter-spacing: .018em; }
h1 { font-size: clamp(4rem, 8vw, 7.5rem); }
h2 { margin-bottom: 22px; font-size: clamp(3rem, 5.5vw, 5.25rem); }
h3 { margin-bottom: 14px; font-size: 1.35rem; }
p { margin-bottom: 20px; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-dark { color: var(--white); background: var(--black); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px; color: var(--black); background: var(--yellow); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.16); background: linear-gradient(180deg, rgba(0,0,0,.68), transparent); }
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 82px; height: 72px; display: grid; place-items: center; flex: 0 0 auto; }
.brand img { width: 74px; height: 74px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.site-nav > a { position: relative; padding: 16px 0; }
.site-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 8px; height: 2px; background: var(--gradient-hot); transition: right .22s ease; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; color: var(--white); background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.button { min-height: 46px; padding: 12px 20px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 999px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--gradient-hot); box-shadow: 0 12px 32px rgba(255,20,147,.24); }
.button-primary:hover { box-shadow: 0 16px 38px rgba(255,20,147,.36); }
.button-ghost { color: inherit; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.04); }
.visual-story .button-ghost { color: var(--black); border-color: rgba(10,10,10,.3); }
.button-glass { color: var(--white); border-color: rgba(255,255,255,.44); background: rgba(10,10,10,.22); backdrop-filter: blur(10px); }
.button-light { color: var(--black); background: var(--white); }
.button-large { min-height: 54px; padding: 15px 26px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.text-link span { color: var(--pink); font-size: 1.3rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.inline-link { color: var(--pink); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.hero { position: relative; min-height: 780px; display: grid; align-items: center; color: var(--white); overflow: hidden; background: var(--black); }
.hero-media, .hero-scrim { position: absolute; inset: 0; }
.hero-home .hero-media { background: url('/images/hero_image_1200.png') center 42% / cover no-repeat; transform: scale(1.01); }
.hero-venue .hero-media { background: url('/images/hero_venue_image_1200.png') center / cover no-repeat; }
.hero-scrim { background: linear-gradient(90deg, rgba(5,5,7,.94) 0%, rgba(5,5,7,.7) 48%, rgba(5,5,7,.26) 78%, rgba(5,5,7,.45) 100%), linear-gradient(0deg, rgba(5,5,7,.8), transparent 40%); }
.hero-grid { position: relative; z-index: 2; padding-top: 110px; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); align-items: center; gap: 90px; }
.hero-venue .hero-grid { grid-template-columns: minmax(0, 780px); }
.hero-copy { max-width: 790px; }
.hero-copy h1 { margin: 0 0 24px; text-shadow: 0 5px 35px rgba(0,0,0,.45); }
.hero-copy h1 span, .about-hero h1 span { background: var(--gradient-hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { max-width: 700px; margin-bottom: 0; font-size: clamp(1rem, 1.6vw, 1.23rem); color: rgba(255,255,255,.83); }
.eyebrow { margin-bottom: 14px; color: var(--pink); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; }
.section-dark .eyebrow { color: var(--teal); }
.match-panel { align-self: end; margin-bottom: 90px; padding: 25px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: rgba(10,10,10,.58); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.match-panel-top { display: flex; align-items: center; gap: 10px; padding-bottom: 18px; color: rgba(255,255,255,.82); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 18px var(--teal); }
.match-row { padding: 14px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.11); font-size: .78rem; }
.match-row span { color: var(--muted); }
.match-row strong { text-align: right; }
.match-score { margin-top: 15px; padding: 13px; border-radius: 12px; color: var(--white); background: var(--gradient-cool); text-align: center; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 27px; transform: translateX(-50%); display: flex; gap: 10px; color: rgba(255,255,255,.68); font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.signal-bar { position: relative; z-index: 4; padding: 20px 0; color: var(--white); background: var(--gradient-hot); }
.signal-list { display: flex; justify-content: space-between; gap: 20px; overflow: hidden; }
.signal-list span { display: flex; align-items: center; gap: 20px; white-space: nowrap; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.signal-list span:not(:last-child)::after { content: "✦"; color: rgba(255,255,255,.62); }

.section-heading { margin-bottom: 58px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.split-heading h2 { max-width: 760px; margin-bottom: 0; }
.split-heading > p { max-width: 500px; margin-bottom: 5px; color: #58585f; }
.centered-heading { max-width: 780px; margin-inline: auto; text-align: center; }
.centered-heading > p:last-child { color: var(--muted); }
.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.audience-card { position: relative; min-height: 730px; display: grid; grid-template-rows: 305px 1fr; overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--charcoal); box-shadow: 0 20px 55px rgba(10,10,10,.14); }
.audience-card > img { width: 100%; height: 100%; object-fit: cover; }
.audience-venue > img { object-position: center 34%; }
.audience-card-copy { padding: 36px; display: flex; flex-direction: column; align-items: flex-start; }
.audience-card-copy h3 { font-family: "Bebas Neue", Impact, sans-serif; font-size: 2.6rem; font-weight: 400; }
.audience-card-copy > p:not(.card-kicker) { color: #c2c2c8; }
.card-kicker { margin-bottom: 10px; color: var(--teal); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.audience-venue .card-kicker { color: var(--pink); }
.check-list { margin: 2px 0 28px; padding: 0; list-style: none; color: #e0e0e3; font-size: .87rem; }
.check-list li { position: relative; padding: 8px 0 8px 24px; border-top: 1px solid rgba(255,255,255,.1); }
.check-list li::before { content: ""; position: absolute; top: 14px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--gradient-hot); }
.audience-card .text-link { margin-top: auto; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { min-height: 305px; padding: 34px; border: 1px solid #29292e; border-radius: 20px; background: linear-gradient(145deg, #17171a, #0f0f11); transition: transform .22s ease, border-color .22s ease; }
.step-card:hover { transform: translateY(-7px); border-color: var(--purple); }
.step-number { display: inline-block; margin-bottom: 70px; color: var(--pink); font-family: "Bebas Neue", Impact, sans-serif; font-size: 2rem; }
.step-card h3 { font-size: 1.3rem; }
.step-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.visual-story-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; }
.visual-collage { position: relative; min-height: 640px; }
.collage-main { width: 82%; height: 580px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.collage-portrait { position: absolute; width: 180px; height: 180px; object-fit: cover; border: 8px solid var(--paper); border-radius: 50%; box-shadow: var(--shadow); }
.portrait-one { top: 40px; right: 0; }
.portrait-two { right: 30px; bottom: 10px; }
.visual-story-copy h2 { max-width: 560px; }
.visual-story-copy > p:not(.eyebrow) { max-width: 540px; color: #55555c; font-size: 1.05rem; }
.cta-band { padding: 76px 0; color: var(--white); background: var(--gradient-hot); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band .eyebrow { color: rgba(255,255,255,.76); }
.cta-band h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 4.8rem); }

.venue-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.venue-photo-card { overflow: hidden; border-radius: 22px; background: var(--white); box-shadow: 0 16px 45px rgba(0,0,0,.09); }
.venue-photo-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.venue-photo-card > div { padding: 25px; }
.venue-photo-card span { color: var(--pink); font-family: "Bebas Neue", Impact, sans-serif; font-size: 1.4rem; }
.venue-photo-card h3 { margin-top: 8px; }
.venue-photo-card p { margin-bottom: 0; color: #66666d; font-size: .87rem; }
.venue-benefit-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.venue-benefit-copy > p:not(.eyebrow) { color: var(--muted); }
.criteria-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.criteria-grid article { padding: 28px; border: 1px solid #303036; border-radius: 18px; background: #141416; }
.criteria-icon { width: 44px; height: 44px; margin-bottom: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--white); background: var(--gradient-cool); font-size: 1.25rem; }
.criteria-grid p { margin-bottom: 0; color: var(--muted); font-size: .86rem; }
.process-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.process-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.numbered-list { margin: 35px 0 0; padding: 0; list-style: none; }
.numbered-list li { padding: 22px 0; display: grid; grid-template-columns: 48px 1fr; gap: 20px; border-top: 1px solid #d5d1c8; }
.numbered-list li > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--black); font-weight: 800; }
.numbered-list h3 { margin: 0 0 6px; }
.numbered-list p { margin: 0; color: #626269; font-size: .88rem; }

.about-hero { padding: 190px 0 110px; color: var(--white); background: radial-gradient(circle at 80% 10%, rgba(138,43,226,.32), transparent 35%), radial-gradient(circle at 10% 90%, rgba(255,69,0,.24), transparent 32%), var(--black); }
.about-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.about-hero h1 { margin-bottom: 0; font-size: clamp(4rem, 7vw, 7rem); }
.about-hero-statement { padding: 34px; border-left: 2px solid var(--pink); color: #d0d0d5; font-size: 1.05rem; }
.mission-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 100px; }
.mission-art { position: relative; }
.mission-art img { width: 100%; min-height: 590px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.mission-word { position: absolute; right: -38px; bottom: 70px; color: var(--white); font-family: "Bebas Neue", Impact, sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: .08em; writing-mode: vertical-rl; text-shadow: 0 4px 30px rgba(0,0,0,.6); }
.mission-copy > p:not(.eyebrow) { color: #58585f; }
.value-list { margin-top: 38px; }
.value-list > div { padding: 18px 0; display: grid; grid-template-columns: 120px 1fr; gap: 24px; border-top: 1px solid #d7d2c9; }
.value-list strong { text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; }
.value-list span { color: #66666d; font-size: .87rem; }
.founder-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.founder-photo { overflow: hidden; border-radius: 26px; background: #1a1a1d; }
.founder-photo img { width: 100%; min-height: 610px; object-fit: cover; object-position: 50% 45%; }
.founder-role { color: var(--pink); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.founder-copy blockquote { margin: 44px 0; padding-left: 30px; border-left: 3px solid var(--teal); font-family: "Bebas Neue", Impact, sans-serif; font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.08; }
.founder-copy > p:last-child { color: var(--muted); }
.connect-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.connect-grid > div:first-child > p:not(.eyebrow) { color: #5b5b62; }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.social-grid a { min-height: 105px; padding: 24px; display: flex; align-items: center; gap: 20px; border-radius: 16px; background: var(--white); box-shadow: 0 10px 35px rgba(0,0,0,.07); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; transition: transform .2s ease; }
.social-grid a:hover { transform: translateY(-4px); }
.social-grid img { width: 36px; height: 36px; object-fit: contain; }

.site-footer { padding: 76px 0 26px; color: var(--white); background: var(--black); }
.footer-grid { padding-bottom: 55px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.footer-brand img { width: 92px; height: 92px; object-fit: contain; margin-bottom: 18px; }
.footer-brand p { max-width: 390px; color: var(--muted); }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.footer-links h2 { margin-bottom: 20px; color: var(--muted); font-family: "Montserrat", Arial, sans-serif; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.footer-links a { display: block; margin: 10px 0; font-size: .9rem; }
.footer-links a:hover { color: var(--pink); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #2a2a2e; color: #77777e; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.error-page { color: var(--white); background: var(--black); }
.error-main { position: relative; min-height: 100vh; display: grid; align-items: center; overflow: hidden; }
.error-orb { position: absolute; width: 60vw; height: 60vw; right: -18vw; top: -22vw; border-radius: 50%; background: radial-gradient(circle at 30% 70%, var(--pink), var(--purple) 40%, transparent 68%); filter: blur(8px); opacity: .65; }
.error-copy { position: relative; z-index: 2; }
.error-copy .brand { margin-bottom: 44px; }
.error-copy h1 { max-width: 850px; margin-bottom: 24px; }
.error-copy > p:not(.eyebrow) { max-width: 600px; color: var(--muted); }

@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: rise-in .75s both; }
  .match-panel { animation-delay: .15s; }
  @keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}

@media (max-width: 980px) {
  .section { padding: 86px 0; }
  .site-header { position: absolute; }
  .menu-toggle { display: block; position: relative; z-index: 22; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 21; padding: 120px 28px 40px; display: flex; flex-direction: column; align-items: stretch; gap: 6px; color: var(--white); background: rgba(10,10,10,.98); transform: translateX(100%); transition: transform .25s ease; }
  .site-nav[data-open="true"] { transform: none; }
  .site-nav > a { padding: 13px 0; font-family: "Bebas Neue", Impact, sans-serif; font-size: 2rem; letter-spacing: .04em; }
  .nav-actions { margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: 760px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .match-panel { max-width: 520px; align-self: auto; margin: 0; }
  .scroll-cue { display: none; }
  .split-heading, .visual-story-grid, .venue-benefit-grid, .process-layout, .mission-grid, .founder-grid, .connect-grid, .about-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .split-heading { align-items: start; }
  .audience-card { min-height: 760px; }
  .visual-collage { max-width: 650px; }
  .mission-art { max-width: 650px; }
  .mission-word { right: 20px; }
  .founder-photo { max-width: 650px; }
  .founder-photo img { min-height: 520px; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 82px; }
  .brand, .brand img { width: 66px; height: 66px; }
  .hero { min-height: 760px; }
  .hero-grid { padding-top: 102px; }
  .hero-home .hero-media { background-position: 62% 50%; }
  .hero-scrim { background: linear-gradient(90deg, rgba(5,5,7,.93), rgba(5,5,7,.57)), linear-gradient(0deg, rgba(5,5,7,.9), transparent 58%); }
  .hero-copy h1 { font-size: clamp(3.8rem, 17vw, 5.7rem); }
  .match-panel { display: none; }
  .button-row .button { width: 100%; }
  .signal-list { gap: 34px; overflow-x: auto; scrollbar-width: none; }
  .signal-list::-webkit-scrollbar { display: none; }
  .audience-grid, .steps-grid, .venue-gallery, .criteria-grid, .footer-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 0; grid-template-rows: 260px auto; }
  .audience-card-copy { padding: 28px; }
  .step-card { min-height: 260px; }
  .step-number { margin-bottom: 48px; }
  .visual-collage { min-height: 500px; }
  .collage-main { height: 460px; }
  .collage-portrait { width: 130px; height: 130px; border-width: 6px; }
  .portrait-two { bottom: 0; }
  .cta-band-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cta-band-inner .button { width: 100%; }
  .venue-benefit-grid, .process-layout { gap: 52px; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .criteria-grid article { padding: 22px; }
  .criteria-icon { margin-bottom: 24px; }
  .about-hero { padding: 145px 0 82px; }
  .about-hero-grid { gap: 36px; }
  .about-hero-statement { padding: 24px; }
  .mission-art img { min-height: 470px; }
  .founder-photo img { min-height: 430px; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { gap: 45px; }
}

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .nav-actions { grid-template-columns: 1fr; }
  .criteria-grid, .social-grid { grid-template-columns: 1fr; }
  .visual-collage { min-height: 430px; }
  .collage-main { width: 88%; height: 400px; }
  .collage-portrait { width: 105px; height: 105px; }
  .value-list > div { grid-template-columns: 1fr; gap: 6px; }
  .footer-links { gap: 30px; }
}
