/* ============================================================
   GotClippers — refined oxblood / editorial barber
   Design language ported from PinSeek: hairline borders,
   tracked uppercase eyebrows, ambient warmth, animated CTAs.
   ============================================================ */

:root {
  /* Neutral charcoal-gray (matte, cool) — never pure black/white */
  --ink: #161518;
  --ink-raise: #1e1d22;
  --ink-2: #27262c;
  --bone: #ece9e2;
  --bone-dim: #afaaa1;
  --bone-faint: #807c74;

  /* Antique / matte gold (named --oxblood* for continuity across the sheet) */
  --oxblood: #b69a6b;        /* antique gold mid — solid accents, button base */
  --oxblood-bright: #d3bc8e; /* light antique gold — highlights, hovers */
  --oxblood-deep: #806640;   /* deep bronze */
  /* Foil gradient — muted tan→bronze, not neon */
  --gold-foil: linear-gradient(
    168deg,
    #ecdcb4 0%,
    #cbb080 26%,
    #9f8252 50%,
    #e1ce9b 72%,
    #94794a 100%
  );

  /* Hairlines tinted toward bone */
  --line: rgb(236 233 226 / 0.10);
  --line-strong: rgb(236 233 226 / 0.18);
  --surface: rgb(236 233 226 / 0.025);
  --surface-2: rgb(236 233 226 / 0.05);

  --font-display: "Bricolage Grotesque", "Geist", system-ui, sans-serif;
  --font-body: "Geist", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --gutter: clamp(1.5rem, 6vw, 5rem);
  --header-h: 76px;

  /* iOS safe-area insets (non-zero only with viewport-fit=cover on notched/home-indicator
     devices, 0 everywhere else). We paint these strips solid so the status bar + bottom
     URL bar sit on charcoal, not on see-through page content. */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);

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

  /* `only dark` (like pinseek) stops iOS Safari applying any light-mode
     fallback to its toolbar / canvas — keeps the URL-bar area solid dark. */
  color-scheme: only dark;

  /* ---- Scaling System by Osmo (https://osmo.supply/) ----
     --size-font scales fluidly with the viewport; type sizes are
     calc(--size-font * <scale>). The scales shrink per breakpoint below
     so headings come down naturally on smaller screens. */
  --size-unit: 16;
  --size-container-ideal: 1440;
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));

  /* Type-scale multipliers (× --size-font) — desktop */
  --scale-hero: 7.2;
  --scale-display: 5.6;
  --scale-h2: 4.5;
  --scale-h2-sm: 3.6;
  --scale-lead: 1.65;
  --scale-h3: 2;
  --scale-price: 2.2;
  --scale-quote: 1.28;
  --scale-summary: 1.3;
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --size-container-ideal: 834;
    --size-container-min: 768px;
    --size-container-max: 991px;
    --scale-hero: 5.9;
    --scale-display: 4.6;
    --scale-h2: 3.7;
    --scale-h2-sm: 3;
    --scale-lead: 1.5;
    --scale-h3: 1.9;
    --scale-price: 2;
    --scale-quote: 1.25;
    --scale-summary: 1.25;
  }
}

/* Mobile landscape */
@media screen and (max-width: 767px) {
  :root {
    --size-container-ideal: 550;
    --size-container-min: 480px;
    --size-container-max: 767px;
    --scale-hero: 3.1;
    --scale-display: 2.3;
    --scale-h2: 1.95;
    --scale-h2-sm: 1.7;
    --scale-lead: 1.2;
    --scale-h3: 1.35;
    --scale-price: 1.5;
    --scale-quote: 1.12;
    --scale-summary: 1.18;
  }
}

/* Mobile portrait */
@media screen and (max-width: 479px) {
  :root {
    --size-container-ideal: 390;
    --size-container-min: 320px;
    --size-container-max: 479px;
    --scale-hero: 2.85;
    --scale-display: 2;
    --scale-h2: 1.78;
    --scale-h2-sm: 1.55;
    --scale-lead: 1.12;
    --scale-h3: 1.28;
    --scale-price: 1.42;
    --scale-quote: 1.08;
    --scale-summary: 1.12;
  }
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  /* Solid root background so iOS Safari's toolbar/overscroll area isn't transparent */
  background-color: var(--ink);
}

body {
  margin: 0;
  min-height: 100%;
  background-color: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

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

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

/* ---------- Soft preview password gate ---------- */
.gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background:
    radial-gradient(120% 90% at 50% -10%, rgb(182 154 107 / 0.08), transparent 55%),
    var(--ink);
}
.gc-unlocked .gate { display: none; }
.gc-unlocked { /* scroll restored once unlocked */ }
html:not(.gc-unlocked) { overflow: hidden; }

.gate-card {
  width: min(400px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
}
.gate-logo {
  width: clamp(200px, 64%, 280px);
  height: auto;
  filter: saturate(0.62) brightness(0.97) drop-shadow(0 2px 10px rgb(0 0 0 / 0.5));
  margin-bottom: 0.5rem;
}
.gate-eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--oxblood-bright);
}
.gate-note { margin: 0; color: var(--bone-dim); font-size: 0.95rem; }
.gate-row {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
}
.gate-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  padding: 0 1rem;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 180ms ease;
}
.gate-input::placeholder { color: var(--bone-faint); }
.gate-input:focus { outline: none; border-color: var(--oxblood); }
.gate-error {
  margin: 0.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #cf8e6b;
}
.gate.is-shake { animation: gate-shake 0.4s var(--ease-out); }
@keyframes gate-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(7px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(3px); }
}

.skip-link {
  position: fixed;
  top: calc(var(--safe-top) + 0.75rem);
  left: 1rem;
  z-index: 1000;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  background: var(--bone);
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}
/* Only reveal for keyboard users — :focus alone fires on iOS touch/scroll and
   would flash the button below the header (looking like a non-flush gap). */
.skip-link:focus-visible {
  width: auto;
  height: auto;
  padding: 0.65rem 0.9rem;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.mobile-browser-chrome-fill {
  display: none;
}

/* ---------- Shared typographic atoms ---------- */

.eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--oxblood-bright);
  box-shadow: 0 0 12px rgb(211 188 142 / 0.7);
}

.text-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
  align-self: start;
}
.text-link:hover { color: var(--bone); border-color: var(--oxblood-bright); }
.text-link::after { content: " \2197"; }

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transition: transform 220ms var(--ease-out), color 220ms ease, border-color 220ms ease, background 220ms ease;
}
.btn:hover { transform: translateY(-2px); }

/* Nav CTA reads secondary to the hero CTA — same color, smaller (ui.sh headers) */
.nav-cta {
  min-height: 38px;
  padding: 0 1.1rem;
  font-size: 0.76rem;
}

.btn-primary {
  background: linear-gradient(180deg, var(--oxblood-bright), var(--oxblood));
  color: #221a08;
  border-color: var(--oxblood);
  font-weight: 700;
}
/* Sliding sheen on hover (PinSeek btn-animate-chars idea, hand-rolled) */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #ecdcb4, var(--oxblood-bright));
  transform: translateY(101%);
  transition: transform 320ms var(--ease-out);
}
.btn-primary:hover::before { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--bone); background: var(--surface-2); }

.btn-lg { min-height: 56px; padding: 0 2.2rem; font-size: 0.92rem; }

/* character lift on the animated CTA label */
.btn[data-anim] [data-anim-text] {
  display: inline-block;
  transition: transform 260ms var(--ease-out);
}
.btn[data-anim]:hover [data-anim-text] { transform: translateY(-1px); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: calc(var(--header-h) + var(--safe-top));
  /* push logo/nav below the iOS status bar */
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-inline: var(--gutter);
  /* Solid charcoal across the iOS status strip; the rest stays transparent. */
  background: linear-gradient(
    to bottom,
    var(--ink) var(--safe-top),
    transparent var(--safe-top)
  );
}

[data-safe-top] {
  padding-top: var(--safe-top);
}

/* ---------- Progressive blur (pinseek landing_3, exact) ---------- */
.progressive-blur {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: clamp(7rem, 12vw, 10rem);
  pointer-events: none;
  isolation: isolate;
  contain: paint;
  overflow: hidden;
  transform: translateZ(0);
  transform-origin: center;
  background: linear-gradient(180deg, rgb(22 21 24 / 0.22), rgb(22 21 24 / 0.06) 58%, rgb(22 21 24 / 0) 100%);
}
.progressive-blur__layer {
  position: absolute;
  width: 100%;
  height: 100%;
}
.progressive-blur__layer.is--1 {
  -webkit-backdrop-filter: blur(0.125em) saturate(1.12);
  backdrop-filter: blur(0.125em) saturate(1.12);
  -webkit-mask: linear-gradient(#000 0 48%, #0000 68%);
  mask: linear-gradient(#000 0 48%, #0000 68%);
}
.progressive-blur__layer.is--2 {
  -webkit-backdrop-filter: blur(0.25em) saturate(1.12);
  backdrop-filter: blur(0.25em) saturate(1.12);
  -webkit-mask: linear-gradient(#000 0 38%, #0000 60%);
  mask: linear-gradient(#000 0 38%, #0000 60%);
}
.progressive-blur__layer.is--3 {
  -webkit-backdrop-filter: blur(0.5em) saturate(1.12);
  backdrop-filter: blur(0.5em) saturate(1.12);
  -webkit-mask: linear-gradient(#000 0 28%, #0000 52%);
  mask: linear-gradient(#000 0 28%, #0000 52%);
}
.progressive-blur__layer.is--4 {
  -webkit-backdrop-filter: blur(1em) saturate(1.12);
  backdrop-filter: blur(1em) saturate(1.12);
  -webkit-mask: linear-gradient(#000 0 18%, #0000 42%);
  mask: linear-gradient(#000 0 18%, #0000 42%);
}
.progressive-blur__layer.is--5 {
  -webkit-backdrop-filter: blur(2.25em) saturate(1.12);
  backdrop-filter: blur(2.25em) saturate(1.12);
  -webkit-mask: linear-gradient(#000 0 12%, #0000 34%);
  mask: linear-gradient(#000 0 12%, #0000 34%);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.brand em {
  font-style: normal;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-logo {
  display: block;
  height: clamp(31px, 4.1vw, 38px);
  width: auto;
  /* Desaturate toward the muted primary gold */
  filter: saturate(0.62) brightness(0.97) drop-shadow(0 1px 5px rgb(0 0 0 / 0.55));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
}
.site-nav a:not(.nav-cta) {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bone-dim);
  position: relative;
  transition: color 180ms ease;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--oxblood-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease-out);
}
.site-nav a:not(.nav-cta):hover { color: var(--bone); }
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--bone);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 240ms var(--ease-out), opacity 200ms ease;
}
.site-header.nav-active .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-active .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-active .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.92) contrast(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(22 21 24 / 0.94) 0%, rgb(22 21 24 / 0.7) 38%, rgb(22 21 24 / 0.1) 78%),
    linear-gradient(0deg, rgb(22 21 24 / 0.96) 2%, rgb(22 21 24 / 0) 32%);
}
.hero-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) var(--gutter) clamp(3.5rem, 9vh, 6.5rem);
}
.hero-eyebrow { margin-bottom: 1.6rem; }

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, calc(var(--size-font) * var(--scale-hero)), 8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.hero h1 .line { display: block; }
.hero h1 .accent {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 26px rgb(211 188 142 / 0.22));
}

.hero-lead {
  margin: 1.8rem 0 0;
  max-width: 30ch;
  font-size: clamp(1rem, calc(var(--size-font) * var(--scale-lead)), 1.7rem);
  font-weight: 400;
  line-height: 1.32;
  color: var(--bone-dim);
}
.hero-lead::first-line { color: var(--bone); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.85rem, 4vw, 3.5rem);
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: grid; gap: 0.2rem; min-width: 0; }
.hero-meta dt {
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 1.6vw, 0.625rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  white-space: nowrap;
}
.hero-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3.4vw, 1.15rem);
  font-weight: 600;
  white-space: nowrap;
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3.5rem, 9vh, 6.5rem);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--oxblood-bright), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--bone);
  animation: scroll-cue 2s var(--ease-out) infinite;
}
@keyframes scroll-cue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}
@media (min-width: 980px) { .hero-scroll { display: flex; } }

/* ---------- Marquee ---------- */

.marquee {
  position: relative;
  border-block: 1px solid var(--oxblood-deep);
  background: linear-gradient(180deg, var(--oxblood-bright), var(--oxblood));
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track.is-marquee-controlled {
  animation: none;
  will-change: transform;
}
.marquee-track span { color: #1c1606; }
.marquee-cut {
  width: 1.05em;
  height: 1.05em;
  flex: none;
  color: #1c1606;
  opacity: 0.85;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Section scaffolding ---------- */

section.services,
section.gallery,
section.reviews,
section.visit,
section.faq {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 11vh, 9rem) var(--gutter);
}

.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, calc(var(--size-font) * var(--scale-h2)), 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.section-note {
  margin: 0;
  color: var(--bone-dim);
  max-width: 46ch;
}

/* ---------- Services (barbershop menu with dotted leaders) ---------- */

.service-list {
  --service-pad: clamp(0.9rem, 2vw, 1.75rem);
  list-style: none;
  /* Pull the list out by its own padding so row content still aligns
     with the section heading, while the hover band gains breathing room. */
  margin: 0 calc(-1 * var(--service-pad));
  padding: 0;
  border-top: 1px solid var(--line);
}
.service {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(1rem, 3vw, 2.25rem);
  padding: clamp(1.4rem, 3.2vw, 2.1rem) var(--service-pad);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--surface), transparent 60%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.service:hover::before { opacity: 1; }

.service-index {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--bone-faint);
  letter-spacing: 0.05em;
  padding-top: 0.45rem;
  transition: color 280ms ease;
}
.service:hover .service-index { color: var(--oxblood-bright); }

.service-main { min-width: 0; }
.service-row {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}
.service-row h3 {
  margin: 0;
  flex: none;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, calc(var(--size-font) * var(--scale-h3)), 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 280ms var(--ease-out);
}
.service:hover .service-row h3 { transform: translateX(6px); }

/* Dotted menu leader connecting name → price */
.leader {
  flex: 1 1 auto;
  align-self: flex-end;
  min-width: 1.5rem;
  margin-bottom: 0.55rem;
  border-bottom: 2px dotted var(--line-strong);
  transition: border-color 280ms ease;
}
.service:hover .leader { border-color: var(--oxblood); }

.service-main p {
  margin: 0.5rem 0 0;
  color: var(--bone-dim);
  font-size: 0.95rem;
  max-width: 52ch;
}

.service-price {
  flex: none;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, calc(var(--size-font) * var(--scale-price)), 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.service-price small {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-left: 0.4rem;
}
.service-feature .service-price {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Gallery (broken asymmetric grid) ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(110px, 14vw, 200px);
  gap: clamp(0.5rem, 1vw, 0.9rem);
}
.tile {
  margin: 0;
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
}
.tile img {
  width: 300%;
  height: 200%;
  max-width: none;
  object-fit: cover;
  transition: transform 600ms var(--ease-out), filter 600ms ease;
  filter: saturate(0.9);
}
.tile:hover img { transform: scale(1.04) translate(var(--tx, 0), var(--ty, 0)); filter: saturate(1.05); }

/* contact-sheet crops (image is a 3x2 grid) */
.tile-a { grid-column: span 4; grid-row: span 2; }
.tile-a img { object-position: 0 0; }
.tile-b { grid-column: span 2; grid-row: span 1; }
.tile-b img { object-position: 50% 0; transform: translateX(-33.333%); --tx: -33.333%; }
.tile-c { grid-column: span 2; grid-row: span 1; }
.tile-c img { object-position: 100% 0; transform: translateX(-66.666%); --tx: -66.666%; }
.tile-d { grid-column: span 2; grid-row: span 2; }
.tile-d img { object-position: 0 100%; transform: translateY(-50%); --ty: -50%; }
.tile-e { grid-column: span 2; grid-row: span 1; }
.tile-e img { object-position: 50% 100%; transform: translate(-33.333%, -50%); --tx: -33.333%; --ty: -50%; }
.tile-f { grid-column: span 2; grid-row: span 1; }
.tile-f img { object-position: 100% 100%; transform: translate(-66.666%, -50%); --tx: -66.666%; --ty: -50%; }
.tile:hover img { transform: scale(1.05) translate(var(--tx, 0), var(--ty, 0)); }

/* ---------- Reviews ---------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.review-grid blockquote {
  margin: 0;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 1.1rem;
  transition: border-color 280ms ease, background 280ms ease, transform 280ms var(--ease-out);
}
.review-grid blockquote:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
  transform: translateY(-4px);
}
.stars { color: var(--oxblood-bright); letter-spacing: 0.18em; font-size: 0.95rem; }
.review-grid p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, calc(var(--size-font) * var(--scale-quote)), 1.3rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.review-cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.review-cite::before { content: "— "; color: var(--oxblood-bright); }

/* ---------- Visit ---------- */

.visit-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-list { display: grid; }
.contact-list a {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  transition: padding-left 260ms var(--ease-out);
}
.contact-list a:last-child { border-bottom: 1px solid var(--line); }
.contact-list a:hover { padding-left: 0.6rem; }
.contact-key {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.contact-val {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500;
  transition: color 200ms ease;
}
.contact-list a:hover .contact-val { color: var(--oxblood-bright); }

.hours {
  background: var(--ink-raise);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.hours h3 {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hours dl { margin: 0; display: grid; gap: 0.1rem; }
.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.hours dt { font-weight: 500; color: var(--bone); }
.hours dd { margin: 0; font-family: var(--font-mono); font-size: 0.85rem; color: var(--bone-dim); }
.hours dd.is-closed { color: var(--bone-faint); letter-spacing: 0.08em; }
.hours-cta { width: 100%; margin-top: 1.6rem; }

/* ---------- FAQ ---------- */

.faq-list { border-top: 1px solid var(--line); }
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, calc(var(--size-font) * var(--scale-summary)), 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 200ms ease;
}
summary:hover { color: var(--oxblood-bright); }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(var(--bone-dim), var(--bone-dim)) center/14px 2px no-repeat,
    linear-gradient(var(--bone-dim), var(--bone-dim)) center/2px 14px no-repeat;
  transition: transform 280ms var(--ease-out), background 200ms ease;
}
details[open] summary::after { transform: rotate(135deg); }
summary:hover::after {
  background:
    linear-gradient(var(--oxblood-bright), var(--oxblood-bright)) center/14px 2px no-repeat,
    linear-gradient(var(--oxblood-bright), var(--oxblood-bright)) center/2px 14px no-repeat;
}
details p {
  margin: 0;
  padding: 0 0 1.6rem;
  max-width: 64ch;
  color: var(--bone-dim);
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(120% 140% at 50% 0%, rgb(128 102 64 / 0.35), transparent 60%),
    var(--ink-raise);
  overflow: hidden;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 7rem) var(--gutter);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}
.cta-inner h2 .accent {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Brand band (his gold logo, centered on dark) ---------- */

.brand-band {
  position: relative;
  border-block: 1px solid var(--line);
  /* Faint gold pool behind the mark for depth */
  background:
    radial-gradient(58% 78% at 50% 46%, rgb(182 154 107 / 0.12), transparent 72%),
    #131316;
  overflow: hidden;
  text-align: center;
  padding: clamp(3.5rem, 9vh, 6rem) var(--gutter);
}
.brand-band-logo {
  display: block;
  width: clamp(260px, 46vw, 600px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 34px rgb(0 0 0 / 0.55));
}
.brand-band figcaption {
  margin-top: clamp(1.4rem, 3vw, 2.1rem);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.cta-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, calc(var(--size-font) * var(--scale-display)), 6rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.cta-inner .btn { margin-top: 0.8rem; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem 3rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter);
  align-items: start;
}
.footer-brand .brand { font-size: 1.7rem; }
.footer-brand p { margin: 0.8rem 0 0; color: var(--bone-faint); max-width: 32ch; }
.footer-nav {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--bone-dim);
  transition: color 180ms ease;
}
.footer-nav a:hover { color: var(--oxblood-bright); }
.footer-fine {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--bone-faint);
}

/* Muted grayscale footer logo */
.footer-logo-link { display: inline-block; }
.footer-logo {
  height: clamp(40px, 11vw, 56px);
  width: auto;
  filter: grayscale(1) brightness(1.35) opacity(0.38);
  transition: opacity 200ms ease, filter 200ms ease;
}
.footer-logo-link:hover .footer-logo { filter: grayscale(1) brightness(1.5) opacity(0.62); }

/* ---------- Ambient darkness variation ----------
   Fixed, very subtle vignette so the flat gray gains depth — a faint
   light pool toward the top and a deepening toward the edges/bottom. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(135% 90% at 50% -8%, rgb(236 233 226 / 0.04), transparent 52%),
    radial-gradient(120% 80% at 50% 116%, rgb(0 0 0 / 0.4), transparent 60%),
    radial-gradient(80% 60% at 100% 50%, rgb(0 0 0 / 0.22), transparent 70%);
}

/* ---------- Film grain (the noise texture) ----------
   Isolated as its own static composited layer (translateZ + contain)
   so it never forces the page beneath it to repaint. */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  transform: translateZ(0);
  contain: layout style paint;
}

/* ---------- Scissor / razor motifs ---------- */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.brand-mark {
  width: 19px;
  height: 19px;
  background: none;
  box-shadow: none;
  transform: none;
  color: var(--oxblood-bright);
}
.razor-rule {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 5vh, 3.5rem) var(--gutter);
  color: var(--oxblood);
}
.razor-rule::before,
.razor-rule::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong));
}
.razor-rule::after { background: linear-gradient(90deg, var(--line-strong), transparent); }
.razor-rule svg { width: 26px; height: 26px; flex: none; }

/* ---------- Story / about band ---------- */
.story {
  border-top: 1px solid var(--line);
  background: var(--ink-raise);
}
.story-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vh, 7rem) var(--gutter);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.story-media {
  position: relative;
  margin: 0; /* clear the default <figure> margin so it matches the text column */
  box-shadow: 0 18px 50px -24px rgb(0 0 0 / 0.7);
}
.story-media img {
  display: block;
  width: 100%;
  height: auto; /* override the img height attribute so aspect-ratio controls the box */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(1) contrast(1.06) brightness(1.02);
}
.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  background: linear-gradient(180deg, transparent 62%, rgb(15 14 17 / 0.4));
  pointer-events: none;
}
.story-body h2 {
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, calc(var(--size-font) * var(--scale-h2-sm)), 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.story-body h2 .accent {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.story-body p {
  margin: 1.4rem 0 0;
  max-width: 38ch;
  font-size: clamp(1.05rem, calc(var(--size-font) * var(--scale-lead)), 1.7rem);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.01em;
  color: var(--bone);
}
/* Scroll read-along: words sit dimmed and brighten as you scroll through */
.hl-word { opacity: 0.24; will-change: opacity; }
.story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}
.story-stats li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.story-stats svg { width: 0.95em; height: 0.95em; color: var(--oxblood-bright); flex: none; }

/* ---------- Word / line reveal (landing_3) ---------- */
[data-text-reveal] .line {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--word-delay, 0ms);
  will-change: opacity, transform;
}
[data-text-reveal].is-in .line { opacity: 1; transform: none; }

/* Visually hidden (keeps brand in the H1 for SEO/screen readers) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Reveal animation ---------- */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Type polish (ui.sh guidelines) ---------- */

/* Balance: headings + any short, few-line text (evens line lengths, kills orphans). */
.hero h1,
.section-head h2,
.cta-inner h2,
.service-row h3,
.story-body h2,
.hours h3,
.contact-val,
summary,
.review-grid p,
.hero-lead,
.hero-scarcity,
.section-note,
.footer-brand p,
.gate-note,
.brand-band figcaption,
.story-stats li { text-wrap: balance; }

/* Pretty: longer running paragraphs — avoid orphans without forcing even lines. */
.service-main p,
.story-body p,
details p { text-wrap: pretty; }

/* Tabular figures so prices, times, and digits never shift or misalign. */
.service-price,
.service-index,
.hours dd,
.hero-meta dd,
.contact-val,
.footer-fine { font-variant-numeric: tabular-nums; }

/* ============================================================
   Marketing / conversion components
   ============================================================ */

/* Push everything after the brand to the right of the header */
.site-header .brand { margin-right: auto; }

/* Header click-to-call */
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--bone-dim);
  transition: color 180ms ease;
}
.header-call svg { width: 16px; height: 16px; flex: none; color: var(--oxblood-bright); }
.header-call:hover { color: var(--bone); }

/* Hero scarcity line */
.hero-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.hero-scarcity .pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: none;
  background: var(--oxblood-bright);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgb(211 188 142 / 0.55); }
  70% { box-shadow: 0 0 0 9px rgb(211 188 142 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(211 188 142 / 0); }
}

/* Embedded map */
.visit-map {
  margin-top: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink-2);
}
.visit-map iframe {
  display: block;
  width: 100%;
  height: clamp(260px, 38vw, 420px);
  border: 0;
  filter: grayscale(0.45) contrast(1.04) brightness(0.92);
}

/* Mobile sticky action bar */
.sticky-cta {
  position: fixed;
  inset: auto 0 var(--mobile-visual-bottom, 0px) 0;
  z-index: 80;
  display: none;
  gap: 0.5rem;
  padding: 0.6rem clamp(0.75rem, 4vw, 1rem);
  padding-bottom: max(0.6rem, var(--safe-bottom));
  background: var(--ink); /* match page + html so the bottom is one uniform color under iOS Safari's translucent toolbar */
  border-top: 1px solid var(--line-strong);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, calc(115% + var(--safe-bottom) + 1.25rem), 0) scale(0.985);
  transform-origin: bottom center;
  transition:
    opacity 280ms ease,
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 460ms;
  visibility: hidden;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Extend the solid background well below the bar so iOS Safari's translucent
   URL bar always overlays a solid color (no content showing through while scrolling). */
.sticky-cta::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(var(--mobile-visual-bottom, 0px) + var(--safe-bottom) + 1px);
  background: var(--ink);
  pointer-events: none;
}
.sticky-call {
  flex: 1 1 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  font-weight: 600;
  font-size: 0.85rem;
}
.sticky-call svg { width: 17px; height: 17px; flex: none; color: var(--oxblood-bright); }
.sticky-book { flex: 1.35 1 0; min-height: 48px; }
.gc-unlocked .sticky-cta { /* shown via the responsive rule below once unlocked */ }
html:not(.gc-unlocked) .sticky-cta { display: none !important; }
html.gc-sticky-cta-visible .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 260ms ease,
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
  visibility: visible;
}
body.nav-open .sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, calc(115% + var(--safe-bottom) + 1.25rem), 0) scale(0.985);
  visibility: hidden;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 1.5rem) 1.75rem 2rem;
    background: rgb(22 21 24 / 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 360ms var(--ease-out);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a:not(.nav-cta) {
    font-size: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--bone);
  }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 1.5rem; }

  /* Icon-only call in the top bar on mobile (full number lives in the sticky bar) */
  .header-call { margin-right: 0.35rem; }
  .header-call-text { display: none; }

  .visit-layout { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-auto-rows: clamp(120px, 26vw, 200px); }
  .site-footer { grid-template-columns: 1fr; }
  .footer-nav { justify-items: start; }
}

/* Mobile sticky action bar */
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  .gc-unlocked body {
    padding-inline: var(--safe-left) var(--safe-right);
    padding-bottom: calc(4.5rem + var(--mobile-visual-bottom, 0px));
  }

  .mobile-browser-chrome-fill {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 70;
    display: block;
    background: var(--ink);
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .mobile-browser-chrome-fill--top {
    top: 0;
    z-index: 90;
    height: calc(max(var(--safe-top), var(--mobile-visual-top, 0px)) + 1px);
  }
}

@media (max-width: 560px) {
  .hero { align-items: flex-end; }

  .service { gap: 0.9rem; }
  .service-row { gap: 0.6rem; }
  .service:hover .service-row h3 { transform: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-a { grid-column: span 2; grid-row: span 2; }
  .tile-b, .tile-c, .tile-d, .tile-e, .tile-f { grid-column: span 1; grid-row: span 1; }
  .tile-d img { transform: translateY(0); --ty: 0; }

  .contact-list a { grid-template-columns: 1fr; gap: 0.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  [data-text-reveal] .line { opacity: 1; transform: none; }
  .marquee-track { animation: none; transform: none !important; }
}
