/*
Theme Name: Logo Center Ammax
Theme URI: https://example.com/ammax-decor
Author: Ammax Decor
Author URI: https://example.com
Description: A fast, responsive, luxury custom theme for Ammax Decor — premium acrylic laminates. Ivory/white-first palette with a dramatic dark video hero, trust-building sections, video showcase, and a menu that overlays the hero video only.
Version: 1.4.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: ammax-decor
*/

/* ==========================================================================
   This file only needs the WordPress theme header above — all actual CSS
   lives here too (WordPress does not auto-load style.css as a stylesheet;
   functions.php enqueues it explicitly via get_stylesheet_uri()).
   ========================================================================== */

:root {
  /* ==== Palette v1.1 (client revision, Aug 2026) ====
     White is still the canvas, but alternating sections now read as a true
     warm gold wash rather than a neutral ivory, and text leans black/maroon
     instead of soft charcoal — client asked for "white and gold, no ivory,
     text gold and black or maroon." */
  --color-bg: #ffffff;
  --color-bg-alt: #f6e9c9;
  --color-bg-soft: #ffffff;
  --color-line: #e8d9ae;
  --color-line-strong: rgba(24, 20, 16, 0.22);

  --color-ink: #181410;
  --color-ink-dim: rgba(24, 20, 16, 0.74);
  --color-ink-faint: rgba(24, 20, 16, 0.5);
  /* "Technical" copy per the type-hierarchy table (specs, codes, dimensions) */
  --color-text-secondary: #5c5650;
  --color-taupe: #c8bba8;

  /* Champagne gold — brand book §02, do not use bright/yellow gold. */
  --color-gold: #b08d3c;
  --color-gold-soft: #96752f;
  /* --color-gold only clears WCAG AA at large text sizes (~3.1:1 on white/
     ivory — fine for h1/h2 and the trust-bar numerals, which are always
     large). For small text set in gold — the .eyebrow labels used
     sitewide, plus a couple of card headings near the 18.66px large-text
     cutoff — use this darker shade instead, which clears 4.5:1 on both
     white and the gold-wash alt background while still reading as gold. */
  --color-gold-text: #86662a;

  /* Deep maroon/oxblood — second accent alongside gold, per client request,
     used sparingly (nav hover, category labels, dividers) so it reads as a
     luxury pairing rather than competing with gold. */
  --color-maroon: #6d1424;
  --color-maroon-soft: #551019;

  /* Dark accent zones only: hero, film showcase, footer — everything else
     uses the white/gold palette above. */
  --color-dark: #1d1d1b;
  --color-dark-alt: #1d1d1b;
  --color-cream: #f7f6f3;
  --color-cream-dim: rgba(247, 246, 243, 0.74);
  /* 0.52, not the original 0.46 — 0.46 measured ~4.3:1 on the dark footer,
     just under WCAG AA's 4.5:1 for the footer-bottom copyright/address text. */
  --color-cream-faint: rgba(247, 246, 243, 0.52);
  /* Lightened champagne tint so gold headings stay legible on the dark
     charcoal sections (brand book §08: gold-on-white is weak for small
     text — same logic applies in reverse on dark). */
  --color-gold-on-dark: #d3b061;

  /* Playfair Display — a higher-contrast, more overtly "luxury editorial"
     serif than the brand book's original Cormorant Garamond, swapped in
     for headings per client request. */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-max: 1280px;
  --space-section: clamp(4rem, 8vw, 9rem);
  --space-gap: clamp(1.5rem, 3vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: clamp(4.75rem, 8vw, 5.75rem);
  --subheader-h: clamp(2.5rem, 4vw, 2.9rem);

  /* Brand book §04 spacing scale */
  --space-4: 4px;
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-xxl: clamp(72px, 8vw, 96px);

  /* Brand book §10 recommended global tokens */
  --radius-base: 3px;
  --radius-btn: 3px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--subheader-h) + 1rem); }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
/* Brand book §03 type hierarchy: H1/Hero and H2/Section default to Gold
   (they're always large display text, so the softer contrast is by design —
   see §08 accessibility notes); H3/Card and below stay Charcoal body-ink. */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; margin: 0 0 0.6em; color: var(--color-ink); }
h1, h2 { color: var(--color-gold); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-text);
  margin-bottom: 1em;
  font-weight: 600;
}
/* Used inside dark zones (hero, film captions, footer) where the light gold needs more punch */
.eyebrow--on-dark { color: var(--color-gold-on-dark); }

/* ---------- Buttons — brand book §05 UI Components ----------
   Three variants: Primary (solid gold), Secondary (outline), Text (arrow
   link, no border/fill). Minimum 44-48px touch height per §04/§08. Radius
   stays tight (2-4px) — this is a restrained, architectural identity, not
   a pill-button one. 180-280ms transitions per §09 motion guidance. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 48px;
  padding: 0.8em 2.1em;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-btn);
  color: var(--color-ink);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.btn:hover { background: var(--color-gold); color: #fff; }
/* Primary */
.btn-solid { background: var(--color-gold); color: #fff; border-color: var(--color-gold); }
.btn-solid:hover { background: var(--color-gold-soft); border-color: var(--color-gold-soft); color: #fff; }
/* Secondary — outline, used directly on a dark zone (e.g. inside the hero) */
.btn--on-dark { color: var(--color-cream); border-color: var(--color-gold-on-dark); }
.btn--on-dark:hover { background: var(--color-gold-on-dark); color: var(--color-dark); }
/* Text — no border/fill, gold arrow link (brand book: "Discover →") */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  min-height: 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: gap 0.22s var(--ease), color 0.22s var(--ease);
}
.btn-text:hover { gap: 0.85em; color: var(--color-gold-soft); }

/* "Download Catalogue" — compact nav-height button; the header is a
   persistent solid white bar now, so this always renders as the primary
   gold treatment (set via .btn-solid on the markup) rather than a
   header-state-conditional colour. */
.btn-download { padding: 0.6em 1.35em; font-size: 0.72rem; white-space: nowrap; min-height: 42px; }

/* ---------- Scroll motion: fade/slide reveal (base) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Scroll motion: staggered word-by-word heading reveal ----------
   JS (initTextReveal) wraps each word of a .reveal-lines element in
   .word > .word-inner; this just animates the inner span up into place. */
.reveal-lines .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.reveal-lines .word-inner {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.5s var(--ease);
  transition-delay: calc(var(--i, 0) * 40ms);
}
.reveal-lines.is-visible .word-inner { transform: translateY(0); }

/* ---------- Scroll motion: curtain wipe + Ken Burns reveal for images ----------
   Wrap an <img> in <span class="wipe-reveal reveal"> to get a gold curtain
   that wipes away while the image settles from a slight zoom. */
.wipe-reveal { position: relative; display: block; overflow: hidden; }
.wipe-reveal::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: var(--color-gold);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  transition-delay: 0.15s;
}
.wipe-reveal.is-visible::after { transform: scaleX(0); transform-origin: right; }
.wipe-reveal img { transform: scale(1.1); transition: transform 0.55s var(--ease); transition-delay: 0.15s; }
.wipe-reveal.is-visible img { transform: scale(1); }

/* ---------- Scroll motion: on-load hero entrance (above the fold, not scroll-gated) ---------- */
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-enter { opacity: 0; animation: heroUp 1s var(--ease) forwards; }
.hero-enter-1 { animation-delay: 0.15s; }
.hero-enter-2 { animation-delay: 0.35s; }
.hero-enter-3 { animation-delay: 0.55s; }
.hero-enter-4 { animation-delay: 0.75s; }

/* ==========================================================================
   Site header / nav — brand book §05: "Desktop: white header, charcoal
   logo/navigation, subtle gold active line." Persistent solid white bar on
   every page (including the front-page hero) — it never goes transparent
   or hides on scroll, so navigation is always available and predictable.
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* Two stacked tiers now: the white nav bar (.container, height --header-h)
     and the product sub-header (.subheader) beneath it. Height is therefore
     auto = --header-h + --subheader-h. */
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--color-line);
}
/* Logo centred, one nav group each side, equally spaced; the menu-icon
   button is pulled out of grid flow (see .nav-toggle) so it doesn't throw
   off that centring. */
.site-header .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: clamp(1rem, 2vw, 2rem);
  width: 100%;
  height: var(--header-h);
}
.site-header .primary-nav--left { justify-self: end; }
.site-header .primary-nav--right { justify-self: start; }
/* Logo centred within the bar. With the sub-header now sitting directly
   below, the old oversized overhang treatment is retired — the logo is
   sized to sit cleanly inside the bar instead. */
.site-header .site-logo { justify-self: center; align-self: center; color: var(--color-ink); }
.site-header .primary-nav a { color: var(--color-ink-dim); }
.site-header .primary-nav a:hover { color: var(--color-maroon); }
.site-header .nav-toggle { color: var(--color-ink); }

.site-logo { display: flex; align-items: center; font-family: var(--font-serif); font-size: 1.3rem; letter-spacing: 0.08em; }
.site-logo span { color: var(--color-gold); }
/* One real logo image everywhere (header + footer) — see
   ammax_decor_logo() in functions.php. Footer keeps the smaller size
   below; the header gets an oversized, centred, overlapping treatment. */
.site-logo-img { height: clamp(1.9rem, 3.4vw, 2.5rem); width: auto; display: block; }
/* The bundled logo art (assets/images/logo-ammax.png) is a silver/chrome
   lockup designed for dark surfaces. The header is a persistent solid
   white bar (brand book §05), so brightness(0) collapses it to a solid
   dark-ink silhouette here instead — same asset, no second logo file,
   full contrast on white. The footer keeps the silver original as-is
   (see .footer-logo-img), since that's a dark surface it was made for. */
.site-header .site-logo-img {
  height: clamp(2.9rem, 5vw, 3.9rem);
  filter: brightness(0);
  opacity: 0.92;
}

.primary-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem); }
.primary-nav ul { display: flex; gap: clamp(1.25rem, 3vw, 2.75rem); }
.primary-nav a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.3em;
  transition: color 0.22s var(--ease);
}
/* Subtle gold rule (brand book §09 "Gold line rule"): a short underline on
   hover for any nav link, and a persistent one under the current page. */
.primary-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--color-gold);
  transition: right 0.22s var(--ease);
}
.primary-nav a:hover::after { right: 0; }
.primary-nav .current-menu-item a::after,
.primary-nav .current_page_item a::after { right: 0; }

/* Always visible now (not just on mobile) — it's the one consistent way to
   reach the full site menu (incl. Home and Become a Distributor, which
   aren't in the desktop bar's left/right pairs). Pulled out of the header
   grid via absolute positioning so it doesn't unbalance the centred logo. */
.nav-toggle {
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  /* 44px minimum touch target (WCAG 2.5.8) — the icon itself stays 22px. */
  width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 1px; background: currentColor; position: relative; transition: 0.22s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -7px; width: 22px; }
.nav-toggle span::after { position: absolute; top: 7px; width: 22px; }

.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 9, 8, 0.98);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease);
}
.menu-overlay.is-open { opacity: 1; visibility: visible; }
.menu-overlay ul { text-align: center; }
.menu-overlay li { margin: 0.9em 0; }
.menu-overlay a { font-family: var(--font-serif); font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--color-cream); }
.menu-overlay a:hover { color: var(--color-gold-on-dark); }
.menu-overlay-close {
  position: absolute; top: 1.75rem; right: 1.75rem;
  background: none; border: none; color: var(--color-cream); font-size: 1.6rem; width: 3rem; height: 3rem;
}

/* ==========================================================================
   Hero — full viewport video, nav overlays this section only. This is the
   one deliberately dark, cinematic moment on an otherwise ivory/white site.
   ========================================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-dark) center/cover no-repeat;
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 38%, rgba(10,10,10,0.65) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 860px; padding: 0 1.5rem; }
.hero-content .eyebrow { color: var(--color-gold-on-dark); }
.hero-title { font-size: clamp(2.25rem, 6vw, 4.5rem); color: var(--color-cream); margin-bottom: 0.3em; }
.hero-title span { color: var(--color-gold-on-dark); }
.hero-tagline { font-size: clamp(1rem, 1.6vw, 1.25rem); color: var(--color-cream-dim); max-width: 46ch; margin: 0 auto 2em; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
/* .hero-scroll-cue removed per client request (no scroll motion in the
   banner) — the "Scroll" label + animated line that used to sit at the
   bottom of .hero. */

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar { background: var(--color-bg-alt); padding: clamp(2.5rem, 5vw, 4rem) 0; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; text-align: center; }
.trust-stat .num { font-family: var(--font-serif); font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--color-gold); display: block; font-variant-numeric: tabular-nums; }
.trust-stat .label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-secondary); margin-top: 0.4em; display: block; }

/* ==========================================================================
   Full-bleed section helpers — white is the default; section-light-alt is
   the warm gold-wash band used to create rhythm between bands.
   ========================================================================== */
.section { padding: var(--space-section) 0; }
.section-light { background: var(--color-bg); }
.section-light-alt { background: var(--color-bg-alt); }
/* Reserved for intentional dark accent bands (used sparingly) */
.section-dark { background: var(--color-dark); color: var(--color-cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-cream); }

/* Gold text on the gold-wash bands (trust bar, alt sections, testimonials)
   reads as low-contrast gold-on-gold, so those bands switch their accent
   colour to maroon instead — gold stays reserved for white backgrounds.
   The two "cite" selectors below are written one class more specific than
   .testimonial-slide cite / .leadership-quote cite (style.css further
   down) on purpose: those base rules share the exact same specificity as
   a plain ".section-light-alt cite" / ".testimonials cite" and sit later
   in the file, so without the extra class they'd silently win the
   cascade and put low-contrast gold text back — which is exactly what
   was happening before this fix (measured ~2.6:1, fails WCAG AA). */
.trust-bar .num,
.section-light-alt .eyebrow,
.section-light-alt h1,
.section-light-alt h2,
.section-light-alt .leadership-quote cite,
.section-light-alt .timeline-item .year,
.testimonials .eyebrow,
.testimonials .testimonial-slide cite,
.testimonial-dots button.is-active {
  color: var(--color-maroon);
}
.testimonial-dots button.is-active::before { background: var(--color-maroon); }
.section-light-alt .timeline-item::before { background: var(--color-maroon); }

/* ==========================================================================
   Protection features strip — full-bleed, edge-to-edge, zero gutter between
   cells (dividers are shared 1px borders, not gaps). Dark accent band, same
   family as the hero/film/footer, so it reads as a deliberate pause between
   the white Story band and the gold-wash Film band.
   ========================================================================== */
.features-strip { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--color-dark); }
.feature-cell {
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1rem, 2vw, 1.75rem);
  border-left: 1px solid rgba(247, 246, 243, 0.14);
  text-align: center;
}
.feature-cell:first-child { border-left: none; }
.feature-num { display: block; font-family: var(--font-serif); font-size: 0.85rem; color: var(--color-gold-on-dark); letter-spacing: 0.1em; margin-bottom: 0.7em; }
.feature-cell h3 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--color-cream); margin: 0 0 0.4em; }
.feature-cell p { font-size: 0.8rem; color: var(--color-cream-dim); margin: 0; line-height: 1.5; }

/* Story / credibility split — image column pins while the copy scrolls,
   a subtle "editorial" pinned-scroll moment. */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.story-media { position: relative; aspect-ratio: 4/5; overflow: hidden; position: sticky; top: calc(var(--header-h) + var(--subheader-h) + 2rem); }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { padding-top: 0.5rem; }
.story-copy h2 { font-size: clamp(1.875rem, 3.6vw, 3.25rem); }
.story-copy p { color: var(--color-ink-dim); max-width: 52ch; }
.badge-row { display: flex; gap: 1.75rem; margin-top: 2.2rem; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 0.6em; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--color-ink-dim); }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-gold); flex: none; }

/* ==========================================================================
   Film / video showcase — full-bleed, click to play. This tile stays a
   deliberately dark, cinematic rectangle sitting on the light page — the
   one other "dark moment" on the site besides the hero and footer.
   ========================================================================== */
.film-showcase { position: relative; width: 100%; aspect-ratio: 16/9; max-height: 92vh; overflow: hidden; background: var(--color-dark) center/cover no-repeat; }
.film-showcase video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.film-showcase::after { content: ""; position: absolute; inset: 0; background: rgba(8,8,8,0.42); transition: background 0.25s var(--ease); }
.film-showcase.is-playing::after { background: rgba(8,8,8,0.08); }
.film-caption { position: absolute; left: clamp(1.25rem, 4vw, 3rem); bottom: clamp(1.25rem, 4vw, 3rem); z-index: 2; max-width: 34ch; }
.film-caption .eyebrow { margin-bottom: 0.4em; }
.film-caption h3 { color: var(--color-cream); font-size: clamp(1.4rem, 2.6vw, 2.1rem); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 3; width: clamp(4.5rem, 8vw, 6.5rem); height: clamp(4.5rem, 8vw, 6.5rem);
  border-radius: 50%; border: 1px solid rgba(245,241,234,0.6);
  background: rgba(13,13,13,0.35); backdrop-filter: blur(4px);
  color: var(--color-cream); display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), border-color 0.25s var(--ease);
}
.play-btn:hover { border-color: var(--color-gold-on-dark); transform: translate(-50%, -50%) scale(1.06); }
.film-showcase.is-playing .play-btn { opacity: 0; pointer-events: none; }

/* ==========================================================================
   Collections grid — full-bleed tiles
   ========================================================================== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(1.875rem, 4vw, 3.25rem); }
.section-head p { color: var(--color-ink-dim); }
/* Wider variant for a longer intro paragraph (3D Catalogue, Distributor). */
.section-head--wide { max-width: 70ch; }

/* Centred single-column CTA copy — the closing "Explore Collections /
   Book a Consultation / Get In Touch" block repeated at the bottom of
   every inner page. Was six copies of the same inline style="..." pair;
   consolidated into one reusable pair of classes. */
.cta-copy--centered { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-copy--centered p { margin-left: auto; margin-right: auto; margin-bottom: 1.6em; }

/* Simple two-column reasons/benefits grid (Distributor page) — a plain
   grid, unlike .milestones-grid which is specifically an image+timeline
   pairing with an uneven column ratio and a sticky media column. */
.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 700px) {
  .reasons-grid { grid-template-columns: 1fr; }
}

.collections-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--color-line); }
.collection-tile { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--color-bg-soft); }
.collection-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.collection-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0) 45%, rgba(10,10,10,0.82) 100%); }
.collection-tile:hover img { transform: scale(1.07); }
.collection-label { position: absolute; left: 1.4rem; bottom: 1.3rem; z-index: 2; }
.collection-label .eyebrow { margin-bottom: 0.2em; color: var(--color-gold-on-dark); }
.collection-label h3 { font-size: 1.25rem; color: var(--color-cream); margin: 0; }

/* ==========================================================================
   Testimonials — light band, no photographic background needed
   ========================================================================== */
.testimonials { position: relative; background: var(--color-bg-alt); padding: var(--space-section) 0; }
.testimonial-slide { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center; display: none; }
.testimonial-slide.is-active { display: block; }
.testimonial-slide blockquote { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.4; margin: 0 0 1.2em; color: var(--color-ink); }
.testimonial-slide cite { font-style: normal; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); }
.testimonial-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 2.2rem; position: relative; z-index: 2; }
/* Button hit area is a full 44px touch target (WCAG 2.5.8); the negative
   margin cancels the extra box out of layout so the visible dots keep
   their original tight spacing. The dot itself is the ::before. */
.testimonial-dots button {
  width: 44px; height: 44px; margin: -18px; padding: 0;
  border: none; background: none;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-dots button::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-line-strong);
  transition: background 0.2s var(--ease);
}
.testimonial-dots button.is-active::before { background: var(--color-gold); }

/* ==========================================================================
   Final CTA / contact — light band
   ========================================================================== */
.cta-section { position: relative; background: var(--color-bg); padding: var(--space-section) 0; }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.cta-copy h2 { font-size: clamp(1.875rem, 4vw, 3.25rem); }
.cta-copy p { color: var(--color-ink-dim); max-width: 44ch; }
.cta-contacts { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.cta-contacts a { color: var(--color-ink); font-size: 1rem; }
.cta-contacts a:hover { color: var(--color-gold); }

/* Brand book §05 Form fields: white field, 1px #D9D5CC-ish border, charcoal
   text, gold focus ring, 48-52px height, labels always visible. */
.contact-form { display: grid; gap: var(--space-16); }
.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); }
.contact-form .field { display: grid; gap: 0.45em; }
.contact-form label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-secondary);
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  min-height: 50px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-base);
  color: var(--color-ink);
  padding: 0.9em 1em;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.contact-form textarea { min-height: 120px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--color-ink-faint); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 60, 0.18);
}
/* Native <select> renders with no visual relation to the text fields
   around it otherwise (default OS control, wrong height/border/font) —
   reset to the same box, add a custom gold chevron since appearance:none
   drops the native one. */
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.6em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2386662a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
}
.contact-form select:invalid { color: var(--color-ink-faint); }
.contact-form button { justify-self: start; margin-top: 0.4rem; }

/* ==========================================================================
   Footer — the other deliberate dark band, anchoring the page
   ========================================================================== */
/* Brand book §02/§11: charcoal "Dark Section" (#1D1D1B) is the one other
   deliberately dark band besides the hero and film showcase. The logo file
   has a transparent background so it drops into any dark surface cleanly. */
.site-footer { background: var(--color-dark-alt); color: var(--color-cream); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; color: var(--color-cream); }
.footer-logo span { color: var(--color-gold-on-dark); }
.footer-logo-img { height: clamp(2.3rem, 4vw, 3.1rem); width: auto; display: block; }
.footer-nav ul { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-cream-dim); }
.footer-nav a:hover { color: var(--color-gold-on-dark); }
.footer-social { display: flex; gap: 1rem; }
/* 44px minimum touch target (WCAG 2.5.8). */
.footer-social a { width: 2.75rem; height: 2.75rem; border: 1px solid rgba(245,241,234,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--color-cream); }
.footer-social a:hover { border-color: var(--color-gold-on-dark); color: var(--color-gold-on-dark); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.75rem; border-top: 1px solid rgba(245,241,234,0.12); font-size: 0.78rem; color: var(--color-cream-faint); }

/* ==========================================================================
   Inner-page hero — full-bleed image banner used by page.php and every
   template-*.php (About, Collections, Films, Contact). A warm light scrim
   sits over the banner photo (rather than a dark one) to match the rest of
   the site; the solid header sits on top.
   ========================================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--subheader-h) + clamp(4rem, 10vw, 7rem)) 0 clamp(3rem, 6vw, 5rem);
  background: var(--color-bg-alt) center/cover no-repeat;
  border-bottom: 1px solid var(--color-line);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,247,241,0.5) 0%, rgba(250,247,241,0.88) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--color-gold-text); }
.page-hero h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); max-width: 18ch; }
.page-hero p { color: var(--color-ink-dim); max-width: 56ch; font-size: 1.05rem; margin-top: 0.6em; }

.page-content { padding: var(--space-section) 0; max-width: 800px; margin: 0 auto; color: var(--color-ink-dim); }
.page-content img { margin: 1.5em 0; }

/* ==========================================================================
   About page — timeline, gallery, leadership quote
   ========================================================================== */
.about-lede { max-width: 720px; margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.about-lede p { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--color-ink-dim); }

/* Milestones: sticky image beside a taller scrolling timeline */
.milestones-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.milestones-media { position: relative; aspect-ratio: 4/5; overflow: hidden; position: sticky; top: calc(var(--header-h) + var(--subheader-h) + 2rem); }
.milestones-media img { width: 100%; height: 100%; object-fit: cover; }

.timeline { border-left: 1px solid var(--color-line-strong); }
.timeline-item { position: relative; padding: 0 0 clamp(2rem, 4vw, 3rem) clamp(1.75rem, 4vw, 2.75rem); }
.timeline-item::before { content: ""; position: absolute; left: -5px; top: 0.35em; width: 9px; height: 9px; border-radius: 50%; background: var(--color-gold); }
.timeline-item .year { font-family: var(--font-serif); color: var(--color-gold-text); font-size: 1.1rem; display: block; margin-bottom: 0.3em; }
.timeline-item p { color: var(--color-ink-dim); max-width: 56ch; }

.about-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--color-line); }
.about-gallery > * { aspect-ratio: 4/5; }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; }

.leadership-quote { max-width: 760px; margin: 0 auto; text-align: center; padding: clamp(2.5rem, 5vw, 4rem) 0; }
.leadership-quote blockquote { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--color-ink); line-height: 1.45; }
.leadership-quote cite { display: block; margin-top: 1em; font-style: normal; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); }

/* ==========================================================================
   Collections page — detailed cards (image + specs), alternating layout
   ========================================================================== */
.collection-card { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; padding: clamp(2.5rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--color-line); }
.collection-card:last-child { border-bottom: none; }
.collection-card:nth-child(even) .collection-card-media { order: 2; }
.collection-card-media { position: sticky; top: calc(var(--header-h) + var(--subheader-h) + 2rem); aspect-ratio: 4/3; overflow: hidden; }
.collection-card-media img { width: 100%; height: 100%; object-fit: cover; }
.collection-card-body h3 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
.collection-card-body p { color: var(--color-ink-dim); max-width: 50ch; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.2rem 0 1.6rem; }
/* "Technical" copy per the brand book's type-hierarchy table: Montserrat,
   mid-grey, used for specs/codes/dimensions. */
.spec-chip {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-base);
  padding: 0.5em 0.9em;
}

/* Shade swatch listing within a collection card — grouped by colour family
   for the larger collections (e.g. Solids), flat for the smaller ones. */
.shade-groups { margin: 0.4rem 0 1.4rem; }
.shade-family-label { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-maroon-soft); margin: 1.1rem 0 0.5rem; }
.shade-family-label:first-child { margin-top: 0; }
.shade-chips { margin: 0 0 0.2rem; }
.shade-chip { font-size: 0.68rem; color: var(--color-ink-faint); border-color: var(--color-line); }
@media (max-width: 860px) {
  .collection-card-media { position: static; }
}

/* ==========================================================================
   Films page — grid of click-to-play cards (variant of .film-showcase).
   These tiles stay dark/cinematic like the homepage showcase; the page
   background around them is light.
   ========================================================================== */
.films-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
.film-card { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--color-dark) center/cover no-repeat; }
.film-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.film-card::after { content: ""; position: absolute; inset: 0; background: rgba(8,8,8,0.42); transition: background 0.25s var(--ease); }
.film-card.is-playing::after { background: rgba(8,8,8,0.08); }
.film-card .play-btn { width: clamp(3.4rem, 6vw, 4.5rem); height: clamp(3.4rem, 6vw, 4.5rem); font-size: 0.9rem; }
.film-card.is-playing .play-btn { opacity: 0; pointer-events: none; }
.film-card-caption { position: absolute; left: 1.2rem; bottom: 1.1rem; z-index: 2; }
.film-card-caption .eyebrow { margin-bottom: 0.2em; font-size: 0.66rem; color: var(--color-gold-on-dark); }
.film-card-caption h3 { font-size: 1.05rem; color: var(--color-cream); margin: 0; }

/* ==========================================================================
   Contact page — location cards + map + form
   ========================================================================== */
.contact-page-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.location-cards { display: grid; gap: 1.25rem; margin-top: 2rem; }
.location-card { border: 1px solid var(--color-line); border-radius: var(--radius-base); padding: 1.5rem; background: var(--color-bg-soft); }
.location-card h4 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 0.4em; color: var(--color-gold-text); }
.location-card p { color: var(--color-ink-dim); font-size: 0.92rem; margin-bottom: 0.3em; }
.location-card a { color: var(--color-ink); }
.location-card a:hover { color: var(--color-gold); }

.map-embed { position: relative; aspect-ratio: 4/3; overflow: hidden; margin-bottom: 2rem; }
.map-embed img { width: 100%; height: 100%; object-fit: cover; }
.map-embed-note {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
  font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-cream); background: rgba(20, 18, 14, 0.78); padding: 0.5em 0.9em;
}

.contact-page-grid .contact-form { background: var(--color-bg-soft); padding: clamp(1.75rem, 4vw, 2.5rem); border: 1px solid var(--color-line); border-radius: var(--radius-base); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .site-header .container { grid-template-columns: 1fr; justify-items: center; }
  .story-grid, .cta-grid, .milestones-grid { grid-template-columns: 1fr; }
  .story-media, .milestones-media { position: static; aspect-ratio: 16/10; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form .row-2 { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
  .collection-card { grid-template-columns: 1fr; }
  .collection-card:nth-child(even) .collection-card-media { order: 0; }
  .films-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-cell:nth-child(2n+1) { border-left: none; }
  .feature-cell { border-top: 1px solid rgba(247, 246, 243, 0.14); }
  .feature-cell:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 560px) {
  .films-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
  .features-strip { grid-template-columns: 1fr; }
  .feature-cell { border-left: none !important; border-top: 1px solid rgba(247, 246, 243, 0.14); }
  .feature-cell:first-child { border-top: none; }
}

/* ==========================================================================
   Client revision (Aug 2026) — added sections & elements
   1) Download Catalogue: nav pill + pre-footer band
   2) Matching Edge Band section (homepage, near top)
   3) Telescopic Drawer Slides section (homepage)
   4) Contact person + phone (homepage CTA, contact page, footer)
   ========================================================================== */

/* ---------- 1a) "Download Catalogue" nav item ---------- */
/* Desktop header: render as a normal nav link (no filled highlight) — it
   just stays on one line so the long label doesn't wrap. Overlay + footer
   keep a subtle gold tint (text only, no background). */
.site-header .primary-nav .menu-download a { white-space: nowrap; }
.menu-overlay .menu-download a { color: var(--color-gold-on-dark); }
.footer-nav .menu-download a { color: var(--color-gold-on-dark); font-weight: 700; }

/* ---------- 1b) Pre-footer Download Catalogue band ---------- */
.catalogue-band {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: clamp(2.75rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(211, 176, 97, 0.22);
}
.catalogue-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.catalogue-band-copy { max-width: 46ch; }
.catalogue-band-copy h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  color: var(--color-cream);
  margin: 0.15em 0 0.4em;
}
.catalogue-band-copy p { color: var(--color-cream-dim); margin: 0; font-size: 0.95rem; }
.catalogue-band-action { display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; }
.catalogue-band-action .cat-dl-icon { font-size: 1.05em; margin-right: 0.15em; }
.catalogue-band-note {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-cream-faint);
}

/* ---------- 2) Matching Edge Band section ---------- */
.edge-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.edge-band-media { position: relative; aspect-ratio: 5/4; overflow: hidden; border-radius: 6px; }
.edge-band-media img { width: 100%; height: 100%; object-fit: cover; }
.edge-band-copy h2 { font-size: clamp(1.8rem, 3.4vw, 3rem); margin-bottom: 0.5em; }
.edge-band-copy p { color: var(--color-ink-dim); max-width: 48ch; }
.edge-band-list { list-style: none; margin: 1.6rem 0 2rem; padding: 0; display: grid; gap: 0.85rem; }
.edge-band-list li {
  display: flex; align-items: center; gap: 0.7em;
  font-size: 0.95rem; color: var(--color-ink);
}
.edge-band-list .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-gold); flex: none; }

/* ---------- 3) Telescopic Drawer Slides section ---------- */
.slides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.slides-copy h2 { font-size: clamp(1.8rem, 3.4vw, 3rem); margin-bottom: 0.5em; }
.slides-copy p { color: var(--color-cream-dim); max-width: 50ch; }
.slides-features { margin: 1.6rem 0 2rem; display: grid; gap: 0.85rem; }
.slide-feature {
  display: flex; align-items: flex-start; gap: 0.7em;
  font-size: 0.95rem; color: var(--color-cream);
}
.slide-feature .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-gold-on-dark); flex: none; margin-top: 0.45em; }
.slides-media {
  border: 1px solid rgba(211, 176, 97, 0.22);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background: rgba(255,255,255,0.02);
}
.slides-media img { width: 100%; height: auto; display: block; }
.slides-media-caption {
  display: block; padding: 0.85rem 1rem 1rem;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-cream-faint);
}

/* ---------- 4) Contact person + phone ---------- */
.cta-contact-name { display: block; font-weight: 700; color: var(--color-ink); font-size: 1rem; letter-spacing: 0.02em; }
.location-contact-name { font-weight: 700; color: var(--color-ink); margin-bottom: 0.15rem; }
.footer-contact { padding: 1.5rem 0 0.25rem; }
.footer-contact-name { font-weight: 700; color: var(--color-cream); letter-spacing: 0.04em; margin: 0 0 0.25rem; }
.footer-contact-lines { margin: 0; font-size: 0.85rem; color: var(--color-cream-dim); }
.footer-contact-lines a { color: var(--color-cream-dim); }
.footer-contact-lines a:hover { color: var(--color-gold-on-dark); }

/* ---------- Responsive for the new sections ---------- */
@media (max-width: 900px) {
  .edge-band-grid,
  .slides-grid { grid-template-columns: 1fr; }
  .edge-band-media { aspect-ratio: 16/11; order: -1; }
  .catalogue-band-inner { flex-direction: column; align-items: flex-start; }
  /* 8 tiles read fine as a 2-col grid on tablet; keep the existing rule. */
}

/* ---------- Product sub-header (client revision, Aug 2026) ---------- */
/* Slim dark strip beneath the white nav bar, naming the two product lines
   and linking to their homepage sections. */
.subheader {
  height: var(--subheader-h);
  background: var(--color-dark);
  border-top: 1px solid rgba(211, 176, 97, 0.28);
}
.subheader-inner {
  /* Own container sizing — deliberately NOT the .container class, which
     inside .site-header is the 3-column top-bar grid. */
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.4rem);
}
.subheader-label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-cream-faint);
  margin-right: 0.15rem;
}
.subheader-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-cream);
  padding-bottom: 0.15em;
  border-bottom: 1px solid transparent;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.subheader-link:hover { color: var(--color-gold-on-dark); border-bottom-color: var(--color-gold-on-dark); }
.subheader-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--color-gold-on-dark); opacity: 0.7; flex: none;
}
@media (max-width: 560px) {
  /* Keep both product links on mobile but drop the "Our Products" label
     and tighten spacing so they fit one line on small screens. */
  .subheader-label { display: none; }
  .subheader-link { font-size: 0.68rem; letter-spacing: 0.06em; }
  .subheader-inner { gap: 0.6rem; }
}
