/* ============================================================
   STILL STANDING STUDIOS — Design System
   Dark luxury barbershop. Deep black + gold. Editorial spacing.
   ============================================================ */

/* Google Fonts loaded via <link> in HTML head to avoid CSS @import render-blocking */

:root {
  /* Surfaces — warm-tinted blacks */
  --bg:        #0a0a0a;
  --bg-2:      #0d0c0a;
  --surface:   #131110;
  --surface-2: #1a1714;
  --line:      rgba(201,151,58,0.16);
  --line-soft: rgba(255,255,255,0.07);

  /* Gold */
  --gold:        #C9973A;
  --gold-text:   #D6A958;
  --gold-bright: #EAC97C;
  --gold-deep:   #9A6E26;
  --gold-grad:   linear-gradient(135deg, #F3DA96 0%, #D6A958 42%, #C9973A 64%, #9A6E26 100%);
  --gold-soft:   rgba(201,151,58,0.10);

  /* Text */
  --white:   #F6F4F1;
  --muted:   #9D968C;
  --muted-2: #6E685F;

  /* Type */
  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --body:    'Hanken Grotesk', system-ui, sans-serif;
  --script:  'Allura', cursive;

  --maxw: 1240px;
  --nav-h: 78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

section { position: relative; }

.section-pad {
  padding-block: clamp(5rem, 11vw, 9.5rem);
}

/* ---------- Type utilities ---------- */
.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  color: var(--gold-text);
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.6rem;
  padding: 0.52rem 1.05rem 0.52rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(201,151,58,0.32);
  background:
    linear-gradient(180deg, rgba(201,151,58,0.12) 0%, rgba(201,151,58,0.025) 100%),
    rgba(12,11,9,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 2px 14px -8px rgba(201,151,58,0.4);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,151,58,0.85), 0 0 2px rgba(234,201,124,0.9);
  display: inline-block;
  flex: none;
}

.display {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.005em;
}

h2.display { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }

.hero-loctag {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: 0.26em;
  font-size: 12px;
  color: var(--gold-text);
  margin: 1.1rem 0 0.6rem;
}

.gold { color: var(--gold-text); }
.gold-fill {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  padding: 1.05rem 2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .35s ease, background .3s ease, color .3s ease, border-color .3s ease;
  min-height: 52px;
  white-space: nowrap;
}
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-gold {
  background: var(--gold-grad);
  color: #1a1206;
  box-shadow: 0 6px 22px -10px rgba(201,151,58,0.6);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(201,151,58,0.75);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-text);
  transform: translateY(-2px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--white);
  transition: color .3s ease, gap .3s ease;
}
.btn-text .arrow { transition: transform .3s ease; }
.btn-text:hover { color: var(--gold-text); }
.btn-text:hover .arrow { transform: translateX(5px); }

/* ---------- Image placeholders ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 11px),
    radial-gradient(120% 90% at 30% 10%, #1c1814 0%, #100e0c 55%, #0a0908 100%);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 70% 80%, rgba(201,151,58,0.06), transparent 70%);
  pointer-events: none;
}
.ph-label {
  position: relative;
  z-index: 2;
  margin: 1rem;
  font-family: 'Hanken Grotesk', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid var(--line-soft);
  background: rgba(10,9,8,0.55);
  backdrop-filter: blur(4px);
  padding: 0.4rem 0.7rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.ph-label::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.8;
}

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
  }
  .js .reveal.in { opacity: 1; transform: none; }
  .js .reveal.d1 { transition-delay: .08s; }
  .js .reveal.d2 { transition-delay: .16s; }
  .js .reveal.d3 { transition-delay: .24s; }
  .js .reveal.d4 { transition-delay: .32s; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line-soft);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img { height: 58px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.5rem);
  list-style: none;
}
.nav-links a {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.4rem 0;
  position: relative;
  transition: color .3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold-text); }
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-cta .btn { padding: 0.8rem 1.5rem; min-height: 44px; font-size: 0.76rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  z-index: 120;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  margin-inline: auto;
  transition: transform .35s ease, opacity .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .4s ease, transform .4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.mobile-close span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: var(--gold-text);
  transition: background .3s ease;
}
.mobile-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-close span:nth-child(2) { transform: rotate(-45deg); }
.mobile-close:hover { border-color: var(--gold); background: var(--gold-soft); transform: rotate(90deg); }
.mobile-menu a {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  color: var(--muted);
  padding: 0.7rem 1rem;
  transition: color .3s ease;
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--gold-text); }
.mobile-menu a.btn-gold { color: #1a1206; }
.mobile-menu .btn-gold { margin-top: 1.5rem; font-size: 0.9rem; padding: 1.1rem 2.4rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
  padding-top: var(--nav-h);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 5rem) clamp(2rem,6vw,4rem) clamp(1.25rem, 5vw, max(2rem, calc((100vw - var(--maxw))/2 + 4rem)));
  gap: 1.6rem;
}
.hero-headline {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.9rem, 7.2vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
}
.hero-headline span { display: block; }
.hero-sub {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  max-width: 36ch;
}
.hero-sub strong { color: var(--white); font-weight: 500; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-media .ph { position: absolute; inset: 0; border: none; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 22%, transparent 100%),
              linear-gradient(0deg, rgba(10,10,10,0.45), transparent 40%);
  pointer-events: none;
  z-index: 3;
}
.hero-scroll {
  position: absolute;
  left: clamp(1.25rem, 5vw, max(2rem, calc((100vw - var(--maxw))/2 + 4rem)));
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.66rem;
  color: var(--muted-2);
  z-index: 5;
}
.hero-scroll .line {
  width: 46px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative; overflow: hidden;
}
.hero-scroll .line::after {
  content:""; position:absolute; inset:0;
  width: 18px; background: var(--gold);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:translateX(-20px)} 60%,100%{transform:translateX(50px)} }

/* Hero secondary CTA — desktop default */
.hero-hear .hear-mobile,
.hero-hear .scroll-bar { display: none; }
.hero-hear .scroll-bar {
  width: 54px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,151,58,0.30), transparent);
  position: relative; overflow: hidden;
}
.hero-hear .scroll-bar::after {
  content: ""; position: absolute; inset: 0;
  width: 20px; background: var(--gold);
  box-shadow: 0 0 8px rgba(201,151,58,0.7);
  animation: scrollLine 2.4s ease-in-out infinite;
}

/* ============================================================
   STORY
   ============================================================ */
.story { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.story-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.25fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.story-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  aspect-ratio: 3/4.4;
  border-radius: 5px;
}
.story-portrait .pull {
  position: relative;
  z-index: 2;
  margin: 1.6rem;
  margin-top: auto;
}
.story-portrait .pull q {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.1;
  quotes: none;
  display: block;
}
.story-portrait .pull q span { display: block; }
.story-portrait .pull q .l2 { color: var(--gold-text); }
.signature {
  font-family: var(--script);
  font-size: 2.2rem;
  color: var(--gold-text);
  line-height: 1;
  margin-top: 0.8rem;
  transform: rotate(-3deg);
}
.story-body { padding-top: 0.4rem; }
.story-body h2 { margin: 1.3rem 0 2rem; max-width: 18ch; }
.story-body p {
  color: var(--muted);
  margin-bottom: 1.15rem;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}
.story-body p:first-of-type::first-letter,
.story-body .lede::first-letter {
  /* subtle emphasis on opening */
}
.story-body .lede { color: var(--white); font-weight: 400; }
.story-body .gold { color: var(--gold-text); }
.story-body em { font-style: italic; color: var(--ink, var(--white)); }
.story-body p.beat { margin: 0 0 1.15rem; }
.story-stack { display: flex; flex-direction: column; gap: 1.15rem; margin: 0 0 1.15rem; }
.story-stack p { margin: 0; }
.story-cta { margin-top: 2.2rem; }

/* Timeline */
.timeline-head {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.82rem;
  color: var(--gold-text);
  margin-bottom: 2rem;
}
.timeline {
  position: relative;
  padding-left: 1.9rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201,151,58,0.25) 80%, transparent 100%);
}
.tl-item { position: relative; padding-bottom: 1.9rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -1.9rem; top: 4px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 4px var(--bg);
  transition: background .3s ease, box-shadow .3s ease;
}
.tl-item.final::before { background: var(--gold-grad); box-shadow: 0 0 0 4px var(--bg), 0 0 14px rgba(201,151,58,0.5); }
.tl-age {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--gold-text);
  margin-bottom: 0.35rem;
}
.tl-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.tl-item.final .tl-text { color: #b9b2a8; }
.tl-item.final .tl-text b { color: var(--gold-text); font-weight: 600; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testi { background: var(--bg); border-top: 1px solid var(--line-soft); }
.testi-inner {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.testi-mark {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.7;
}
.testi-quote {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.testi-quote .em { color: var(--gold-text); }
.testi-attr {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--gold-text);
}
.testi-loc {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.45rem;
}
.testi-support {
  color: var(--muted);
  max-width: 60ch;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.75;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.services-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.services-head h2 { margin-top: 1.3rem; }
.services-head .bridge { color: var(--muted); align-self: end; max-width: 48ch; line-height: 1.75; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), border-color .4s ease, box-shadow .4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.9);
}
.service-card .ph { aspect-ratio: 4/3.1; border: none; border-bottom: 1px solid var(--line-soft); }
.ph.has-img { background: none; }
.ph.has-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph.has-img::after { display: none; }
.service-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.service-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.service-name {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.12rem;
}
.service-price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--gold-text);
  white-space: nowrap;
}
.service-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.services-cta { display: flex; justify-content: center; margin-top: 3.5rem; }

/* ============================================================
   STUDIO
   ============================================================ */
.studio { background: var(--bg); border-top: 1px solid var(--line-soft); }
.studio-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 3rem;
}
.studio-head h2 { margin-top: 1.3rem; }
.studio-head .lead { align-self: end; }
.studio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.studio-grid .ph { border-radius: 5px; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.studio-cta { display: flex; justify-content: center; margin-top: 2.8rem; }
.studio-soon {
  margin-top: 2.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  letter-spacing: 0.02em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); border-top: 1px solid var(--line-soft); }
.faq-head { margin-bottom: 3.5rem; }
.faq-head h2 { margin-top: 1.3rem; }
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--white);
  transition: color .3s ease;
  cursor: pointer;
}
.faq-q:hover { color: var(--gold-text); }
.faq-icon {
  width: 22px; height: 22px;
  flex: none;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  top: 50%; left: 50%;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .35s ease;
}
.faq-icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s cubic-bezier(.22,.61,.36,1);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.75;
  padding-bottom: 1.6rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(70% 130% at 50% 0%, rgba(201,151,58,0.10), transparent 60%),
    var(--bg-2);
}
.final-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.final h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 1.3rem 0 1.3rem;
}
.final .lead { max-width: 44ch; }
.final-action { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.final-action .btn-gold { font-size: 0.95rem; padding: 1.25rem 2.6rem; }
.final-note {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  color: var(--muted-2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #070706; border-top: 1px solid var(--line-soft); padding-block: clamp(3.5rem, 6vw, 5rem) 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer-brand img { height: 190px; width: auto; margin-bottom: 1.3rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 30ch; line-height: 1.7; }
.footer-col h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--gold-text);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.9rem; transition: color .3s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bizname { color: var(--white) !important; font-weight: 600; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; white-space: nowrap; }
.hours-row span:last-child { color: var(--muted-2); }
.hours-row.closed span:last-child { color: var(--gold-deep); }

.socials { display: flex; gap: 0.7rem; margin-bottom: 1.2rem; }
.socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--muted);
  transition: all .3s ease;
}
.socials a:hover { border-color: var(--gold); color: var(--gold-text); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }
.newsletter-note { color: var(--muted); font-size: 0.86rem; line-height: 1.6; margin-bottom: 1rem; }
.subscribe { display: flex; border: 1px solid var(--line-soft); border-radius: 4px; overflow: hidden; max-width: 280px; }
.subscribe input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  color: var(--white); font-family: var(--body); font-size: 0.85rem;
  padding: 0.75rem 0.9rem;
}
.subscribe input::placeholder { color: var(--muted-2); }
.subscribe button {
  background: var(--gold-soft); border: none; color: var(--gold-text);
  padding: 0 0.95rem; display: flex; align-items: center;
  transition: background .3s ease;
}
.subscribe button:hover { background: var(--gold); color: #1a1206; }

.footer-bottom {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line-soft);
  padding-block: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted-2); font-size: 0.8rem; }
.footer-bottom .built {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--muted-2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-portrait { position: relative; top: 0; max-width: 460px; aspect-ratio: 16/12; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding-top: clamp(3rem, 12vw, 5rem); padding-bottom: 3rem; order: 1; }
  .hero-media { order: 2; min-height: 60vh; }
  .hero-scroll { display: none; }
  /* Mobile hero secondary CTA → centered "scroll" prompt with pulsing bar */
  .hero-actions { justify-content: center; }
  .hero-hear {
    flex-direction: column;
    align-items: center;
    gap: 0.95rem;
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
    text-align: center;
  }
  .hero-hear .hear-desktop { display: none; }
  .hero-hear .hear-mobile { display: inline; }
  .hero-hear .scroll-bar { display: block; }
  .services-head, .studio-head { grid-template-columns: 1fr; gap: 1.4rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .final-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 680px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .studio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { gap: 0.8rem; }
}

@media (max-width: 460px) {
  .service-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}
