/* ==========================================================================
   Lucy Barber Shop — v2
   "Werribee Gold": dark editorial base, gold + chrome accents, warm oak notes.
   Design tokens drawn from the shop's real interior/branding photography —
   black tufted leather, chrome barber chairs, oak floors, gold badge logo.
   ========================================================================== */

:root {
  /* Color */
  --bg: #0a0a0c;
  --bg-elevated: #131217;
  --bg-card: #1a1920;
  --bg-card-hover: #201f27;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f4f1ea;
  --text-muted: #a9a6a8;
  --text-faint: #706d72;

  --gold: #d9a544;
  --gold-bright: #f0c56b;
  --gold-dim: #8a6a2f;
  --chrome: #c9cdd3;
  --wood: #a97c4f;

  --barber-red: #b3372c;
  --barber-blue: #2c5fa8;

  --success: #5fbf72;

  /* Type */
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-section: clamp(4rem, 8vw, 8rem);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --radius-glass: 18px;

  --container: 1240px;
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 0 1px rgba(217, 165, 68, 0.35), 0 12px 30px -10px rgba(217, 165, 68, 0.25);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--gold);
  color: #14120a;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---- Typography ---- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}
h1.h-display { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2.h-display { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h3.h-display { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 46ch;
}

.section-head {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
  max-width: 640px;
}
.section-head.center { margin-inline: auto; text-align: center; align-items: center; justify-items: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.9em 1.7em;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #17130a;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(217, 165, 68, 0.45); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn-sm { padding: 0.65em 1.3em; font-size: 0.85rem; }
.btn-arrow { transition: transform 0.35s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: var(--space-4) 0;
  transition: padding 0.4s var(--ease);
}
.site-header .container { display: flex; }

/* ---- Floating capsule — logo, sliding pill nav and CTAs all live in one
   rounded glass bar instead of a full-width bar, echoing the "floating
   nav" pattern (see reference: dark rounded capsule, sliding link
   indicator, ghost + solid CTA pair on the right). ---- */
.nav-capsule {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  width: 100%;
  overflow: hidden;
  /* Low-alpha tint + heavy backdrop blur/saturate is what reads as "glass"
     rather than a dark panel — the page behind should stay visible, just
     frosted and colour-boosted, not washed out under a near-opaque fill. */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 55%),
    rgba(20, 19, 24, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-glass);
  padding: 0.5em 0.5em 0.5em 1.2em;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 25px 55px -30px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
/* Diagonal sheen — the "liquid" specular highlight glass catches. */
.nav-capsule::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 35%);
  pointer-events: none;
}
.site-header.is-scrolled { padding: var(--space-3) 0; }
.site-header.is-scrolled .nav-capsule {
  /* Scrolled state still needs to win contrast against busy photo content
     underneath, so it darkens slightly — but stays translucent, never flat. */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 55%),
    rgba(12, 11, 14, 0.38);
  border-color: rgba(255, 255, 255, 0.22);
}

.brand { display: flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.02em; flex-shrink: 0; }
.brand img { width: 34px; height: 34px; transition: transform 0.4s var(--ease); }

@media (max-width: 480px) {
  .brand { font-size: 0; gap: 0; } /* logo mark only — no room for the wordmark beside the capsule's actions */
}

.header-actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.header-actions .btn-primary { border-radius: var(--radius-glass); }

/* ---- Hamburger — only shown once the pill nav hides itself (see the
   pill-nav media query below); opens the existing full-screen panel. ---- */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.menu-toggle:hover { border-color: var(--gold); }
.menu-toggle span { width: 16px; height: 1.5px; background: var(--text); transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(2.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-2.75px) rotate(-45deg); }
@media (max-width: 860px) { .menu-toggle { display: inline-flex; } }
.status-pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 0.4em 0.9em 0.4em 0.7em;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-faint); flex-shrink: 0; }
.status-pill[data-open="true"] .status-dot { background: var(--success); box-shadow: 0 0 0 3px rgba(95,191,114,0.18); }
.status-pill[data-open="true"] { color: var(--text); border-color: rgba(95,191,114,0.35); }

@media (max-width: 640px) { .status-pill { display: none; } }

/* ==========================================================================
   Full-screen sliding navigation
   Nav is now a single Menu control at every breakpoint; activating it slides
   a full-screen panel in over the page with large stacked links.
   ========================================================================== */
.primary-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: rgba(9, 9, 11, 0.97);
  backdrop-filter: blur(18px);
  visibility: hidden;
  clip-path: circle(2% at calc(100% - 3.4rem) 2.6rem);
  transition: clip-path 0.7s var(--ease), visibility 0s linear 0.7s;
}
.primary-nav.is-open {
  visibility: visible;
  clip-path: circle(150% at calc(100% - 3.4rem) 2.6rem);
  transition: clip-path 0.7s var(--ease), visibility 0s linear 0s;
}
.primary-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) clamp(1.5rem, 6vw, 5rem);
}
.primary-nav ul { display: flex; flex-direction: column; gap: 0.2em; }
.primary-nav li { overflow: hidden; }
.primary-nav ul a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  line-height: 1.15;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  transform: translateY(100%);
}
.primary-nav.is-open a { transform: translateY(0); }
.primary-nav ul a:hover, .primary-nav ul a[aria-current="page"] { color: var(--gold-bright); }
.primary-nav ul a[aria-current="page"]::after { content: "—"; margin-left: 0.4em; color: var(--gold); }
.primary-nav .nav-cta { display: inline-flex; margin-top: var(--space-6); }
.primary-nav-aside {
  border-left: 1px solid var(--line);
  padding: var(--space-8) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-6);
}
.primary-nav-aside h4 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.8em; }
.primary-nav-aside p, .primary-nav-aside a { color: var(--text-muted); font-size: 0.92rem; }
.primary-nav-aside a:hover { color: var(--gold); }
.nav-close {
  position: absolute; top: var(--space-5); right: var(--space-5);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  z-index: 2;
}
.nav-close:hover { border-color: var(--gold); }

@media (max-width: 780px) {
  .primary-nav { grid-template-columns: 1fr; clip-path: circle(2% at calc(100% - 2.8rem) 2.4rem); }
  .primary-nav.is-open { clip-path: circle(150% at calc(100% - 2.8rem) 2.4rem); }
  .primary-nav-aside { border-left: none; border-top: 1px solid var(--line); padding-top: var(--space-6); }
}
@media (prefers-reduced-motion: reduce) {
  .primary-nav { transition: none; clip-path: none; transform: translateX(100%); }
  .primary-nav.is-open { clip-path: none; transform: translateX(0); }
  .primary-nav ul a { transform: none; }
}

/* ==========================================================================
   Pill nav — sits centered inside the capsule; a rounded pill of page
   links with a highlight that slides under whichever link is hovered,
   falling back to the current page when the pointer leaves.
   ========================================================================== */
.pill-nav {
  display: flex;
  align-items: center;
  gap: 0.2em;
  position: relative;
  border-radius: var(--radius-glass);
  padding: 0.3em;
  margin: 0 auto;
}
.pill-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.55em 1.1em;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 12px;
  transition: color 0.35s var(--ease);
  flex-shrink: 0;
}
.pill-nav a:hover, .pill-nav a[aria-current="page"] {
  color: var(--text);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
/* Glass chip — a translucent, blurred rounded-rectangle rather than a
   solid pill, so it reads as part of the same liquid-glass surface as
   the capsule instead of a flat brand-color fill. */
.pill-highlight {
  position: absolute;
  top: 0.3em; bottom: 0.3em; left: 0;
  width: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(240, 197, 107, 0.3), rgba(217, 165, 68, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 18px -10px rgba(217, 165, 68, 0.45);
  transition: transform 0.4s var(--ease), width 0.4s var(--ease);
  z-index: 0;
}
@media (max-width: 860px) {
  .pill-nav { display: none; } /* header's too tight — the hamburger opens the full menu instead */
}
@media (prefers-reduced-motion: reduce) {
  .pill-nav, .pill-highlight { transition: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--space-9) + 3rem) 0 var(--space-8);
  overflow: hidden;
  background: var(--bg);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.4) 35%, rgba(10,10,12,0.92) 92%),
    linear-gradient(90deg, rgba(10,10,12,0.85) 0%, rgba(10,10,12,0.25) 55%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-7); align-items: end; }
.hero-title-wrap { overflow: hidden; }
.hero .eyebrow { margin-bottom: var(--space-4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }

/* Locale chip — same liquid-glass language as the header capsule, now
   doing something on click instead of sitting there as plain text: it
   opens the shop's address in Google Maps. */
.hero-locale-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: var(--space-4);
  padding: 0.55em 0.9em 0.55em 0.8em;
  border-radius: var(--radius-glass);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 55%), rgba(20, 19, 24, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero-locale-pill:hover { color: var(--gold-bright); border-color: rgba(217, 165, 68, 0.45); transform: translateY(-1px); }
.hero-locale-pill-arrow { transition: transform 0.3s var(--ease); }
.hero-locale-pill:hover .hero-locale-pill-arrow { transform: translate(2px, -2px); }

.hero-stat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 55%), rgba(20, 19, 24, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 20px 45px -25px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: grid;
  gap: var(--space-4);
}
.hero-stat-card .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.15em; }
.hero-stat-row { display: flex; align-items: baseline; gap: 0.5em; }
.hero-stat-row strong { font-family: var(--font-display); font-size: 2.4rem; color: var(--text); }
.hero-badge-3d {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 130px;
  margin-left: auto;
  position: relative;
}
.hero-badge-3d canvas { border-radius: 50%; }
.hero-badge-3d img.badge-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border-radius: 50%;
  transition: opacity 0.6s var(--ease);
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* The heading is the lead element on mobile — the review card follows
     it in normal document order (no more order:-1 flipping it to the
     top) and shrinks to a compact secondary strip instead of a tall,
     dominant block. */
  .hero-stat-card { padding: var(--space-4); gap: var(--space-3); }
  .hero-stat-row strong { font-size: 1.7rem; }
  .hero-badge-3d { max-width: 64px; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: var(--space-5); left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5em;
  color: var(--text-faint); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollcue 2s ease-in-out infinite; }
@keyframes scrollcue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--space-9) + 2.5rem) 0 var(--space-8);
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; top: -20%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(217,165,68,0.16), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { color: var(--text-faint); font-size: 0.85rem; margin-bottom: var(--space-4); }
.breadcrumb a:hover { color: var(--gold); }

/* ==========================================================================
   Sections / generic
   ========================================================================== */
.section { padding: var(--space-section) 0; position: relative; }
.section-alt { background: var(--bg-elevated); }
.divider-gold {
  height: 3px;
  width: 64px;
  background: linear-gradient(90deg, var(--barber-red), var(--gold), var(--barber-blue));
  border-radius: var(--radius-pill);
  margin: var(--space-6) auto;
}

/* ==========================================================================
   Trust stack — four quick-fact cards, each its own photo + link to the
   relevant section. They start collapsed into a fanned deck and open out
   into the row as the section scrolls into view (see motion.js) — the
   animation is scroll-scrubbed, not a one-shot reveal, so scrolling back
   up folds them back into the stack instead of just re-hiding them.
   ========================================================================== */
.trust-stack {
  position: relative;
  z-index: 3;
  background: var(--bg);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 860px) { .trust-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-cards { grid-template-columns: 1fr; } }

.trust-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: 0 26px 55px -20px rgba(0,0,0,0.65); }
.trust-card-media {
  position: absolute; inset: 0;
  z-index: -2;
  background-image: var(--card-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 0.6s var(--ease);
}
.trust-card:hover .trust-card-media { transform: scale(1.14); }
.trust-card::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(195deg, var(--tint-a) 0%, var(--tint-b) 65%, rgba(8,8,10,0.94) 100%);
}
/* Per-card tint — brand tones standing in for the reference's per-card
   photo colour grade (gold, chrome, wood, barber-pole red). */
.trust-card--gold::before { --tint-a: rgba(217,165,68,0.05); --tint-b: rgba(20,17,10,0.55); }
.trust-card--chrome::before { --tint-a: rgba(201,205,211,0.08); --tint-b: rgba(14,15,17,0.6); }
.trust-card--wood::before { --tint-a: rgba(169,124,79,0.12); --tint-b: rgba(20,15,10,0.6); }
.trust-card--red::before { --tint-a: rgba(179,55,44,0.18); --tint-b: rgba(20,10,9,0.62); }

.trust-card-figure {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--text);
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}
.trust-card-label {
  font-size: 0.85rem;
  color: rgba(244, 241, 234, 0.82);
  margin-top: 0.2em;
}
.trust-card-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: var(--space-4);
  padding: 0.5em 0.9em;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.trust-card-cta svg { transition: transform 0.3s var(--ease); }
.trust-card:hover .trust-card-cta { background: rgba(255, 255, 255, 0.22); }
.trust-card:hover .trust-card-cta svg { transform: translateX(2px); }
@media (prefers-reduced-motion: reduce) {
  .trust-card, .trust-card-media, .trust-card-cta svg { transition: none; }
}

/* Feature / about grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.about-media img { aspect-ratio: 4/5; object-fit: cover; }
.about-media .chip {
  position: absolute; bottom: var(--space-4); left: var(--space-4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 55%), rgba(14, 13, 17, 0.3);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: 0.8rem; color: var(--text-muted);
}
.about-body p + p { margin-top: var(--space-4); color: var(--text-muted); }
.checklist { display: grid; gap: var(--space-3); margin-top: var(--space-6); }
.checklist li { display: flex; gap: 0.8em; align-items: flex-start; font-size: 0.95rem; color: var(--text-muted); }
.checklist .mark { color: var(--gold); flex-shrink: 0; font-family: var(--font-display); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Services cards */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: grid;
  gap: var(--space-4);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold-dim); background: var(--bg-card-hover); }
.service-card .icon { width: 46px; height: 46px; color: var(--gold); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; font-family: var(--font-body); }
.service-card p { color: var(--text-muted); font-size: 0.92rem; }
.service-card .price-row { display: flex; justify-content: space-between; align-items: baseline; padding-top: var(--space-3); border-top: 1px solid var(--line); margin-top: var(--space-2); }
.service-card .price { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-bright); }
.service-card .duration { font-size: 0.78rem; color: var(--text-faint); }

@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }

/* Pricing table (services page) */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead th {
  text-align: left; font-family: var(--font-display); letter-spacing: 0.04em;
  font-weight: 400; font-size: 0.95rem; color: var(--text-faint);
  padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--line-strong);
}
.pricing-table tbody td { padding: var(--space-4); border-bottom: 1px solid var(--line); vertical-align: top; }
.pricing-table tbody tr:hover { background: rgba(217,165,68,0.04); }
.pricing-table .svc-name { font-weight: 700; }
.pricing-table .svc-desc { display: block; font-size: 0.82rem; color: var(--text-faint); margin-top: 2px; }
.pricing-table .svc-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-bright); text-align: right; white-space: nowrap; }
.pricing-table .svc-duration { text-align: right; color: var(--text-muted); white-space: nowrap; }
.pricing-note { margin-top: var(--space-4); font-size: 0.85rem; color: var(--text-faint); }

@media (max-width: 640px) {
  .pricing-table thead th:nth-child(3), .pricing-table tbody td:nth-child(3) { display: none; }
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--space-4);
  border: 1px solid var(--line); position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4); transition: filter 0.5s var(--ease), transform 0.6s var(--ease); }
.team-card:hover .team-photo img { filter: grayscale(0); transform: scale(1.04); }
.team-card h3 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.02em; }
.team-card .role { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin: 0.3em 0 0.6em; }
.team-card p { color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 780px) { .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

/* ==========================================================================
   Drag slider (gallery + testimonials share the mechanic)
   ========================================================================== */
.slider {
  position: relative;
}
.slider-track {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  cursor: grab;
  padding-bottom: var(--space-3);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.slider-track > * { scroll-snap-align: start; flex-shrink: 0; }

.slide-card {
  width: min(340px, 78vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.slide-card .media-wrap { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.slide-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.slide-card:hover img { transform: scale(1.06); }
.slide-card figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: 0.82rem; color: var(--text-muted);
  display: flex; justify-content: space-between; gap: 1em;
}

.slider-controls { display: flex; justify-content: flex-end; gap: var(--space-3); margin-top: var(--space-5); }
.slider-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.slider-btn:hover { border-color: var(--gold); background: rgba(217,165,68,0.08); transform: translateY(-2px); }
.slider-btn svg { width: 18px; height: 18px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(6,6,7,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: var(--space-6);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(920px, 92vw); max-height: 82vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute; top: var(--space-5); right: var(--space-5);
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { border-color: var(--gold); }

/* ==========================================================================
   Testimonials marquee
   ========================================================================== */
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.section-alt .marquee-wrap::before { background: linear-gradient(90deg, var(--bg-elevated), transparent); }
.section-alt .marquee-wrap::after { background: linear-gradient(270deg, var(--bg-elevated), transparent); }

.marquee-track {
  display: flex;
  gap: var(--space-5);
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee-wrap:hover .marquee-track, .marquee-track.is-paused { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.review-card {
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: grid;
  gap: var(--space-3);
}
.review-card .stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.9rem; }
.review-card p { color: var(--text-muted); font-size: 0.92rem; }
.review-card cite { font-style: normal; font-size: 0.78rem; color: var(--text-faint); font-weight: 600; }

.reviews-toggle-list { display: none; }
.reviews-toggle-list.is-active { display: grid; gap: var(--space-4); grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .reviews-toggle-list.is-active { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.accordion { border-top: 1px solid var(--line); max-width: 760px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) 0;
  text-align: left;
  font-weight: 700; font-size: 1.05rem;
}
.accordion-trigger .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.accordion-trigger .plus::before, .accordion-trigger .plus::after {
  content: ""; position: absolute; background: var(--gold); border-radius: 2px;
}
.accordion-trigger .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.accordion-trigger .plus::after { height: 100%; width: 2px; left: 50%; top: 0; transform: translateX(-50%); transition: transform 0.3s var(--ease); }
.accordion-trigger[aria-expanded="true"] .plus::after { transform: translateX(-50%) rotate(90deg) scaleX(0); }
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.accordion-panel p { padding-bottom: var(--space-5); color: var(--text-muted); max-width: 60ch; }

/* ==========================================================================
   Contact / location
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-6); display: grid; gap: var(--space-5);
}
.detail-row { display: flex; gap: var(--space-4); align-items: flex-start; }
.detail-row .icon { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.detail-row a:hover { color: var(--gold-bright); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.5em 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table tr.today td { color: var(--gold-bright); font-weight: 700; }
.hours-table tr.today td:last-child { color: var(--gold-bright); }
.social-row { display: flex; gap: var(--space-3); }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.3s, transform 0.3s;
}
.social-btn:hover { border-color: var(--gold); transform: translateY(-2px); }

.map-embed {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4/3; position: relative;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) invert(0.92) contrast(0.9); }

/* ==========================================================================
   Skeleton loading (standard across all async media)
   ========================================================================== */
.media-skel {
  position: relative;
  background: linear-gradient(100deg, var(--bg-card) 30%, var(--bg-card-hover) 50%, var(--bg-card) 70%);
  background-size: 220% 100%;
  animation: skel-shimmer 1.6s ease-in-out infinite;
}
.media-skel img, .media-skel iframe {
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.media-skel.is-loaded { animation: none; background: none; }
.media-skel.is-loaded img, .media-skel.is-loaded iframe { opacity: 1; }
.media-skel.is-error { animation: none; background: var(--bg-card); }
.media-skel.is-error::after {
  content: "Image unavailable";
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--text-faint);
}
@keyframes skel-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -20% 0; } }

/* ==========================================================================
   Section connectors — a scroll-scrubbed gold thread that hands the eye
   from one homepage section to the next, instead of each one dead-
   stopping on a ghost-button exit link. The fill grows in step with
   scroll position (same scrub philosophy as the trust stack above), so
   it reads as a live thread being pulled taut, not a static arrow.
   ========================================================================== */
.section-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-7) 0;
  text-align: center;
}
.section-connector-line {
  position: relative;
  width: 2px;
  height: 68px;
  border-radius: 2px;
  background: var(--line);
  overflow: hidden;
}
.section-connector-fill {
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(var(--gold-bright), var(--gold));
}
.section-connector-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.3s var(--ease);
}
a.section-connector-label:hover { color: var(--gold-bright); }
@media (prefers-reduced-motion: reduce) {
  .section-connector-fill { transform: scaleY(1); }
}

/* ==========================================================================
   Closing strip — the calm, single-line sign-off for pages that already
   made their real ask above the fold (Contact), instead of a second
   boxed CTA repeating "Book online".
   ========================================================================== */
.closing-strip {
  border-top: 1px solid var(--line);
  padding: var(--space-6) 0;
}
.closing-strip .container {
  display: flex; align-items: center; justify-content: center; gap: var(--space-4);
  flex-wrap: wrap; text-align: center;
}
.closing-strip .status-pill { font-size: 0.85rem; padding: 0.55em 1.1em 0.55em 0.9em; }
.closing-strip .status-pill .status-dot { width: 9px; height: 9px; }
.closing-strip-note { color: var(--text-faint); font-size: 0.85rem; }

/* ==========================================================================
   FAQ close — a deliberate stop after the last accordion item (services
   page) rather than another CTA box repeating the price-table's ask.
   ========================================================================== */
.faq-close {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: 760px;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
}
.faq-close::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.faq-close p { color: var(--text-muted); font-size: 0.9rem; }
.faq-close a { color: var(--gold); font-weight: 600; }
.faq-close a:hover { color: var(--gold-bright); }

/* ==========================================================================
   CTA split — the closing moment for About and Gallery: a photo-and-text
   banner rather than the centred radial-gradient box, so it doesn't read
   as the same component repeated as index's reinforced final ask.
   ========================================================================== */
.cta-split {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cta-split .container { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 0; padding: 0; max-width: 100%; }
.cta-split-media { position: relative; min-height: 260px; }
.cta-split-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8) clamp(1.5rem, 5vw, 4rem);
  background: var(--bg-elevated);
}
.cta-split-copy .actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-2); }
@media (max-width: 780px) {
  .cta-split .container { grid-template-columns: 1fr; }
  .cta-split-media { min-height: 200px; order: -1; }
}

/* ==========================================================================
   CTA band + footer
   ========================================================================== */
.cta-band {
  position: relative;
  padding: var(--space-9) 0;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(217,165,68,0.14), transparent 60%), var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cta-band .h-display { max-width: 20ch; margin-inline: auto; }
.cta-band .actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; margin-top: var(--space-6); }
/* The homepage keeps the only closing band left on the site, so it carries
   the site's single reinforced "real" ask — bigger, with a slow-turning
   gold glow behind it and a breathing halo on the primary button. */
.cta-band--primary { padding: calc(var(--space-9) + 1.5rem) 0; }
.cta-band--primary::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: conic-gradient(from 0deg, rgba(217,165,68,0.16), transparent 30%, transparent 70%, rgba(217,165,68,0.16));
  animation: ctaGlowSpin 16s linear infinite;
  z-index: 0;
}
.cta-band--primary .container { position: relative; z-index: 1; }
.cta-band--primary .h-display { max-width: 24ch; font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
.cta-band--primary .btn-primary { box-shadow: var(--shadow-gold), 0 0 0 0 rgba(217,165,68,0.5); animation: ctaPulse 2.6s ease-in-out infinite; }
@keyframes ctaGlowSpin { to { transform: rotate(360deg); } }
@keyframes ctaPulse {
  0%, 100% { box-shadow: var(--shadow-gold), 0 0 0 0 rgba(217,165,68,0.35); }
  50% { box-shadow: var(--shadow-gold), 0 0 0 14px rgba(217,165,68,0); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-band--primary::before { animation: none; }
  .cta-band--primary .btn-primary { animation: none; }
}

.site-footer { background: var(--bg); padding: var(--space-8) 0 var(--space-5); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-6);
  padding-bottom: var(--space-7); border-bottom: 1px solid var(--line);
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 32ch; margin-top: var(--space-3); }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--space-4); }
.footer-col ul { display: grid; gap: 0.7em; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-3);
  padding-top: var(--space-5); font-size: 0.8rem; color: var(--text-faint);
}
.footer-bottom .disclosure { max-width: 60ch; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reveal utility (GSAP hooks) — motion.js toggles .is-visible
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].is-visible { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }

/* ==========================================================================
   Scroll backdrop — morph/zoom transition between full-bleed section photos
   One fixed layer per page (where applicable), holding a stacked "frame"
   per section. JS toggles .is-active as each section centers in view; the
   outgoing frame zooms further out while fading, the incoming frame
   settles from a zoomed-in start to rest — reads as one photo pushing
   through into the next rather than a hard cut.
   ========================================================================== */
.scroll-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
}
.backdrop-frame {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.18);
  transition: opacity 1.3s var(--ease), transform 1.8s var(--ease);
  will-change: opacity, transform;
}
.backdrop-frame img { width: 100%; height: 100%; object-fit: cover; }
.backdrop-frame.is-active { opacity: 1; transform: scale(1); }
.backdrop-frame.is-leaving { opacity: 0; transform: scale(0.9); transition-duration: 1.1s; }
.scroll-backdrop::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.7) 0%, rgba(10,10,12,0.55) 30%, rgba(10,10,12,0.94) 96%),
    linear-gradient(90deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.15) 45%);
}
/* Sections that sit above a scroll-backdrop need transparent panels so the
   photo actually shows through where content allows it. */
.backdrop-page .section { background: transparent; }
.backdrop-page .section-alt { background: rgba(19, 18, 23, 0.72); backdrop-filter: blur(6px); }
.backdrop-page .hero-media { display: none; } /* the fixed backdrop replaces the hero's own media layer */
.backdrop-page .hero,
.backdrop-page .page-hero { background: transparent; }

@media (prefers-reduced-motion: reduce) {
  .backdrop-frame { transition: opacity 0.3s linear; transform: none !important; }
}

/* ==========================================================================
   Hero heading
   ========================================================================== */
/* The home hero heading only (not the site-wide display face) borrows the
   shop's real signage lettering — a bold slab serif — instead of Bebas
   Neue, per direct request: biggest element on the page, both lines the
   same size/weight, no logo redo needed. */
.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.9;
  font-size: clamp(2.6rem, 12.5vw, 8.4rem);
  color: var(--text);
  text-shadow: 0 6px 30px rgba(0,0,0,0.55);
}
.hero-heading-line { display: block; overflow: hidden; }
.hero-heading-line-fill { display: inline-block; }
/* The second line cascades right and picks up the brand gold — same size
   and weight as the first, just a different colour, so the block reads
   as one diagonal signature rather than a hierarchy of two sizes. */
.hero-heading-line--accent {
  margin-top: 0.06em;
  margin-left: clamp(0.8rem, 6vw, 3.5rem);
  color: var(--gold-bright);
}
@media (max-width: 560px) {
  .hero-heading-line--accent { margin-left: 0.5rem; }
}
/* ==========================================================================
   Page transition overlay — 3D barber-stripe wipe played on internal
   navigation (real navigation underneath; this just covers/reveals it).
   ========================================================================== */
.page-transition {
  position: fixed; inset: 0; z-index: 999;
  pointer-events: none;
  overflow: hidden;
}
.page-transition.is-animating { pointer-events: all; }

.page-transition .wipe-fill {
  position: absolute; inset: 0;
  background: var(--bg);
  clip-path: inset(0 0 0 0);
  /* Covers the screen by default (no-JS/no-CSS-animation safe state), then
     a pure-CSS keyframe reveals it shortly after paint — this does NOT
     depend on JS running, so a blocked/failed script never leaves the
     page permanently covered. JS/GSAP re-drives this for the exit wipe
     when navigating to another page. */
  animation: wipe-reveal 0.45s var(--ease) forwards;
  animation-delay: 0.05s;
}
@keyframes wipe-reveal {
  from { clip-path: inset(0 0 0 0); }
  to   { clip-path: inset(0 100% 0 0); }
}
.page-transition.is-animating .wipe-fill { animation: none; } /* JS takes over via GSAP during an exit transition */

/* The chrome-and-gold blade riding the wipe edge — decorative only. The
   .wipe-fill above is what actually covers/reveals the page, so a failed
   GSAP load just means a plain wipe with no blade, never a stuck screen. */
.page-transition .blade {
  position: absolute;
  top: -20%; left: 0;
  width: 44px; height: 140%;
  transform: translateX(-100px) rotate(-7deg);
  opacity: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,205,211,0.3) 15%,
    var(--chrome) 42%,
    var(--gold-bright) 50%,
    var(--chrome) 58%,
    rgba(201,205,211,0.3) 85%,
    transparent 100%);
  filter: drop-shadow(0 0 14px rgba(240,197,107,0.4));
}
.page-transition .blade-glint {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% var(--glint-y, 50%),
    rgba(255,255,255,0.9) 0%,
    rgba(240,197,107,0.5) 40%,
    transparent 70%);
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition { display: none; }
}

/* Progressive enhancement only: in browsers that support cross-document
   View Transitions (Chromium-based, at time of writing), naming the brand
   mark lets the browser morph it smoothly between pages on top of our own
   wipe. Browsers that don't recognise this just ignore it — no fallback
   needed, the sessionStorage-driven state above already looks correct
   with or without it. */
@view-transition { navigation: auto; }
.brand { view-transition-name: brand-mark; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

/* ==========================================================================
   3D depth-reveal — extra rotateX added to [data-reveal] via GSAP (motion.js
   sets the transform origin/perspective; this just establishes the stage).
   ========================================================================== */
[data-reveal-3d] {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* ==========================================================================
   Reduced motion — hard override, applies everywhere
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .media-skel { animation: none; }
}
