/* ==========================================================================
   Clearcoat Detail Co. — "Showroom black"
   Near-black, graphite, steel, bright white, and one signal-orange accent.
   ========================================================================== */

:root {
  --bg: #0d0e10;          /* page */
  --bg-2: #141619;        /* alternate sections */
  --panel: #1c1f23;       /* raised surfaces */
  --panel-2: #23272c;     /* hover */
  --line: rgb(244 245 247 / 0.1);
  --line-2: rgb(244 245 247 / 0.2);

  --text: #f4f5f7;
  --text-2: #b9bec6;      /* body copy on dark (9.6:1) */
  --steel: #8a9099;       /* small labels (5.8:1 on --bg, 5.1:1 on --panel) */

  --orange: #ff5b1f;      /* buttons and key highlights only (6.2:1 on --bg) */
  --orange-hot: #ff7440;
  --on-orange: #0d0e10;

  --font-display: "Archivo", "Arial Black", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --radius: 4px;
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(84px, 11vw, 150px);
  --header-h: 76px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65;
  color: var(--text-2); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }
::selection { background: var(--orange); color: var(--on-orange); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.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; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--orange); color: var(--on-orange); padding: 10px 16px; border-radius: var(--radius); font-weight: 600; text-decoration: none; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.icon { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); font-weight: 800; font-stretch: 125%; line-height: 1.04; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); }
h3 { font-size: 1.3rem; line-height: 1.2; letter-spacing: -0.01em; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--text-2); max-width: 36em; }
.muted { color: var(--steel); }
.accent { color: var(--orange); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange); }
.mono { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.06em; }

.section { padding-block: var(--section); position: relative; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head p:not(.eyebrow) { margin-top: 20px; }
.section-head--split { max-width: none; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 24px 48px; }
.section-head--split > div { max-width: 720px; }

/* ---------- Buttons & links ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 24px; border-radius: var(--radius); border: 1px solid var(--orange);
  background: var(--orange); color: var(--on-orange);
  font-weight: 600; font-size: 1rem; line-height: 1.2; text-decoration: none; cursor: pointer;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
/* The same "shop light" glint as the hero, passing over the button on hover */
.btn::after {
  content: ""; position: absolute; inset: -2px; z-index: -1; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgb(255 255 255 / 0.45) 50%, transparent 65%);
  transform: translateX(-120%);
}
.btn:hover { background: var(--orange-hot); border-color: var(--orange-hot); }
.btn:hover::after { transform: translateX(120%); transition: transform .8s var(--ease); }
.btn:active { transform: translateY(1px); }
.btn .icon { width: 18px; height: 18px; }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: 0.9375rem; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost::after { background: linear-gradient(105deg, transparent 35%, rgb(255 255 255 / 0.12) 50%, transparent 65%); }
.btn--ghost:hover { background: rgb(244 245 247 / 0.06); border-color: var(--text); }
.btn--block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid var(--line-2); padding-bottom: 4px;
  transition: border-color .25s var(--ease), gap .25s var(--ease);
}
.text-link .icon { width: 18px; height: 18px; color: var(--orange); }
.text-link:hover { border-color: var(--orange); gap: 12px; }

/* ---------- Concept bar (Nathan's Web Design portfolio) ---------- */
.concept-bar { background: #161513; color: #f7f4ee; font-size: 0.8125rem; line-height: 1.4; border-bottom: 1px solid var(--line); position: relative; z-index: 60; }
.concept-bar .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 6px 20px; padding-block: 9px; }
.concept-bar a { color: #f7f4ee; font-weight: 600; text-underline-offset: 3px; }
.concept-bar-link { text-decoration: none; opacity: 0.85; white-space: nowrap; }
.concept-bar-link:hover { opacity: 1; text-decoration: underline; }
.is-framed, .is-framed body { overflow: hidden; }
.is-framed .concept-bar { display: none; }
.is-framed .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.logo-mark { width: 38px; height: 26px; flex: none; }
.logo-text { display: grid; line-height: 1; }
.logo-text strong { font-family: var(--font-display); font-weight: 800; font-stretch: 125%; font-size: 1.2rem; letter-spacing: 0.02em; text-transform: uppercase; }
.logo-text span { font-family: var(--font-mono); font-size: 0.625rem; font-weight: 500; letter-spacing: 0.34em; text-transform: uppercase; color: var(--steel); margin-top: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.is-scrolled, .menu-open .site-header {
  background: rgb(13 14 16 / 0.88); border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { position: relative; color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.975rem; padding-block: 6px; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); text-decoration: none; font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.04em; }
.nav-phone:hover { color: var(--text); }
.nav-phone .icon { width: 16px; height: 16px; color: var(--orange); }

.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: var(--radius); background: transparent; color: var(--text); cursor: pointer; align-items: center; justify-content: center; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0; z-index: 45; background: var(--bg);
  padding: 20px var(--gutter) 40px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu li a {
  display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 800; font-stretch: 125%; font-size: 1.6rem; color: var(--text); text-decoration: none; letter-spacing: -0.01em;
}
.mobile-menu li a .icon { color: var(--orange); }
.mobile-menu li a[aria-current="page"] { color: var(--orange); }
.mobile-menu-foot { display: grid; gap: 12px; margin-top: 32px; }
.mobile-menu-foot p { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--steel); text-align: center; margin-top: 8px; }
.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  min-height: max(640px, min(100svh, 940px));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: calc(var(--header-h) + 60px);
}
.concept-bar ~ main .hero { min-height: max(600px, min(calc(100svh - 38px), 900px)); }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgb(13 14 16 / 0.94) 0%, rgb(13 14 16 / 0.78) 38%, rgb(13 14 16 / 0.2) 72%, rgb(13 14 16 / 0.35) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgb(13 14 16 / 0) 34%),
    linear-gradient(180deg, rgb(13 14 16 / 0.7) 0%, rgb(13 14 16 / 0) 22%);
}

/* The shop light sweep: a soft band of light gliding across the paint,
   like the inspection light Dallin uses to check it. */
.sweep { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.sweep::before {
  content: ""; position: absolute; top: -20%; bottom: -20%; left: -50%; width: 50%;
  background: linear-gradient(90deg,
    rgb(255 255 255 / 0) 0%,
    rgb(255 255 255 / 0.03) 30%,
    rgb(255 255 255 / 0.1) 45%,
    rgb(255 255 255 / 0.16) 50%,
    rgb(255 255 255 / 0.1) 55%,
    rgb(255 255 255 / 0.03) 70%,
    rgb(255 255 255 / 0) 100%);
  mix-blend-mode: screen;
  transform: skewX(-18deg) translateX(0);
  animation: sweep 8s cubic-bezier(0.45, 0, 0.3, 1) 1s infinite;
}
.sweep::after {
  /* thin bright core of the light bar */
  content: ""; position: absolute; top: -20%; bottom: -20%; left: -50%; width: 50%;
  background: linear-gradient(90deg, transparent 48.6%, rgb(255 255 255 / 0.12) 49.5%, rgb(255 255 255 / 0.3) 50%, rgb(255 255 255 / 0.12) 50.5%, transparent 51.4%);
  mix-blend-mode: screen;
  transform: skewX(-18deg) translateX(0);
  animation: sweep 8s cubic-bezier(0.45, 0, 0.3, 1) 1s infinite;
}
@keyframes sweep {
  0% { transform: skewX(-18deg) translateX(0); }
  45%, 100% { transform: skewX(-18deg) translateX(350%); }
}

.hero-inner { position: relative; z-index: 2; padding-bottom: clamp(40px, 6vw, 72px); }
.hero-copy { max-width: 760px; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .line { display: block; }
.hero .lead { margin-bottom: 38px; max-width: 33em; color: #cdd1d7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-promises {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-2);
}
.hero-promises li { display: flex; align-items: center; gap: 12px; padding: 22px 0; color: var(--text); font-weight: 500; font-size: 0.975rem; }
.hero-promises li + li { padding-left: 24px; border-left: 1px solid var(--line); }
.hero-promises .icon { color: var(--orange); width: 22px; height: 22px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + clamp(72px, 10vw, 130px)) 0 clamp(56px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}
.page-hero .hero-media img { object-position: 50% 50%; }
.page-hero .hero-media::after {
  background:
    linear-gradient(90deg, rgb(13 14 16 / 0.95) 0%, rgb(13 14 16 / 0.8) 45%, rgb(13 14 16 / 0.45) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgb(13 14 16 / 0) 45%);
}
.page-hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); margin-bottom: 22px; }
.page-hero--plain { background: var(--bg-2); padding-top: calc(var(--header-h) + clamp(56px, 7vw, 96px)); }

/* ---------- Promises ---------- */
.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); counter-reset: promise; }
.promise { border-top: 1px solid var(--line-2); padding-top: 28px; position: relative; }
.promise::before { content: ""; position: absolute; top: -1px; left: 0; width: 56px; height: 2px; background: var(--orange); }
.promise-num { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--steel); letter-spacing: 0.1em; display: block; margin-bottom: 40px; }
.promise .icon { width: 30px; height: 30px; color: var(--text); stroke-width: 1.5; margin-bottom: 20px; }
.promise h3 { font-size: 1.45rem; margin-bottom: 12px; }

/* ---------- Service rows (home) ---------- */
.svc-list { border-top: 1px solid var(--line-2); }
.svc-row {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: 56px minmax(0, 1.25fr) minmax(0, 1.6fr) 120px 150px 28px;
  align-items: center; gap: 24px;
  padding: 30px 12px; border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--text-2);
  transition: background-color .3s var(--ease), padding .35s var(--ease);
}
.svc-row::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(100deg, transparent 40%, rgb(255 255 255 / 0.06) 50%, transparent 60%);
  transform: translateX(-100%);
}
.svc-row:hover { background: var(--bg-2); padding-left: 22px; }
.svc-row:hover::after { transform: translateX(100%); transition: transform 1s var(--ease); }
.svc-num { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--steel); }
.svc-name { font-family: var(--font-display); font-weight: 800; font-stretch: 125%; font-size: clamp(1.25rem, 2vw, 1.6rem); color: var(--text); letter-spacing: -0.01em; line-height: 1.15; }
.svc-time { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--steel); }
.svc-price { text-align: right; font-family: var(--font-display); font-weight: 700; font-stretch: 112%; font-size: 1.35rem; color: var(--text); white-space: nowrap; }
.svc-price small { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 400; color: var(--steel); margin-right: 6px; letter-spacing: 0.04em; }
.svc-row > .icon { color: var(--orange); transition: transform .3s var(--ease); }
.svc-row:hover > .icon { transform: translateX(4px); }
.svc-row--star .svc-name::after {
  content: "Signature"; display: inline-block; vertical-align: middle; margin-left: 12px; transform: translateY(-2px);
  font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 500; font-stretch: 100%; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); border: 1px solid rgb(255 91 31 / 0.5); border-radius: 2px; padding: 3px 8px;
}
.svc-foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px 40px; margin-top: 32px; }
.svc-foot p { font-size: 0.9375rem; color: var(--steel); max-width: 46em; }

/* ---------- How a visit works ---------- */
.visit-flow { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.steps { counter-reset: step; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; position: relative; padding-bottom: 38px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid var(--line-2); border-radius: 50%;
  font-family: var(--font-mono); font-size: 0.875rem; color: var(--text); background: var(--bg-2);
  position: relative; z-index: 1;
}
.step:not(:last-child)::after { content: ""; position: absolute; left: 28px; top: 56px; bottom: 0; width: 1px; background: linear-gradient(var(--line-2), var(--line)); }
.step:first-child::before { border-color: var(--orange); color: var(--orange); }
.step h3 { margin: 14px 0 8px; }
.step p { max-width: 30em; }
.step .mono { color: var(--steel); display: block; margin-top: 8px; }
.photo-tall { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--panel); }
.photo-tall img { width: 100%; height: 100%; object-fit: cover; }
.photo-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 2px;
  background: rgb(13 14 16 / 0.82); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text);
}
.photo-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* ---------- Ceramic spotlight ---------- */
.spotlight { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spotlight-media { position: relative; min-height: 420px; overflow: hidden; isolation: isolate; }
.spotlight-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight-copy { padding: clamp(32px, 5vw, 68px); }
.spotlight-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin-bottom: 20px; }
.spotlight-meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 26px 0 30px; padding-block: 18px; border-block: 1px solid var(--line); }
.spotlight-meta div { display: grid; gap: 2px; }
.spotlight-meta dt { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); }
.spotlight-meta dd { color: var(--text); font-weight: 600; }
.does { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 34px; }
.does h3 { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; font-stretch: 100%; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); margin-bottom: 12px; }
.does ul { display: grid; gap: 10px; }
.does li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 0.975rem; line-height: 1.45; }
.does .icon { width: 18px; height: 18px; margin-top: 2px; }
.does-yes .icon { color: var(--orange); }
.does-no .icon { color: var(--steel); }

/* ---------- Owner ---------- */
.owner { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.owner-quote { font-family: var(--font-display); font-weight: 700; font-stretch: 112%; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.2; letter-spacing: -0.015em; color: var(--text); margin: 28px 0; padding-left: 24px; border-left: 2px solid var(--orange); }
.owner-quote cite { display: block; margin-top: 14px; font-family: var(--font-mono); font-style: normal; font-weight: 400; font-stretch: 100%; font-size: 0.8125rem; letter-spacing: 0.08em; color: var(--steel); }
.owner p + p { margin-top: 16px; }
.owner .text-link { margin-top: 30px; }

/* ---------- Reviews (placeholders) ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  position: relative; height: 100%; display: flex; flex-direction: column; gap: 18px;
  padding: 30px 28px; border: 1px dashed var(--line-2); border-radius: var(--radius); background: var(--bg);
}
.review-stars { display: flex; gap: 4px; color: var(--orange); }
.review-stars .icon { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.review blockquote { color: var(--text); font-size: 1.05rem; line-height: 1.55; flex: 1; }
.review footer { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; color: var(--steel); }
.placeholder-tag { position: absolute; top: -11px; right: 20px; background: var(--bg-2); border: 1px solid var(--line-2); color: var(--steel); font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.status { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.04em; color: var(--text); padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 999px; margin-bottom: 28px; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--steel); }
.status.is-open i { background: #3ddc84; box-shadow: 0 0 0 4px rgb(61 220 132 / 0.18); }
.hours { display: grid; margin: 28px 0; border-top: 1px solid var(--line); }
.hours div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.hours dt { color: var(--text-2); }
.hours dd { color: var(--text); font-family: var(--font-mono); font-size: 0.9rem; }
.hours .is-today dt, .hours .is-today dd { color: var(--text); font-weight: 600; }
.hours .is-today dt::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); margin-right: 10px; vertical-align: middle; transform: translateY(-2px); }
.contact-list { display: grid; gap: 14px; margin-bottom: 34px; }
.contact-list li { display: flex; align-items: center; gap: 14px; color: var(--text); }
.contact-list .icon { color: var(--orange); }
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 4px; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(80px, 10vw, 130px); border-top: 1px solid var(--line); }
.cta-band .hero-media::after { background: linear-gradient(90deg, rgb(13 14 16 / 0.95) 0%, rgb(13 14 16 / 0.82) 50%, rgb(13 14 16 / 0.6) 100%); }
.cta-band-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 32px 60px; }
.cta-band h2 { max-width: 14em; }
.cta-band p { margin-top: 18px; max-width: 34em; }
.cta-band .visit-actions { flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0b0c; border-top: 1px solid var(--line); padding: 72px 0 36px; font-size: 0.9375rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin-top: 20px; max-width: 24em; color: var(--steel); }
.footer-col h2 { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; font-stretch: 100%; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; list-style: none; padding: 0; }
.footer-col a { text-decoration: none; color: var(--text-2); }
.footer-col a:hover { color: var(--text); }
.footer-col li { color: var(--text-2); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; color: var(--steel); }

/* ---------- Mobile action bar ---------- */
.action-bar { display: none; }

/* ==========================================================================
   Services page
   ========================================================================== */
.jump { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.jump a { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.04em; color: var(--text); text-decoration: none; padding: 9px 14px; border: 1px solid var(--line-2); border-radius: 999px; background: rgb(13 14 16 / 0.5); transition: border-color .25s var(--ease), background-color .25s var(--ease); }
.jump a:hover { border-color: var(--orange); background: rgb(255 91 31 / 0.08); }

.price-note { display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px; border: 1px solid var(--line); border-left: 2px solid var(--orange); background: var(--bg-2); border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.975rem; max-width: 780px; }
.price-note .icon { color: var(--orange); margin-top: 3px; }

.service { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 90px); align-items: center; padding-block: clamp(56px, 7vw, 96px); border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 8px); }
.service:last-of-type { border-bottom: 0; }
.service:nth-of-type(even) .service-media { order: 2; }
.service-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5 / 4; background: var(--panel); isolation: isolate; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.service:hover .service-media img { transform: scale(1.03); }
.service-top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 24px; margin-bottom: 18px; }
.service-top .mono { color: var(--steel); }
.service h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.service-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; margin: 24px 0; padding-block: 16px; border-block: 1px solid var(--line); }
.service-price strong { font-family: var(--font-display); font-weight: 800; font-stretch: 125%; font-size: 2rem; color: var(--text); letter-spacing: -0.02em; }
.service-price strong small { font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 400; font-stretch: 100%; color: var(--steel); letter-spacing: 0.04em; margin-right: 8px; }
.service-price span { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--steel); letter-spacing: 0.04em; }
.checklist { display: grid; gap: 10px; margin-bottom: 26px; }
.checklist li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; line-height: 1.5; }
.checklist .icon { width: 18px; height: 18px; color: var(--orange); margin-top: 3px; }
.best-for { font-size: 0.975rem; margin-bottom: 30px; }
.best-for strong { color: var(--text); font-weight: 600; }

/* Service picker */
.picker { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.picker-options { display: grid; gap: 10px; }
.picker-options button {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left;
  padding: 18px 20px; border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--bg); color: var(--text);
  font-weight: 500; cursor: pointer; transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.picker-options button .icon { color: var(--steel); transition: transform .25s var(--ease), color .25s var(--ease); }
.picker-options button:hover { border-color: var(--text-2); }
.picker-options button[aria-pressed="true"] { border-color: var(--orange); background: rgb(255 91 31 / 0.08); }
.picker-options button[aria-pressed="true"] .icon { color: var(--orange); transform: translateX(3px); }
.picker-result { position: sticky; top: calc(var(--header-h) + 24px); padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); min-height: 280px; }
.picker-result h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 6px 0 14px; }
.picker-result p { margin-bottom: 24px; }
.picker-empty { color: var(--steel); }
.picker-result .result-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* FAQ */
.faq { max-width: 880px; border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-stretch: 112%; font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--text); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { flex: none; color: var(--orange); transition: transform .3s var(--ease); }
.faq details[open] summary .icon { transform: rotate(45deg); }
.faq summary:hover { color: #fff; }
.faq-body { padding: 0 48px 26px 0; max-width: 46em; }
.faq-body p + p { margin-top: 12px; }

/* ==========================================================================
   About page
   ========================================================================== */
.story { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.story-media { position: sticky; top: calc(var(--header-h) + 24px); }
.story-copy h2 { margin-bottom: 30px; }
.story-copy > p:not(.eyebrow) { font-size: 1.125rem; }
.story-copy > p + p { margin-top: 20px; }
.story-copy .owner-quote { margin: 40px 0; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 44px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.timeline li { background: var(--bg); padding: 22px 20px; }
.timeline .mono { color: var(--orange); display: block; margin-bottom: 8px; }
.timeline p { font-size: 0.9375rem; color: var(--text); line-height: 1.45; }

.promise-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 90px); align-items: center; }
.promise-feature + .promise-feature { margin-top: clamp(64px, 9vw, 120px); }
.promise-feature:nth-of-type(even) .service-media { order: 2; }
.promise-feature h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 20px; }
.promise-feature p + p { margin-top: 16px; }

/* ==========================================================================
   Book page
   ========================================================================== */
.book { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr); gap: clamp(36px, 5vw, 72px); align-items: start; }
.form-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 48px); }
.form-card h2 { font-size: 1.6rem; margin-bottom: 8px; }
.form-intro { margin-bottom: 32px; }
.fieldset { border: 0; padding: 0; margin: 0 0 30px; min-width: 0; }
.fieldset legend { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); margin-bottom: 16px; padding: 0; display: flex; align-items: center; gap: 10px; width: 100%; }
.fieldset legend::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; min-width: 0; align-content: start; }
.field--full { grid-column: 1 / -1; }
.field label, .field .label { color: var(--text); font-weight: 500; font-size: 0.9375rem; }
.field .opt { color: var(--steel); font-weight: 400; font-size: 0.8125rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 13px 15px; border-radius: var(--radius);
  border: 1px solid var(--line-2); background: var(--bg); color: var(--text); font-size: 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5b1f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.field input::placeholder, .field textarea::placeholder { color: #6f757e; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgb(244 245 247 / 0.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgb(255 91 31 / 0.22); }
.field input[type="date"] { color-scheme: dark; }
.field .hint { font-size: 0.8125rem; color: var(--steel); }
.field .error { display: none; font-size: 0.875rem; color: #ff8a65; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #ff8a65; }
.field.has-error .error { display: block; }
.choice-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice span { display: flex; flex-direction: column; gap: 2px; padding: 14px 14px; min-height: 64px; justify-content: center; border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--bg); color: var(--text); font-weight: 500; font-size: 0.9375rem; line-height: 1.25; transition: border-color .2s var(--ease), background-color .2s var(--ease); }
.choice span small { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--steel); letter-spacing: 0.04em; font-weight: 400; }
.choice input:hover + span { border-color: rgb(244 245 247 / 0.35); }
.choice input:checked + span { border-color: var(--orange); background: rgb(255 91 31 / 0.08); }
.choice input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }
.form-submit { display: grid; gap: 14px; margin-top: 8px; }
.form-submit p { font-size: 0.875rem; color: var(--steel); }
.form-alert { display: none; padding: 14px 16px; border: 1px solid #ff8a65; border-radius: var(--radius); color: #ffb49c; margin-bottom: 24px; font-size: 0.9375rem; }
.form-alert.is-visible { display: block; }

.form-success { display: none; text-align: left; }
.form-success.is-visible { display: block; }
.form-success .check { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--orange); color: var(--orange); margin-bottom: 24px; }
.form-success .check .icon { width: 28px; height: 28px; }
.form-success h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.summary { display: grid; margin: 26px 0; border-top: 1px solid var(--line); }
.summary div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
.summary dt { color: var(--steel); font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 3px; }
.summary dd { color: var(--text); overflow-wrap: anywhere; }
.demo-note { font-size: 0.875rem; color: var(--steel); padding: 12px 14px; border: 1px dashed var(--line-2); border-radius: var(--radius); margin-bottom: 24px; }

.book-side { display: grid; gap: 20px; position: sticky; top: calc(var(--header-h) + 24px); }
.side-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; background: var(--bg-2); }
.side-card h2 { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; font-stretch: 100%; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); margin-bottom: 18px; }
.side-steps { display: grid; gap: 16px; counter-reset: s; }
.side-steps li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; font-size: 0.9375rem; line-height: 1.5; }
.side-steps li::before { counter-increment: s; content: counter(s); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); font-family: var(--font-mono); font-size: 0.75rem; color: var(--text); }
.side-steps strong { color: var(--text); font-weight: 600; }
.side-card .hours { margin: 0 0 16px; }
.side-card .hours div { padding: 10px 0; font-size: 0.9375rem; }
.side-card .contact-list { margin-bottom: 0; gap: 12px; font-size: 0.9375rem; }
.map { position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--panel); }
.map svg { width: 100%; height: 100%; }
.map-note { position: absolute; right: 12px; bottom: 10px; font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.08em; color: var(--steel); }

/* ==========================================================================
   Motion
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; transition-delay: 0s !important; }
  .js .reveal { opacity: 1; transform: none; }
  .sweep { display: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .svc-row { grid-template-columns: 44px minmax(0, 1fr) 110px 130px 24px; }
  .svc-desc { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .book { grid-template-columns: 1fr; }
  .book-side { position: static; grid-template-columns: 1fr 1fr; }
  .book-side .map { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero { min-height: max(600px, min(100svh, 860px)); }
  .hero-media img { object-position: 70% 50%; }
  .hero-media::after {
    background:
      linear-gradient(0deg, var(--bg) 4%, rgb(13 14 16 / 0.86) 45%, rgb(13 14 16 / 0.35) 100%),
      linear-gradient(180deg, rgb(13 14 16 / 0.7) 0%, rgb(13 14 16 / 0) 25%);
  }
  .hero-promises { grid-template-columns: 1fr; }
  .hero-promises li { padding: 14px 0; }
  .hero-promises li + li { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }

  .promises { grid-template-columns: 1fr; gap: 0; }
  .promise { padding: 28px 0 36px; display: grid; grid-template-columns: 44px 1fr; column-gap: 18px; }
  .promise::before { width: 44px; }
  .promise-num { grid-column: 1 / -1; margin-bottom: 18px; }
  .promise .icon { grid-row: span 2; margin: 2px 0 0; width: 28px; height: 28px; }
  .promise h3 { margin-bottom: 8px; }

  .visit-flow, .owner, .visit, .story, .picker, .promise-feature { grid-template-columns: 1fr; }
  .visit-flow .photo-tall { aspect-ratio: 16 / 11; order: -1; }
  .owner .photo-tall { aspect-ratio: 4 / 3.4; max-width: 560px; }
  .story-media { position: static; }
  .story-media .photo-tall { aspect-ratio: 4 / 3.4; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-media { min-height: 0; aspect-ratio: 16 / 10; }
  .reviews { grid-template-columns: 1fr; gap: 26px; }
  .service, .promise-feature { grid-template-columns: 1fr; }
  .service:nth-of-type(even) .service-media, .promise-feature:nth-of-type(even) .service-media { order: 0; }
  .service-media { aspect-ratio: 16 / 10; }
  .picker-result { position: static; min-height: 0; }
  .timeline { grid-template-columns: 1fr; }

  /* Bottom action bar on phones and small tablets */
  .action-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    display: grid; grid-template-columns: 1.6fr 1fr; gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgb(13 14 16 / 0.94); border-top: 1px solid var(--line);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  }
  .action-bar a {
    display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; border-radius: var(--radius);
    font-weight: 600; text-decoration: none; font-size: 0.975rem;
    border: 1px solid var(--line-2); color: var(--text);
  }
  .action-bar a.is-primary { background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
  .action-bar .icon { width: 18px; height: 18px; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .menu-open .action-bar { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .svc-row { grid-template-columns: minmax(0, 1fr) auto 20px; gap: 6px 16px; padding: 22px 4px; }
  .svc-row:hover { padding-left: 10px; }
  .svc-num { display: none; }
  .svc-time { grid-column: 1; grid-row: 2; }
  .svc-price { grid-column: 2; grid-row: 1 / span 2; }
  .svc-row > .icon { grid-column: 3; grid-row: 1 / span 2; }
  .svc-row--star .svc-name::after { display: table; margin: 8px 0 0; transform: none; }
  .does { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .field-grid { grid-template-columns: 1fr; }
  .choice-row { grid-template-columns: 1fr; }
  .choice span { min-height: 54px; }
  .book-side { grid-template-columns: 1fr; }
  .summary div { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .faq-body { padding-right: 0; }
  .hero-actions .btn, .visit-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 380px) {
  .logo-text strong { font-size: 1.05rem; }
  .logo-mark { width: 32px; }
}
