/* =====================================================================
   IRONBARK BUILDING CO. - cinematic dark edition
   Near-black warm charcoal + ironbark rust + bone. Editorial serif
   display (Newsreader) over a clean humanist sans (Figtree).
   Single dark theme, locked. Rust is the single accent, used page-wide.
   Crisp, premium, scroll-told. No preloader; hero paints instantly.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Type. Serif display is justified: a heritage/character-home builder
     reads as editorial. Newsreader is a warm book serif (not the banned
     Fraunces/Instrument). Falls back to Iowan/Palatino so the hero paints
     before any webfont arrives. */
  --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype",
                  Palatino, "Hoefler Text", Georgia, serif;
  --font-body: "Figtree", ui-sans-serif, system-ui, -apple-system,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Surfaces (warm near-black family, locked, no pure black) */
  --bg: #14110d;            /* page background, warm near-black */
  --bg-raised: #1c1813;     /* cards / panels on bg */
  --bg-raised-2: #241f18;   /* hover / second elevation */
  --bg-deep: #0f0c09;       /* deepest band (footer / scrims) */

  /* Brand accent (single, locked, page-wide) */
  --rust: #C66A38;
  --rust-deep: #a8501f;
  --rust-bright: #e08a52;

  /* Text on dark */
  --ink: #F4EEE3;           /* primary text (bone) */
  --ink-2: #C2B7A6;         /* secondary body, AA on --bg */
  --ink-3: #8c8273;         /* muted, large text only */
  --on-rust: #1a120c;       /* text on a rust fill (warm near-black) */

  /* Lines */
  --line: rgba(244, 238, 227, 0.12);
  --line-soft: rgba(244, 238, 227, 0.07);

  /* Radii (shape lock: cards 16, inputs 12, pills full, frames 18) */
  --r-card: 16px;
  --r-input: 12px;
  --r-pill: 999px;
  --r-frame: 18px;

  /* Shadows (warm, deep, tinted to near-black, never pure black on dark) */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px -14px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 40px 80px -34px rgba(0, 0, 0, 0.78), 0 12px 32px -20px rgba(0, 0, 0, 0.6);

  /* Type scale (clamp, modular) */
  --fs-display: clamp(2.7rem, 1.2rem + 6.4vw, 5.6rem);
  --fs-h2: clamp(2.05rem, 1.25rem + 2.9vw, 3.3rem);
  --fs-h3: clamp(1.2rem, 1.05rem + 0.55vw, 1.45rem);
  --fs-lead: clamp(1.06rem, 0.99rem + 0.34vw, 1.28rem);
  --fs-body: 1.0625rem;
  --fs-sm: 0.92rem;
  --fs-xs: 0.78rem;

  /* Spacing rhythm */
  --shell-max: 1220px;
  --shell-pad: clamp(1.15rem, 0.6rem + 2.6vw, 2.6rem);
  --section-y: clamp(4.5rem, 2.8rem + 7vw, 9rem);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s;
  --t-mid: 0.38s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
}

::selection { background: var(--rust); color: var(--on-rust); }

/* ---------- Focus visibility (a11y) ---------- */
:focus-visible {
  outline: 2.5px solid var(--rust-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--rust);
  color: var(--on-rust);
  font-weight: 600;
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-input);
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout primitives ---------- */
.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}
.section { padding-block: var(--section-y); }

.section-head { max-width: 50rem; margin-bottom: clamp(2.4rem, 1.6rem + 2vw, 3.6rem); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: 0.95rem;
}

.section-title { font-size: var(--fs-h2); max-width: 20ch; }
.section-lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  margin-top: 1.15rem;
  max-width: 58ch;
  line-height: 1.55;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--rust);
  --btn-fg: var(--on-rust);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.005em;
  line-height: 1;
  padding: 0.92rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  will-change: transform;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary { --btn-bg: var(--rust); --btn-fg: var(--on-rust); }
.btn-primary:hover { background: var(--rust-bright); }

/* Glass / ghost on dark photographic backgrounds: needs a scrim + stroke
   so it always passes contrast over the hero image. */
.btn-glass {
  --btn-fg: var(--ink);
  background: rgba(20, 17, 13, 0.42);
  border-color: rgba(244, 238, 227, 0.3);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
}
.btn-glass:hover { background: rgba(20, 17, 13, 0.62); border-color: rgba(244, 238, 227, 0.55); }
@supports not (backdrop-filter: blur(1px)) {
  .btn-glass { background: rgba(20, 17, 13, 0.7); }
}

.btn-lg { padding: 1.06rem 1.8rem; font-size: 0.98rem; }
.btn-block { width: 100%; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-mid) var(--ease),
              background var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}
.site-header.is-condensed {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
}
@supports not (backdrop-filter: blur(1px)) {
  .site-header.is-condensed { background: var(--bg); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
  transition: height var(--t-mid) var(--ease);
}
.site-header.is-condensed .header-inner { height: 66px; }

/* Wordmark */
.wordmark { display: inline-flex; align-items: center; gap: 0.65rem; }
.wordmark-mark {
  display: grid;
  place-items: center;
  color: var(--rust-bright);
  transition: transform var(--t-mid) var(--ease);
}
.wordmark:hover .wordmark-mark { transform: rotate(-4deg); }
.wordmark-text { display: flex; flex-direction: column; line-height: 1; }
.wordmark-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wordmark-sub {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 3px;
}

.primary-nav { display: none; gap: 2.1rem; }
.primary-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.4rem 0;
  transition: color var(--t-fast) var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--rust-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.header-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.header-phone svg { color: var(--rust-bright); }
.header-phone:hover { color: var(--rust-bright); }
.header-cta { display: none; }

@media (min-width: 880px) {
  .primary-nav { display: flex; }
  .header-phone { display: inline-flex; }
}
@media (min-width: 1100px) {
  .header-cta { display: inline-flex; }
}

/* =====================================================================
   HERO  (full-bleed dusk photo; text instant + readable)
   ===================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(6.5rem, 5rem + 6vw, 9rem);
  padding-bottom: clamp(2.4rem, 2rem + 3vw, 6rem);
  overflow: hidden;
}
/* Mobile: anchor content lower-third but give it room to breathe; the photo
   carries the top. */
@media (max-width: 640px) {
  .hero { padding-bottom: 2rem; }
  .hero-heading { font-size: clamp(2.3rem, 1.4rem + 4.6vw, 3rem); line-height: 1.07; max-width: 18ch; }
  .hero-sub { margin-top: 1.1rem; font-size: 1rem; }
  .hero-ctas { margin-top: 1.6rem; }
  .hero-ctas .btn { flex: 1 1 auto; }
  .hero-trust { margin-top: 1.5rem; padding-top: 1.2rem; gap: 0.6rem 1.4rem; }
  /* stronger floor scrim so subtext + CTAs always pass contrast on mobile */
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(15,12,9,0.6) 0%, rgba(15,12,9,0.12) 26%, rgba(15,12,9,0.5) 54%, rgba(15,12,9,0.97) 100%);
  }
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-img {
  width: 100%;
  height: 116%;            /* extra height so parallax never reveals an edge */
  object-fit: cover;
  object-position: 60% 50%;
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,12,9,0.72) 0%, rgba(15,12,9,0.18) 32%, rgba(15,12,9,0.30) 58%, rgba(15,12,9,0.94) 100%),
    radial-gradient(70% 60% at 18% 84%, rgba(15,12,9,0.62), transparent 70%);
}

.hero-inner { position: relative; width: 100%; max-width: var(--shell-max); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: color-mix(in srgb, var(--rust) 30%, transparent);
  border: 1px solid color-mix(in srgb, var(--rust-bright) 45%, transparent);
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-heading {
  font-size: clamp(2.5rem, 1.2rem + 6.4vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-heading .hl { display: block; }
.hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--rust-bright);
  line-height: 1.1;
}
.hero-heading em.nb { white-space: nowrap; }

.hero-sub {
  font-size: var(--fs-lead);
  color: var(--ink);
  margin-top: 1.5rem;
  max-width: 46ch;
  line-height: 1.55;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  max-width: 40rem;
}
.hero-trust li {
  font-size: var(--fs-sm);
  color: var(--ink-2);
}
.hero-trust strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin-right: 0.35rem;
}

/* JS-driven hero entrance: lines start slightly down + soft, settle in.
   Only applies once .js-anim is set (JS on, motion allowed). The default
   (no class) is fully visible, so the hero paints instantly with no wait. */
.js-anim .hero [data-hero-line] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
}

/* =====================================================================
   MANIFESTO  (single editorial line, word-by-word reveal)
   ===================================================================== */
.manifesto {
  padding-block: clamp(4rem, 2.5rem + 6vw, 8rem);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(198, 106, 56, 0.07), transparent 60%),
    var(--bg);
}
.manifesto-line {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 3rem);
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 24ch;
}
.manifesto-line .w {
  display: inline-block;
  white-space: pre;
}
.js-anim .manifesto-line .w {
  opacity: 0.16;
  transition: opacity 0.4s var(--ease);
}
.js-anim .manifesto-line .w.lit { opacity: 1; }

/* =====================================================================
   WOVEN BUILD MOMENT  ("Watch a home come together")
   ---------------------------------------------------------------------
   Full-bleed BACKGROUND that plays on scroll, with the copy popping OVER it.
     .bp-stage  -> pinned, 100dvh, the whole moment lives here
       .bp-bg   -> absolute full-viewport background layer (100vw x 100vh)
                   .bp-bg-visual : the cinematic visual (blueprint SVG that
                                   draws, then a real handover photo). Both
                                   COVER the viewport (object-fit:cover /
                                   preserveAspectRatio="...slice"), so it fills
                                   a 390px phone and a 1440px desktop alike.
                                   Swap this container's children for a real
                                   rendered frame sequence later.
       .bp-fg   -> foreground copy that rises over the LIVE background:
                   heading, the design/build/hand-over beats, the progress bar.
   A single 0..1 --bp-p drives the background; copy beats light by phase.
   Reduced-motion + no-JS collapse the runway and force the finished state
   with all copy visible over the finished home.
   ===================================================================== */
.story {
  --bp-p: 0;
  background: var(--bg-deep);
  color: var(--ink);
  position: relative;
}
/* Runway. Short on purpose so the moment feels snappy, not draggy. */
.bp-track { position: relative; height: 260vh; }
@media (max-width: 959px) { .bp-track { height: 240vh; } }

.bp-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

/* ---- FULL-BLEED BACKGROUND LAYER ---- */
.bp-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* blueprint "paper" backdrop: a cool engineering wash that warms to the
   brand as the build finishes. Fills the whole layer. */
.bp-paper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 100% at 50% 22%,
      color-mix(in srgb, #1f3a4e calc(58% * (1 - var(--bp-p))), var(--bg-deep)) 0%,
      var(--bg-deep) 78%);
}
.bp-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(150, 197, 230, 0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(150, 197, 230, 0.10) 1px, transparent 1px);
  background-size: clamp(30px, 5vw, 54px) clamp(30px, 5vw, 54px);
  opacity: calc(0.8 - 0.6 * var(--bp-p));
  mask-image: radial-gradient(125% 110% at 50% 40%, #000 50%, transparent 95%);
  -webkit-mask-image: radial-gradient(125% 110% at 50% 40%, #000 50%, transparent 95%);
}
.bp-paper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 64% 16%, rgba(198, 106, 56, 0.30), transparent 68%);
  opacity: var(--bp-p);
}

/* Cinematic photo canvas: three real frames cross-dissolve under one slow
   pan/zoom (Ken Burns), warming dusk -> lit as you scroll. The whole canvas
   zooms gently the entire moment so it is always alive, on phone and desktop.
   Swap the three .bp-frame images per trade; nothing else changes. */
.bp-bg-visual {
  position: absolute;
  inset: 0;
  /* one continuous slow zoom-out across the moment (GPU transform only) */
  transform: scale(calc(1.09 - 0.09 * var(--bp-p)));
  transform-origin: 58% 44%;
  will-change: transform;
}

.bp-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
/* frame 0 (design): holds, then dissolves out into the build frame */
.bp-frame-0 { opacity: clamp(0, calc((0.46 - var(--bp-p)) / 0.13), 1); }
/* frame 1 (build): dissolves in, holds, dissolves out into handover */
.bp-frame-1 {
  opacity: calc(
    clamp(0, calc((var(--bp-p) - 0.33) / 0.13), 1) *
    clamp(0, calc((0.78 - var(--bp-p)) / 0.12), 1)
  );
}
/* frame 2 (hand over): dissolves in for the finish and stays */
.bp-frame-2 { opacity: clamp(0, calc((var(--bp-p) - 0.66) / 0.12), 1); }

/* dusk -> lit grade: a cool dim wash early that lifts to a warm lit glow by
   the end. Sits above the frames, below the readability scrim. */
.bp-grade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.bp-grade::before {
  content: "";
  position: absolute;
  inset: 0;
  /* cool dusk dim: strong at the start, gone by the end */
  background: linear-gradient(180deg, rgba(18, 32, 52, 0.55), rgba(14, 22, 38, 0.26) 58%, rgba(12, 18, 30, 0.52));
  opacity: calc(1 - var(--bp-p));
}
.bp-grade::after {
  content: "";
  position: absolute;
  inset: 0;
  /* warm lit glow: absent early, blooms in by the end */
  background:
    radial-gradient(78% 68% at 62% 32%, rgba(224, 138, 82, 0.34), transparent 64%),
    linear-gradient(180deg, rgba(40, 22, 10, 0.12), rgba(20, 12, 6, 0.30));
  opacity: var(--bp-p);
}

/* Readability scrim between background and copy. Sits above the visual,
   below the foreground. Stronger on mobile (handled below). */
.bp-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(15, 12, 9, 0.92) 0%,
      rgba(15, 12, 9, 0.78) 34%,
      rgba(15, 12, 9, 0.28) 64%,
      rgba(15, 12, 9, 0.12) 100%),
    linear-gradient(to bottom,
      rgba(15, 12, 9, 0.55) 0%,
      rgba(15, 12, 9, 0.18) 30%,
      rgba(15, 12, 9, 0.42) 100%);
}

.bp-stamp {
  position: absolute;
  right: clamp(0.8rem, 3vw, 1.8rem);
  bottom: clamp(0.9rem, 3vw, 1.8rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--on-rust);
  background: var(--rust);
  padding: 0.55rem 0.9rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  opacity: clamp(0, calc((var(--bp-p) - 0.9) / 0.08), 1);
  transform: translateY(calc(8px * (1 - clamp(0, calc((var(--bp-p) - 0.9) / 0.08), 1))));
  pointer-events: none;
}
.bp-stamp svg { width: 14px; height: 14px; flex: none; }

/* ---- FOREGROUND COPY (pops over the live background) ---- */
.bp-fg {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;          /* let the background breathe; links re-enable */
}
.bp-fg-inner {
  width: 100%;
  max-width: var(--shell-max);
  pointer-events: auto;
}
.bp-fg-inner > * { max-width: 34rem; }

.bp-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: 1rem;
}
.bp-eyebrow::before {
  content: "";
  width: 24px; height: 1.5px;
  margin-right: 0.7rem;
  background: var(--rust-bright);
  flex: none;
}
.bp-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.3rem + 3vw, 3.4rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.06;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.bp-title em { font-style: italic; font-weight: 400; color: var(--rust-bright); }

/* The three beats. Each pops in (rise + fade) as its phase begins and dims
   when the next takes over. Plain language, the verb IS the label. */
.bp-steps {
  display: grid;
  gap: 0.4rem;
  margin-top: clamp(1.4rem, 1rem + 2vw, 2rem);
}
.bp-step {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.4rem;
  border-left: 2px solid var(--line);
  opacity: 0.32;
  transform: translateY(10px);
  transition: opacity var(--t-mid) var(--ease),
              transform var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease);
}
.bp-step .bp-step-k {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.35rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}
.bp-step p {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 38ch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--t-mid) var(--ease), opacity var(--t-mid) var(--ease);
}
.bp-step.is-active,
.bp-step.is-done { transform: translateY(0); }
.bp-step.is-active { opacity: 1; border-left-color: var(--rust); }
.bp-step.is-active p { max-height: 8rem; opacity: 1; }
.bp-step.is-done { opacity: 0.6; border-left-color: var(--rust-deep); }

.bp-progress {
  margin-top: clamp(1.3rem, 1rem + 1.6vw, 1.9rem);
  max-width: 18rem;
  height: 3px;
  border-radius: 3px;
  background: var(--line-soft);
  overflow: hidden;
}
.bp-progress-bar {
  display: block;
  height: 100%;
  width: calc(var(--bp-p) * 100%);
  background: linear-gradient(to right, var(--rust), var(--rust-bright));
  border-radius: 3px;
}

/* ---- Mobile: same model, just a stronger scrim + tighter copy so the live
   background stays visible behind readable text on a 390px phone. ---- */
@media (max-width: 759px) {
  .bp-scrim {
    background:
      linear-gradient(to bottom,
        rgba(15, 12, 9, 0.42) 0%,
        rgba(15, 12, 9, 0.62) 46%,
        rgba(15, 12, 9, 0.86) 100%);
  }
  .bp-fg { align-items: flex-end; padding-bottom: clamp(4.5rem, 16vh, 8rem); }
  .bp-fg-inner > *, .bp-title { max-width: 100%; }
  .bp-step { opacity: 0.4; }
  .bp-step p { font-size: 0.86rem; max-width: 100%; }
  .bp-progress { max-width: 12rem; }
}

/* Reduced motion / no-JS: collapse runway, show finished state + photo +
   all step copy, copy stacked over the finished home. */
@media (prefers-reduced-motion: reduce) {
  .bp-track { height: auto; }
  .bp-stage {
    position: static; height: auto; min-height: 70vh;
    padding-block: var(--section-y);
  }
  .story { --bp-p: 1 !important; }
  .bp-fg { align-items: flex-end; padding-bottom: clamp(3rem, 8vh, 6rem); }
  .bp-step { opacity: 1 !important; transform: none !important; }
  .bp-step p { max-height: none !important; opacity: 1 !important; }
}
.no-js .bp-track { height: auto; }
.no-js .bp-stage { position: static; height: auto; min-height: 70vh; padding-block: var(--section-y); }
.no-js .story { --bp-p: 1; }
.no-js .bp-fg { align-items: flex-end; padding-bottom: clamp(3rem, 8vh, 6rem); }
.no-js .bp-step { opacity: 1; transform: none; }
.no-js .bp-step p { max-height: none; opacity: 1; }

/* =====================================================================
   CREW / ABOUT
   ===================================================================== */
.crew-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 1.5rem + 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 940px) {
  .crew-inner { grid-template-columns: 1.05fr 0.95fr; }
}
.crew-media { position: relative; }
.crew-img-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-frame);
  box-shadow: var(--shadow-lg);
}
.crew-portrait {
  position: absolute;
  right: clamp(-0.5rem, -1vw, 0.5rem);
  bottom: clamp(-1.4rem, -2vw, -1rem);
  width: clamp(8.5rem, 11rem, 13rem);
  margin: 0;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 0.6rem 0.6rem 0.85rem;
  box-shadow: var(--shadow-lg);
}
.crew-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
}
.crew-portrait figcaption { padding: 0.6rem 0.3rem 0.1rem; }
.crew-portrait-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}
.crew-portrait-role {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-3);
  margin-top: 0.15rem;
}

.crew-points { display: grid; gap: 1.15rem; margin-top: 2rem; }
.crew-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.55;
}
.crew-points strong { color: var(--ink); font-weight: 600; }
.crew-points svg { color: var(--rust-bright); margin-top: 2px; flex: none; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 620px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 1.95rem 1.75rem;
  transition: transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              background var(--t-mid) var(--ease);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--rust), var(--rust-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
  background: var(--bg-raised-2);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  color: var(--rust-bright);
  background: color-mix(in srgb, var(--rust) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--rust) 28%, transparent);
  margin-bottom: 1.3rem;
  transition: transform var(--t-mid) var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.06) rotate(-3deg); }

.service-card h3 { font-size: var(--fs-h3); font-weight: 600; margin-bottom: 0.5rem; }
.service-card p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.58; }

/* =====================================================================
   PROOF / STATS
   ===================================================================== */
.proof {
  background:
    radial-gradient(70% 90% at 85% 0%, rgba(198, 106, 56, 0.08), transparent 60%),
    var(--bg-deep);
}
.proof-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: clamp(2rem, 1.4rem + 1.6vw, 3rem);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.8rem, 1rem + 3vw, 3rem) 1rem;
}
@media (min-width: 760px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }
.proof-stat { position: relative; padding-left: 1.2rem; }
.proof-stat::before {
  content: "";
  position: absolute;
  left: 0; top: 0.3rem; bottom: 0.3rem;
  width: 2px;
  background: var(--rust);
  border-radius: 2px;
}
.proof-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 1.6rem + 3vw, 4rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.proof-label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  margin-top: 0.7rem;
  max-width: 18ch;
}

/* =====================================================================
   WORK / GALLERY
   ===================================================================== */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 720px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-flow: dense; }
  .work-tile-lg { grid-column: span 2; }
}
@media (min-width: 1000px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .work-tile-lg { grid-column: span 2; }
  .work-tile-wide { grid-column: span 1; }
}

.work-tile { margin: 0; }
.work-frame {
  position: relative;
  border-radius: var(--r-frame);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  background: var(--bg-raised);
  aspect-ratio: 1 / 1;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.work-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.work-tile-lg .work-frame,
.work-tile-wide .work-frame { aspect-ratio: 16 / 10; }
@media (min-width: 1000px) {
  .work-tile-lg .work-frame { aspect-ratio: 16 / 11; height: 100%; }
}
.work-tile:hover .work-frame { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work-tile:hover .work-frame img { transform: scale(1.05); }

.work-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  padding-inline: 0.15rem;
}
.work-type {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
}
.work-place {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* =====================================================================
   CLOSING CTA
   ===================================================================== */
.callback {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.callback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 55% at 90% 10%, rgba(198, 106, 56, 0.18), transparent 70%),
    radial-gradient(45% 50% at 4% 92%, rgba(198, 106, 56, 0.10), transparent 72%);
  pointer-events: none;
}
.callback-inner {
  position: relative;
  display: flex;
  justify-content: center;
}
.callback-copy {
  text-align: center;
  max-width: 640px;
}
.callback-eyebrow { color: var(--rust-bright); }
.callback-title { color: var(--ink); max-width: 18ch; margin-inline: auto; }
.callback-lead { color: var(--ink-2); max-width: 56ch; margin-inline: auto; }

/* Value props: centred row on desktop, stacked on small screens */
.callback-points {
  display: grid;
  gap: 1.15rem;
  margin: 2.25rem auto 0;
  max-width: 560px;
  text-align: left;
}
@media (min-width: 760px) {
  .callback-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: none;
  }
}
.callback-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.55;
}
@media (min-width: 760px) {
  .callback-points li {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}
.callback-points strong { color: var(--ink); font-weight: 600; }
.callback-points svg { color: var(--rust-bright); margin-top: 2px; flex: none; }

.callback-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.5rem;
}

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}
.reviews-head .section-title { max-width: 22ch; }
.reviews-rating { display: flex; align-items: center; gap: 0.7rem; white-space: nowrap; }
.reviews-stars { display: inline-flex; gap: 1px; color: var(--rust-bright); }
.reviews-rating-text { font-size: var(--fs-sm); color: var(--ink-2); }
.reviews-rating-text strong { color: var(--ink); font-weight: 700; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 680px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 1.7rem 1.6rem;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line); }
.review-stars { color: var(--rust-bright); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.review-card blockquote { font-size: var(--fs-sm); line-height: 1.62; color: var(--ink-2); flex: 1; }
.review-card figcaption { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); }
.review-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.review-meta { display: block; font-size: var(--fs-xs); color: var(--ink-3); margin-top: 0.2rem; }

/* =====================================================================
   SERVICE AREA
   ===================================================================== */
.areas { background: var(--bg-deep); }
.areas-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) { .areas-inner { grid-template-columns: 0.95fr 1.05fr; } }
.areas-note { font-size: var(--fs-sm); color: var(--ink-3); margin-top: 1.3rem; font-style: italic; }
.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
@media (min-width: 540px) { .areas-list { grid-template-columns: repeat(3, 1fr); } }
.areas-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 1rem 1.15rem;
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.areas-list li:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--rust) 50%, var(--line));
  box-shadow: var(--shadow-sm);
}
.areas-list svg { color: var(--rust-bright); flex: none; }

/* =====================================================================
   FINAL CTA + CONTACT FORM
   ===================================================================== */
.cta-band {
  background:
    radial-gradient(65% 95% at 88% 8%, rgba(198, 106, 56, 0.16), transparent 62%),
    var(--bg);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 920px) { .cta-inner { grid-template-columns: 1fr 1fr; } }

.cta-title { font-size: var(--fs-h2); max-width: 14ch; }
.cta-lead { font-size: var(--fs-lead); color: var(--ink-2); margin-top: 1.1rem; max-width: 46ch; line-height: 1.55; }

.cta-direct { margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.cta-phone { display: inline-flex; align-items: center; gap: 0.9rem; transition: transform var(--t-fast) var(--ease); }
.cta-phone:hover { transform: translateX(3px); }
.cta-phone svg {
  color: var(--rust-bright);
  flex: none;
  width: 44px; height: 44px;
  padding: 11px;
  background: color-mix(in srgb, var(--rust) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--rust) 30%, transparent);
  border-radius: 50%;
}
.cta-phone-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cta-phone-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cta-hours-mini { font-size: var(--fs-sm); color: var(--ink-3); margin-top: 1rem; }

/* Form */
.callback-form {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 1rem + 2vw, 2.3rem);
  box-shadow: var(--shadow-md);
}
.form-row { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
@media (min-width: 480px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.callback-form label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.label-optional, .form-hint { font-weight: 400; color: var(--ink-3); font-size: var(--fs-xs); }

.callback-form input,
.callback-form select,
.callback-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-input);
  padding: 0.82rem 0.95rem;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.callback-form textarea { resize: vertical; min-height: 92px; line-height: 1.5; }
.callback-form ::placeholder { color: #847a6b; opacity: 1; }
.callback-form input:focus,
.callback-form select:focus,
.callback-form textarea:focus {
  outline: none;
  border-color: var(--rust);
  background: var(--bg-raised-2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--rust) 26%, transparent);
}
.callback-form select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' fill='none' stroke='%238c8273' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.4rem;
}
.callback-form select option { background: var(--bg-raised); color: var(--ink); }

.callback-form input[aria-invalid="true"],
.callback-form select[aria-invalid="true"] {
  border-color: #e0685b;
  box-shadow: 0 0 0 3px rgba(224, 104, 91, 0.18);
}
.form-error { font-size: var(--fs-xs); color: #e98a7f; font-weight: 500; min-height: 0; }
.form-error:empty { display: none; }

.form-reassure { display: flex; align-items: center; gap: 0.45rem; font-size: var(--fs-xs); color: var(--ink-3); margin-top: 0.9rem; }
.form-reassure svg { color: var(--rust-bright); flex: none; }

.form-success[hidden] { display: none; }
.form-success {
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.7rem;
  background: var(--bg-raised);
  border-radius: var(--r-card);
  padding: 2rem;
}
.form-success:not([hidden]) {
  display: flex;
  opacity: 0;
  transform: scale(0.98);
  animation: success-in 0.45s var(--ease) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .form-success:not([hidden]) { animation: none; opacity: 1; transform: none; }
}
@keyframes success-in { to { opacity: 1; transform: scale(1); } }
.form-success-icon { color: var(--rust-bright); }
.form-success-icon .tick-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: draw-tick 0.55s var(--ease) 0.15s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .form-success-icon .tick-path { stroke-dashoffset: 0; animation: none; }
}
@keyframes draw-tick { to { stroke-dashoffset: 0; } }
.form-success h3 { font-size: 1.5rem; font-weight: 600; }
.form-success p { font-size: var(--fs-sm); color: var(--ink-2); max-width: 34ch; }
.form-success a { color: var(--rust-bright); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: var(--bg-deep);
  color: var(--ink-2);
  padding-top: clamp(3.5rem, 2rem + 3vw, 5rem);
  border-top: 1px solid var(--line-soft);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.8rem;
}
@media (min-width: 600px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; } }

.wordmark-footer .wordmark-name { color: var(--ink); }
.wordmark-footer .wordmark-sub { color: var(--ink-3); }
.wordmark-footer .wordmark-mark { color: var(--rust-bright); }

.footer-tagline { font-size: var(--fs-sm); color: var(--ink-2); margin-top: 1.1rem; max-width: 34ch; line-height: 1.55; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--ink-2);
  border: 1px solid var(--line);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.footer-socials a:hover { color: var(--on-rust); background: var(--rust); border-color: var(--rust); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  padding: 0.32rem 0;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  width: fit-content;
}
.footer-col a:hover { color: var(--ink); transform: translateX(3px); }

.footer-contact-line { display: flex; align-items: center; gap: 0.55rem; font-weight: 500; }
.footer-contact-line svg { color: var(--rust-bright); flex: none; }
.footer-hours { margin-top: 1.5rem; }
.footer-hours h5 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.footer-hours p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.7; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.footer-legal { font-size: var(--fs-xs); color: var(--ink-3); }
.footer-credit { font-size: var(--fs-xs); color: var(--ink-3); }
.footer-credit a { color: var(--ink); font-weight: 600; transition: color var(--t-fast) var(--ease); }
.footer-credit a:hover { color: var(--rust-bright); }

/* =====================================================================
   MOBILE STICKY CALL BAR
   ===================================================================== */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.6rem;
  padding: 0.7rem 0.8rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--bg-deep) 86%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform var(--t-mid) var(--ease);
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.88rem 1rem;
  border-radius: var(--r-pill);
}
.mobile-bar-call { background: var(--bg-raised-2); color: var(--ink); border: 1px solid var(--line); }
.mobile-bar-call svg { color: var(--rust-bright); }
.mobile-bar-cta { background: var(--rust); color: var(--on-rust); }
@supports not (backdrop-filter: blur(1px)) { .mobile-bar { background: var(--bg-deep); } }
@media (min-width: 880px) { .mobile-bar { display: none; } }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(5px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; filter: none; }

.services-grid .service-card,
.work-grid .work-tile,
.reviews-grid .review-card,
.proof-grid .proof-stat,
.callback-points li,
.areas-list li {
  transition-delay: calc(var(--i, 0) * 65ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .js-anim .hero [data-hero-line] { opacity: 1; transform: none; filter: none; }
  .js-anim .manifesto-line .w { opacity: 1; }
  .hero-img { height: 100%; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
