/* ============================================================
   McLerran Transition Summit — Luxury direction
   Aman / private wealth client retreat aesthetic
   ============================================================ */

:root {
  /* palette */
  --paper:        #F5F0E6;
  --paper-deep:   #EFE8DA;
  --ivory:        #FBF8F2;
  --white:        #FFFFFF;
  --ink:          #1A1A1A;
  --ink-soft:     #2A2A2A;
  --ink-muted:    #5C574F;
  --bronze:       #8B6F47;
  --bronze-deep:  #6F5635;
  --hairline:     #D4C4A8;
  --hairline-soft:#E5DDD0;
  --shadow:       0 30px 80px -40px rgba(26,26,26,.35);

  /* type */
  --serif: "Cormorant Garamond", "EB Garamond", "Lora", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --col-narrow: 64ch;
  --col-text:   72ch;
  --col-wide:   1240px;

  /* motion */
  --ease: cubic-bezier(.2,.6,.2,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
em { font-style: italic; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- typography primitives ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.005em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 1.05; font-weight: 300; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.1; font-weight: 400; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.25; font-weight: 500; }
p  { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 1rem;
}

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink-muted);
  max-width: var(--col-narrow);
}

.hairline {
  border: 0;
  border-top: 1px solid var(--hairline-soft);
  width: min(var(--col-wide), calc(100% - 4rem));
  margin: 0 auto;
}

/* ---------- layout helpers ---------- */
.section {
  width: 100%;
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head { max-width: var(--col-text); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .lede { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 1.25rem; }
.section-head h2 em { color: var(--bronze); font-family: var(--serif); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  transition: background 600ms var(--ease), border-color 600ms var(--ease), padding 400ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(245, 240, 230, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline-soft);
  padding-top: .9rem;
  padding-bottom: .9rem;
}

.header-inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand { display: inline-flex; align-items: center; height: 48px; }
.brand-mark { height: 42px; width: auto; transition: opacity 400ms var(--ease); }
.brand-mark--dark  { display: none;  }     /* white logo, used on dark hero */
.brand-mark--light { display: block; height: 38px; }
.site-header.is-scrolled .brand-mark { height: 32px; }
.site-header.is-scrolled .brand-mark--light { height: 30px; }
/* Over the dark hero (header not scrolled) show the white knockout logo */
.site-header:not(.is-scrolled) .brand-mark--dark  { display: block; }
.site-header:not(.is-scrolled) .brand-mark--light { display: none; }

.primary-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  font-size: .88rem;
  letter-spacing: .04em;
  color: var(--ivory);
  transition: color 600ms var(--ease);
}
.site-header.is-scrolled .primary-nav { color: var(--ink); }
.primary-nav a { position: relative; padding: .25rem 0; }
.primary-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 500ms var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.btn--header {
  margin-left: 0;
  padding: .55rem 1.1rem;
  font-size: .82rem;
}
.site-header:not(.is-scrolled) .btn--header {
  border-color: rgba(255,255,255,.55);
  color: var(--ivory);
}
.site-header:not(.is-scrolled) .btn--header:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--ivory);
}

/* hamburger */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  margin-left: auto;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 8px; right: 8px; height: 1px;
  background: var(--ivory);
  transition: transform 400ms var(--ease), top 400ms var(--ease), opacity 200ms var(--ease), background 400ms var(--ease);
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--paper);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  z-index: 45;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: .5rem 0; border-bottom: 1px solid var(--hairline-soft); }
.mobile-nav__cta {
  margin-top: 1rem;
  border: 1px solid var(--ink) !important;
  text-align: center;
  font-family: var(--sans);
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 1rem !important;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 500ms var(--ease), color 500ms var(--ease), border-color 500ms var(--ease), transform 500ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--bronze-deep);
  border-color: var(--bronze-deep);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn[disabled],
.btn:disabled {
  cursor: not-allowed;
  opacity: .55;
}
.btn[disabled]:hover,
.btn:disabled:hover { background: transparent; color: var(--ink); }
.btn--ghost-light {
  border-color: rgba(245,240,230,.6);
  color: var(--ivory);
}
.btn--ghost-light:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.btn--text {
  padding: .95rem 0;
  border: 0;
  letter-spacing: .14em;
  color: var(--ivory);
  position: relative;
}
.btn--text:hover { color: var(--bronze); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(3rem, 8vw, 6rem);
  color: var(--ivory);
  isolation: isolate;
  overflow: hidden;
}

.hero-video {
  position: absolute; inset: 0; z-index: -2;
}
.hero-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85) brightness(.78) contrast(1.02);
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,18,15,.55) 0%, rgba(20,18,15,.25) 35%, rgba(20,18,15,.85) 100%);
}

.hero-content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 4vh;
  animation: rise 1200ms var(--ease) both;
}
.hero-content .eyebrow { color: rgba(245,240,230,.85); }

.hero-headline {
  color: var(--ivory);
  margin: .25rem 0 1.5rem;
  font-weight: 300;
  letter-spacing: -.012em;
}
.hero-headline--bold {
  font-weight: 500;
  letter-spacing: -.018em;
}
.hero-headline em {
  font-style: italic;
  color: #E8C893;
  font-weight: 500;
}
.hero-headline--bold em { font-weight: 600; }
@media (min-width: 720px) {
  .hero-headline .hl-line { white-space: nowrap; }
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.45;
  color: rgba(245,240,230,.88);
  max-width: 56ch;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,240,230,.78);
  margin-bottom: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245,240,230,.22);
}
.hero-meta li { white-space: nowrap; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.hero-actions .btn--primary {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.hero-actions .btn--primary:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--ivory);
}

/* sound toggle — prominent, bottom-right */
.sound-toggle {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.5rem); right: clamp(1rem, 3vw, 2rem);
  z-index: 5;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.25rem;
  border: 1px solid rgba(245,240,230,.85);
  color: var(--ivory);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(20,18,15,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background 400ms var(--ease), border-color 400ms var(--ease);
  animation: soundPulse 2.6s ease-in-out 1.2s 3;
}
.sound-toggle:hover { background: rgba(20,18,15,.85); border-color: var(--ivory); }
.sound-toggle .ico-sound { display: none; }
.sound-toggle[aria-pressed="true"] .ico-mute { display: none; }
.sound-toggle[aria-pressed="true"] .ico-sound { display: block; }
.sound-toggle[aria-pressed="true"] { animation: none; }
@keyframes soundPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,240,230,0); }
  50% { box-shadow: 0 0 0 10px rgba(245,240,230,0); border-color: var(--ivory); }
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: rgba(245,240,230,.35);
  overflow: hidden;
}
.hero-scroll span {
  position: absolute; top: -30px; left: 0;
  width: 1px; height: 30px;
  background: var(--ivory);
  animation: trickle 2400ms var(--ease) infinite;
}

@keyframes trickle {
  0%   { transform: translateY(0); }
  100% { transform: translateY(90px); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Strip
   ============================================================ */
.strip {
  background: var(--ivory);
  border-bottom: 1px solid var(--hairline-soft);
  border-top: 1px solid var(--hairline-soft);
}
.strip-inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--ink-muted);
}
.strip-inner strong {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

/* ============================================================
   Offer
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 1rem;
}
.offer-card { grid-column: span 3; padding-top: 1.75rem; border-top: 1px solid var(--hairline); }
.offer-card--feature {
  grid-column: span 6;
  padding: 2.5rem;
  background: var(--ivory);
  border-top: 1px solid var(--bronze);
  position: relative;
}
.offer-card--feature::before {
  content: "";
  position: absolute; top: -1px; left: 0; width: 80px; height: 1px; background: var(--bronze);
}
.offer-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--bronze);
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.offer-card h3 { margin-bottom: .75rem; }
.offer-card p  { max-width: 56ch; }
.offer-card--feature h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); font-family: var(--serif); font-weight: 400; }
.offer-card--feature p  { font-size: 1.05rem; max-width: 64ch; }

/* ============================================================
   Exit paths
   ============================================================ */
.section--exits { max-width: var(--col-wide); }
.exits-frame {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.exits-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.85) contrast(1.02);
  box-shadow: var(--shadow);
}
.exits-image--stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-self: stretch;
}
.exits-image--stack img {
  aspect-ratio: 4 / 3;
}
.exits-text h2 em { color: var(--bronze); }
.exits-text .lede { margin-bottom: 2.5rem; }

.exit-list { counter-reset: exits; }
.exit-list li {
  counter-increment: exits;
  position: relative;
  padding: 1.5rem 0 1.5rem 3.5rem;
  border-top: 1px solid var(--hairline-soft);
}
.exit-list li:last-child { border-bottom: 1px solid var(--hairline-soft); }
.exit-list li::before {
  content: counter(exits, decimal-leading-zero);
  position: absolute;
  left: 0; top: 1.65rem;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--bronze);
  letter-spacing: .08em;
}
.exit-list h3 { margin-bottom: .35rem; font-weight: 500; }
.exit-list p  { font-size: .98rem; color: var(--ink-muted); }

/* ============================================================
   Agenda
   ============================================================ */
.agenda-list {
  max-width: var(--col-text);
  margin: 0 auto;
}
.agenda-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--hairline-soft);
  align-items: baseline;
}
.agenda-list li:last-child { border-bottom: 1px solid var(--hairline-soft); }
.agenda-time {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--bronze);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.agenda-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 500;
  margin-bottom: .25rem;
}
.agenda-speaker {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.agenda-foot {
  max-width: var(--col-text);
  margin: 2.5rem auto 0;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-muted);
  text-align: center;
}
.agenda-day { margin: 0 auto 3.5rem; max-width: var(--col-text); }
.agenda-day:last-child { margin-bottom: 0; }
.agenda-day__label {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--hairline-soft);
}

/* ============================================================
   Speakers
   ============================================================ */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
}
.speaker {
  display: flex;
  flex-direction: column;
}
.speaker-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-deep);
  margin-bottom: 1.25rem;
}
.speaker-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
  transition: transform 1200ms var(--ease);
}
.speaker:hover .speaker-photo img { transform: scale(1.03); }

.speaker-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: .25rem;
}
.speaker-role {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: .75rem;
}
.speaker-topic {
  font-size: .95rem;
  color: var(--ink-muted);
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.4;
}

.moderator-line {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-soft);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-style: italic;
  color: var(--ink-muted);
}
.moderator-line__label { letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; font-style: normal; font-family: var(--sans); color: var(--bronze); margin-right: .5rem; }
.moderator-line__name  { color: var(--ink); font-style: normal; font-weight: 500; }

/* ============================================================
   Austin / Antone's
   ============================================================ */
.section--austin { background: transparent; }
.section--austin-banner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(2rem, 4vw, 3rem);
}
.austin-banner {
  margin: 0;
  width: 100%;
}
.austin-banner img {
  width: 100%;
  display: block;
  aspect-ratio: 1600 / 378;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05);
  box-shadow: var(--shadow);
}
.austin-text--center {
  max-width: 56ch;
  margin: 0 auto;
  text-align: center;
}
.austin-text--center .austin-foot {
  border-left: none;
  border-top: 1px solid var(--bronze);
  padding-left: 0;
  padding-top: 1rem;
  margin-top: 2rem !important;
  display: inline-block;
}
.austin-frame {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.austin-text { max-width: 52ch; }
.austin-text h2 em { color: var(--bronze); }
.austin-text p { margin-bottom: 1.25rem; font-size: 1.05rem; }
.austin-foot {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-muted);
  border-left: 1px solid var(--bronze);
  padding-left: 1.25rem;
  margin-top: 1.5rem !important;
}
.austin-image {
  position: relative;
  margin: 0;
}
.austin-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04) brightness(.95);
  box-shadow: var(--shadow);
}
.austin-image figcaption {
  position: absolute;
  bottom: -1.5rem; right: 1rem;
  padding: .5rem 1rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
}
.pricing-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.tier {
  background: var(--paper);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.tier--feature {
  background: var(--ivory);
  position: relative;
}
.tier--feature::before {
  content: "Recommended";
  position: absolute;
  top: -1px; left: 0;
  padding: .35rem .75rem;
  background: var(--bronze);
  color: var(--ivory);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.tier-label {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.tier-price {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.tier-currency {
  font-size: .55em;
  vertical-align: super;
  margin-right: .15rem;
  color: var(--ink-muted);
}
.tier-note {
  font-size: .92rem;
  color: var(--ink-muted);
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 2rem;
  flex: 1;
}
.tier .btn {
  width: 100%;
  padding: .85rem 1rem;
  font-size: .72rem;
}

.pricing-foot {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* ============================================================
   Social proof
   ============================================================ */
.section--pricing { padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.section--proof {
  text-align: center;
  padding-top: clamp(2rem, 4vw, 3.5rem);
}
.proof-stat { margin-bottom: 4rem; }
.proof-num {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.proof-num span {
  color: var(--bronze);
  font-weight: 400;
}
.proof-num-label {
  max-width: 52ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-muted);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.quote {
  padding: 2.5rem 1.75rem;
  border-left: 1px solid var(--hairline-soft);
  text-align: left;
}
.quote:first-child { border-left: 0; }
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1rem;
}
.quote figcaption {
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ============================================================
   Register
   ============================================================ */
.section--register { padding-top: clamp(3rem, 6vw, 5rem); }
.register-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
.register-cta--card {
  background: var(--ivory);
  border: 1px solid var(--hairline-soft);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.register-cta {
  text-align: center;
}
.register-cta h2 { margin-bottom: 1.25rem; }
.register-cta .lede { margin-bottom: 2.25rem; }
.btn--register { min-width: 220px; }
.register-cta .register-contact {
  margin-top: 2.25rem;
  border-top: 1px solid var(--hairline-soft);
  padding-top: 1.5rem;
  font-size: .9rem;
  color: var(--ink-muted);
}
.learn-more h2 { margin-bottom: 1.25rem; }
.learn-more .lede { margin-bottom: 2rem; }
.learn-form .field { display: block; margin-bottom: 1.1rem; }
.learn-form .field > span {
  display: block;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .4rem;
}
.learn-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.learn-form input,
.learn-form textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--hairline-soft);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
}
.learn-form input:focus,
.learn-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.learn-form textarea { resize: vertical; min-height: 80px; }
.learn-form .is-invalid { border-color: #b14a3a; }
.learn-form .btn--submit { margin-top: .5rem; width: 100%; }
.learn-form .form-note {
  font-size: .8rem;
  color: var(--ink-muted);
  margin-top: 1rem;
  line-height: 1.5;
}
.learn-form .form-success,
.learn-form .form-error {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--hairline-soft);
}
.learn-form .form-success__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: .35rem;
  color: var(--bronze);
}
.learn-form .hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

@media (max-width: 820px) {
  .register-split { grid-template-columns: 1fr; }
}
.register-frame {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  background: var(--ivory);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid var(--hairline-soft);
}
.register-text h2 { margin-bottom: 1.25rem; }
.register-text .lede { margin-bottom: 2rem; }
.register-contact {
  font-size: .9rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--hairline-soft);
  padding-top: 1.5rem;
}
.register-contact a {
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze);
  transition: color 400ms var(--ease), border-color 400ms var(--ease);
}
.register-contact a:hover { color: var(--ink); border-color: var(--ink); }

.register-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field > span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}
.field > span em { font-style: normal; color: var(--ink-muted); letter-spacing: .04em; text-transform: none; font-size: .78rem; }
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: .65rem 0;
  font-size: 1rem;
  color: var(--ink);
  font-family: var(--sans);
  outline: 0;
  transition: border-color 400ms var(--ease);
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 4rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--bronze);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%238B6F47' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right .5rem center;
  padding-right: 1.5rem;
}
.btn--submit { margin-top: 1rem; align-self: flex-start; }
.form-note {
  font-size: .78rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.form-success {
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--bronze);
  background: var(--paper);
  animation: rise 800ms var(--ease) both;
}
.form-success__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: .5rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #14130F;
  color: rgba(245,240,230,.8);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) 2rem;
}
.footer-inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,230,.15);
}
.footer-brand img { height: 36px; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 42ch; font-size: .92rem; color: rgba(245,240,230,.65); }
.footer-col { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .92rem; color: rgba(245,240,230,.78); transition: color 400ms var(--ease); }
.footer-col a:hover { color: var(--ivory); }
.footer-label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,240,230,.5);
  margin-bottom: .25rem;
  font-weight: 500;
}
.footer-col--cta .btn { align-self: flex-start; margin-top: .25rem; }

.footer-base {
  max-width: var(--col-wide);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: .78rem;
  color: rgba(245,240,230,.5);
  letter-spacing: .04em;
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .offer-card { grid-column: span 2; }
  .offer-card--feature { grid-column: span 4; }
  .speakers-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-col--cta { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .primary-nav, .btn--header { display: none; }
  .nav-toggle { display: block; }

  .exits-frame, .austin-frame, .register-frame {
    grid-template-columns: 1fr;
  }
  .exits-image, .austin-image { order: -1; }
  .austin-image img { aspect-ratio: 4/3; }
  .exits-image img { aspect-ratio: 4/3; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .quote { border-left: 0; border-top: 1px solid var(--hairline-soft); }
  .quote:first-child { border-top: 0; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col--cta { grid-column: 1 / -1; }
  .footer-base { flex-direction: column; gap: .35rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 4rem 1.25rem; }
  .hero { padding-bottom: 4rem; }
  .hero-meta { gap: .5rem 1.5rem; font-size: .72rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn--text { text-align: center; padding: .5rem 0; }
  .sound-toggle {
    top: auto;
    bottom: 1.25rem;
    right: 1.25rem;
    transform: none;
    padding: .55rem .75rem;
    font-size: .65rem;
  }
  .sound-toggle__label { display: none; }
  .hero-scroll { display: none; }

  .offer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .offer-card, .offer-card--feature { grid-column: 1; }
  .offer-card--feature { padding: 2rem 1.5rem; }

  .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .speaker-name { font-size: 1.2rem; }

  .agenda-list li {
    grid-template-columns: 1fr;
    gap: .35rem;
    padding: 1.25rem 0;
  }
  .agenda-time { font-size: 1rem; color: var(--bronze); letter-spacing: .14em; text-transform: uppercase; font-family: var(--sans); }

  .pricing-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 1rem; }

  .register-frame { padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .austin-image figcaption { right: auto; left: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-scroll span { display: none; }
}

/* ============================================================
   Watch the highlight (bottom video section)
   ============================================================ */
.section--watch {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.watch-frame {
  max-width: var(--col-narrow, 64rem);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}
.watch-frame .eyebrow {
  display: block;
  margin-bottom: 1rem;
}
.watch-frame h2 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.watch-frame .lede {
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(20,18,15,.72);
}
.watch-player {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  background: #14120F;
  box-shadow: 0 24px 64px -28px rgba(20,18,15,.35);
}
.watch-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ============================================================
   Early Bird Popup
   ============================================================ */
.eb-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms var(--ease);
}
.eb-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.eb-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.eb-popup__card {
  position: relative;
  width: min(440px, 100%);
  background: var(--ivory);
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--hairline);
  box-shadow: 0 40px 100px -40px rgba(20,18,15,.55);
  text-align: center;
  transform: translateY(12px) scale(.98);
  transition: transform 600ms var(--ease);
}
.eb-popup.is-open .eb-popup__card {
  transform: translateY(0) scale(1);
}
.eb-popup__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bronze);
}
.eb-popup__close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  border-radius: 50%;
  transition: background 300ms var(--ease), color 300ms var(--ease);
}
.eb-popup__close:hover {
  background: var(--paper-deep);
  color: var(--ink);
}
.eb-popup__eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.eb-popup__price {
  font-family: var(--serif);
  font-weight: 300;
  display: inline-flex;
  align-items: baseline;
  gap: .65rem;
  margin: 0 0 .9rem;
  line-height: 1;
}
.eb-popup__amount {
  font-size: clamp(3.2rem, 7vw, 4rem);
  color: var(--ink);
  letter-spacing: -.01em;
}
.eb-popup__strike {
  font-size: 1.4rem;
  color: var(--ink-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-weight: 400;
  font-style: italic;
}
.eb-popup__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-muted);
  margin-bottom: .9rem;
}
.eb-popup__body {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}
.eb-popup__body strong {
  color: var(--ink);
  font-weight: 600;
}
.eb-popup__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.eb-popup__cta {
  width: 100%;
  max-width: 320px;
}
.eb-popup__fine {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

@media (max-width: 480px) {
  .eb-popup__price { gap: .45rem; }
  .eb-popup__strike { font-size: 1.15rem; }
}

/* ============================================================
   Mobile polish (≤ 720px)
   ============================================================ */
@media (max-width: 720px) {

  /* --- Header / logo --- */
  .site-header { padding: .85rem 1.1rem; }
  .site-header.is-scrolled { padding: .65rem 1.1rem; }
  .header-inner { gap: .5rem; }
  .brand { height: 36px; }
  .brand-mark { height: 30px; }
  .brand-mark--light { height: 28px; }
  .site-header.is-scrolled .brand-mark { height: 26px; }
  .site-header.is-scrolled .brand-mark--light { height: 24px; }

  /* --- Hero --- */
  .hero {
    min-height: 88vh;
    min-height: 88svh;
    align-items: center;                         /* center, not bottom-anchored */
    padding: 5.5rem 1.1rem 3rem;                 /* top room for fixed header */
  }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(20,18,15,.55) 0%, rgba(20,18,15,.55) 100%);
  }
  .hero-content {
    padding: 0;
    max-width: 100%;
  }
  .hero-headline {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.18;
    margin: 0 0 1.1rem;
  }
  .hero-headline--bold { letter-spacing: -.015em; }
  .hero-headline .hl-line { white-space: normal; }
  .hero-headline br { display: none; }           /* let it wrap naturally on mobile */

  .hero-sub {
    font-size: .98rem;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
    font-size: .68rem;
    letter-spacing: .12em;
    margin-bottom: 1.75rem;
    padding-top: 1rem;
  }
  .hero-meta li { white-space: normal; }
  .hero-meta li::before { display: none; }
  .hero-meta li + li { padding-left: 0; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .hero-actions .btn--primary {
    padding: 1rem 1.5rem;
    font-size: .78rem;
    width: 100%;
    text-align: center;
  }
  .hero-actions .btn--text { text-align: center; padding: .5rem 0; }

  /* --- Strip / credential band --- */
  .strip { padding: 1.5rem 1.25rem; }
  .strip-inner p { font-size: .95rem; }

  /* --- Section spacing --- */
  .section { padding: 3.25rem 1.1rem; }
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .lede { font-size: 1rem; }

  /* --- Offer cards --- */
  .offer-grid { gap: 1.25rem; }
  .offer-card { padding: 1.75rem 1.5rem; }
  .offer-num { font-size: 1.85rem; }
  .offer-card h3 { font-size: 1.2rem; }
  .offer-card p { font-size: .95rem; }

  /* --- Exit paths --- */
  .exits-image--stack { gap: .75rem; }
  .exits-image--stack img { aspect-ratio: 16/9; }
  .exit-list li { padding-left: 3rem; }
  .exit-list li::before { font-size: 1.2rem; }
  .exit-list h3 { font-size: 1.1rem; }

  /* --- Agenda --- */
  .agenda-day { margin-bottom: 2.5rem; }
  .agenda-day__label { font-size: 1rem; margin-bottom: .85rem; }
  .agenda-body h3 { font-size: 1rem; }
  .agenda-speaker { font-size: .85rem; }

  /* --- Speakers --- */
  .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem .85rem; }
  .speaker { min-width: 0; }                       /* allow flex children to shrink */
  .speaker-photo { margin-bottom: .75rem; }
  .speaker-name {
    font-size: .95rem;
    line-height: 1.2;
    margin-bottom: .35rem;
    overflow-wrap: anywhere;                       /* break long names rather than clip */
  }
  .speaker-role {
    font-size: .68rem;
    letter-spacing: .06em;                         /* was .18em — too wide for mobile */
    text-transform: none;                          /* sentence case fits in narrow cards */
    color: var(--bronze);
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  /* --- Antone's banner --- */
  .austin-banner img {
    aspect-ratio: 16/9;
    object-position: center 35%;
  }
  .austin-text--center { padding: 0 .5rem; }
  .austin-text--center p { font-size: .95rem; }
  .austin-foot { font-size: .9rem; }

  /* --- Pricing --- */
  .pricing-grid--two { grid-template-columns: 1fr; max-width: 380px; }
  .tier { padding: 2rem 1.5rem; }
  .tier-price { font-size: 2.5rem; }

  /* --- Social proof --- */
  .proof-stat { margin-bottom: 2.5rem; }
  .proof-num { font-size: clamp(3rem, 18vw, 5rem); }
  .proof-num-label { font-size: 1rem; }
  .quote blockquote { font-size: 1.1rem; }

  /* --- Watch / Inside the Summit --- */
  .watch-frame h2 { font-size: clamp(1.6rem, 6vw, 2rem); }

  /* --- Register split --- */
  .register-split { gap: 1.25rem; }
  .register-cta--card { padding: 1.75rem 1.5rem; }
  .register-cta h2 { font-size: 1.6rem; margin-bottom: .85rem; }
  .register-cta .lede { font-size: .95rem; margin-bottom: 1.75rem; }
  .btn--register { width: 100%; }
  .learn-more h2 { font-size: 1.45rem; }
  .learn-form .field-row { grid-template-columns: 1fr; gap: .85rem; }
  .learn-form input,
  .learn-form textarea { font-size: 16px; }   /* prevents iOS zoom-on-focus */

  /* --- Footer --- */
  .site-footer { padding: 3rem 1.1rem 2rem; }
  .footer-brand img { height: 32px; }
  .footer-brand p { font-size: .85rem; }
  .footer-base { font-size: .75rem; text-align: center; }

  /* --- Early-bird popup --- */
  .eb-popup { padding: 1rem; }
  .eb-popup__card {
    width: 100%;
    padding: 2rem 1.5rem;
    max-height: 92vh;
    overflow-y: auto;
  }
  .eb-popup__amount { font-size: 2.5rem; }
  .eb-popup__body { font-size: .92rem; }
}

/* Bigger touch targets on touch devices */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; }
  .nav-toggle { width: 44px; height: 44px; }
}
