/* ============================================================
   THE EDITORIAL — Variation 4: Dark · Cinematic · Magazine
   Daniela Paz Arévalo | Transformation Keynote Speaker
   Hero: layered editorial typography + speaker photo
   Typography: DM Serif Display · Playfair Display · DM Sans
   WCAG 2.1 AA verified on all text/bg pairs
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ── */
:root {
  /* Backgrounds */
  --bg-primary:    #0D0C0A;
  --bg-secondary:  #141210;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-elevated:   rgba(196,149,58,0.05);

  /* Gold accent */
  --accent:        #C4953A;   /* 8.1:1 on #0D0C0A ✅ */
  --accent-lt:     #E2B96A;   /* 11.6:1 on #0D0C0A ✅ */
  --accent-dk:     #A07828;

  /* Text — WCAG AA verified */
  --text-primary:  #F2EDE4;   /* 17.4:1 ✅ */
  --text-body:     #B8AFA2;   /* 8.2:1 ✅ */
  --text-muted:    #8A8178;   /* 5.1:1 ✅ */

  /* Borders */
  --border:        rgba(196,149,58,0.14);
  --border-bright: rgba(196,149,58,0.38);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.5);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.6);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.7);
  --shadow-xl:  0 16px 80px rgba(0,0,0,0.8);

  /* Glow */
  --glow-gold: 0 0 36px rgba(196,149,58,0.28);

  /* Button text (always dark on gold for contrast) */
  --btn-text: #1A1510;   /* 7.9:1 on #C4953A ✅ */

  /* States */
  --error:   #F87171;  /* 7.1:1 ✅ */
  --success: #4ADE80;

  /* Typography — Rethink Sans for headings/hero, DM Sans for body */
  --font-rethink:  'Rethink Sans', system-ui, sans-serif;
  --font-display:  'Rethink Sans', system-ui, sans-serif;
  --font-heading:  'Rethink Sans', system-ui, sans-serif;
  --font-sans:     'DM Sans', system-ui, sans-serif;

  /* Type scale */
  --text-xs:   0.875rem;
  --text-sm:   clamp(0.875rem, 2vw, 1rem);
  --text-base: clamp(1rem, 2.5vw, 1.0625rem);
  --text-lg:   clamp(1.125rem, 2.5vw, 1.25rem);
  --text-xl:   clamp(1.25rem, 3vw, 1.5rem);
  --text-2xl:  clamp(1.5rem, 4vw, 2rem);
  --text-3xl:  clamp(1.875rem, 5vw, 2.5rem);
  --text-4xl:  clamp(2.25rem, 5.5vw, 3.25rem);

  /* Spacing — generous for breathable feel */
  --section-py: clamp(6rem, 12vw, 11rem);

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-pill:100px;

  /* Transitions */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast:  0.15s;
  --duration-base:  0.3s;
  --duration-slow:  0.5s;
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--text-body);
  background: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

/* ── 3. ACCESSIBILITY ── */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--accent); color: var(--btn-text); padding: 0.75rem 1.25rem; border-radius: var(--radius-sm); font-weight: 600; z-index: 9999; transition: top 0.15s; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── 4. LAYOUT ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; position: relative; z-index: 1; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1280px) { .container { max-width: 1440px; padding: 0 2rem; } }

.section { padding: var(--section-py) 0; position: relative; z-index: 1; }
.section--alt { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── 5. TYPOGRAPHY UTILITIES ── */
.section-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
/* Gold rule after section label */
.section-label::after {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-sans);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--text-body);
  max-width: 52ch;
  line-height: 1.7;
}
.section-header { margin-bottom: clamp(4rem, 8vw, 6rem); }
.section-header .section-subtitle { margin-top: 0.75rem; }

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans); font-size: 1.125rem; font-weight: 600; letter-spacing: 0.02em;
  border-radius: 0;
  transition: all var(--duration-base) var(--ease-out);
  min-height: 52px; white-space: nowrap; position: relative; overflow: hidden;
}
/* Primary: exact gold gradient — site-wide */
.btn--primary {
  border-radius: 100px;
  background: linear-gradient(90deg, #9C6300 2.4%, #C07B03 12.98%, #D89B18 69.71%, #E8C860 100%);
  color: #000000;
  border: none;
}
.btn--primary:hover, .btn--primary:focus-visible {
  filter: brightness(1.1);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(156,99,0,0.5);
}
.btn--primary, .btn--primary:hover, .btn--primary:focus-visible { color: #000000 !important; }

/* Secondary: gold gradient fill at ~18% opacity + gold gradient border via CSS mask.
   Mask technique isolates the border ring from the fill area — no compositing bleed-through.
   The ::before pseudo-element draws the 1px gradient border ring only; the element
   background is the translucent gold fill, visible over whatever is behind it (hero image). */
.btn--secondary {
  border-radius: 100px;
  border: none;
  background: linear-gradient(90deg,
    rgba(156,99,0,0.18)   2.4%,
    rgba(192,123,3,0.18)  12.98%,
    rgba(216,155,24,0.18) 69.71%,
    rgba(232,200,96,0.18) 100%
  );
  color: #ffffff;
}
.btn--secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, #9C6300 2.4%, #C07B03 12.98%, #D89B18 69.71%, #E8C860 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(156,99,0,0.25);
}

/* Outline: legacy alias kept for any missed instances */
.btn--outline {
  border-radius: 100px;
  border: 1px solid #9C6300;
  background: linear-gradient(90deg,
    rgba(156,99,0,0.20)   2.4%,
    rgba(192,123,3,0.20)  12.98%,
    rgba(216,155,24,0.20) 69.71%,
    rgba(232,200,96,0.20) 100%
  );
  color: var(--text-primary);
}
.btn--outline:hover, .btn--outline:focus-visible {
  border-color: #E8C860;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(156,99,0,0.25);
}

/* Hero buttons: shorter height (10px v-padding), natural content width */
.btn--hero {
  padding: 10px 32px;
  font-size: 21px;
  font-weight: 500;
  font-family: 'Rethink Sans', system-ui, sans-serif;
  min-height: auto;
}

.btn--lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn--full { width: 100%; }
.btn--pill { border-radius: 100px; }

/* ── 7. NAVIGATION ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,12,10,0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--duration-base), border-color var(--duration-base);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13,12,10,0.88);
  border-bottom-color: var(--border);
}

/* Light-background adaptation — add data-nav-theme="light" to any section with a white/light bg */
.site-header.is-light-bg { background: rgba(255,255,255,0.70); }
.site-header.is-light-bg.scrolled { background: rgba(255,255,255,0.92); border-bottom-color: rgba(0,0,0,0.10); }
.site-header.is-light-bg .nav__link { color: rgba(0,0,0,0.80); }
.site-header.is-light-bg .nav__link:hover,
.site-header.is-light-bg .nav__link.active { color: rgba(0,0,0,1.0); }
.site-header.is-light-bg .nav__logo-name { color: var(--accent-dk); }
.site-header.is-light-bg .nav__links li + li::before { color: rgba(0,0,0,0.30); }

.nav__inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.nav__logo { flex-shrink: 0; display: flex; align-items: center; }
.nav__logo-name { font-family: 'Avenir Next', 'Avenir', 'Century Gothic', 'Futura', sans-serif; font-size: 1.3125rem; font-weight: 400; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase; line-height: 1; }
.nav__links { display: none; gap: 0; align-items: center; margin-left: auto; }
@media (min-width: 1024px) { .nav__links { display: flex; } }
/* Dot separators between links */
.nav__links li { display: flex; align-items: center; }
.nav__links li + li::before { content: '·'; color: rgba(255,255,255,0.30); padding: 0 0.375rem; font-size: 0.9rem; }
.nav__link { font-family: 'Rethink Sans', system-ui, sans-serif; font-size: 1.125rem; font-weight: 400; letter-spacing: 0.05em; color: rgba(255,255,255,0.80); padding: 0.5rem 0.5rem; transition: color var(--duration-fast); text-transform: uppercase; }
.nav__link:hover, .nav__link.active { color: rgba(255,255,255,1.0); }
.nav__cta { display: none; margin-left: 1.5rem; padding: 8px 16px; font-size: 1rem; min-height: auto; font-weight: 600; }
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }

.nav__hamburger { display: flex; flex-direction: column; gap: 5px; margin-left: auto; padding: 0.5rem; }
@media (min-width: 1024px) { .nav__hamburger { display: none; } }
.nav__bar { display: block; width: 22px; height: 1.5px; background: var(--text-body); transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-fast); }
.nav-open .nav__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nav__bar:nth-child(2) { opacity: 0; }
.nav-open .nav__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile { position: fixed; inset: 0; background: rgba(13,12,10,0.98); backdrop-filter: blur(24px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 99; transform: translateY(-100%); visibility: hidden; transition: transform var(--duration-slow) var(--ease-out); pointer-events: none; }
.nav-open .nav__mobile { transform: translateY(0); pointer-events: auto; visibility: visible; }
.nav__mobile-links { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.nav__mobile-link { font-family: var(--font-sans); font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700; color: var(--text-primary); transition: color var(--duration-fast); letter-spacing: -0.03em; }
.nav__mobile-link:hover { color: var(--accent); }
.nav__mobile-cta { margin-top: 0.5rem; }

/* ── 8. HERO — FULL-BLEED PHOTO ── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000000;
  display: flex; flex-direction: column;
}

/* Layer 1: full-bleed background photo */
.hero__bg-photo {
  position: absolute; inset: 0; z-index: 1;
}
.hero__bg-photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center top;
}

/* Layer 2: subtle bottom vignette — remove when user provides new photo with overlay baked in */
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(13,12,10,0.6) 75%,
    rgba(13,12,10,0.92) 100%
  );
  pointer-events: none;
}

/* Layer 3: content pinned to bottom */
.hero__content-layer {
  position: relative; z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 88px;
  padding-bottom: max(1rem, calc(36vh - 434px));
  min-height: calc(100vh - 60px);
}
/* 3-child grid: hero__left (col1/row1), hero__right (col2/row1), hero__ctas (col1/row2) */
.hero__content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 4rem;
  margin-bottom: 0;
}
.hero__left  { grid-column: 1; grid-row: 1; padding-right: 2rem; align-self: end; }
.hero__right { grid-column: 2; grid-row: 1; align-self: end; display: flex; align-items: flex-end; }
.hero__ctas  { grid-column: 1; grid-row: 2; }

/* Eyebrow — hidden per design */
.hero__eyebrow {
  display: none;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

/* Headline wrapper — drop-shadow applied here so it renders correctly on gradient text */
.hero__headline {
  display: block;
  margin: 0;
  filter: drop-shadow(0 0 28px rgba(0, 0, 0, 0.90));
}

/* Line 1: "Turn Setbacks" — regular weight, solid white, smaller of the two */
.hero__line-1 {
  display: block;
  font-family: 'Rethink Sans', system-ui, sans-serif;
  font-size: clamp(2rem, 5.3vw, 80px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.85);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

/* Line 2: "Into Transformation." — bold weight, near-full white, larger of the two */
.hero__line-2 {
  display: block;
  font-family: 'Rethink Sans', system-ui, sans-serif;
  font-size: clamp(2.25rem, 5.8vw, 88px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.95);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.95);
}

/* "Transform" within line 2 — bold only for this word */
.hero__bold { font-weight: 700; }

/* Subtle golden bloom behind "Transformation." */
.hero__glow-word {
  text-shadow:
    0 0 80px rgba(216, 155, 24, 0.50),
    0 0 50px rgba(216, 155, 24, 0.35),
    0 0 30px rgba(216, 155, 24, 0.20);
}

/* Body text — right column */
.hero__sub {
  font-family: 'Rethink Sans', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.80);
  text-shadow: 0 0 34.533px #000;
  align-self: stretch;
  max-width: none;
  margin: 0;
}

/* CTAs row — natural content widths, no stretching */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
  padding-top: 0.5rem;
}

/* Trust bar */
.hero__trust-bar {
  position: relative; z-index: 5;
  border-top: 1px solid var(--border);
  padding: 1.125rem 0;
  margin-top: 3rem;
  background: rgba(13,12,10,0.7);
  backdrop-filter: blur(8px);
}
.hero__trust-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.875rem 2.5rem; }
.trust-label { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.trust-list { display: flex; flex-wrap: wrap; gap: 0.625rem 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: var(--text-sm); font-weight: 400; color: var(--text-body); }
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* Hero mobile breakpoint */
@media (max-width: 767px) {
  .hero { min-height: auto; }
  .hero__content-layer { padding-top: 80px; padding-bottom: 0; }
  .hero__content-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  /* Mobile order: title → body → buttons */
  .hero__left  { grid-column: 1; grid-row: 1; order: 1; padding-right: 0; }
  .hero__right { grid-column: 1; grid-row: 2; order: 2; }
  .hero__ctas  { grid-column: 1; grid-row: 3; order: 3; padding-top: 0; }
  /* Scale down headline for mobile — restore wrapping */
  .hero__line-1 { font-size: clamp(1.75rem, 9vw, 42px); white-space: normal; }
  .hero__line-2 { font-size: clamp(2rem, 10vw, 48px); white-space: normal; }
  .hero__sub { font-size: clamp(1rem, 4vw, 24px); }
}

/* ── 9. VALUE PILLARS ── */
.value-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .value-grid { grid-template-columns: repeat(4, 1fr); } }

.value-intro { font-size: var(--text-lg); color: var(--text-body); max-width: 52ch; margin-top: 0.75rem; }

.value-card {
  background: var(--bg-primary);
  padding: 2.25rem 2rem;
  position: relative;
  transition: background var(--duration-base);
}
/* Gold left accent bar */
.value-card::before {
  content: '';
  position: absolute; top: 2.25rem; left: 0;
  width: 2px; height: 2rem;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--duration-base), height var(--duration-base) var(--ease-out);
}
.value-card:hover { background: rgba(196,149,58,0.03); }
.value-card:hover::before { opacity: 1; height: 3rem; }
.value-card--featured { background: rgba(196,149,58,0.03); }
.value-card--featured::before { opacity: 0.5; height: 3rem; }
.value-card__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--accent); }
.value-card__title { font-family: var(--font-sans); font-size: var(--text-xl); font-weight: 700; color: var(--text-primary); margin-bottom: 0.625rem; letter-spacing: -0.02em; }
.value-card__body { font-size: var(--text-sm); color: var(--text-body); line-height: 1.75; }

/* ── 10. SPEAKING TOPICS ── */
.topics-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 2.5rem; }
@media (min-width: 768px) { .topics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .topics-grid { grid-template-columns: repeat(3, 1fr); } }

.topic-card {
  background: var(--bg-primary);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.875rem;
  position: relative;
  overflow: hidden;
  transition: background var(--duration-base);
}
/* Bottom gold bar slides in on hover */
.topic-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}
.topic-card:hover { background: rgba(196,149,58,0.03); }
.topic-card:hover::after { transform: scaleX(1); }
.topic-card--signature { background: rgba(196,149,58,0.03); }
.topic-card--signature::after { transform: scaleX(1); opacity: 0.5; }
.topic-card__badge { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-family: var(--font-sans); }
.topic-card__title { font-family: var(--font-sans); font-size: var(--text-xl); font-weight: 700; color: var(--text-primary); line-height: 1.2; letter-spacing: -0.02em; }
.topic-card__desc { font-size: var(--text-sm); color: var(--text-body); line-height: 1.75; flex: 1; }
.topic-card__formats { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.topic-card__formats span { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); background: transparent; padding: 0.2rem 0.5rem; border: 1px solid var(--border); letter-spacing: 0.06em; }
.topic-card__cta { font-size: var(--text-sm); font-weight: 400; color: var(--accent); transition: color var(--duration-fast); margin-top: auto; letter-spacing: 0.02em; }
.topic-card__cta:hover { color: var(--accent-lt); }

.topics-custom {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start;
}
@media (min-width: 768px) { .topics-custom { flex-direction: row; align-items: center; justify-content: space-between; } }
.topics-custom__text { font-size: var(--text-base); color: var(--text-body); max-width: 50ch; }
.topics-custom__text strong { color: var(--text-primary); }

/* ── 11. EVENT FORMATS ── */
.formats-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .formats-grid { grid-template-columns: repeat(2, 1fr); } }

.format-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: border-color var(--duration-base); }
.format-card:hover { border-color: var(--border-bright); }
/* Top accent line */
.format-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--accent); opacity: 0; transition: opacity var(--duration-base); }
.format-card:hover::before { opacity: 1; }
.format-card__icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.5rem; }
.format-card__title { font-family: var(--font-sans); font-size: var(--text-2xl); font-weight: 700; color: var(--text-primary); margin-bottom: 0.875rem; letter-spacing: -0.02em; }
.format-card__desc { font-size: var(--text-sm); color: var(--text-body); line-height: 1.75; margin-bottom: 1.5rem; }
.format-card__list { display: flex; flex-direction: column; gap: 0.5rem; }
.format-card__list li { font-size: var(--text-sm); color: var(--text-body); padding-left: 1rem; position: relative; }
.format-card__list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-size: 0.8em; top: 0.2em; opacity: 0.7; }
.formats-note { font-size: var(--text-sm); color: var(--text-muted); text-align: center; }
.formats-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ── 12. ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about__images { position: relative; }
.about__image-primary-wrap { overflow: hidden; background: var(--bg-elevated); aspect-ratio: 3/4; border: 1px solid var(--border); }
.about__image-primary { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about__image-secondary-wrap { position: absolute; bottom: -2rem; right: -1.5rem; width: 45%; overflow: hidden; border: 3px solid var(--bg-primary); background: var(--bg-elevated); aspect-ratio: 1; display: none; }
@media (min-width: 768px) { .about__image-secondary-wrap { display: block; } }
.about__image-secondary { width: 100%; height: 100%; object-fit: cover; }

/* Pull-quote hook */
.about__hook { font-family: var(--font-sans); font-size: var(--text-xl); font-weight: 600; font-style: italic; color: var(--text-primary); margin-bottom: 1.5rem; line-height: 1.5; padding-left: 1.25rem; border-left: 2px solid var(--accent); }
.about__bio { display: flex; flex-direction: column; gap: 1rem; color: var(--text-body); font-size: var(--text-sm); line-height: 1.85; margin-bottom: 2rem; }
.about__values { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.about__values span { font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--border); padding: 0.35rem 0.875rem; }

/* ── 13. MEDIA ── */
.media-video { margin-bottom: 2rem; }
.media-video__frame { width: 100%; aspect-ratio: 16/9; background: var(--bg-card); overflow: hidden; position: relative; border: 1px solid var(--border); }
.media-video__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; }
.media-video__play-btn { width: 72px; height: 72px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; color: var(--btn-text); cursor: pointer; transition: transform var(--duration-base) var(--ease-out), background var(--duration-base); }
.media-video__play-btn:hover { transform: scale(1.1); background: var(--accent-lt); }
.media-video__placeholder-text { text-align: center; font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; }
.media-video__placeholder-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.media-gallery { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 2rem; }
@media (min-width: 640px) { .media-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .media-gallery { grid-template-columns: repeat(3, 1fr); } }
.media-gallery__item { background: var(--bg-card); aspect-ratio: 4/3; overflow: hidden; transition: opacity var(--duration-base); }
.media-gallery__item:hover { opacity: 0.85; }
.media-gallery__item img { width: 100%; height: 100%; object-fit: cover; }

.media-downloads { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border); padding: 1.75rem 2rem; }
@media (min-width: 640px) { .media-downloads { flex-direction: row; align-items: center; justify-content: space-between; } }
.media-downloads__label { font-size: var(--text-sm); font-weight: 500; color: var(--text-body); }
.media-downloads__links { display: flex; flex-wrap: wrap; gap: 1rem; }
.media-downloads__link { display: flex; align-items: center; gap: 0.5rem; font-size: var(--text-sm); font-weight: 400; color: var(--accent); border: 1px solid var(--border-bright); padding: 0.5rem 1.25rem; transition: background var(--duration-fast), color var(--duration-fast); }
.media-downloads__link:hover { background: var(--accent); color: var(--btn-text); }

/* ── 14. TESTIMONIALS ── */
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 1.25rem; transition: transform var(--duration-slow) var(--ease-out); }
.testimonial-card { min-width: 100%; background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem 2.25rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; position: relative; }
@media (min-width: 768px) { .testimonial-card { min-width: calc(50% - 0.625rem); } }
@media (min-width: 1024px) { .testimonial-card { min-width: calc(33.333% - 0.833rem); } }

/* Large decorative quotation mark */
.testimonial-card__mark {
  font-family: var(--font-sans);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.2;
  font-weight: 800;
  pointer-events: none;
  user-select: none;
}
.testimonial-card__quote p { font-family: var(--font-sans); font-size: var(--text-base); color: var(--text-body); line-height: 1.8; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 1rem; margin-top: auto; }
.testimonial-card__avatar { width: 44px; height: 44px; min-width: 44px; background: var(--bg-elevated); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent); font-family: var(--font-display); font-size: 1rem; overflow: hidden; }
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__meta { display: flex; flex-direction: column; gap: 0.15rem; }
.testimonial-card__meta strong { font-size: var(--text-sm); color: var(--text-primary); font-weight: 500; }
.testimonial-card__meta span { font-size: var(--text-xs); color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

.testimonials-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testimonials-btn { width: 44px; height: 44px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast); }
.testimonials-btn:hover { border-color: var(--accent); color: var(--accent); }
.testimonials-dots { display: flex; gap: 0.5rem; }
.testimonial-dot { width: 8px; height: 8px; background: var(--border); cursor: pointer; transition: background var(--duration-fast), width var(--duration-fast); }
.testimonial-dot.active { background: var(--accent); width: 24px; }
.testimonials-cta { margin-top: 3rem; text-align: center; }

/* ── 15. FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.375rem 0; font-family: var(--font-sans); font-size: var(--text-base); font-weight: 600; color: var(--text-primary); cursor: pointer; min-height: 56px; transition: color var(--duration-fast); }
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--accent); }
.faq-chevron { flex-shrink: 0; transition: transform var(--duration-base) var(--ease-out); color: var(--text-muted); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer-wrap { max-height: 0; overflow: hidden; transition: max-height var(--duration-slow) var(--ease-out); }
.faq-answer-wrap.open { max-height: 600px; }
.faq-answer { padding: 0 0 1.5rem; font-size: var(--text-sm); color: var(--text-body); line-height: 1.85; }

/* ── 16. CONTACT / FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.5fr; gap: 5rem; } }
.contact__sub { font-size: var(--text-base); color: var(--text-body); margin: 1rem 0 2rem; max-width: 40ch; line-height: 1.7; }
.contact__info { margin-bottom: 2rem; }
.contact__info-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.contact__info-item svg { color: var(--accent); flex-shrink: 0; }
.contact__email { font-weight: 500; color: var(--accent); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.contact__response { font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.5rem; letter-spacing: 0.06em; }
.contact__social { margin-top: 1.5rem; }
.contact__social-label { font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.875rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 40px; height: 40px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: border-color var(--duration-fast), color var(--duration-fast); }
.social-link:hover { border-color: var(--accent); color: var(--accent); }

/* Form — editorial: borderless inputs, only bottom line */
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.form-label--optional { text-transform: none; letter-spacing: 0; opacity: 0.5; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  transition: border-color var(--duration-fast);
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-bottom-color: var(--accent); }
.form-input.error, .form-select.error, .form-textarea.error { border-bottom-color: var(--error); }
.form-select { cursor: pointer; }
.form-select option { background: #1C1A16; color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: var(--text-xs); color: var(--error); min-height: 1.2em; }
.form-disclaimer { font-size: var(--text-xs); color: var(--text-muted); text-align: center; margin-top: 0.5rem; }

.form-success { background: var(--bg-card); border: 1px solid var(--border); padding: 3rem 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.form-success[hidden] { display: none; }
.form-success__icon { color: var(--success); }
.form-success h3 { font-family: var(--font-sans); font-size: var(--text-xl); font-weight: 700; color: var(--text-primary); }
.form-success p { font-size: var(--text-sm); color: var(--text-body); max-width: 40ch; line-height: 1.7; }

/* ── 17. FOOTER ── */
.site-footer { background: var(--bg-secondary); color: var(--text-muted); padding: 4rem 0 0; border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .footer__inner { grid-template-columns: 1fr auto; } }
.footer__logo { font-family: var(--font-sans); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); display: block; margin-bottom: 0.375rem; letter-spacing: -0.01em; }
.footer__tagline { font-family: var(--font-sans); font-size: var(--text-sm); color: var(--accent); margin-bottom: 1.5rem; font-style: italic; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__nav ul { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .footer__nav ul { align-items: flex-end; } }
.footer__nav a { font-size: 0.875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); transition: color var(--duration-fast); }
.footer__nav a:hover { color: var(--accent); }
.footer__bottom { padding: 1.25rem 0; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 768px) { .footer__bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer__copy { font-size: var(--text-xs); color: var(--text-muted); letter-spacing: 0.04em; }
.footer__keywords { font-size: var(--text-xs); color: var(--text-muted); opacity: 0.4; }

/* ── 18. VIDEO MODAL ── */
.video-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.video-modal[hidden] { display: none; }
.video-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.96); cursor: pointer; }
.video-modal__content { position: relative; width: 100%; max-width: 900px; z-index: 1; }
.video-modal__close { position: absolute; top: -3rem; right: 0; color: var(--text-muted); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: color var(--duration-fast); }
.video-modal__close:hover { color: var(--accent); }
.video-modal__embed { aspect-ratio: 16/9; background: #000; overflow: hidden; border: 1px solid var(--border); }
.video-modal__embed iframe { width: 100%; height: 100%; border: none; }
.video-modal__embed video { width: 100%; height: 100%; display: block; border: none; }

/* ── 19. COPY TOOLTIP ── */
.copy-tooltip { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--btn-text); padding: 0.625rem 1.25rem; font-size: var(--text-sm); font-weight: 500; z-index: 300; pointer-events: none; }
.copy-tooltip[hidden] { display: none; }

/* ── 20. SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, #A07828, #E2B96A, #F0CC88, #C4953A);
  z-index: 1000;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ── 21. ENHANCED INTERACTIONS ── */
/* Card hover — lift + gold border glow */
.value-card {
  transition: background var(--duration-base), transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 40px rgba(196,149,58,0.12), 0 0 0 1px rgba(196,149,58,0.25);
}
.topic-card {
  transition: background var(--duration-base), transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base);
}
.topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 40px rgba(196,149,58,0.12), 0 0 0 1px rgba(196,149,58,0.25);
}
.format-card {
  transition: border-color var(--duration-base), transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base);
}
.format-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 4px 40px rgba(196,149,58,0.12);
}

/* Testimonial card hover */
.testimonial-card {
  transition: border-color var(--duration-base), box-shadow var(--duration-base);
}
.testimonial-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 0 1px rgba(196,149,58,0.2), 0 4px 24px rgba(196,149,58,0.08);
}

/* Media gallery — scale on hover */
.media-gallery__item {
  transition: opacity var(--duration-base), transform var(--duration-base) var(--ease-out);
  overflow: hidden;
}
.media-gallery__item:hover { opacity: 1; transform: scale(1.02); }
.media-gallery__item img {
  transition: transform var(--duration-slow) var(--ease-out);
}
.media-gallery__item:hover img { transform: scale(1.05); }

/* Section label rule — animated width on scroll-in */
.section-label::after {
  width: 0;
  transition: width 0.6s var(--ease-out) 0.3s;
}
.animate-on-scroll.is-visible .section-label::after { width: 28px; }
.section-label.is-visible::after { width: 28px; }

/* Download links — gradient border on hover */
.media-downloads__link {
  transition: background var(--duration-fast), color var(--duration-fast), box-shadow var(--duration-fast);
}
.media-downloads__link:hover {
  background: linear-gradient(135deg, #A07828, #E2B96A);
  color: var(--btn-text);
  box-shadow: 0 4px 16px rgba(196,149,58,0.3);
}

/* ── 22. SCROLL ANIMATIONS ── */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity var(--duration-slow) var(--ease-out) var(--delay, 0s), transform var(--duration-slow) var(--ease-out) var(--delay, 0s); }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* ── 23. REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .animate-on-scroll { opacity: 1; transform: none; }
  .testimonials-track { transition: none; }
  .scroll-progress { transition: none; }
}

/* ── 24. PRINT ── */
@media print {
  body { color: #000; background: #fff; }
  .site-header, .btn, .video-modal, .testimonials-controls, .hero__bg-photo, .hero__overlay, .scroll-progress { display: none !important; }
  .section, .section--alt { background: #fff; border: none; }
  .hero { min-height: auto; }
  .hero__content-layer { display: block; padding-top: 0; }
}
