:root {
  --ink: #121212;
  --ink-soft: #272727;
  --paper: #f6f2e9;
  --paper-deep: #eee7da;
  --white: #ffffff;
  --gold: #d29a2e;
  --gold-dark: #8a5c0d;
  --blue: #1aa4d6;
  --blue-dark: #087aa8;
  --muted: #69665f;
  --line: rgba(18,18,18,.13);
  --line-light: rgba(255,255,255,.18);
  --serif: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --header-h: 82px;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow: 0 24px 70px rgba(35,27,14,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--ink); color: white; padding: 11px 16px; font-weight: 800; transition: top .2s ease; }
.skip-link:focus { top: 16px; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: clamp(72px, 7vw, 108px) 0; overflow: hidden; }
.section--tight { padding: clamp(54px, 5vw, 76px) 0; }
.section--white { background: var(--white); }
.section--paper { background: var(--paper); }
.section--paper-deep { background: var(--paper-deep); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--blue { background: #eaf6fb; }

.eyebrow { display: inline-flex; align-items: center; gap: 11px; margin: 0 0 18px; color: var(--gold-dark); font-size: 10px; font-weight: 900; letter-spacing: .21em; line-height: 1; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 34px; height: 2px; background: currentColor; }
.eyebrow--blue { color: var(--blue-dark); }
.section--dark .eyebrow, .media-hero .eyebrow { color: var(--gold); }

.display, .h1, .h2, .h3 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
.display { max-width: 850px; font-size: clamp(52px, 6.7vw, 94px); line-height: .94; }
.h1 { font-size: clamp(44px, 5.2vw, 72px); line-height: .98; }
.h2 { font-size: clamp(34px, 3.8vw, 54px); line-height: 1.02; }
.h3 { font-size: clamp(25px, 2.4vw, 35px); line-height: 1.08; }
.lede { max-width: 720px; margin: 22px 0 0; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.62; color: var(--muted); }
.section--dark .lede { color: rgba(246,242,233,.72); }
.body-lg { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.72; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.blue { color: var(--blue-dark); }
.rule { height: 1px; background: var(--line); }

.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; padding: 0 21px; background: var(--ink); color: white; font-size: 11px; font-weight: 900; letter-spacing: .13em; line-height: 1; text-transform: uppercase; cursor: pointer; transition: transform .28s var(--ease), background .25s ease, color .25s ease, border-color .25s ease; }
.btn::after { content: '↗'; font-size: 15px; }
.btn:hover { transform: translateY(-3px); background: var(--blue-dark); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: #e6ad3c; }
.btn--outline { background: transparent; color: inherit; border-color: currentColor; }
.btn--outline:hover { background: var(--ink); color: white; border-color: var(--ink); }
.media-hero .btn--outline, .home-hero .btn--outline { border-color: rgba(255,255,255,.55); color: white; }
.media-hero .btn--outline:hover, .home-hero .btn--outline:hover { background: white; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.text-link::after { content: '→'; font-size: 16px; }
.btn:focus-visible, .text-link:focus-visible, .nav__link:focus-visible, .menu-toggle:focus-visible, .pathway-card:focus-visible, .date-card:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h); border-bottom: 1px solid transparent; color: var(--ink); transition: height .35s var(--ease), background .35s ease, border-color .35s ease, box-shadow .35s ease; }
.site-header--over-media { color: white; }
.site-header.scrolled { height: 68px; background: rgba(255,255,255,.94); color: var(--ink); border-color: var(--line); box-shadow: 0 10px 32px rgba(0,0,0,.05); backdrop-filter: blur(16px); }
.nav { width: var(--container); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 205px; }
.brand__mark { width: 43px; height: 43px; object-fit: contain; }
.brand__name { font-size: 10px; font-weight: 850; letter-spacing: .14em; line-height: 1.34; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 28px); }
.nav__link { position: relative; padding: 8px 0; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 1px; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { min-height: 42px; padding: 0 16px; background: var(--gold); color: var(--ink); }
.nav__cta:hover { background: white; color: var(--ink); }
.nav__cta[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--blue-dark); }
.site-header.scrolled .nav__cta:hover { background: var(--ink); color: white; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Home hero */
.home-hero { position: relative; min-height: max(700px, 92svh); display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; color: white; }
.home-hero__media { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; }
.home-hero__overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.52) 48%, rgba(0,0,0,.18) 80%), linear-gradient(0deg, rgba(0,0,0,.68), transparent 55%); }
.home-hero__content { width: var(--container); margin: 0 auto; padding: calc(var(--header-h) + 70px) 0 62px; }
.home-hero__inner { max-width: 820px; }
.home-hero .display { text-transform: uppercase; }
.home-hero .display em { color: var(--gold); font-style: normal; }
.home-hero__sub { max-width: 610px; margin: 22px 0 0; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.56; color: rgba(255,255,255,.84); }
.home-hero__crest { position: absolute; right: clamp(24px, 4vw, 64px); bottom: 34px; width: clamp(78px, 7vw, 108px); }
.home-hero__location { position: absolute; right: clamp(22px, 3vw, 48px); top: 48%; writing-mode: vertical-rl; transform: translateY(-50%); font-size: 9px; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.pillar-strip { background: var(--white); border-bottom: 1px solid var(--line); overflow: hidden; }
.pillar-strip__track { display: flex; width: max-content; padding: 16px 0; animation: ticker 34s linear infinite; }
.pillar-strip__item { display: flex; align-items: center; gap: 34px; margin-right: 34px; font-family: var(--serif); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; color: var(--gold-dark); }
.pillar-strip__item::after { content: '✦'; color: var(--blue); font-size: 9px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Page hero */
.page-hero { padding-top: var(--header-h); background: var(--paper); }
.page-hero__grid { min-height: 590px; display: grid; grid-template-columns: .88fr 1.12fr; }
.page-hero__copy { display: flex; align-items: center; padding: clamp(54px, 7vw, 92px) max(36px, calc((100vw - 1180px) / 2)); padding-right: clamp(40px, 7vw, 92px); }
.page-hero__copy-inner { max-width: 570px; }
.page-hero__sub { max-width: 560px; margin: 22px 0 0; color: var(--muted); font-size: clamp(17px, 1.35vw, 20px); line-height: 1.62; }
.page-hero__media { position: relative; min-height: 590px; overflow: hidden; background: var(--ink); }
.page-hero__media img, .page-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after { content: ''; position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.4); pointer-events: none; }
.page-hero__badge { position: absolute; left: 26px; bottom: 26px; max-width: min(320px, calc(100% - 52px)); padding: 14px 18px; background: rgba(15,15,15,.86); color: white; font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(12px); }

/* Editorial layouts */
.intro-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(46px, 8vw, 112px); align-items: start; }
.intro-grid__aside { position: sticky; top: 100px; }
.intro-grid__body p { margin: 0 0 20px; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.75; color: var(--muted); }
.pull-quote { margin-top: 36px; padding: 22px 0 0 24px; border-left: 3px solid var(--gold); font-family: var(--serif); font-size: clamp(23px, 2.1vw, 31px); line-height: 1.25; color: var(--gold-dark); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 7vw, 96px); align-items: center; }
.split--top { align-items: start; }
.media-frame { position: relative; min-height: 560px; overflow: hidden; background: var(--paper-deep); box-shadow: var(--shadow); }
.media-frame img, .media-frame video { width: 100%; height: 100%; object-fit: cover; }
.media-frame::after { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.5); pointer-events: none; }
.media-frame--wide { min-height: 430px; }
.media-frame--no-shadow { box-shadow: none; }
.image-stack { position: relative; min-height: 610px; }
.image-stack__main { position: absolute; inset: 0 18% 12% 0; width: 82%; height: 88%; object-fit: cover; box-shadow: var(--shadow); }
.image-stack__secondary { position: absolute; right: 0; bottom: 0; width: 50%; height: 42%; object-fit: cover; border: 10px solid var(--paper); box-shadow: var(--shadow); }
.image-stack__mark { position: absolute; right: 5%; top: 5%; width: 96px; height: 96px; padding: 0; object-fit: contain; background: transparent; filter: drop-shadow(0 12px 24px rgba(0,0,0,.18)); }
.editorial-note { margin-top: 28px; padding: 18px 20px; border-left: 3px solid var(--blue); background: rgba(26,164,214,.08); color: var(--muted); }

/* Venue */
.venue-grid { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 640px; }
.venue-grid__image { position: relative; overflow: hidden; }
.venue-grid__image > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.venue-logo { position: absolute; left: 26px; bottom: 26px; width: min(360px, calc(100% - 52px)); padding: 15px 20px; background: rgba(0,0,0,.84); backdrop-filter: blur(12px); }
.venue-grid__copy { display: flex; align-items: center; padding: clamp(48px, 6vw, 82px); background: var(--white); }
.venue-grid__copy-inner { max-width: 520px; }
.location-lockup { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 10px; font-weight: 850; letter-spacing: .14em; line-height: 1.7; text-transform: uppercase; }

/* Pathways */
.pathways-head { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 46px; margin-bottom: 50px; }
.pathways-head p { margin: 0; color: rgba(246,242,233,.7); font-size: 17px; }
.journey { display: flex; align-items: center; gap: 11px; margin-top: 22px; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.journey i { flex: 0 0 24px; height: 1px; background: var(--blue); }
.pathway-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pathway-card { display: flex; min-height: 410px; flex-direction: column; padding: clamp(27px, 2.7vw, 36px); background: var(--white); color: var(--ink); border: 1px solid rgba(255,255,255,.2); box-shadow: 0 15px 36px rgba(0,0,0,.2); transition: transform .3s var(--ease), box-shadow .3s ease, border-color .25s ease; }
.pathway-card:hover { transform: translateY(-6px); border-color: rgba(210,154,46,.7); box-shadow: 0 24px 50px rgba(0,0,0,.28); }
.pathway-card--performance { border-color: rgba(26,164,214,.65); box-shadow: 0 18px 42px rgba(0,0,0,.25); }
.pathway-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.pathway-card__num { font-family: var(--serif); font-size: clamp(43px, 4.5vw, 60px); line-height: .8; color: var(--gold-dark); }
.pathway-card__tag { max-width: 170px; color: var(--blue-dark); font-size: 8px; font-weight: 900; letter-spacing: .15em; line-height: 1.55; text-align: right; text-transform: uppercase; }
.pathway-card__title { margin-top: 52px; font-family: var(--serif); font-size: clamp(33px, 3vw, 44px); line-height: 1; }
.pathway-card__body { flex: 1; margin: 18px 0 30px; color: var(--muted); font-size: 14px; }
.pathway-card__cta { display: flex; min-height: 50px; align-items: center; justify-content: space-between; gap: 16px; padding: 0 16px; background: var(--ink); color: var(--white); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; transition: background .25s ease, color .25s ease; }
.pathway-card__cta b { color: var(--gold); font-size: 17px; transition: transform .25s var(--ease); }
.pathway-card:hover .pathway-card__cta { background: var(--blue-dark); }
.pathway-card:hover .pathway-card__cta b { color: var(--white); transform: translateX(4px); }

/* Pillars */
.philosophy-head { max-width: 800px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 52px; border: 1px solid var(--line); background: white; }
.pillar { position: relative; padding: 34px clamp(22px, 2.6vw, 38px) 40px; border-right: 1px solid var(--line); }
.pillar:last-child { border-right: 0; }
.pillar__num { color: var(--blue-dark); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.pillar h3 { margin: 38px 0 16px; }
.pillar p { margin: 0; color: var(--muted); }
.pillar::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 4px; background: var(--gold); transition: width .45s var(--ease); }
.pillar:hover::after { width: 100%; }

/* Brand image band */
.brand-band { position: relative; min-height: 460px; overflow: hidden; background: var(--ink); }
.brand-band img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.brand-band::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); pointer-events: none; }

/* Partners */
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(42px, 7vw, 94px); align-items: center; }
.partners-image { position: relative; min-height: 590px; overflow: hidden; box-shadow: var(--shadow); }
.partners-image > img { width: 100%; height: 100%; object-fit: cover; }
.partners-image__badge { position: absolute; right: 20px; bottom: 20px; width: 145px; height: 145px; display: grid; place-items: center; padding: 20px; background: rgba(255,255,255,.94); border: 1px solid var(--line); }
.partner-logos { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.partner-logo-card { display: grid; grid-template-columns: 108px 1fr; gap: 24px; align-items: center; min-height: 124px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.partner-logo-card img { width: 92px; max-height: 76px; object-fit: contain; margin-inline: auto; }
.partner-logo-card h3 { margin: 0 0 5px; font-size: 15px; letter-spacing: .02em; }
.partner-logo-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Final CTA */
.final-cta { position: relative; min-height: 580px; display: flex; align-items: center; overflow: hidden; isolation: isolate; color: white; }
.final-cta__media { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; }
.final-cta::before { content: ''; position: absolute; inset: 0; z-index: -2; background: rgba(0,0,0,.72); }
.final-cta::after { content: ''; position: absolute; inset: 20px; z-index: -1; border: 1px solid rgba(255,255,255,.28); }
.final-cta__inner { max-width: 800px; text-align: center; margin-inline: auto; }
.final-cta p { max-width: 610px; margin: 22px auto 0; color: rgba(255,255,255,.78); font-size: 18px; }
.final-cta .btn-row { justify-content: center; }

/* Stats, requirements, funnel */
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); margin-top: 46px; background: white; }
.stat { padding: 30px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(42px, 4.2vw, 60px); color: var(--gold-dark); line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.requirements { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 44px; background: var(--line); border: 1px solid var(--line); }
.requirement { min-height: 165px; padding: 28px; background: white; }
.requirement__label { color: var(--blue-dark); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.requirement h3 { margin: 14px 0 9px; font-size: 27px; }
.requirement p { margin: 0; color: var(--muted); font-size: 14px; }
.pathway-funnel { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
.funnel-step { position: relative; padding: 30px; background: white; border: 1px solid var(--line); }
.funnel-step + .funnel-step { border-left: 0; }
.funnel-step::after { content: '→'; position: absolute; right: -16px; top: 50%; width: 32px; height: 32px; display: grid; place-items: center; transform: translateY(-50%); background: var(--gold); color: var(--ink); z-index: 2; font-weight: 900; }
.funnel-step:last-child::after { display: none; }
.funnel-step span { color: var(--blue-dark); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.funnel-step h3 { margin: 12px 0 0; font-size: 27px; }

/* Pricing */
.pricing-intro { max-width: 760px; }
.pricing-stack { display: grid; gap: 18px; margin-top: 48px; }
.price-card { position: relative; display: grid; grid-template-columns: 92px 1fr 1.15fr; gap: clamp(24px, 4vw, 54px); padding: clamp(30px, 4vw, 52px); background: white; border: 1px solid var(--line); border-top: 5px solid var(--gold); box-shadow: 0 14px 40px rgba(35,27,14,.06); }
.price-card--performance { border-top-color: var(--blue); }
.price-card--select { background: var(--ink); color: var(--paper); border-color: var(--ink); border-top-color: var(--gold); }
.price-card__index { font-family: var(--serif); font-size: 56px; line-height: .9; color: var(--gold); opacity: .7; }
.price-card--performance .price-card__index { color: var(--blue); }
.price-card__tag { color: var(--gold-dark); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.price-card--select .price-card__tag { color: var(--gold); }
.price-card h2 { margin: 11px 0 10px; font-family: var(--serif); font-size: clamp(34px, 3.5vw, 50px); font-weight: 500; line-height: 1; }
.price { margin-top: 22px; font-family: var(--serif); font-size: clamp(38px, 4vw, 56px); line-height: 1; color: var(--gold-dark); }
.price-card--performance .price { color: var(--blue-dark); }
.price-card--select .price { color: var(--gold); }
.price small { font-family: var(--sans); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.price-card__desc { color: var(--muted); font-size: 14px; }
.price-card--select .price-card__desc { color: rgba(246,242,233,.68); }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { position: relative; padding: 11px 0 11px 25px; border-bottom: 1px solid var(--line); font-size: 14px; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; top: 11px; color: var(--blue-dark); font-weight: 900; }
.price-card--select .feature-list li { border-color: var(--line-light); }
.addon { margin-top: 20px; padding: 17px 19px; border: 1px solid var(--line); font-size: 14px; }
.addon strong { color: var(--blue-dark); }
.price-card--select .addon { border-color: var(--line-light); }

/* Dates */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 42px; border: 1px solid var(--line); background: white; }
.step { padding: 25px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step__num { color: var(--gold-dark); font-family: var(--serif); font-size: 31px; }
.step h3 { margin: 15px 0 6px; font-size: 15px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }
.date-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 42px; }
.date-card { position: relative; min-height: 185px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; background: white; color: var(--ink); border: 1px solid var(--line); transition: transform .3s var(--ease), background .25s ease, border-color .25s ease, box-shadow .3s ease; }
.date-card:hover { transform: translateY(-6px); background: #fff9ed; border-color: var(--gold); box-shadow: 0 16px 36px rgba(35,27,14,.1); }
.date-card__month { font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.date-card__day { margin-top: 3px; font-family: var(--serif); font-size: 58px; line-height: 1; color: var(--gold-dark); }
.date-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.date-card__meta b { font-size: 16px; }
.registration-note { margin-top: 26px; color: var(--muted); font-size: 12px; }

/* Forms */
.form-shell { display: grid; grid-template-columns: .68fr 1.32fr; background: white; color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-aside { position: relative; padding: clamp(38px, 5vw, 62px); background: var(--ink); color: var(--paper); overflow: hidden; }
.form-aside::after { content: ''; position: absolute; right: -105px; bottom: -35px; width: 380px; height: 190px; background: url('../assets/img/ssc-monogram.png') center/contain no-repeat; opacity: .08; }
.form-aside h2 { font-size: clamp(33px, 3.5vw, 47px); }
.form-aside p { color: rgba(246,242,233,.66); }
.form-aside__list { list-style: none; padding: 0; margin: 34px 0 0; }
.form-aside__list li { padding: 14px 0; border-top: 1px solid var(--line-light); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-panel { padding: clamp(38px, 5vw, 62px); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 21px 18px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; border: 0; border-bottom: 1px solid rgba(18,18,18,.3); border-radius: 0; background: transparent; color: var(--ink); padding: 9px 0; outline: none; }
.field textarea { min-height: 105px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field-help { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin-top: 5px; }
.checkbox input { margin-top: 5px; accent-color: var(--gold); }
.checkbox label { font-size: 12px; color: var(--muted); }
.honeypot { position: absolute; left: -9999px; }
.form-actions { margin-top: 28px; }
.form-status { display: none; margin-top: 16px; padding: 13px 16px; background: rgba(26,164,214,.1); border-left: 3px solid var(--blue); }
.registration-card { max-width: 720px; margin-inline: auto; padding: clamp(38px, 5vw, 62px); background: white; border: 1px solid var(--line); text-align: center; box-shadow: var(--shadow); }
.registration-card__date { display: inline-block; margin: 24px 0 5px; padding: 10px 16px; background: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.community-registration-shell { max-width: 980px; margin-inline: auto; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.community-session-banner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(28px, 4vw, 46px); background: var(--ink); color: var(--paper); }
.community-session-banner .h2 { max-width: 650px; margin: 7px 0 10px; color: var(--paper); font-size: clamp(31px, 4.5vw, 52px); }
.community-session-banner p:last-child { margin: 0; color: rgba(246,242,233,.7); }
.community-session-banner .btn--outline { flex: 0 0 auto; border-color: rgba(255,255,255,.48); color: white; }
.community-session-banner .btn--outline:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.community-membership-intro { max-width: 760px; padding: clamp(38px, 5vw, 62px) clamp(24px, 6vw, 70px) 28px; }
.community-membership-intro .lede { margin-top: 18px; }
.community-registration-points { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 25px 0 0; }
.community-registration-points li { padding: 9px 12px; border: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.ghl-embed-wrap { min-height: 2437px; padding: 0 clamp(8px, 3vw, 34px) 40px; overflow: hidden; }
.ghl-embed-wrap iframe { display: block; min-height: 2437px; background: white; }

/* Footer */
.site-footer { background: var(--ink); color: var(--paper); border-top: 1px solid var(--line-light); }
.footer-main { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 58px; padding: 64px 0 48px; }
.footer-brand img { width: min(360px, 100%); }
.footer-brand p { max-width: 420px; margin: 20px 0 0; color: rgba(246,242,233,.56); font-size: 14px; }
.footer-col h3 { margin: 0 0 18px; color: var(--gold); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 8px 0; }
.footer-links a { color: rgba(246,242,233,.72); transition: color .2s ease; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 21px 0 25px; border-top: 1px solid var(--line-light); color: rgba(246,242,233,.4); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.footer-pillars { color: var(--gold); }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal--left { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--scale { transform: scale(.97); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1100px) {
  :root { --header-h: 72px; }
  .nav__links { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: flex-start; gap: 20px; padding: clamp(96px, 14vh, 130px) 24px 40px; overflow-y: auto; background: white; color: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease); }
  .menu-open .nav__links { opacity: 1; visibility: visible; transform: none; }
  .nav__link { font-family: var(--serif); font-size: clamp(27px, 7vw, 34px); font-weight: 500; letter-spacing: -.02em; text-transform: none; }
  .nav__cta { margin-top: 8px; font-family: var(--sans); font-size: 10px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-open .site-header { color: var(--ink); }
  .home-hero__location { display: none; }
  .page-hero__grid { grid-template-columns: 1fr 1fr; }
  .page-hero__copy { padding-left: 32px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-grid__aside { position: static; }
  .venue-grid { grid-template-columns: 1fr; }
  .venue-grid__image { min-height: 560px; }
  .pathway-list { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .pathway-card { min-height: 0; }
  .partners-grid { grid-template-columns: 1fr; }
  .partners-image { min-height: 520px; max-width: 760px; }
  .price-card { grid-template-columns: 72px 1fr; }
  .price-card__features { grid-column: 2; }
  .date-grid { grid-template-columns: repeat(3, 1fr); }
  .form-shell { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 30px, 1180px); }
  .section { padding: 68px 0; }
  .brand { min-width: auto; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__name { display: none; }
  .home-hero { min-height: 700px; }
  .home-hero__overlay { background: linear-gradient(0deg, rgba(0,0,0,.91) 0%, rgba(0,0,0,.53) 65%, rgba(0,0,0,.25) 100%); }
  .home-hero__content { padding-bottom: 46px; }
  .home-hero__crest { display: none; }
  .display { font-size: clamp(46px, 14vw, 64px); }
  .h1 { font-size: clamp(39px, 11vw, 52px); }
  .h2 { font-size: clamp(31px, 9vw, 42px); }
  .home-hero__sub { font-size: 16px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .page-hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero__copy { padding: 58px 15px 48px; }
  .page-hero__copy-inner { width: var(--container); margin-inline: auto; }
  .page-hero__media { min-height: 370px; }
  .page-hero__media::after { inset: 14px; }
  .split { grid-template-columns: 1fr; }
  .media-frame { min-height: 430px; }
  .image-stack { min-height: 480px; }
  .image-stack__main { inset: 0 12% 12% 0; width: 88%; }
  .image-stack__secondary { width: 58%; height: 38%; border-width: 7px; }
  .image-stack__mark { width: 84px; height: 84px; }
  .venue-grid__image { min-height: 460px; }
  .venue-grid__copy { padding: 54px 24px; }
  .pathways-head { grid-template-columns: 1fr; gap: 24px; }
  .journey { flex-wrap: wrap; }
  .pathway-card { padding: 27px 24px; }
  .pathway-card__num { font-size: 44px; }
  .pathway-card__title { margin-top: 38px; }
  .pathway-card__body { margin-bottom: 26px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
  .pillar h3 { margin-top: 25px; }
  .brand-band, .brand-band img { min-height: 310px; }
  .partners-image { min-height: 430px; }
  .partners-image__badge { width: 116px; height: 116px; }
  .partner-logo-card { grid-template-columns: 90px 1fr; }
  .final-cta { min-height: 510px; }
  .stat-band { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .requirements { grid-template-columns: 1fr; }
  .pathway-funnel { grid-template-columns: 1fr; }
  .funnel-step + .funnel-step { border-left: 1px solid var(--line); border-top: 0; }
  .funnel-step::after { right: 50%; top: auto; bottom: -16px; transform: translateX(50%) rotate(90deg); }
  .price-card { grid-template-columns: 1fr; }
  .price-card__index { font-size: 46px; }
  .price-card__features { grid-column: 1; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .date-grid { grid-template-columns: repeat(2, 1fr); }
  .date-card { min-height: 170px; padding: 18px; }
  .date-card__day { font-size: 50px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .date-grid { grid-template-columns: 1fr; }
  .date-card { min-height: 150px; }
  .venue-logo { left: 16px; right: 16px; bottom: 16px; width: auto; }
  .page-hero__media { min-height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Final homepage and player-profile refinements */
.venue-school-lockup {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.venue-school-logo {
  width: min(390px, 100%);
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.venue-school-lockup .location-lockup {
  margin-top: 22px;
  padding-top: 0;
  border-top: 0;
}

.profile-hero {
  position: relative;
  min-height: clamp(560px, 70vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 80px) 0 clamp(64px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--ink);
}
.profile-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.profile-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8,8,8,.88) 0%, rgba(8,8,8,.68) 42%, rgba(8,8,8,.28) 72%, rgba(8,8,8,.1) 100%),
    linear-gradient(0deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.08) 58%);
}
.profile-hero::after {
  content: '';
  position: absolute;
  inset: calc(var(--header-h) + 20px) 20px 20px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.28);
  pointer-events: none;
}
.profile-hero__content {
  width: var(--container);
  margin-inline: auto;
}
.profile-hero__inner {
  max-width: 760px;
}
.profile-hero .h1 {
  max-width: 720px;
  margin-top: 12px;
  color: #fff;
}
.profile-hero__sub {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}
.profile-hero__note {
  display: inline-flex;
  margin-top: 30px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(10,10,10,.28);
  color: rgba(255,255,255,.86);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.profile-form-section {
  padding-top: clamp(48px, 5vw, 72px);
}

@media (max-width: 760px) {
  .venue-school-lockup { margin-top: 28px; padding-top: 22px; }
  .venue-school-logo { width: min(340px, 100%); }
  .profile-hero {
    min-height: 620px;
    align-items: flex-end;
    padding: calc(var(--header-h) + 72px) 0 58px;
  }
  .profile-hero__overlay {
    background:
      linear-gradient(0deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.62) 58%, rgba(8,8,8,.25) 100%);
  }
  .profile-hero::after { inset: calc(var(--header-h) + 14px) 14px 14px; }
  .profile-hero__sub { font-size: 16px; }
  .profile-hero__note { line-height: 1.5; }
  .profile-form-section { padding-top: 40px; }
  .community-session-banner { align-items: stretch; flex-direction: column; }
  .community-session-banner .btn--outline { width: 100%; }
  .community-membership-intro { padding-inline: 22px; }
  .community-registration-points { display: grid; }
  .ghl-embed-wrap { padding-inline: 0; }
}

/* v3 alignment refinements */
@media (min-width: 761px) {
  .profile-hero__inner { padding-left: 24px; }
}
