/* ==========================================================================
   GOLDEN TOUCH BARBER — Stylesheet
   --------------------------------------------------------------------------
   Visual system, layout primitives, components and page-specific styles.
   Depends on css/tokens.css — load that first.
   ========================================================================== */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--bone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle film grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 .5em;
  color: var(--bone);
}
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1rem; color: var(--bone-dim); }
p.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--bone); line-height: 1.55; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.script-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--gold);
}

/* ---------- Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
  position: relative;
}
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--dark  { background: var(--coal); }
.section--char  { background: var(--char); }

.divider {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .95rem 1.6rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--bone);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--lg { padding: 1.1rem 2rem; font-size: .85rem; }

/* arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.arrow-link:hover { gap: 1rem; border-color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .02em;
  line-height: 1;
}
.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--ink);
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .3s var(--ease);
}
.brand:hover .brand__mark { box-shadow: inset 0 0 0 1px var(--gold); }
.brand__name { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name small {
  font-family: var(--font-body);
  font-size: .58rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  position: relative;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color .3s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a.active { color: var(--gold); }
.nav__links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nav__cta { display: inline-flex; gap: .6rem; align-items: center; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone);
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform .35s var(--ease), background .2s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), top .25s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top:  6px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding:
    calc(var(--header-h) + 1rem)
    var(--gutter)
    max(2rem, env(safe-area-inset-bottom));
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer ul {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-drawer a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.2rem);
  line-height: 1.1;
  color: var(--bone);
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 1.25rem;
}
.mobile-drawer a.active { color: var(--gold); }
.mobile-drawer__footer {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.mobile-drawer__footer .btn {
  width: 100%;
  /* The drawer is always tight — override the default uppercase-tracked
     button typography so it actually fits on a 320–390px phone. */
  white-space: normal;
  font-size: .72rem;
  letter-spacing: .12em;
  padding: 1rem 1.25rem;
  line-height: 1.4;
  min-height: 48px;
}
.mobile-drawer__footer .btn svg { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(80% 60% at 80% 20%, rgba(201,162,74,.18), transparent 60%),
    radial-gradient(60% 50% at 10% 80%, rgba(201,162,74,.08), transparent 60%),
    linear-gradient(180deg, #0A0908 0%, #14110E 40%, #0A0908 100%);
}
.hero__img {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  opacity: .35;
  filter: grayscale(.2) contrast(1.05);
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,9,8,.4) 0%, transparent 30%, rgba(10,9,8,.85) 100%),
    linear-gradient(90deg, rgba(10,9,8,.7) 0%, transparent 50%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: end;
  width: 100%;
  padding-block: 4rem 5rem;
}

.hero__copy { max-width: 820px; }
.hero__title {
  font-size: clamp(3rem, 8.5vw, 7.2rem);
  line-height: .95;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--bone-dim);
  max-width: 560px;
  line-height: 1.55;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line-soft);
}
.hero__meta-item small {
  display: block;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.hero__meta-item p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bone);
  margin: 0;
  line-height: 1.3;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ash);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .4; }
  50%      { transform: scaleY(1);  transform-origin: top; opacity: 1; }
}

/* ---------- About / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.split__media img,
.split__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.split__media:hover img { transform: scale(1.04); }
.split__media::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  transform: translate(18px, 18px);
  z-index: -1;
  opacity: .6;
}
.split__copy h2 { margin-bottom: 1.5rem; }
.split__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.split__stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: .35rem;
}
.split__stat small {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ---------- Section header ---------- */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.sec-head--left { text-align: left; margin-inline: 0; }
.sec-head h2 { margin: .85rem 0 1rem; }
.sec-head p { color: var(--bone-dim); }

/* ---------- Service highlights (cards) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.svc-card {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(201,162,74,.12), transparent 50%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--line); }
.svc-card:hover::before { opacity: 1; }
.svc-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: .1em;
}
.svc-card h3 { margin: 1rem 0 .65rem; font-size: 1.5rem; }
.svc-card p  { font-size: .95rem; margin: 0 0 1.5rem; color: var(--bone-dim); }
.svc-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  font-size: .85rem;
}
.svc-card__price { color: var(--gold); font-family: var(--font-display); font-size: 1.25rem; }
.svc-card__time  { color: var(--ash); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }

/* ---------- Why-choose feature grid ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
.feat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: background .4s var(--ease);
}
.feat:hover { background: rgba(201,162,74,.04); }
.feat__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.feat__icon svg { width: 20px; height: 20px; }
.feat h3 { font-size: 1.25rem; margin: 0 0 .5rem; }
.feat p  { font-size: .92rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: .75rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .6s var(--ease);
  filter: grayscale(.15);
}
.gallery__item:hover img { transform: scale(1.06); filter: grayscale(0); }

.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.gallery__item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(4) { grid-column: span 2; grid-row: span 1; }
.gallery__item:nth-child(5) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(6) { grid-column: span 2; grid-row: span 2; }

/* ---------- Video block ---------- */
.video-block {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--char);
  box-shadow: var(--shadow-soft);
}
.video-block video,
.video-block iframe,
.video-block__media {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.video-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5));
  pointer-events: none;
}

/* Custom play/pause button on the background video */
.video-block__toggle {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10,9,8,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--bone);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.video-block__toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}
.video-block__toggle svg { width: 18px; height: 18px; }

/* ---------- Testimonials ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review {
  padding: 2rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.015), transparent);
  position: relative;
}
.review__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: .95rem;
}
.review p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--bone);
  margin: 0 0 1.5rem;
}
.review__who {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  font-size: .85rem;
}
.review__who strong { color: var(--bone); font-weight: 600; }
.review__who small { color: var(--ash); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.review-summary .score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.review-summary .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.review-summary small  { display: block; color: var(--ash); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; margin-top: .35rem; }

/* ---------- Hours block ---------- */
.hours {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  background: linear-gradient(180deg, rgba(201,162,74,.04), transparent);
}
.hours h3 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.hours__list { list-style: none; margin: 0; padding: 0; }
.hours__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: .95rem;
}
.hours__list li:last-child { border-bottom: 0; }
.hours__list .day  { color: var(--bone-dim); letter-spacing: .04em; }
.hours__list .time { color: var(--bone); font-family: var(--font-display); font-size: 1.1rem; }
.hours__list .closed { color: var(--ash); }
.hours__note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
  font-size: .8rem;
  color: var(--ash);
  letter-spacing: .03em;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: calc(var(--maxw) - 2 * var(--gutter));
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(201,162,74,.18), transparent 70%),
    linear-gradient(180deg, var(--char), var(--coal));
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(201,162,74,.04) 12px 13px);
  z-index: -1;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p  { max-width: 540px; margin: 0 auto 2rem; }
.cta-banner__ctas { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---------- Map ---------- */
.map-wrap {
  position: relative;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(.7) brightness(1.05) contrast(.95);
}
.map-pin {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  padding: .65rem 1rem;
  background: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--coal);
  border-top: 1px solid var(--line-soft);
  padding: clamp(3.5rem, 6vw, 5rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .65rem; font-size: .92rem; color: var(--bone-dim); }
.footer-col a:hover { color: var(--gold); }

.footer-brand .brand { margin-bottom: 1.25rem; }
.footer-brand p { font-size: .92rem; max-width: 320px; }

.socials { display: flex; gap: .65rem; margin-top: 1rem; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone-dim);
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: var(--ash);
  letter-spacing: .04em;
}
.footer-legal { display: inline-flex; gap: 1.25rem; }
.footer-legal a { color: var(--bone-dim); transition: color .3s var(--ease); }
.footer-legal a:hover { color: var(--gold); }
.credit-link {
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px dotted transparent;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.credit-link:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

/* ---------- Page header (interior pages) ---------- */
.page-head {
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(201,162,74,.12), transparent 70%),
    var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.page-head h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin-bottom: 1rem;
}
.page-head h1 em { font-style: italic; color: var(--gold); }
.page-head p { max-width: 620px; margin: 0 auto; }

/* ---------- Services page — pricing list ---------- */
.price-cat {
  margin-bottom: 4rem;
}
.price-cat__head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.price-cat__head h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.price-cat__head small {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: auto;
}
.price-list { list-style: none; margin: 0; padding: 0; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px dashed var(--line-soft);
  align-items: center;
}
.price-row:last-child { border-bottom: 0; }
.price-row__name {
  display: flex;
  flex-direction: column;
}
.price-row__name h3 {
  font-size: 1.35rem;
  margin: 0 0 .35rem;
  color: var(--bone);
}
.price-row__name p { font-size: .92rem; margin: 0; color: var(--bone-dim); max-width: 540px; }
.price-row__meta { text-align: right; }
.price-row__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.price-note {
  padding: 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--ash);
  text-align: center;
  margin-top: 2rem;
}

/* ---------- Blog page ---------- */
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--line-soft);
}
.featured-post__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
}
.featured-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.featured-post__media:hover img { transform: scale(1.03); }
.tag {
  display: inline-block;
  padding: .35rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.featured-post h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 1rem; }
.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 1.5rem;
}
.post-meta span + span::before { content: "·"; margin-right: 1rem; color: var(--gold); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.blog-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .6s var(--ease);
  filter: grayscale(.1);
}
.blog-card:hover .blog-card__media img { transform: scale(1.06); filter: grayscale(0); }
.blog-card .tag { margin-bottom: .85rem; }
.blog-card h3 { font-size: 1.4rem; margin: 0 0 .65rem; }
.blog-card p  { font-size: .92rem; margin: 0 0 1.25rem; }
.blog-card .arrow-link { margin-top: auto; align-self: flex-start; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.form {
  display: grid;
  gap: 1.25rem;
  padding: 2.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input,
.field textarea {
  padding: .9rem 1rem;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--bone);
  transition: border-color .3s var(--ease), background .3s var(--ease);
  font-family: var(--font-body);
  font-size: .95rem;
}
.field textarea { min-height: 140px; resize: vertical; font-family: var(--font-body); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,162,74,.04);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ash-dim); }

.form__status {
  font-size: .9rem;
  color: var(--gold);
  text-align: center;
  min-height: 1.2em;
}

.contact-info { display: grid; gap: 2rem; }
.contact-block {
  padding: 1.75rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.contact-block h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.contact-block a, .contact-block p { color: var(--bone); font-size: 1.05rem; margin: 0 0 .35rem; font-family: var(--font-display); }
.contact-block small { color: var(--ash); font-size: .85rem; font-family: var(--font-body); letter-spacing: .02em; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line-soft);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bone);
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform .3s var(--ease);
  flex: 0 0 auto;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item summary:hover { color: var(--gold); }
.faq__item div {
  padding: 0 0 1.5rem;
  color: var(--bone-dim);
  font-size: .98rem;
  max-width: 720px;
}

/* ---------- Legal / Long-form copy pages ---------- */
.legal {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem);
}
.legal h2 {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal p,
.legal li { color: var(--bone-dim); line-height: 1.7; }
.legal p { margin-bottom: 1.1rem; }
.legal ul,
.legal ol {
  padding-left: 1.25rem;
  margin: 0 0 1.5rem;
}
.legal li { margin-bottom: .65rem; }
.legal li::marker { color: var(--gold); }
.legal strong { color: var(--bone); font-weight: 600; }
.legal a {
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.legal a:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.legal__updated {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  font-size: .82rem;
  color: var(--ash);
  letter-spacing: .04em;
}

/* Big error code display (404 / 401) */
.err-code {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(7rem, 22vw, 14rem);
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 4px 60px rgba(201,162,74,.25);
  letter-spacing: -0.05em;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Instagram carousel ---------- */
.ig-feed {
  position: relative;
}
.ig-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .5rem;
  scroll-behavior: smooth;
}
.ig-track::-webkit-scrollbar { display: none; }

.ig-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--char);
  isolation: isolate;
}
.ig-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter .6s var(--ease);
  filter: grayscale(.1);
}
.ig-card:hover img { transform: scale(1.06); filter: grayscale(0); }
.ig-card__overlay {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 40%, rgba(10,9,8,.85));
  opacity: 0;
  transition: opacity .35s var(--ease);
  color: var(--bone);
  z-index: 1;
}
.ig-card:hover .ig-card__overlay,
.ig-card:focus-within .ig-card__overlay { opacity: 1; }
.ig-card__caption {
  font-family: var(--font-body);
  font-size: .85rem;
  line-height: 1.4;
  margin: 0 0 .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-card__stats {
  display: flex;
  gap: 1rem;
  font-size: .78rem;
  color: var(--gold-light);
  letter-spacing: .08em;
}
.ig-card__stats span { display: inline-flex; align-items: center; gap: .35rem; }
.ig-card__stats svg { width: 14px; height: 14px; }
.ig-card__corner {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 2;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(10,9,8,.6);
  color: var(--bone);
  backdrop-filter: blur(6px);
}
.ig-card__corner svg { width: 14px; height: 14px; }

.ig-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}
.ig-handle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}
.ig-handle a:hover { color: var(--gold-light); }
.ig-nav { display: flex; gap: .5rem; }
.ig-nav button {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--bone);
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.ig-nav button:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,162,74,.06);
}
.ig-nav button:disabled { opacity: .35; cursor: not-allowed; }
.ig-nav svg { width: 16px; height: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post__media { aspect-ratio: 16 / 10; }
}

@media (max-width: 860px) {
  .nav { gap: 1rem; }
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .split__media { aspect-ratio: 4 / 3; }
  .split__media::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 110px;
  }
  .gallery__item:nth-child(n) { grid-column: span 2; grid-row: span 2; }
  .price-cat__head { flex-wrap: wrap; }
  .price-cat__head small { margin-left: 0; width: 100%; }
  .map-wrap { aspect-ratio: 4 / 5; }
}

@media (max-width: 560px) {
  :root { --header-h: 68px; }

  /* Tighter header so brand + CTA + toggle fit comfortably on small phones */
  .nav__cta { gap: .4rem; }
  .nav__cta .btn--gold {
    padding: .7rem 1rem;
    font-size: .72rem;
    letter-spacing: .14em;
  }
  .nav__cta .btn--gold svg { display: none; }
  .nav__toggle { width: 40px; height: 40px; }
  .brand { gap: .65rem; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__name { font-size: 1.05rem; }
  .brand__name small { font-size: .54rem; letter-spacing: .3em; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Hero — comfortable padding without the removed scroll indicator */
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 1rem); }
  .hero__inner { padding-block: 2rem 4rem; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero__meta { gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem; }
  .hero__meta-item { padding-bottom: 1.25rem; border-bottom: 1px solid var(--line-soft); }
  .hero__meta-item:last-child { border-bottom: 0; padding-bottom: 0; }

  .hours { padding: 1.75rem; }
  .form { padding: 1.5rem; }
  .price-row { grid-template-columns: 1fr auto; align-items: center; }
  .price-row__meta { text-align: right; }
  .price-row__price { font-size: 1.5rem; }
  .split__stats { grid-template-columns: 1fr; gap: 1rem; }
  .ig-card { flex: 0 0 78vw; }
  .ig-controls { flex-direction: column-reverse; align-items: flex-start; gap: 1.25rem; }
  .ig-handle { font-size: 1rem; }

  .sec-head--left { gap: 1.25rem !important; }

  /* CTA banner — buttons stack full-width */
  .cta-banner__ctas { flex-direction: column; width: 100%; }
  .cta-banner__ctas .btn { width: 100%; }

  /* Map taller on portrait phones */
  .map-wrap { aspect-ratio: 3 / 4; }

  /* Video block — slightly taller for legibility */
  .video-block { aspect-ratio: 4 / 3; }
  .video-block__toggle { width: 40px; height: 40px; bottom: .85rem; right: .85rem; }

  /* Page header — looser top to clear the smaller sticky header */
  .page-head { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 3rem; }

  /* Reviews summary — center stack */
  .review-summary { flex-direction: column; gap: .5rem; }

  /* Service cards — gentler padding */
  .svc-card { padding: 1.75rem 1.5rem 1.5rem; }
  .feat { padding: 2rem 1.5rem; }

  /* Faq summary — tighter */
  .faq__item summary { font-size: 1.1rem; }
}

@media (max-width: 380px) {
  /* On the very narrowest phones, drop the brand subtitle to save horizontal room */
  .brand__name small { display: none; }
}
