/* =====================================================================
   DCD 2026 — Components
   Header, hero, audience-card, awards-rail, testimonial, CTA buttons,
   FAQ accordion, footer. Per visual-system module.
   ===================================================================== */

/* ── Eyebrow ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--color-gold-deep);
  margin-bottom: var(--space-3);
}
.is-dark .eyebrow { color: var(--color-gold); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  min-width: 200px;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-cta);
  text-decoration: none;
  border: 1px solid var(--color-cta-border);
  border-radius: var(--radius);
  background: var(--color-cta-bg);
  color: var(--color-cta-text);
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible {
  background: var(--color-cta-bg-hover);
  color: var(--color-cta-text-hover);
  border-color: var(--color-cta-bg-hover);
  outline: none;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { box-shadow: 0 0 0 3px rgba(201,162,91,0.32); }

.btn-secondary {
  background: transparent;
  color: var(--color-link);
  border-color: var(--color-link);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--color-link);
  color: var(--color-cream);
  border-color: var(--color-link);
}
.is-dark .btn-secondary {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.is-dark .btn-secondary:hover, .is-dark .btn-secondary:focus-visible {
  background: var(--color-gold);
  color: var(--color-ink);
  border-color: var(--color-gold);
}

.btn-tertiary {
  display: inline-flex;
  gap: var(--space-2);
  background: transparent;
  color: var(--color-link);
  border: 0;
  padding: var(--space-2) 0;
  min-height: auto;
  min-width: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.btn-tertiary:hover { color: var(--color-link-hover); background: transparent; }

@media (max-width: 480px) {
  .btn { width: 100%; min-width: 0; }
}

/* ── Trust strip ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--color-bg-elev);
  border-top: 1px solid var(--color-gold-soft);
  border-bottom: 1px solid var(--color-gold-soft);
  padding: var(--space-3) 0;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--ls-press);
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2) var(--space-5);
}
.trust-strip span { white-space: nowrap; }

/* ── Site header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  width: 100%;
  background: var(--color-bg);
  transition: background-color var(--t-medium) var(--ease), box-shadow var(--t-medium) var(--ease);
}
.site-header.over-hero {
  background: transparent;
}
.site-header.scrolled {
  background: var(--color-bg);
  box-shadow: var(--shadow-1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-mobile);
  gap: var(--space-4);
}
@media (min-width: 1024px) {
  .site-header .container { height: var(--header-height); }
}

.site-logo a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.site-logo img {
  height: 44px;
  width: auto;
}
@media (min-width: 1024px) {
  .site-logo img { height: 56px; }
}

.site-logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--color-text);
  white-space: nowrap;
}
.site-header.over-hero .site-logo-text { color: var(--color-cream); }

/* ── Primary nav ─────────────────────────────────────────────── */
.nav-primary {
  display: none;
}
/* Sub-menus hidden by default at every viewport */
.nav-primary .sub-menu,
.mobile-drawer .sub-menu {
  display: none;
}
@media (min-width: 1024px) {
  .nav-primary { display: flex; }
  .nav-primary > ul {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-primary > ul > li {
    position: relative;
    list-style: none;
  }
  .nav-primary a {
    display: inline-block;
    padding: var(--space-3) var(--space-2);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease);
    white-space: nowrap;
  }
  .nav-primary a:hover, .nav-primary a:focus-visible { color: var(--color-link-hover); }
  .site-header.over-hero .nav-primary a { color: var(--color-cream); }
  .site-header.over-hero .nav-primary a:hover, .site-header.over-hero .nav-primary a:focus-visible { color: var(--color-gold-soft); }

  /* Dropdown sub-menus — hover or focus-within reveal */
  .nav-primary .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    flex-direction: column;
    gap: 0;
    padding: var(--space-3) 0;
    margin: 0;
    list-style: none;
    background: var(--color-bg);
    border: 1px solid var(--color-gold-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility 0s linear var(--t-fast);
    z-index: var(--z-overlay);
  }
  .nav-primary li:hover > .sub-menu,
  .nav-primary li:focus-within > .sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .nav-primary .sub-menu li {
    list-style: none;
  }
  .nav-primary .sub-menu a {
    display: block;
    padding: var(--space-2) var(--space-4);
    font-size: var(--fs-sm);
    color: var(--color-text);
    white-space: normal;
    border: 0;
  }
  .nav-primary .sub-menu a:hover,
  .nav-primary .sub-menu a:focus-visible {
    background: var(--color-bg-band);
    color: var(--color-link-hover);
  }
  /* Indicator triangle on items with children */
  .nav-primary .menu-item-has-children > a::after {
    content: " ▾";
    font-size: 0.7em;
    opacity: 0.7;
    margin-left: 0.25em;
  }
}

/* Mobile drawer: sub-menu indented + revealed inline */
.mobile-drawer .menu-item-has-children > a::after {
  content: " ▾";
  font-size: 0.8em;
  opacity: 0.6;
}
.mobile-drawer .sub-menu {
  display: block;
  list-style: none;
  padding: 0 0 var(--space-3) var(--space-5);
  margin: 0;
}
.mobile-drawer .sub-menu li { list-style: none; }
.mobile-drawer .sub-menu a {
  font-size: var(--fs-sm);
  padding: var(--space-2) 0;
}

/* Mobile menu button */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--color-text);
  background: transparent;
}
.site-header.over-hero .menu-toggle { color: var(--color-cream); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Header CTA */
.header-cta {
  display: none;
}
@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
    min-height: 40px;
    min-width: 0;
    padding: var(--space-2) var(--space-4);
    font-size: var(--fs-xs);
  }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: var(--header-height-mobile) 0 0 0;
  background: var(--color-navy);
  color: var(--color-cream);
  padding: var(--space-6) var(--space-5);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-medium) var(--ease);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.mobile-drawer a {
  display: block;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(201,162,91,0.18);
  color: var(--color-cream);
  font-size: var(--fs-md);
  text-decoration: none;
}
@media (min-width: 1024px) { .mobile-drawer { display: none; } }

/* ── Hero (homepage) ─────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--color-navy);
  color: var(--color-cream);
  min-height: 70dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-10);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.0) 0%, rgba(10,14,26,0.45) 50%, rgba(10,14,26,0.85) 100%);
  z-index: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.85;
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: var(--ls-tight);
  color: var(--color-cream);
  margin-bottom: var(--space-4);
  max-width: 22ch;
}
.hero-subhead {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: var(--lh-default);
  max-width: 60ch;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.hero-proof {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-press);
  text-transform: uppercase;
  color: var(--color-text-muted-on-dark);
  border-top: 1px solid rgba(201,162,91,0.32);
  padding-top: var(--space-4);
  max-width: 60ch;
}

@media (min-width: 1024px) {
  .hero { min-height: 80dvh; }
}

/* ── Audience cards (homepage Section 2) ─────────────────────── */
.audience-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--color-bg-elev);
  border: 1px solid var(--color-gold-soft);
  border-bottom: 2px solid var(--color-gold-soft);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-text);
  transition: transform var(--t-medium) var(--ease), box-shadow var(--t-medium) var(--ease), border-color var(--t-medium) var(--ease);
  height: 100%;
}
.audience-card:hover, .audience-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-bottom-color: var(--color-gold-deep);
  outline: none;
}
.audience-card .icon {
  width: 32px;
  height: 32px;
  color: var(--color-gold-deep);
}
.audience-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.audience-card p {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  margin: 0;
  flex: 1;
}
.audience-card .more {
  margin-top: var(--space-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-link);
}
.audience-card[data-status="coming-soon"] {
  opacity: 0.85;
}
.audience-card[data-status="coming-soon"]::after {
  content: "Coming Soon";
  align-self: flex-start;
  margin-top: var(--space-2);
  padding: var(--space-1) var(--space-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-press);
  text-transform: uppercase;
  background: var(--color-gold-soft);
  color: var(--color-ink);
  border-radius: var(--radius-pill);
}

/* ── Awards rail ─────────────────────────────────────────────── */
.awards-rail {
  background: var(--color-bg-elev);
  border-top: 1px solid var(--color-gold-soft);
  border-bottom: 1px solid var(--color-gold-soft);
  padding: var(--space-8) 0;
}
.awards-rail .grid {
  gap: var(--space-6);
}
.awards-rail .award {
  text-align: center;
}
.awards-rail .year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--color-gold-deep);
  line-height: 1;
}
.awards-rail .category {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--color-text-muted);
}
.awards-rail .recipient {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  color: var(--color-text);
}
.awards-rail .verification-note {
  display: block;
  margin-top: var(--space-1);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ── Featured testimonial ────────────────────────────────────── */
.featured-testimonial {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: var(--space-12) 0;
  text-align: center;
}
.featured-testimonial .clef-icon {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  margin: 0 auto var(--space-4);
}
.featured-testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  max-width: 38ch;
  margin: 0 auto;
  border: 0;
  padding: 0;
  color: var(--color-cream);
}
.featured-testimonial cite {
  display: block;
  margin-top: var(--space-5);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--ls-press);
  text-transform: uppercase;
  color: var(--color-gold);
}
.featured-testimonial .cite-context {
  display: block;
  margin-top: var(--space-1);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-muted-on-dark);
  font-size: var(--fs-sm);
}

/* ── Press grid ──────────────────────────────────────────────── */
.press-card {
  background: var(--color-bg-elev);
  border: 1px solid var(--color-gold-soft);
  border-radius: var(--radius);
  padding: var(--space-5);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.press-card .critic {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: var(--ls-press);
  color: var(--color-text);
}
.press-card .outlet {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.press-card .quote {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  line-height: var(--lh-default);
  color: var(--color-text);
  margin: 0;
}

/* ── FAQ accordion ───────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  border-bottom: 1px solid var(--color-gold-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  gap: var(--space-4);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-md);
  color: var(--color-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: var(--fs-lg);
  color: var(--color-gold-deep);
  transition: transform var(--t-medium) var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item .answer {
  padding: 0 0 var(--space-5) 0;
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--color-text);
  max-width: var(--content-width);
}

/* ── Final CTA section ───────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: var(--space-12) var(--space-4);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-4);
}
.final-cta p {
  margin: 0 auto var(--space-6);
  max-width: 60ch;
  color: var(--color-text-muted);
}
.final-cta .cluster {
  justify-content: center;
}

/* ── Audio player styling (existing MP3s) ────────────────────── */
audio { width: 100%; max-width: 480px; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-navy);
  color: var(--color-cream);
  padding: var(--space-10) 0 var(--space-6);
}
.site-footer .container {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer .container { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .site-footer .container { grid-template-columns: repeat(5, 1fr); }
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.site-footer a {
  color: var(--color-cream);
  text-decoration: none;
  font-size: var(--fs-sm);
}
.site-footer a:hover, .site-footer a:focus-visible {
  color: var(--color-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(201,162,91,0.18);
  padding-top: var(--space-5);
  margin-top: var(--space-6);
}
.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--color-text-muted-on-dark);
  margin: 0;
  max-width: none;
}
.footer-bottom .verified-claim {
  font-size: var(--fs-xs);
  font-style: italic;
  color: var(--color-text-muted-on-dark);
  margin-bottom: var(--space-2);
}

/* ── Listen sample (audio player wrapper) ────────────────────── */
.listen-sample {
  background: var(--color-bg-elev);
  border: 1px solid var(--color-gold-soft);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.listen-sample .title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--color-text);
}
.listen-sample .album {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-press);
}

/* ── Album card (recordings page) ────────────────────────────── */
.album-card {
  background: var(--color-bg-elev);
  border: 1px solid var(--color-gold-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.album-card img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; }
.album-card .album-body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; gap: var(--space-2); }
.album-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--color-text);
  margin: 0;
}
.album-card .award-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-press);
  color: var(--color-gold-deep);
}

/* ── Vertical accent decoration on Iberian pages ─────────────── */
[data-vertical="iberian-south-american"] .eyebrow { color: var(--color-accent-deep); }
[data-vertical="iberian-south-american"] .audience-card:hover { border-bottom-color: var(--color-accent-deep); }
[data-vertical="iberian-south-american"] .featured-testimonial .clef-icon { color: var(--color-accent); }
[data-vertical="iberian-south-american"] .album-card { border-color: var(--color-accent-soft); }

/* ========================================================================
   PREMIUM ELEGANCE LAYER — cinematic hero, glass cards, depth, motion
   ======================================================================== */

/* ── Hero: cinematic video bg + layered overlay ──────────────── */
.hero--cinematic {
  position: relative;
  min-height: 92dvh;
  background: var(--color-ink);
  isolation: isolate;
  overflow: hidden;
}
.hero--cinematic .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero--cinematic .hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
  filter: brightness(0.55) saturate(1.1) contrast(1.05);
}
.hero--cinematic .hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.55) saturate(1.05);
  opacity: 0.95;
  /* Image visible until video loads, then video fades in over it */
}
.hero--cinematic .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,14,26,0.55) 0%, rgba(26,37,64,0.35) 35%, rgba(10,14,26,0.65) 75%, rgba(10,14,26,0.85) 100%);
  pointer-events: none;
}
.hero--cinematic .hero-glow {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 20% 100%, rgba(201,162,91,0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(201,162,91,0.10) 0%, transparent 50%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero--cinematic .hero-staff {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 24px;
  z-index: 4;
  color: rgba(201,162,91,0.22);
  pointer-events: none;
}
.hero--cinematic .hero-staff--top { top: var(--header-height-mobile); }
.hero--cinematic .hero-staff--bottom { bottom: 32px; }
@media (min-width: 1024px) {
  .hero--cinematic .hero-staff--top { top: var(--header-height); }
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: clamp(var(--space-10), 12vh, 8rem);
  padding-bottom: var(--space-10);
  text-align: left;
}
@media (min-width: 768px) {
  .hero-content { text-align: center; }
}

.eyebrow--gold {
  color: var(--color-gold-soft);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  margin-bottom: var(--space-4);
}

.hero-h1--cinematic {
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.018em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
  margin: 0 auto var(--space-6);
  max-width: 18ch;
  font-weight: 400;
  color: var(--color-cream);
}
.hero-h1-flourish {
  display: inline-block;
  position: relative;
  color: var(--color-gold-soft);
  font-style: italic;
  padding: 0 0.3em;
}
.hero-h1-flourish::before,
.hero-h1-flourish::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(2rem, 5vw, 4rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 60%, transparent);
}
.hero-h1-flourish::before { right: calc(100% + 0.2em); }
.hero-h1-flourish::after  { left:  calc(100% + 0.2em); }

.hero-subhead {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(247,241,225,0.92);
  max-width: 56ch;
  margin: 0 auto var(--space-7);
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
@media (max-width: 767px) {
  .hero-subhead { margin-left: 0; margin-right: 0; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-start;
  margin-bottom: var(--space-8);
}
@media (min-width: 768px) { .hero-actions { justify-content: center; } }

.hero-proof {
  position: relative;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247,241,225,0.7);
  max-width: 84ch;
  margin: 0 auto;
  padding-top: var(--space-5);
  line-height: 2.2;
}
.hero-proof-divider {
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
@media (max-width: 767px) {
  .hero-proof-divider { margin: 0 0 var(--space-4); }
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: 28px;
  height: 46px;
  border: 1.5px solid rgba(247,241,225,0.45);
  border-radius: 14px;
  display: none;
  text-decoration: none;
}
@media (min-width: 1024px) { .hero-scroll-cue { display: block; } }
.hero-scroll-cue::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  background: var(--color-gold-soft);
  border-radius: 2px;
  margin: 8px auto 0;
  animation: scrollDot 1.8s ease-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* ── Buttons: premium variants (lg, primary, ghost) ──────────── */
.btn--lg {
  min-height: 56px;
  padding: var(--space-4) var(--space-6);
  font-size: var(--fs-sm);
}
.btn--primary {
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  color: var(--color-ink);
  border: 1px solid var(--color-gold-deep);
  box-shadow: 0 6px 20px rgba(201,162,91,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  font-weight: 600;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: linear-gradient(180deg, #d4b06d 0%, #b58e44 100%);
  box-shadow: 0 10px 30px rgba(201,162,91,0.5), inset 0 1px 0 rgba(255,255,255,0.35);
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(247,241,225,0.06);
  color: var(--color-cream);
  border: 1px solid rgba(247,241,225,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 500;
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(247,241,225,0.14);
  border-color: var(--color-gold-soft);
  color: var(--color-gold-soft);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--color-gold-deep);
  border: 1.5px solid var(--color-gold-deep);
  font-weight: 600;
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--color-gold);
  color: var(--color-ink);
  border-color: var(--color-gold);
}

/* ── Audience-card: glass-morphic premium upgrade ────────────── */
.audience-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.55) 0%, var(--color-bg-elev) 100%);
  border: 1px solid var(--color-border);
  border-bottom: 2px solid var(--color-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(10,14,26,0.04);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-medium) var(--ease), box-shadow var(--t-medium) var(--ease), border-color var(--t-medium) var(--ease);
}
.audience-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 50%, transparent);
  opacity: 0;
  transition: opacity var(--t-medium) var(--ease);
}
.audience-card:hover, .audience-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(10,14,26,0.18), 0 8px 16px -4px rgba(10,14,26,0.08);
  border-color: var(--color-gold);
}
.audience-card:hover::before, .audience-card:focus-within::before { opacity: 1; }
.audience-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-xl);
  color: var(--color-ink);
  margin: var(--space-2) 0 var(--space-3);
}
.audience-card p {
  color: var(--color-text-muted);
  font-size: var(--fs-base);
  line-height: var(--lh-default);
  margin-bottom: 0;
  max-width: none;
}
.audience-card--linked .eyebrow {
  color: var(--color-gold-deep);
  font-weight: 700;
}

/* ── Section depth ───────────────────────────────────────────── */
.section-bone {
  background:
    linear-gradient(180deg, var(--color-bone) 0%, var(--color-cream) 100%);
  position: relative;
}
.section-bone::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: clamp(120px, 30vw, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-soft), transparent);
}

/* ── Featured testimonial: cinematic depth ───────────────────── */
.featured-testimonial {
  position: relative;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,162,91,0.12) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-ink) 100%);
  color: var(--color-cream);
  padding: var(--space-12) 0;
  overflow: hidden;
  isolation: isolate;
}
.featured-testimonial::before,
.featured-testimonial::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.featured-testimonial::before {
  top: 8%;
  left: 4%;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  line-height: 0.8;
  color: rgba(201,162,91,0.10);
  content: "“";
  font-weight: 400;
}
.featured-testimonial > * { position: relative; z-index: 1; }
.featured-testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.35;
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
  color: var(--color-cream);
}
.featured-testimonial cite {
  display: block;
  margin-top: var(--space-6);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  text-align: center;
}

/* ── Awards rail: refined depth ──────────────────────────────── */
.awards-rail {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-top: var(--space-6);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px)  { .awards-rail { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .awards-rail { grid-template-columns: repeat(3, 1fr); } }
.award-item {
  padding: var(--space-5) var(--space-4);
  background: var(--color-bg-elev);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-sm);
  text-align: left;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.award-item:hover { transform: translateX(3px); box-shadow: var(--shadow-2); }
.award-item .year {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-2xl);
  line-height: 1;
  color: var(--color-gold-deep);
  margin-bottom: var(--space-2);
}
.award-item .category {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: var(--space-1);
}
.award-item .recipient {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  font-style: italic;
}

/* ── Reveal-on-scroll animation ──────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  }
  .reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  }
  .reveal-stagger.is-revealed > *           { opacity: 1; transform: translateY(0); }
  .reveal-stagger.is-revealed > *:nth-child(1) { transition-delay:   0ms; }
  .reveal-stagger.is-revealed > *:nth-child(2) { transition-delay:  90ms; }
  .reveal-stagger.is-revealed > *:nth-child(3) { transition-delay: 180ms; }
  .reveal-stagger.is-revealed > *:nth-child(4) { transition-delay: 270ms; }
  .reveal-stagger.is-revealed > *:nth-child(5) { transition-delay: 360ms; }
  .reveal-stagger.is-revealed > *:nth-child(6) { transition-delay: 450ms; }
}

/* ── Section header refinement ───────────────────────────────── */
.section h2 {
  position: relative;
}
.section header.section-header { margin-bottom: var(--space-8); }
.section-header h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-4) auto 0;
}

/* ── Typography refinement: optical-size axes for premium feel ─── */
.hero-h1, h1.entry-title, .featured-testimonial blockquote, .section-header h2 {
  font-feature-settings: "ss01" on, "salt" on, "kern" on, "liga" on;
  font-optical-sizing: auto;
  font-variant-numeric: oldstyle-nums;
}
.eyebrow, .award-item .year, h6 {
  font-feature-settings: "lnum" on, "tnum" on;
  font-variant-numeric: tabular-nums;
}

/* ── Image polish — premium frames + subtle hover lift ─────────── */
.entry-content img,
article.entry-content img {
  border-radius: var(--radius-md);
  transition: transform var(--t-medium) var(--ease), box-shadow var(--t-medium) var(--ease);
}
.entry-content img[width="280"],
.entry-content img[width="220"],
.entry-content img[alt*="cover" i],
.entry-content img[alt*="CD" i] {
  border-radius: var(--radius-md);
  box-shadow:
    0 1px 2px rgba(10,14,26,0.05),
    0 8px 28px -6px rgba(10,14,26,0.18),
    0 24px 48px -12px rgba(10,14,26,0.12);
}
.entry-content img[alt*="cover" i]:hover,
.entry-content img[alt*="CD" i]:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 1px 2px rgba(10,14,26,0.05),
    0 16px 40px -6px rgba(10,14,26,0.28),
    0 36px 72px -12px rgba(10,14,26,0.18);
}

/* ── Audio player: branded, less default-WP ──────────────────── */
audio {
  width: 100%;
  max-width: 520px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-elev);
  filter: drop-shadow(0 4px 16px rgba(10,14,26,0.08));
}
audio::-webkit-media-controls-panel {
  background: var(--color-bg-elev);
}

/* ── Footer: cinematic depth ─────────────────────────────────── */
.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(201,162,91,0.10) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-navy) 0%, var(--color-ink) 100%);
  color: var(--color-cream);
  padding: var(--space-12) 0 var(--space-6);
  margin-top: var(--space-10);
  isolation: isolate;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: clamp(160px, 30vw, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.site-footer h4 {
  color: var(--color-gold-soft);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.site-footer ul li a {
  color: rgba(247,241,225,0.78);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.site-footer ul li a:hover {
  color: var(--color-gold-soft);
}
.site-footer .verified-claim {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-xs);
  text-align: center;
  color: rgba(247,241,225,0.55);
  max-width: 64ch;
  margin: var(--space-8) auto var(--space-3);
  letter-spacing: 0.02em;
}

/* ── Final-CTA / closing-section: dramatic ──────────────────── */
.section-final-cta, .section.final-cta {
  position: relative;
  background:
    radial-gradient(circle at 50% 110%, rgba(201,162,91,0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--color-navy) 0%, var(--color-ink) 100%);
  color: var(--color-cream);
  padding: var(--space-12) 0;
  text-align: center;
  isolation: isolate;
}
.section-final-cta h2, .section.final-cta h2 {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-final-cta p, .section.final-cta p {
  color: rgba(247,241,225,0.85);
  max-width: 60ch;
  margin: var(--space-4) auto var(--space-6);
}

/* ── Trust strip: refined, less "stamp"-like ─────────────────── */
.trust-strip {
  position: relative;
  background: var(--color-bg-elev);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) 0;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  z-index: 5;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(var(--space-3), 2vw, var(--space-5));
  text-align: center;
}
.trust-strip span,
.trust-strip strong {
  display: inline-flex;
  align-items: center;
}
.trust-strip strong {
  color: var(--color-gold-deep);
  font-weight: 700;
}

/* ── BLUF block: more dramatic ───────────────────────────────── */
.bluf {
  position: relative;
  padding: var(--space-7) var(--space-6);
  background: linear-gradient(160deg, var(--color-bone) 0%, var(--color-bg-elev) 100%);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow:
    0 1px 2px rgba(10,14,26,0.04),
    0 12px 32px -8px rgba(10,14,26,0.10);
}
.bluf p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
  max-width: none;
}
.bluf p strong {
  font-style: normal;
  font-family: var(--font-heading);
  color: var(--color-ink);
}

/* ── Section dividers — optional ornament ────────────────────── */
.section-divider {
  display: block;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: var(--space-10) auto;
  border: 0;
}
.section-divider--ornament {
  position: relative;
  width: 200px;
}
.section-divider--ornament::before {
  content: "♪";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-bg);
  color: var(--color-gold);
  font-size: 1.2rem;
  padding: 0 var(--space-3);
  line-height: 1;
}

/* ── Back-to-top button: refined ─────────────────────────────── */
.back-to-top {
  background: var(--color-navy) !important;
  color: var(--color-gold-soft) !important;
  border: 1px solid var(--color-gold-deep) !important;
  box-shadow: 0 6px 20px rgba(10,14,26,0.25) !important;
}
.back-to-top:hover {
  background: var(--color-gold) !important;
  color: var(--color-ink) !important;
}

/* ── Mobile drawer: COMPACT accordion (no more 2-page scroll) ─── */
.mobile-drawer {
  padding: var(--space-4) var(--space-5);
  gap: 0;
}
.mobile-drawer ul.mobile-nav-list {
  gap: 0;
}
.mobile-drawer .mobile-nav-list > li {
  border-bottom: 1px solid rgba(201,162,91,0.18);
}
.mobile-drawer .mobile-nav-list > li:last-child { border-bottom: 0; }
.mobile-drawer .mobile-nav-list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
  font-size: var(--fs-md);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-cream);
  border-bottom: 0;
}

/* Children collapsed by default */
.mobile-drawer .sub-menu {
  display: none;
  list-style: none;
  padding: 0 0 var(--space-3) var(--space-4);
  margin: 0 0 var(--space-2);
  border-left: 1px solid rgba(201,162,91,0.20);
}
.mobile-drawer li.is-open > .sub-menu { display: block; }

.mobile-drawer .menu-item-has-children > a::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4em;
  font-style: normal;
  color: var(--color-gold-soft);
  transition: transform var(--t-fast) var(--ease);
}
.mobile-drawer li.is-open > a::after {
  content: "−";
}
.mobile-drawer .sub-menu li {
  list-style: none;
  border: 0;
}
.mobile-drawer .sub-menu a {
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--fs-sm);
  color: rgba(247,241,225,0.78);
  font-family: var(--font-body);
  font-style: normal;
  border-bottom: 0;
}
.mobile-drawer .sub-menu a:hover { color: var(--color-gold-soft); }

/* ════════════════════════════════════════════════════════════════
   LUXURY RESEARCH PASS — Aman / Berlin Phil / Carnegie / Lanesborough
   "Korean elegance, Australian elegance, sites of the rich, look crappy"
   ════════════════════════════════════════════════════════════════ */

/* ── Old-style numerals + ligatures globally ─────────────────── */
body {
  font-feature-settings: "kern", "liga", "dlig", "onum", "ss01";
}

/* ── Section breathing room (Korean negative-space signal) ───── */
.section { padding-block: clamp(4rem, 10vh, 8rem); }
.section.section-tight { padding-block: clamp(3rem, 6vh, 5rem); }
@media (min-width: 1024px) {
  .section { padding-block: clamp(6rem, 12vh, 10rem); }
}

/* ── Section anchor numerals (Carnegie Hall pattern) ─────────── */
.section[data-anchor]::before {
  content: attr(data-anchor);
  position: absolute;
  top: clamp(1.5rem, 4vh, 3rem);
  left: clamp(1rem, 4vw, 4rem);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.8;
  color: rgba(201,162,91,0.16);
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.section { position: relative; }
.section > .container { position: relative; z-index: 1; }

/* ── Hairline gold rule between sections (Berlin Phil / Lanesborough) ─ */
.section + .section,
.section + .section-bone,
.section-bone + .section {
  border-top: 1px solid rgba(201,162,91,0.20);
}

/* ── Vertical small-caps tracked label above H2s ─────────────── */
.section .section-header .eyebrow,
.section header .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--space-3);
}
.section .section-header h2,
.section header h2 {
  font-weight: 300;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

/* ── Ken Burns reveal for content images ─────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .entry-content img,
  .audience-card img,
  .album-grid img {
    transition: transform 8s ease-out, opacity 1.2s ease-out, box-shadow var(--t-medium) var(--ease);
  }
  .reveal img,
  .reveal-stagger > * img,
  .is-revealed img {
    /* Slow zoom from 1.0 → 1.04 once revealed */
    animation: kenBurns 12s ease-out forwards;
  }
}
@keyframes kenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.04); }
}

/* ── Hero polish: Aman-style centered fade-in ─────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .hero--cinematic .hero-content > * {
    opacity: 0;
    transform: translateY(16px);
    animation: heroFade 1.4s var(--ease) forwards;
  }
  .hero--cinematic .eyebrow      { animation-delay: 200ms; }
  .hero--cinematic .hero-h1      { animation-delay: 400ms; }
  .hero--cinematic .hero-subhead { animation-delay: 700ms; }
  .hero--cinematic .hero-actions { animation-delay: 950ms; }
  .hero--cinematic .hero-proof   { animation-delay: 1200ms; }
}
@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Featured testimonial: cinematic stillness ───────────────── */
.featured-testimonial {
  padding-block: clamp(5rem, 14vh, 9rem);
}
.featured-testimonial blockquote {
  font-weight: 300;
  letter-spacing: -0.005em;
}

/* ── Audience cards: more depth, ornament hover ──────────────── */
.audience-card {
  padding: clamp(var(--space-5), 3vw, var(--space-7));
  min-height: 220px;
}
.audience-card .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  margin-bottom: var(--space-3);
}

/* ── Section header "ornament" rule ──────────────────────────── */
.section-header h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-4) auto 0;
  opacity: 0.7;
}

/* ── Headlines feel: weight 300 italic display ───────────────── */
h1.entry-title, .hero-h1, h2 em, .featured-testimonial blockquote {
  font-weight: 300;
}

/* ── Anchor link reveal (subtle gold underline grow) ─────────── */
.entry-content a:not(.btn) {
  position: relative;
  text-decoration: none;
  background-image: linear-gradient(to right, var(--color-gold-deep), var(--color-gold-deep));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.entry-content a:not(.btn):hover {
  background-size: 100% 2px;
  color: var(--color-gold-deep);
}

/* ── Drop cap on first paragraph after H2 (editorial signal) ─── */
.entry-content h2 + p::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.2em;
  line-height: 0.85;
  float: left;
  padding: 0.05em 0.12em 0 0;
  color: var(--color-gold-deep);
  font-weight: 400;
}
@media (max-width: 600px) {
  .entry-content h2 + p::first-letter { font-size: 2.4em; }
}

/* ════════════════════════════════════════════════════════════════
   HARD OVERRIDES — fix nav visibility + menu button + header polish
   These must come last so they win specificity battles.
   ════════════════════════════════════════════════════════════════ */

/* Header: solid styling regardless of over-hero state on initial load.
   Override: when over-hero AND not scrolled, use a subtle dark gradient
   so nav and CTA text are always legible against any video background. */
.site-header,
.site-header.over-hero {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  width: 100%;
  background: rgba(247, 241, 225, 0.96);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(201, 162, 91, 0.18);
  box-shadow: 0 1px 0 rgba(10,14,26,0.04);
  transition: background-color var(--t-medium) var(--ease), border-color var(--t-medium) var(--ease);
}
.site-header.over-hero {
  background: linear-gradient(180deg, rgba(10,14,26,0.65) 0%, rgba(10,14,26,0.35) 80%, transparent 100%);
  border-bottom: 1px solid rgba(201, 162, 91, 0.30);
}
.site-header.over-hero.scrolled {
  background: rgba(247, 241, 225, 0.96);
  border-bottom: 1px solid rgba(201, 162, 91, 0.18);
}

/* Nav text — ALWAYS visible regardless of state */
.site-header .nav-primary > ul > li > a {
  color: var(--color-text);
}
.site-header.over-hero:not(.scrolled) .nav-primary > ul > li > a {
  color: var(--color-cream);
}
.site-header .nav-primary > ul > li > a:hover,
.site-header .nav-primary > ul > li > a:focus-visible {
  color: var(--color-gold-deep);
}
.site-header.over-hero:not(.scrolled) .nav-primary > ul > li > a:hover,
.site-header.over-hero:not(.scrolled) .nav-primary > ul > li > a:focus-visible {
  color: var(--color-gold-soft);
}

/* Mobile menu button — VISIBLE on mobile, hamburger lines drawn explicitly */
@media (max-width: 1023px) {
  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1.5px solid var(--color-gold-deep);
    color: var(--color-gold-deep);
    cursor: pointer;
    transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  }
  .menu-toggle svg { width: 22px; height: 22px; stroke: currentColor; }
  .menu-toggle:hover, .menu-toggle:focus-visible {
    background: var(--color-gold);
    color: var(--color-ink);
    border-color: var(--color-gold);
  }
  .site-header.over-hero:not(.scrolled) .menu-toggle {
    color: var(--color-cream);
    border-color: rgba(247,241,225,0.45);
  }
  .site-header.over-hero:not(.scrolled) .menu-toggle:hover {
    background: var(--color-gold);
    color: var(--color-ink);
    border-color: var(--color-gold);
  }
}

/* Logo size + spacing on small screens */
.site-logo img {
  height: 38px;
  width: auto;
}
@media (min-width: 1024px) {
  .site-logo img { height: 44px; }
}

/* Header CTA — primary gold even on hero */
.header-cta.btn {
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-deep) 100%) !important;
  color: var(--color-ink) !important;
  border: 1px solid var(--color-gold-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(201,162,91,0.30), inset 0 1px 0 rgba(255,255,255,0.25);
}
.header-cta.btn:hover, .header-cta.btn:focus-visible {
  background: linear-gradient(180deg, #d6b270 0%, #b58e44 100%) !important;
  transform: translateY(-1px);
}

/* Hide header CTA on smallest screens to make room for menu button */
@media (max-width: 480px) {
  .header-cta { display: none; }
}

/* ────────────────────────────────────────────────────────────────
   Hero-video iframe positioning (was missing; fixed here)
   ──────────────────────────────────────────────────────────────── */
.hero--cinematic .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--color-ink);
}
.hero--cinematic .hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;     /* 16:9 wider than tall */
  min-width: 100%;
  height: 56.25vw;      /* 16:9 taller than wide */
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
  filter: brightness(0.6) saturate(1.15) contrast(1.05);
}

/* Hero clef ornament — subtle behind H1 */
.hero-clef {
  position: absolute;
  right: clamp(2rem, 8vw, 6rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(80px, 12vw, 160px);
  height: auto;
  color: rgba(201,162,91,0.14);
  z-index: 4;
  pointer-events: none;
}
@media (max-width: 767px) { .hero-clef { display: none; } }

/* Press cards */
.press-card.audience-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.press-card .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.20em;
  margin-bottom: var(--space-3);
  color: var(--color-gold-deep);
}

/* Section anchor numerals — subtle, decorative */
.section[data-anchor]::before {
  content: counter(section-counter, decimal-leading-zero);
  counter-increment: section-counter;
  position: absolute;
  top: clamp(1rem, 3vh, 2rem);
  right: clamp(1rem, 3vw, 3rem);
  left: auto;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: rgba(201,162,91,0.16);
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
body { counter-reset: section-counter; }

/* ════════════════════════════════════════════════════════════════
   Hero — Ken-Burns photograph + animated gold particles
   No YouTube (bot-check incompatible). Cinematic via CSS keyframes.
   ════════════════════════════════════════════════════════════════ */

.hero-image--kenburns {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  filter: brightness(0.42) saturate(1.1) sepia(0.18) contrast(1.05);
  transform: scale(1.08);
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.08) translate(0, 0); }
  50%  { transform: scale(1.16) translate(-1.5%, -2%); }
  100% { transform: scale(1.10) translate(1%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image--kenburns { animation: none; transform: scale(1.04); }
}

/* Floating gold particles — concert-hall sparkle, slow drift */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.hero-particles span {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,91,0.85), rgba(201,162,91,0));
  filter: blur(0.5px);
  opacity: 0;
  animation: particleFloat 14s ease-in-out infinite;
}
.hero-particles span:nth-child(1)  { left: 8%;  top: 20%; animation-delay: 0s;    width: 5px; height: 5px; }
.hero-particles span:nth-child(2)  { left: 22%; top: 60%; animation-delay: 1.2s;  width: 3px; height: 3px; }
.hero-particles span:nth-child(3)  { left: 35%; top: 30%; animation-delay: 2.4s;  width: 6px; height: 6px; }
.hero-particles span:nth-child(4)  { left: 47%; top: 80%; animation-delay: 3.6s;  width: 4px; height: 4px; }
.hero-particles span:nth-child(5)  { left: 60%; top: 15%; animation-delay: 4.8s;  width: 5px; height: 5px; }
.hero-particles span:nth-child(6)  { left: 72%; top: 55%; animation-delay: 6.0s;  width: 3px; height: 3px; }
.hero-particles span:nth-child(7)  { left: 85%; top: 25%; animation-delay: 7.2s;  width: 5px; height: 5px; }
.hero-particles span:nth-child(8)  { left: 92%; top: 70%; animation-delay: 8.4s;  width: 4px; height: 4px; }
.hero-particles span:nth-child(9)  { left: 14%; top: 88%; animation-delay: 9.6s;  width: 6px; height: 6px; }
.hero-particles span:nth-child(10) { left: 40%; top: 50%; animation-delay: 10.8s; width: 4px; height: 4px; }
.hero-particles span:nth-child(11) { left: 65%; top: 90%; animation-delay: 12.0s; width: 5px; height: 5px; }
.hero-particles span:nth-child(12) { left: 78%; top: 38%; animation-delay: 13.2s; width: 3px; height: 3px; }
@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.8); }
  20%      { opacity: 1; transform: translateY(-20px) scale(1.1); }
  60%      { opacity: 0.8; transform: translateY(-60px) scale(1); }
  85%      { opacity: 0.2; transform: translateY(-100px) scale(0.9); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-particles { display: none; }
}

/* Stronger overlay so text reads well over photograph */
.hero--cinematic .hero-overlay {
  background:
    linear-gradient(180deg,
      rgba(10,14,26,0.78) 0%,
      rgba(26,37,64,0.62) 30%,
      rgba(10,14,26,0.72) 70%,
      rgba(10,14,26,0.92) 100%);
}

/* Tighten min-height — was 92dvh, now 86dvh so it's not too tall */
.hero--cinematic { min-height: 86dvh; }
@media (max-width: 767px) { .hero--cinematic { min-height: 82dvh; } }

/* ════════════════════════════════════════════════════════════════
   NAV CONTRAST FIX — was reading too subtle. Make it CLEARLY VISIBLE
   on every state. Tony 2026-05-05.
   ════════════════════════════════════════════════════════════════ */

/* Header background: opaque on scrolled / non-hero pages so nav stands out */
.site-header,
.site-header.over-hero.scrolled,
.site-header:not(.over-hero) {
  background: rgba(247, 241, 225, 0.97) !important;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(160, 127, 58, 0.22) !important;
  box-shadow: 0 2px 14px -8px rgba(10, 14, 26, 0.25);
}

/* Nav text: SOLID INK navy with proper weight/letter-spacing */
.site-header .nav-primary > ul > li > a {
  color: var(--color-ink) !important;
  font-family: var(--font-body);
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.04em;
  padding: var(--space-3) var(--space-3) !important;
  text-decoration: none;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}

/* Underline grow on hover — gold */
.site-header .nav-primary > ul > li > a::after {
  content: "";
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: calc(var(--space-3) - 4px);
  height: 1.5px;
  background: var(--color-gold-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-fast) var(--ease);
}
.site-header .nav-primary > ul > li > a:hover,
.site-header .nav-primary > ul > li > a:focus-visible {
  color: var(--color-gold-deep) !important;
}
.site-header .nav-primary > ul > li > a:hover::after,
.site-header .nav-primary > ul > li > a:focus-visible::after,
.site-header .nav-primary > ul > li.current-menu-item > a::after,
.site-header .nav-primary > ul > li.current-menu-parent > a::after {
  transform: scaleX(1);
}

/* Active nav item */
.site-header .nav-primary > ul > li.current-menu-item > a,
.site-header .nav-primary > ul > li.current-menu-parent > a {
  color: var(--color-gold-deep) !important;
}

/* When OVER hero (homepage initial state, before scroll), use cream-on-dark */
.site-header.over-hero:not(.scrolled) {
  background: linear-gradient(180deg, rgba(10,14,26,0.78) 0%, rgba(10,14,26,0.50) 70%, rgba(10,14,26,0.25) 100%) !important;
  border-bottom: 1px solid rgba(201, 162, 91, 0.30) !important;
  box-shadow: none;
}
.site-header.over-hero:not(.scrolled) .nav-primary > ul > li > a {
  color: var(--color-cream) !important;
}
.site-header.over-hero:not(.scrolled) .nav-primary > ul > li > a:hover,
.site-header.over-hero:not(.scrolled) .nav-primary > ul > li > a:focus-visible {
  color: var(--color-gold-soft) !important;
}
.site-header.over-hero:not(.scrolled) .nav-primary > ul > li > a::after {
  background: var(--color-gold-soft);
}

/* Dropdown caret — make it more visible */
.site-header .nav-primary .menu-item-has-children > a::before {
  content: "";
}
.site-header .nav-primary .menu-item-has-children > a {
  padding-right: calc(var(--space-3) + 14px) !important;
}
.site-header .nav-primary .menu-item-has-children > a::after {
  /* Override the underline animation for parents — show caret instead */
}

/* ════════════════════════════════════════════════════════════════
   PADDING + SPACING — definitive site-wide
   Tony 2026-05-05: cards hugging edges, no gap. Fix with explicit rules.
   ════════════════════════════════════════════════════════════════ */

/* Container side padding so nothing kisses the viewport edge */
.container,
section > .container,
.section > .container {
  padding-left: clamp(1.25rem, 4vw, 3rem) !important;
  padding-right: clamp(1.25rem, 4vw, 3rem) !important;
}

/* Audience-card definitive padding + visible borders */
.audience-card,
a.audience-card {
  padding: clamp(1.75rem, 3vw, 2.75rem) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(160, 127, 58, 0.22) !important;
  background: linear-gradient(160deg, #ffffff 0%, var(--color-bg-elev) 100%) !important;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  box-shadow: 0 1px 2px rgba(10,14,26,0.04), 0 4px 10px -4px rgba(10,14,26,0.08);
}
.audience-card:hover,
.audience-card:focus-within,
a.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px -4px rgba(10,14,26,0.10), 0 24px 40px -16px rgba(10,14,26,0.14);
  border-color: var(--color-gold);
}
.audience-card h3,
.audience-card h4 { margin-top: var(--space-2); }
.audience-card p { margin-bottom: var(--space-3); max-width: 56ch; }

/* GRID GAP — explicit on every grid utility */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem) !important;
  margin-top: var(--space-4);
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Section vertical rhythm — generous, breathing */
.section { padding-block: clamp(3.5rem, 8vh, 6rem) !important; }
@media (min-width: 1024px) {
  .section { padding-block: clamp(5rem, 11vh, 8rem) !important; }
}

/* ════════════════════════════════════════════════════════════════
   BADGE STRIP / FEATURED & REVIEWED section
   ════════════════════════════════════════════════════════════════ */
.featured-strip {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  margin-top: var(--space-6);
}
@media (min-width: 600px) { .featured-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .featured-strip { grid-template-columns: repeat(4, 1fr); } }

.featured-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  padding: var(--space-5) var(--space-4);
  border-radius: 8px;
  border: 1px solid rgba(160, 127, 58, 0.18);
  background: var(--color-bg-elev);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  width: 100%;
  max-width: 240px;
}
.featured-badge:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 28px -10px rgba(10,14,26,0.16);
}
.featured-badge img,
.featured-badge svg {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-3);
  filter: grayscale(0.1);
}
.featured-badge .badge-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 0.4rem;
}
.featured-badge .badge-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-ink);
  font-weight: 500;
}
.featured-badge .badge-sub {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}

/* ════════════════════════════════════════════════════════════════
   VIDEO GALLERY
   ════════════════════════════════════════════════════════════════ */
.video-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: 1fr;
  margin-top: var(--space-5);
}
@media (min-width: 700px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }

.video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-ink);
  box-shadow: 0 8px 24px -10px rgba(10,14,26,0.20);
  border: 1px solid rgba(160, 127, 58, 0.18);
}
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ════════════════════════════════════════════════════════════════
   BLOG SNIPPETS
   ════════════════════════════════════════════════════════════════ */
.blog-snippet {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  background: linear-gradient(160deg, #ffffff 0%, var(--color-bg-elev) 100%);
  border: 1px solid rgba(160, 127, 58, 0.18);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease;
  height: 100%;
}
.blog-snippet:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -14px rgba(10,14,26,0.16);
  border-color: var(--color-gold);
}
.blog-snippet .blog-date {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--space-3);
}
.blog-snippet h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-ink);
  margin: 0 0 var(--space-3);
  line-height: 1.25;
}
.blog-snippet p {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-4);
  flex: 1;
}
.blog-snippet .blog-cta {
  font-size: var(--fs-sm);
  color: var(--color-gold-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: auto;
}
