/* ============================================================
   FEMM INTERNATIONAL — Design System v3 "Editorial Gold"
   Official brand system (writing-block.md):
   White · Warm ivory · Champagne white · Metallic gold ·
   Antique gold · Soft neutral beige.
   No navy, burgundy or black. Restrained metallic gold only.
   Poppins (display/head) + Manrope (body); Fraunces italic for script accents.
   ============================================================ */

:root {
  /* Palette — bright, warm, gold-and-white */
  --ink: #23201a;
  --ink-2: #3a362d;
  --body: #5f594e;
  --muted: #8f887a;

  --ivory: #ffffff;
  --bone: #f8f4ea;
  --sand: #f0e8d6;

  --line: #e6ddc8;
  --line-soft: #efe8d8;

  --champagne: #e8d8b1;
  --gold: #cda852;
  --gold-light: #e8d8b1;
  --gold-deep: #a08340;
  --gold-ink: rgba(205,168,82,.13);
  --gold-ink-2: rgba(205,168,82,.26);
  --gold-dark: #a08340;

  /* legacy aliases (kept for older inline styles) */
  --navy: #23201a;
  --navy-2: #2e2a22;
  --navy-3: #3a362d;
  --maroon: #cda852;
  --maroon-deep: #a08340;
  --cream: #ffffff;
  --cream-2: #f8f4ea;
  --white: #ffffff;
  --dark: #23201a;

  --font-display: 'Poppins', 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-head: 'Poppins', 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-script: 'Fraunces', Georgia, serif;

  --shadow-xs: 0 1px 2px rgba(35,32,26,.04);
  --shadow-sm: 0 10px 28px -16px rgba(35,32,26,.16);
  --shadow: 0 36px 80px -34px rgba(35,32,26,.22);
  --radius: 4px;
  --radius-sm: 3px;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--body);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold-deep); color: #fff; }

.container { width: min(1220px, 90%); margin: 0 auto; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
}

.display-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.015em;
  line-height: 1.06;
  color: var(--ink);
  text-wrap: balance;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-wrap: balance;
}

.script, .script-large, .page-hero .script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 340;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 0;
}
.script { font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.01em; }
.script-large { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; }

/* Thin gold divider — refined, no ornament */
.gold-rule {
  width: 88px; height: 1px;
  background: var(--gold);
  margin: 22px auto 30px;
  opacity: .75;
}
.gold-rule.left { margin: 22px 0 30px; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 11.5px;
  color: var(--gold-deep);
  display: inline-block;
}

.lead { font-size: 19px; color: var(--body); max-width: 680px; }

/* Editorial section header */
.sec-head {
  display: flex;
  align-items: flex-end;
  gap: 26px;
  margin-bottom: 56px;
}
.sec-head .sec-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
  padding-bottom: 2px;
}
.sec-head .sec-body { flex: 0 1 auto; }
.sec-head .sec-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
  margin-bottom: 10px;
}
.sec-head.center { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.sec-head.center .sec-rule { display: none; }

/* ============================================================
   BUTTONS — rectangular, refined, fine arrow
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  color: var(--ink);
  background: transparent;
  transition: all .35s var(--ease);
  text-align: center;
  position: relative;
  white-space: nowrap;
}
.btn::after {
  content: "→";
  font-size: 14px;
  color: var(--gold-deep);
  transition: transform .35s var(--ease);
}
.btn:hover { background: var(--gold-ink); transform: translateY(-2px); }
.btn:hover::after { transform: translateX(5px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  border-color: var(--gold-deep);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
  letter-spacing: .26em;
}
.btn-gold::after { color: #fff; }
.btn-gold:hover {
  background: var(--gold-deep);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
  border-color: var(--gold-deep);
}

.btn-navy {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.btn-navy::after { color: var(--gold-light); }
.btn-navy:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn-navy:hover::after { color: #fff; }

.btn-white {
  background: transparent;
  border-color: var(--gold);
  color: var(--ink);
}
.btn-white::after { color: var(--gold-deep); }
.btn-white:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn-white:hover::after { color: var(--gold-light); }

.btn-block { display: flex; width: 100%; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert { padding: 15px 20px; border-radius: var(--radius-sm); margin: 18px 0; font-size: 15px; border: 1px solid; }
.alert-success { background: #eef5ea; color: #3f6a2e; border-color: #d7e5cd; }
.alert-error { background: #fbece9; color: #9c3a2e; border-color: #f0d2cb; }

/* ============================================================
   NAV — LOGIN LINK
   ============================================================ */
.nav-login { margin-left: 6px; }
.nav-login > a {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 12px;
  transition: color .25s;
}
.nav-login > a:hover { color: var(--gold-deep); }

.social-icons { display: flex; gap: 8px; }
.social-icons a {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bone);
  color: var(--gold-deep);
  border: 1px solid transparent;
  transition: all .25s var(--ease);
}
.social-icons a:hover {
  background: var(--gold);
  color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-xs);
}
.social-icons svg { width: 14px; height: 14px; fill: currentColor; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow .35s var(--ease);
}
.site-header.scrolled { box-shadow: 0 18px 50px -28px rgba(35,32,26,.28); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 14px; padding-bottom: 14px; transition: padding .35s var(--ease); }
.site-header.scrolled .container { padding-top: 9px; padding-bottom: 9px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-img { height: 72px; width: auto; transition: height .35s var(--ease); }
.site-header.scrolled .logo-img { height: 58px; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 10px 13px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color .25s;
  position: relative;
}
.main-nav > li > a::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.main-nav > li > a:hover, .main-nav > li.active > a { color: var(--gold-deep); }
.main-nav > li > a:hover::after, .main-nav > li.active > a::after { transform: scaleX(1); }
.main-nav > li.has-drop > a::after { display: none; }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transition: all .28s var(--ease);
  z-index: 950;
  padding: 10px 0;
}
.main-nav > li:hover .dropdown,
.main-nav > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before {
  content: ""; position: absolute; top: -7px; left: 50%;
  width: 12px; height: 12px;
  background: rgba(255,255,255,.98);
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}
.dropdown a {
  display: block;
  padding: 11px 22px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--ink-2);
  text-transform: uppercase;
  transition: all .2s;
}
.dropdown a:hover { color: var(--gold-deep); padding-left: 28px; background: var(--bone); }

.nav-cta { margin-left: 14px; }
.nav-cta .btn { padding: 12px 26px; font-size: 11.5px; letter-spacing: .2em; }

.menu-toggle {
  display: none;
  background: none; border: none; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); transition: all .3s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
section { padding: 96px 0; }

.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 140px;
  background:
    radial-gradient(1000px 560px at 82% -12%, rgba(232,216,177,.35), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, var(--ivory) 58%, var(--bone) 100%);
}
.hero-inner { position: relative; z-index: 3; max-width: 1000px; margin: 0 auto; }

.hero .hero-kicker {
  font-family: var(--font-head);
  letter-spacing: .46em;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.hero .hero-kicker::before,
.hero .hero-kicker::after {
  content: "";
  width: 42px; height: 1px;
  background: var(--gold);
  opacity: .6;
}
.hero .hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 1.0;
  letter-spacing: -.015em;
  color: var(--ink);
  text-wrap: balance;
}
.hero .hero-title .gold {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.hero .hero-sub {
  max-width: 640px; margin: 26px auto 42px;
  color: var(--body);
  font-size: 17px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 42px;
  background: var(--gold);
  animation: scrollHint 2s var(--ease) infinite;
}
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero.compact { min-height: 0; padding: 104px 0 108px; }

/* Video background hero (home) */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62) 45%, rgba(248,244,234,.94));
}
.home-hero .hero-title { color: var(--ink); }
.home-hero .hero-title .gold { color: var(--gold-deep); }
.home-hero .hero-sub { color: var(--body); }

/* Home hero — centered copy with a soft ivory focus behind the headline */
.home-hero .hero-overlay {
  background:
    radial-gradient(1000px 620px at 50% 44%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 48%, rgba(250,244,232,.55) 72%, rgba(16,10,3,.28) 100%);
}
.home-hero .hero-inner { text-align: center; max-width: 780px; margin: 0 auto; }
.home-hero .hero-sub { margin: 26px auto 44px; }
.home-hero .hero-ctas { justify-content: center; }

/* Global emphasis word */
.gold { color: var(--gold-deep); }

/* ============================================================
   PAGE HEADER (interior)
   ============================================================ */
.page-hero {
  position: relative;
  text-align: center;
  padding: 96px 0 88px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 80% -10%, rgba(232,216,177,.3), transparent 60%),
    linear-gradient(180deg, #ffffff, var(--ivory));
}
.page-hero h1 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 82px);
  letter-spacing: -.015em;
  text-wrap: balance;
}
.page-hero .script { font-size: clamp(22px, 3vw, 34px); display: block; margin-bottom: 12px; }
.page-hero p { color: var(--body); max-width: 620px; margin: 16px auto 0; }


/* ============================================================
   GRIDS / CARDS — editorial, white-framed, hairline rules
   ============================================================ */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.pageant-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--ivory);
  transition: transform .5s var(--ease);
}
.pageant-card::before {
  content: "";
  position: absolute; top: -14px; left: 0;
  width: 44px; height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .5s;
}
.pageant-card:hover { transform: translateY(-6px); }
.pageant-card:hover::before { opacity: 1; }
.pageant-card .pc-media {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: var(--bone);
}
.pageant-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.pageant-card:hover .pc-media img { transform: scale(1.05); }
.pageant-card .pc-body { padding: 24px 4px 6px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pageant-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 430;
  letter-spacing: 0;
}
.pageant-card .pc-meta {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.pageant-card .pc-note { font-size: 15px; color: var(--body); }
.pageant-card .pc-link {
  margin-top: auto; padding-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink); transition: all .3s var(--ease);
  border-top: 1px solid var(--line-soft);
  text-decoration: none;
}
.pageant-card .pc-link::after { content: "→"; color: var(--gold); transition: transform .3s var(--ease); }
.pageant-card:hover .pc-link { color: var(--gold-deep); }
.pageant-card:hover .pc-link::after { transform: translateX(5px); }

/* ============================================================
   SPLIT FEATURES
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.split-media .founder-photo { object-position: 50% 5%; }
.split-media .titleholder-photo { object-position: 50% 8%; }
.split-media .frame {
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold-ink-2);
  z-index: -1;
  pointer-events: none;
}
.split-media .badge-float {
  position: absolute;
  bottom: 30px; left: -24px;
  background: var(--ivory);
  color: var(--ink-2);
  border: 1px solid var(--gold-ink-2);
  padding: 14px 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  letter-spacing: .01em;
}
.split-copy .eyebrow { margin-bottom: 20px; }
.split-copy h2 { margin-bottom: 18px; }
.split-copy p { margin-bottom: 18px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; color: var(--ink-2); }
.check-list .tick {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-size: 11px;
}

/* Story stats — inline, left-aligned, hairline dividers */
.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 34px 0 36px;
  border-top: 1px solid var(--line-soft);
  padding-top: 30px;
}
.story-stats .stat { text-align: left; padding: 6px 20px 6px 0; }
.story-stats .stat + .stat { border-left: 1px solid var(--line); padding-left: 20px; }
.story-stats .num { font-size: clamp(40px, 4.5vw, 62px); }
.story-stats .label { margin-top: 12px; }
.story-stats .label::after { left: 0; transform: none; }

/* ============================================================
   WARM IVORY STRIP / VALUES (light champagne band)
   ============================================================ */
.dark-strip {
  position: relative;
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(232,216,177,.35), transparent 60%),
    linear-gradient(180deg, var(--bone), var(--sand));
  color: var(--ink);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.dark-strip h2, .dark-strip h3 { color: var(--ink); }
.dark-strip .script { color: var(--gold-deep); }
.dark-strip .lead { color: var(--body); margin: 0 auto 30px; }

.value-grid .value-item {
  position: relative;
  padding: 40px 24px 26px;
  text-align: center;
  transition: all .45s var(--ease);
}
.value-grid .value-item::after {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
  opacity: .5;
  transition: opacity .4s;
}
.value-grid .value-item:hover::after { opacity: 1; }
.value-grid .value-icon {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 46px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 16px;
}
.value-grid h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 440;
  letter-spacing: 0;
  color: var(--ink);
}
.value-grid p { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat { padding: 10px 24px; position: relative; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 1;
  color: var(--ink);
}
.stat .num .plus { font-style: italic; color: var(--gold); font-size: .6em; }
.stat .label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-deep);
  margin-top: 14px;
  display: inline-block;
  position: relative;
}
.stat .label::after {
  content: "";
  position: absolute; left: 50%; top: -9px;
  transform: translateX(-50%);
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: .5;
}

/* ============================================================
   PEOPLE CARDS
   ============================================================ */
.person-card {
  text-align: left;
  background: var(--ivory);
  transition: all .5s var(--ease);
}
.person-card:hover { transform: translateY(-6px); }
.person-card .p-photo { height: 320px; background: var(--bone); overflow: hidden; }
.person-card .p-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 10%; transition: transform 1s var(--ease); }
.person-card:hover .p-photo img { transform: scale(1.04); }
.person-card .p-body { padding: 22px 4px 8px; border-top: 1px solid var(--line-soft); }
.person-card h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 430;
}
.person-card .p-role {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 6px;
}
.person-card .p-bio { font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.6; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { margin-bottom: 40px; }
.faq-section > h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-ink-2);
  display: inline-block;
}
.accordion-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: var(--ivory);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.accordion-item.open { border-color: var(--gold-ink-2); box-shadow: var(--shadow-sm); }
.accordion-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 24px;
  font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  letter-spacing: 0; text-transform: none;
}
.accordion-q .ico {
  color: var(--gold); font-size: 22px; font-weight: 300;
  transition: transform .35s var(--ease); flex: 0 0 auto;
}
.accordion-item.open .accordion-q .ico { transform: rotate(45deg); }
.accordion-a { display: none; padding: 0 24px 24px; color: var(--body); font-size: 15.5px; }
.accordion-item.open .accordion-a { display: block; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 48px;
  max-width: 780px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15.5px;
  background: var(--ivory);
  transition: all .25s var(--ease);
  color: var(--ink);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px var(--gold-ink);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--muted); }
.nl-msg { margin-top: 10px; font-size: 14px; }
.nl-msg.ok { color: #7aa06a; }
.nl-msg.error { color: #c25a4e; }

.file-drop {
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 30px;
  text-align: center;
  color: var(--muted);
  background: var(--ivory);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.file-drop:hover, .file-drop.drag { border-color: var(--gold); background: var(--bone); }
.file-drop input[type="file"] { display: none; }

/* ============================================================
   NEWS / BLOG
   ============================================================ */
.post-card {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  transition: all .5s var(--ease);
}
.post-card:hover { transform: translateY(-6px); }
.post-card .post-media { height: 240px; background: var(--bone); overflow: hidden; }
.post-card .post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.04); }
.post-card .post-body { padding: 22px 4px 8px; flex: 1; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line-soft); }
.post-card .post-date {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep);
}
.post-card h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 440; line-height: 1.2;
}
.post-card .post-excerpt { font-size: 15px; color: var(--body); }
.post-card .post-more {
  margin-top: auto; padding-top: 18px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink);
  transition: color .3s;
}
.post-card .post-more:hover, .post-card:hover .post-more { color: var(--gold-deep); }

/* ============================================================
   TIMELINE / STEPS / DAYS
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.day-tile {
  position: relative;
  text-align: center;
  padding: 30px 18px;
  background: var(--ivory);
  border-top: 1px solid var(--gold);
  transition: all .4s var(--ease);
}
.day-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.day-tile .day-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
}
.day-tile h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 8px 0 6px;
}
.day-tile p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
}
.step:last-child { border-bottom: 0; }
.step .step-num {
  flex: 0 0 auto;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ivory);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
}
.step h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.step p { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   VIDEO FRAME
   ============================================================ */
.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9;
  background: var(--ink-2);
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; }
.video-frame .play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(2px);
  transition: background .3s;
}
.video-frame:hover .play-btn { background: rgba(255,255,255,.2); }
.video-frame .play-btn .circle {
  width: 92px; height: 92px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; padding-left: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease);
}
.video-frame:hover .play-btn .circle { transform: scale(1.06); }

/* Native demo film — replaceable media asset */
.film-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--ink-2);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.event-block {
  position: relative;
  padding: 30px 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  transition: all .4s var(--ease);
}
.event-block:hover { padding-left: 8px; }
.event-block .ev-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.event-block .crown {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
}
.event-block .ev-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 440;
}
.event-block .ev-month {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.event-block li { font-size: 15px; color: var(--ink-2); padding: 6px 0; border-top: 1px dashed var(--line-soft); }
.event-block li .loc { color: var(--muted); font-size: 13.5px; }

/* ============================================================
   SPONSORS / LOGO GRID
   ============================================================ */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sponsor-logo {
  display: flex; align-items: center; justify-content: center;
  min-height: 120px;
  padding: 24px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .04em;
  text-align: center;
  transition: all .4s var(--ease);
}
.sponsor-logo:hover { border-color: var(--gold-ink-2); box-shadow: var(--shadow-sm); transform: translateY(-4px); color: var(--ink); }

/* ============================================================
   ARTICLE / NEWS SINGLE
   ============================================================ */
.article-hero-img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; max-height: 520px; object-fit: cover; margin-bottom: 40px; }
.article-meta {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex; gap: 14px; align-items: center; margin-bottom: 20px;
}
.article-meta::after { content: ""; width: 60px; height: 1px; background: var(--gold); opacity: .5; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { margin-bottom: 22px; }
.article-body h2, .article-body h3 { margin: 40px 0 16px; }

/* ============================================================
   FEATURED TITLEHOLDER (Q&A)
   ============================================================ */
.qanda li { margin-bottom: 16px; }
.qanda .q {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 3px;
}
.qanda .a { color: var(--body); font-size: 15.5px; }

/* ============================================================
   CTA BAND — bright champagne, no dark blocks
   ============================================================ */
.cta-band {
  position: relative;
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(900px 500px at 50% -30%, rgba(232,216,177,.5), transparent 60%),
    linear-gradient(180deg, var(--bone), var(--sand));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cta-band .script-large { color: var(--gold-deep); }
.cta-band .section-title { color: var(--ink); }
.cta-band .lead { color: var(--body); }
.cta-band .btn-gold { box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 24px 60px -24px rgba(160,131,64,.45); }

/* ============================================================
   WA / CHAT WIDGET
   ============================================================ */
.wa-widget {
  position: fixed; bottom: 26px; right: 26px; z-index: 950;
  display: flex; align-items: center; gap: 12px;
}
.wa-widget .wa-label {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  padding: 11px 18px; border-radius: 999px;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  opacity: 0; transform: translateX(8px); pointer-events: none;
  transition: all .3s var(--ease);
}
.wa-widget:hover .wa-label { opacity: 1; transform: none; }
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -12px rgba(160,131,64,.5);
  transition: transform .3s var(--ease);
}
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   FOOTER — light ivory, charcoal text
   ============================================================ */
.site-footer {
  background: var(--bone);
  color: var(--body);
  border-top: 1px solid var(--line-soft);
}
.footer-top {
  padding: 80px 0 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.6fr;
  gap: 44px;
}
.site-footer h4 {
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-brand .logo-word {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .4em;
  font-size: 24px;
  color: var(--ink);
}
.footer-brand .logo-word em { color: var(--gold); font-style: normal; }
.footer-brand .logo-sub {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 340;
  color: var(--gold-deep);
  font-size: 19px;
  margin-top: 4px;
}
.footer-brand p { font-size: 14.5px; color: var(--body); margin: 18px 0; max-width: 320px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14.5px; color: var(--ink-2); transition: all .25s; }
.footer-links a:hover { color: var(--gold-deep); padding-left: 6px; }
.newsletter p { font-size: 14.5px; color: var(--body); margin-bottom: 18px; }
.newsletter form { display: flex; }
.newsletter input {
  flex: 1; padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink); border-radius: 0;
  font-family: var(--font-body); font-size: 15px;
}
.newsletter input::placeholder { color: var(--muted); }
.newsletter input:focus { outline: none; border-color: var(--gold); }
.newsletter button {
  border: 1px solid var(--gold-deep);
  background: var(--gold);
  color: #fff; padding: 0 26px; border-radius: 0;
  font-family: var(--font-head); font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  transition: background .25s;
}
.newsletter button:hover { background: var(--gold-deep); }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-deep); transition: all .25s var(--ease);
}
.footer-socials a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-socials svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
}
.footer-bottom .tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-deep);
}
.footer-bottom a:hover { color: var(--gold-deep); }

.footer-bottom .policy-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   LEGAL / POLICY PAGES
   ============================================================ */
.policy { max-width: 860px; margin: 0 auto; }
.policy .updated { font-size: 13.5px; color: var(--gold-deep); font-style: italic; margin-bottom: 8px; }
.policy h2 { font-family: var(--font-head); font-size: clamp(22px, 2.6vw, 28px); color: var(--ink-2); margin: 44px 0 14px; }
.policy p, .policy li { font-size: 15.5px; line-height: 1.75; color: var(--muted); }
.policy ul { padding-left: 22px; margin: 10px 0 18px; }
.policy li { margin-bottom: 8px; }
.policy a { color: var(--gold-deep); text-decoration: underline; }

/* ============================================================
   PHOTO BANDS — full-bleed campaign sections
   ============================================================ */
.photo-band {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 140px 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.photo-band .band-scrim {
  position: absolute; inset: 0;
  background: rgba(34,23,9,.4);
}
.photo-band .band-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #fff;
}
.band-copy--center { margin: 0 auto; text-align: center; }
.band-copy--left { text-align: left; }
.band-copy--right { margin-left: auto; text-align: left; }
.band-center .band-scrim { background: rgba(34,23,9,.55); }
.band-left .band-scrim { background: linear-gradient(100deg, rgba(34,23,9,.74) 0%, rgba(34,23,9,.52) 42%, rgba(34,23,9,.14) 78%, rgba(34,23,9,.06) 100%); }
.band-right .band-scrim { background: linear-gradient(280deg, rgba(34,23,9,.74) 0%, rgba(34,23,9,.52) 42%, rgba(34,23,9,.14) 78%, rgba(34,23,9,.06) 100%); }
.band-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: inline-block;
}
.band-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: #fff;
  text-wrap: balance;
}
.band-text {
  margin: 26px 0 40px;
  font-size: 17px;
  max-width: 540px;
  color: rgba(255,255,255,.9);
}
.band-copy--center .band-text { margin-left: auto; margin-right: auto; }
.band-gold { color: var(--gold-light); }
.band-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.band-copy--center .band-ctas { justify-content: center; }
.photo-band .btn-white { color: #fff; border-color: rgba(255,255,255,.7); }
.photo-band .btn-white::after { color: var(--gold-light); }
.photo-band .btn-white:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.photo-band .btn-white:hover::after { color: var(--gold-light); }

/* ============================================================
   FEMM EXPERIENCE — asymmetric editorial mosaic
   ============================================================ */
.exp-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 300px 300px;
  grid-template-areas:
    "a a a a a b b b b b b b"
    "a a a a a c c c c d d d"
    "e e e e e e e e f f f f";
  gap: 16px;
}
.exp-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: var(--shadow-xs);
}
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.exp-card:hover img { transform: scale(1.06); }
.exp-card .exp-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,13,4,0) 34%, rgba(20,13,4,.16) 58%, rgba(20,13,4,.66) 100%);
  transition: background .5s;
}
.exp-card .exp-copy {
  position: absolute;
  left: 26px; right: 26px; bottom: 24px;
  z-index: 2;
  color: #fff;
}
.exp-card .exp-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  line-height: 1;
  color: var(--gold-light);
  display: inline-block;
  margin-bottom: 10px;
}
.exp-card .exp-rule {
  display: block;
  width: 34px; height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
  transition: width .6s var(--ease);
}
.exp-card:hover .exp-rule { width: 64px; }
.exp-card .exp-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 440;
  color: #fff;
  letter-spacing: 0;
}
.exp-card .exp-copy p {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  margin-top: 7px;
  max-width: 380px;
}
.exp-a { grid-area: a; }
.exp-b { grid-area: b; }
.exp-c { grid-area: c; }
.exp-d { grid-area: d; }
.exp-e { grid-area: e; }
.exp-f { grid-area: f; }

/* ============================================================
   COMPETITION — seven moments
   ============================================================ */
.moments-list { margin: 0 0 34px; }
.moments-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}
.moments-list li:last-child { border-bottom: 0; }
.moments-list .m-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.1;
  color: var(--gold);
  flex: 0 0 46px;
}
.moments-list h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.moments-list p { font-size: 14.5px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   TITLEHOLDERS & STORIES
   ============================================================ */
.tale-quote {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.3vw, 27px);
  font-weight: 360;
  line-height: 1.5;
  color: var(--ink-2);
  border-left: 1px solid var(--gold);
  padding: 6px 0 6px 24px;
  margin: 8px 0 32px;
}
.winners-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 80px;
  padding-top: 8px;
}
.winner-chip {
  display: flex;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--gold);
  padding: 26px 6px 12px;
  transition: transform .45s var(--ease);
}
.winner-chip:hover { transform: translateY(-4px); }
.winner-chip .w-year {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 42px;
  line-height: 1;
  color: var(--gold);
  flex: 0 0 auto;
}
.winner-chip .w-body { border-left: 1px solid var(--line-soft); padding-left: 22px; }
.winner-chip h4 { font-family: var(--font-display); font-size: 23px; font-weight: 440; }
.winner-chip p {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 5px;
}

/* ============================================================
   REVEAL MOTION — subtle, no blur, no glitter
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.revealed { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4, .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .events-wrap { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
    padding: 12px 24px 24px;
    max-height: 82vh; overflow-y: auto;
    align-items: stretch;
  }
  .main-nav.open .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: none;
    padding: 0 0 0 18px;
  }
  .main-nav.open .dropdown::before { display: none; }
  .main-nav.open > li > a::after { display: none; }
  .nav-cta { margin: 14px 0 0; }
  .split { grid-template-columns: 1fr; gap: 56px; }
  .split-media .badge-float { left: 20px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 8px 0; }
  .stat:nth-child(3) { border-left: 0; }
  .hero { min-height: auto; }
  .exp-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-template-areas:
      "a a"
      "a a"
      "b b"
      "c c"
      "d d"
      "e e"
      "f f";
  }
  .exp-card { min-height: 320px; }
  .exp-a { min-height: 460px; }
  .photo-band { min-height: 0; padding: 120px 0; }
  .winners-row { margin-top: 60px; }
}

@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .split-media img { height: 380px; }
  .events-wrap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 64px 0; }
  .hero { padding: 90px 0 110px; }
  .form-card { padding: 30px 24px; }
  .stat { padding: 14px 8px; }
  .stat + .stat { border-left: 0; }
  .sec-head { align-items: center; }
  .sec-head .sec-num { display: none; }
  .story-stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .story-stats .stat { padding: 6px 18px 6px 0; }
  .story-stats .stat + .stat { border-left: 1px solid var(--line); padding-left: 18px; }
  .story-stats .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .exp-mosaic { grid-template-columns: 1fr; grid-template-areas: "a" "b" "c" "d" "e" "f"; }
  .exp-card { min-height: 380px; }
  .exp-a { min-height: 480px; }
  .moments-list .m-num { flex-basis: 38px; }
  .photo-band { padding: 96px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Legacy hero script label (interior heroes) */
.hero .hero-script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 340;
  color: var(--gold-deep);
  font-size: clamp(24px, 3.6vw, 40px);
  margin: 20px 0 6px;
}

