/* ================================================================
   INSTITUTE OF MINDUSTRY — LANDING PAGE
   Conversion-focused · Dark luxury · Glassmorphism
================================================================ */

:root {
  /* Palette */
  --ink:         #09090B;
  --surface:     #111113;
  --surface-2:   #18181B;
  --surface-3:   #27272A;
  --red:         #C0001A;
  --red-dark:    #8C0013;
  --red-glow:    rgba(192, 0, 26, 0.18);
  --gold:        #C4A35A;
  --gold-dim:    rgba(196, 163, 90, 0.14);
  --gold-border: rgba(196, 163, 90, 0.24);
  --cream:       #F4EFE8;
  --muted:       rgba(244, 239, 232, 0.46);
  --border:      rgba(255, 255, 255, 0.06);
  --white:       #FFFFFF;

  /* Glass */
  --glass-bg:     rgba(24, 24, 27, 0.72);
  --glass-border: rgba(196, 163, 90, 0.18);
  --glass-blur:   20px;

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:   1180px;
  --px:      clamp(18px, 5vw, 60px);
  --section: clamp(80px, 10vw, 140px);
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(72px + env(safe-area-inset-top, 0px));
  overflow-x: hidden;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

img, svg { display: block; max-width: 100%; }
a        { color: inherit; text-decoration: none; }
ul       { list-style: none; }

/* Reset browser defaults for semantic elements */
blockquote { margin: 0; }
cite       { font-style: normal; }

/* ── ACCESSIBILITY ─────────────────────────────────────────── */

/* Skip link — visible only on focus for keyboard users */
.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  transform: translateY(calc(-100% - 32px));
  transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }

/* Global focus-visible — keyboard nav ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) { outline: none; }

/* Sticky mobile CTA — hidden on desktop */
.sticky-cta {
  display: none;
}

@media (max-width: 700px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 12px 20px 14px;
    z-index: 450;
    transform: translateY(100%);
    transition: transform 0.35s var(--ease);
    /* safe-area inset for iPhone home bar */
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .sticky-cta.visible {
    transform: translateY(0);
  }
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 480px;
  margin-inline: auto;
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sticky-cta-event {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.sticky-cta-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

.sticky-cta-btn {
  flex-shrink: 0;
  font-size: 0.76rem;
  padding: 11px 22px;
}

@media (max-width: 700px) {
  /* Push toast up so it clears the sticky CTA */
  .toast { bottom: 80px; }
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  /* Respect safe-area on edge-to-edge phones (landscape) */
  padding-inline: max(var(--px), env(safe-area-inset-left, 0px));
}

/* ── LOGO PILL ─────────────────────────────────────────────── */
/*
  White rounded container behind the logo so the black mortarboard
  and dark wordmark remain fully visible on any dark surface.
*/
.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-pill--sm {
  padding: 5px 10px;
  border-radius: 8px;
}

.logo-pill--sm img {
  height: 32px;
  width: auto;
}

.logo-pill--hero {
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.40),
              0 0 0 1px rgba(196, 163, 90, 0.15);
}

.logo-pill--hero img {
  height: clamp(52px, 9vw, 88px);
  width: auto;
}

.logo-pill--footer {
  padding: 8px 16px;
  border-radius: 10px;
}

.logo-pill--footer img {
  height: 40px;
  width: auto;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(192, 0, 26, 0.32);
  transition: background 0.2s, transform 0.22s var(--ease), box-shadow 0.22s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(192, 0, 26, 0.42);
}

.btn-full { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.22s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* ── GLASS CARD ────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 4px;
}

/* ── TYPE UTILITIES ────────────────────────────────────────── */
.section-eyebrow,
.section-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Heading balance — prevents orphan words on mobile */
h1, h2, h3, h4 {
  text-wrap: balance;
  overflow-wrap: break-word;
}

/* Section header spacing pattern */
.section-header { margin-bottom: clamp(32px, 5vw, 56px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 20px;
  transition: gap 0.2s;
}

.text-link:hover { gap: 10px; }

/* ── TOP BAR ───────────────────────────────────────────────── */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 400;
  /* Reserve space for Dynamic Island / notch */
  padding-top: env(safe-area-inset-top, 0px);
  transition: background 0.3s, border-color 0.3s;
}

.topbar.scrolled {
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s;
}

.topbar-link:hover { color: var(--cream); }

.topbar-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(192, 0, 26, 0.38);
  padding: 8px 16px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.topbar-cta:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Aurora animated background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 30%, rgba(192, 0, 26, 0.16) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(192, 0, 26, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(196, 163, 90, 0.06) 0%, transparent 55%);
  animation: auroraShift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes auroraShift {
  0%   { opacity: 0.85; transform: scale(1)    translate(0, 0); }
  33%  { opacity: 1;    transform: scale(1.04) translate(-1.5%, 1%); }
  66%  { opacity: 0.9;  transform: scale(0.97) translate(1%, -1.5%); }
  100% { opacity: 1;    transform: scale(1.03) translate(-0.5%, 0.5%); }
}

/* Grain overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
}

/* Marquee ticker */
.hero-marquee {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding-block: 10px;
  background: rgba(9, 9, 11, 0.38);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-inline: 24px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Split grid: text left / logo right */
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-top: clamp(120px, 17vw, 168px);
  padding-bottom: clamp(80px, 10vw, 120px);
  flex: 1;
}

/* LEFT column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.eyebrow {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
}

.hero-title-line   { display: block; }
.hero-title-accent { color: var(--red); }

.hero-sub {
  font-size: clamp(0.93rem, 1.5vw, 1.06rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
}

.bp-md { display: inline; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Countdown — bordered individual blocks */
.countdown {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  overflow: hidden;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 18px;
  border-right: 1px solid var(--gold-border);
  background: rgba(9, 9, 11, 0.55);
  min-width: 66px;
}

.cd-block:last-child { border-right: none; }

.cd-sep {
  width: 0;
  border-right: 1px solid var(--gold-border);
}

.cd-num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* RIGHT column — logo frame */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-frame {
  position: relative;
  width: clamp(240px, 34vw, 440px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-frame-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.logo-frame-ring--outer {
  border: 1px dashed rgba(196, 163, 90, 0.20);
  animation: ringRotate 28s linear infinite;
}

.logo-frame-ring--inner {
  inset: 16%;
  border: 1px dashed rgba(192, 0, 26, 0.24);
  animation: ringRotate 18s linear infinite reverse;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.logo-frame-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 0, 26, 0.20) 0%, transparent 68%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.7; transform: scale(0.94); }
  to   { opacity: 1;   transform: scale(1.06); }
}

.logo-frame .logo-pill--hero {
  position: relative;
  z-index: 1;
  animation: logoFloat 6s ease-in-out infinite alternate;
}

@keyframes logoFloat {
  from { transform: translateY(-7px); }
  to   { transform: translateY(7px); }
}

/* ── HERO FLYER (right column) ─────────────────────────────── */
.hero-flyer-wrap {
  position: relative;
  width: clamp(260px, 40vw, 500px);
  margin: 0 auto;
}

.hero-flyer-glow {
  position: absolute;
  inset: -30% -20%;
  background:
    radial-gradient(ellipse 70% 60% at 55% 45%, rgba(192, 0, 26, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 30% 70%, rgba(196, 163, 90, 0.10) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite alternate;
}

.hero-flyer-img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 8px;
  transform: rotate(3deg);
  transform-origin: center bottom;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.60),
    0 8px 24px rgba(192, 0, 26, 0.20),
    0 0 0 1px rgba(196, 163, 90, 0.16);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  animation: flyerFloat 7s ease-in-out infinite alternate;
}

@keyframes flyerFloat {
  from { transform: rotate(3deg) translateY(-6px); }
  to   { transform: rotate(2deg) translateY(6px); }
}

.hero-flyer-wrap:hover .hero-flyer-img {
  transform: rotate(0deg) scale(1.02) translateY(-4px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.65),
    0 12px 40px rgba(192, 0, 26, 0.28),
    0 0 0 1px rgba(196, 163, 90, 0.24);
  animation-play-state: paused;
}

/* Small badge overlay on flyer */
.hero-flyer-badge {
  position: absolute;
  top: -14px;
  left: -14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 4px 16px rgba(192, 0, 26, 0.40);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0.30;
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

.scroll-word {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SPEAKER SECTION ───────────────────────────────────────── */
.speaker-section {
  padding-block: clamp(80px, 10vw, 130px);
  border-top: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface) 0%, var(--ink) 60%);
  overflow: hidden;
}

.speaker-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

/* Photo column */
.speaker-photo-wrap {
  position: relative;
  padding-bottom: 16px;
  padding-right: 16px;
}

.speaker-photo-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--glass-border);
  background: var(--surface-2);
}

.speaker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: contrast(1.06) brightness(0.97);
  transition: filter 0.5s, transform 0.6s var(--ease);
}

.speaker-photo-wrap:hover .speaker-photo {
  filter: contrast(1.0) brightness(1.0);
  transform: scale(1.03);
}

/* Decorative offset border */
.speaker-photo-accent {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  z-index: -1;
  pointer-events: none;
}

/* Rotated "Headline Speaker" label */
.speaker-photo-label {
  position: absolute;
  bottom: 24px;
  right: -8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  pointer-events: none;
}

.speaker-photo-label-line {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.7;
}

/* Content column */
.speaker-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.speaker-name {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.02;
  margin: 10px 0 10px;
  letter-spacing: -0.02em;
}

.speaker-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1.7;
}

.speaker-bio {
  font-size: clamp(0.93rem, 1.4vw, 1.04rem);
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 18px;
}

.speaker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 32px;
}

.speaker-tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  background: var(--surface-2);
  transition: border-color 0.2s, color 0.2s;
}

.speaker-tag:hover {
  border-color: var(--gold-border);
  color: var(--cream);
}

.speaker-cta { align-self: flex-start; }

/* ── META STRIP ────────────────────────────────────────────── */
.meta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px var(--px);
  border-right: 1px solid var(--border);
}

.meta-item:last-child { border-right: none; }

.meta-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.meta-value {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-section {
  padding-block: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.about-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 18px;
}

.about-body {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.78;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  gap: 8px;
  text-align: center;
  border-top: 2px solid transparent;
  transition: border-top-color 0.3s, background 0.3s;
}

.stat-card:hover {
  border-top-color: var(--gold);
  background: var(--surface-2);
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  text-align: center;
}

/* ── GALLERY ───────────────────────────────────────────────── */
.gallery-section {
  padding-block: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.gallery-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-top: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}

/* Large cell spans 2 columns in first row */
.gallery-cell--large {
  grid-column: span 2;
}

/* Wide cell spans 2 columns */
.gallery-cell--wide {
  grid-column: span 2;
}

/* Full cell spans all 3 columns */
.gallery-cell--full {
  grid-column: span 3;
  aspect-ratio: 21 / 9;
}

.gallery-cell {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s;
  display: block;
}

.gallery-cell:hover img { transform: scale(1.04); }

/* Overlay on hover */
.gallery-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.28);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-cell:hover::after { opacity: 1; }

/* Placeholder state — shown when image fails to load */
.gallery-placeholder {
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder img { display: none; }

.gallery-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
}

/* Show placeholder label only on placeholder cells */
.gallery-placeholder .gallery-placeholder-label {
  opacity: 0.55;
}

/* Add an icon-like mark for placeholder cells */
.gallery-placeholder .gallery-placeholder-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C4A35A' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E") center/60% no-repeat;
}

/* ── TICKETS ───────────────────────────────────────────────── */
.tickets-section {
  padding-block: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--border);
}

.tickets-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.tickets-sub {
  margin-top: 12px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.tickets-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-top: 8px;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.tickets-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-inline: auto;
}

.ticket-card {
  background: var(--surface);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.25s;
}

.ticket-card:hover { background: var(--surface-2); }

/* Featured card */
.ticket-card--featured {
  background: var(--surface-2);
  border-top: 2px solid var(--gold);
}

.ticket-card--featured:hover { background: #222224; }

.ticket-top {
  margin-bottom: 20px;
}

.ticket-badge {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 1px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.ticket-tier {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.ticket-name {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 6px;
}

.ticket-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.ticket-price {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.ticket-currency {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}

.ticket-amount {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ticket-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.ticket-perks li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.ticket-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.65;
}

.ticket-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.22s var(--ease);
  text-decoration: none;
  border: 1px solid var(--gold-border);
  color: var(--cream);
  background: transparent;
}

.ticket-btn:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.ticket-btn--primary,
.ticket-btn.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(192, 0, 26, 0.28);
}

.ticket-btn--primary:hover,
.ticket-btn.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 8px 28px rgba(192, 0, 26, 0.38);
  transform: translateY(-2px);
}

/* When ticket-btn is also btn-ghost, keep ticket-btn layout (full width, block) */
.ticket-btn.btn-ghost {
  display: block;
  width: 100%;
  text-align: center;
}

.tickets-disclaimer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── REGISTRATION ──────────────────────────────────────────── */
.register-section {
  padding-block: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--ink) 0%, var(--surface) 100%);
}

.register-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}

.register-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 16px;
}

.register-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.register-perks {
  display: grid;
  gap: 10px;
}

.register-perks li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.register-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

/* Registration card */
.register-card {
  padding: clamp(24px, 4vw, 44px);
}

.card-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.2;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.field-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.field-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.7rem;
  opacity: 0.6;
}

input, select {
  font-family: var(--sans);
  font-size: 0.95rem;
  width: 100%;
  padding: 13px 15px;
  background: rgba(9, 9, 11, 0.60);
  border: 1px solid var(--border);
  color: var(--cream);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder { color: rgba(244, 239, 232, 0.22); }

input:focus, select:focus {
  border-color: rgba(196, 163, 90, 0.50);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.07);
}

select { cursor: pointer; }
select option { background: var(--surface-2); color: var(--cream); }

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.73rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── WAITLIST ──────────────────────────────────────────────── */
.waitlist-section {
  padding-block: clamp(64px, 8vw, 100px);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}

.waitlist-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin: 10px 0;
}

.waitlist-body {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.72;
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding-top: clamp(48px, 7vw, 80px);
  /* Home indicator clearance on iPhone */
  padding-bottom: calc(clamp(48px, 7vw, 80px) + env(safe-area-inset-bottom, 0px));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-tagline {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--cream); }

.footer-partner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--muted);
}

.footer-partner-label {
  opacity: 0.6;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-partner-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.footer-partner-logo {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: inline-block;
}

.footer-partner-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.footer-contact-link:hover { color: var(--gold); }

.footer-contact-sep { opacity: 0.3; }
.footer-contact-note { opacity: 0.55; font-size: 0.72rem; }

.footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 232, 0.22);
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-stats .stat-card:nth-child(2) { transition-delay: 0.08s; }
.about-stats .stat-card:nth-child(3) { transition-delay: 0.16s; }
.about-stats .stat-card:nth-child(4) { transition-delay: 0.24s; }

.gallery-grid .gallery-cell:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .gallery-cell:nth-child(3) { transition-delay: 0.06s; }
.gallery-grid .gallery-cell:nth-child(4) { transition-delay: 0.12s; }
.gallery-grid .gallery-cell:nth-child(5) { transition-delay: 0.06s; }
.gallery-grid .gallery-cell:nth-child(6) { transition-delay: 0.12s; }
.gallery-grid .gallery-cell:nth-child(7) { transition-delay: 0.10s; }

/* ── TOAST ─────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  translate: -50% 14px;
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  color: var(--cream);
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, translate 0.25s var(--ease);
  z-index: 600;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  translate: -50% 0;
}

/* ── TABLET  ≤ 860px ───────────────────────────────────────── */
@media (max-width: 860px) {
  /* Hero: stack text above logo */
  .hero-split {
    grid-template-columns: 1fr;
    /* Safe area: add notch/Dynamic Island offset on tablets too */
    padding-top: calc(clamp(100px, 16vw, 136px) + env(safe-area-inset-top, 0px));
    padding-bottom: clamp(48px, 6vw, 72px);
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .hero-sub { max-width: 480px; }

  .hero-right {
    order: -1;
  }

  .logo-frame {
    width: clamp(180px, 38vw, 280px);
  }

  .scroll-cue { left: 50%; transform: translateX(-50%); }

  /* Meta */
  .meta-strip { grid-template-columns: repeat(2, 1fr); }
  .meta-item:nth-child(2) { border-right: none; }
  .meta-item:nth-child(3),
  .meta-item:nth-child(4) { border-top: 1px solid var(--border); }

  /* Hero flyer */
  .hero-flyer-wrap { width: clamp(160px, 34vw, 240px); }

  /* Speaker */
  .speaker-inner { grid-template-columns: 1fr; }
  .speaker-photo-wrap { max-width: 320px; margin-inline: auto; }
  .speaker-photo-label { display: none; }
  .speaker-cta { align-self: stretch; text-align: center; }

  /* Content grids */
  .about-inner    { grid-template-columns: 1fr; }
  .register-inner { grid-template-columns: 1fr; }
  .waitlist-inner { grid-template-columns: 1fr; }

  /* Tickets: 2-col then 1-col for online */
  .tickets-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cell--large,
  .gallery-cell--wide { grid-column: span 2; }
  .gallery-cell--full { grid-column: span 2; aspect-ratio: 16 / 9; }
}

/* ── MOBILE  ≤ 560px ───────────────────────────────────────── */
@media (max-width: 560px) {
  .bp-md { display: none; }
  .topbar-link { display: none; }

  /* ── HERO ── */
  .hero-split {
    gap: 16px;
    padding-top: calc(clamp(96px, 26vw, 120px) + env(safe-area-inset-top, 0px));
    padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
    text-align: center;
  }

  /* Portrait card — matches flyer's natural 500×707 proportions, no side bars */
  .hero-flyer-wrap {
    width: min(68vw, 240px);
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(196, 163, 90, 0.18);
  }

  .hero-flyer-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: unset;
    border-radius: 0;
    transform: none;
    animation: none;
    box-shadow: none;
  }

  .hero-flyer-badge {
    width: 44px;
    height: 44px;
    font-size: 0.54rem;
    top: 8px;
    left: 8px;
  }

  .hero-left { gap: 14px; align-items: center; }
  .hero-title { font-size: clamp(2rem, 9.5vw, 2.5rem); }
  .hero-sub { display: none; }

  .cd-block { min-width: 44px; padding: 8px 10px; }
  .cd-num   { font-size: clamp(1.1rem, 5vw, 1.4rem); }
  .cd-label { font-size: 0.46rem; letter-spacing: 0.16em; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    padding: 15px 16px;
    font-size: 0.78rem;
    width: 100%;
    justify-content: center;
  }

  .hero-trust { justify-content: center; font-size: 0.65rem; }
  .eyebrow    { font-size: 0.56rem; letter-spacing: 0.18em; }

  /* ── SECTION LABELS ── */
  .section-eyebrow,
  .section-label { font-size: 0.58rem; letter-spacing: 0.20em; margin-bottom: 10px; }

  /* ── TICKETS ── */
  .tickets-grid        { grid-template-columns: 1fr; }
  .tickets-grid--two   { grid-template-columns: 1fr; }

  /* ── GALLERY ── */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-cell--large,
  .gallery-cell--wide,
  .gallery-cell--full { grid-column: span 2; aspect-ratio: 4 / 3; }

  /* ── META STRIP ── */
  .meta-strip { grid-template-columns: 1fr 1fr; }

  /* ── SPEAKER ── */
  .speaker-name { font-size: clamp(2rem, 8vw, 2.6rem); }
  .speaker-bio  { font-size: 0.88rem; }

  /* ── TESTIMONIALS ── */
  .testimonials-grid  { gap: 0; }
  .testimonial-card   { padding: 28px 20px; }
  .testimonial-quote  { font-size: 0.95rem; }

  /* ── VIDEO ── */
  .video-heading { font-size: clamp(1.4rem, 6vw, 1.8rem); margin-bottom: 1.25rem; }

  /* ── FAQ ── */
  .faq-title { font-size: clamp(1.75rem, 7.5vw, 2.4rem); }
  .faq-q     { padding: 16px 18px; font-size: 0.88rem; }
  .faq-a     { padding: 0 18px 18px; }
  .faq-a p   { font-size: 0.88rem; }

  /* ── INSTAGRAM REELS ── */
  .reel-cell        { min-height: 360px; }
  .reel-placeholder { height: 360px; }
}

/* ── YOUTUBE VIDEO ───────────────────────────────────────────────── */
.video-section {
  padding-top: var(--section);
  padding-bottom: var(--section);
  border-top: 1px solid var(--border);
}

.video-heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  margin: 0.35em 0 2rem;
  letter-spacing: -0.02em;
}

.video-facade {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  border: 1px solid var(--border);
}

/* Universal 16:9 aspect ratio — works on all browsers including old iOS Safari */
.video-facade::before {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}

.video-facade:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.video-facade:hover .video-thumb,
.video-facade:focus-visible .video-thumb {
  opacity: 0.75;
  transform: scale(1.02);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.video-facade:hover .video-play-btn {
  transform: scale(1.1);
  background: #e00020;
}

.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── INSTAGRAM REELS ────────────────────────────────────────────── */
.reels-section {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: var(--section);
  border-top: 1px solid var(--border);
}

/* Header row: handle + title left, follow button right */
.reels-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.reels-header-left {
  display: flex;
  flex-direction: column;
  gap: 20px; /* more gap so handle breathes away from section above */
}

.reels-handle-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  transition: opacity 0.2s;
}
.reels-handle-link:hover { opacity: 0.75; }

.reels-ig-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.reels-handle {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reels-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

.reels-follow-btn {
  flex-shrink: 0;
  align-self: flex-end;
  font-size: 0.78rem;
  padding: 10px 22px;
}

/* 3-column equal grid */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

/* Each reel cell */
.reel-cell {
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  min-height: 480px;
}

/* Force Instagram embeds to fill the cell */
.reel-cell .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Placeholder shown while embed loads */
.reel-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 480px;
  color: rgba(196,163,90,0.25);
}

@media (max-width: 860px) {
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-header { flex-direction: column; align-items: flex-start; }
  .reels-follow-btn { align-self: flex-start; }
}

@media (max-width: 560px) {
  .reels-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .reels-follow-btn { align-self: stretch; text-align: center; }

  /* Horizontal swipe strip on mobile */
  .reels-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 8px;
  }

  .reel-cell {
    flex: 0 0 82vw;
    scroll-snap-align: start;
    min-height: 380px;
  }

  .reel-placeholder { height: 380px; }
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  padding-block: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--border);
}

.testimonials-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-top: 8px;
}

.center-text { text-align: center; max-width: 100%; }
.center-text .testimonials-title { max-width: 560px; margin-inline: auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(196,163,90,0.15);
  border: 1px solid rgba(196,163,90,0.15);
  border-radius: 4px;
  overflow: hidden;
  margin-top: clamp(40px, 6vw, 64px);
}

.testimonial-card {
  background: var(--surface-2);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background 0.25s;
}

.testimonial-card:hover { background: var(--surface-2); }

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-style: italic;
  line-height: 1.75;
  color: var(--cream);
  flex: 1;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;   /* prevent shrink in flex */
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.testimonial-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cream);
  font-style: normal;
  margin-bottom: 3px;
}

.testimonial-name::before {
  content: '— ';
  color: var(--gold);
  font-weight: 400;
}

.testimonial-role {
  display: block;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--muted);
}

.testimonial-location {
  display: block;
  font-size: 0.68rem;
  color: var(--gold);
  opacity: 0.75;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section {
  padding-block: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--border);
}

.faq-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-top: 8px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  /* Full-width — overrides all browser defaults */
  width: 100%;
  display: flex;
  align-items: flex-start;   /* chevron pins to top when text wraps */
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-q:hover { background: var(--surface-2); }

.faq-q[aria-expanded="true"] {
  color: var(--gold);
  background: var(--surface-2);
}

.faq-chevron {
  flex-shrink: 0;
  margin-top: 3px;   /* optically aligns icon with first text line */
  color: var(--muted);
  transition: transform 0.3s var(--ease), color 0.2s;
}

.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-a {
  padding: 0 24px 22px;
  background: var(--surface-2);
}

.faq-a[hidden] { display: none; }

.faq-a p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 680px;
}

.faq-a strong { color: var(--cream); font-weight: 600; }

/* ── RESPONSIVE — testimonials & FAQ ────────────────────────── */
@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-q { padding: 18px 22px; font-size: 0.9rem; }
  .faq-a { padding: 0 22px 20px; }
}
/* 560px overrides are in the main mobile block above */
