/* ============================================================
   Lawhead Digital — production stylesheet
   ============================================================ */

/* ---------- Fonts (self-hosted, extracted from bundle) ---------- */
/* Archivo */
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 300 900; font-display: swap;
  src: url("../assets/cb522d7f-4264-4834-bd67-cf9e31fb9de7.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 300 900; font-display: swap;
  src: url("../assets/a411a801-c14b-42a5-9d55-4bc31952c33d.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 300 900; font-display: swap;
  src: url("../assets/fd09d277-a66f-4fbb-8721-8b6073373336.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

/* Inter */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../assets/5f8b05e3-5126-43d2-bbb9-303c0cb781d5.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../assets/4782b6a7-3dc6-421b-9bfd-1d4451f67a63.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../assets/0a011451-6830-4989-8abf-aa1527ddeb30.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0b0d;
  --bg-deep: #050608;
  --ink: #e9ebee;
  --ink-dim: #a7adb6;
  --ink-mute: #6c727b;
  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);
  --card-glass: rgba(20,22,28,0.32);
  --card-glass-border: rgba(255,255,255,0.10);
  --accent-pulse: rgba(78,210,135,0.55);

  --pad-x: clamp(20px, 5vw, 76px);
  --section-pad-y: clamp(80px, 12vh, 120px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; }

a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid #f3f5f8;
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: 12px; top: -100px;
  background: #fff; color: #050608;
  padding: 8px 14px; border-radius: 6px;
  font: 600 12px/1 "Archivo", sans-serif;
  letter-spacing: 0.2em;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Page layout ---------- */
.page {
  position: relative;
  width: 100%;
  background: var(--bg-deep);
  opacity: 0;
  transition: opacity 600ms ease;
}
body.loaded .page { opacity: 1; }

.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

/* Hero, about, services use a 3-row grid so content + bottom-pinned items
   never collide regardless of viewport height. */
.section.hero,
.section.about,
.section.services-sec {
  display: grid;
  grid-template-rows:
    clamp(110px, 16vh, 180px)
    1fr
    auto;
  padding: 0 var(--pad-x);
  row-gap: clamp(28px, 4vh, 56px);
}

/* ===========================================================
   HERO
   =========================================================== */
.hero .bg {
  position: absolute; inset: 0;
  background-image: url("../assets/ea8f916b-3a5f-4836-801e-9160570ce05a.webp");
  background-size: cover;
  background-position: 40% 65%;
  background-repeat: no-repeat;
  filter: saturate(0.95) contrast(1.02);
}
.hero .bg-left-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(5,6,8,0.88) 0%, rgba(5,6,8,0.66) 22%, rgba(5,6,8,0.20) 42%, rgba(5,6,8,0) 60%);
}
.hero .bg-bottom-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(5,6,8,0.55) 0%, rgba(5,6,8,0) 18%, rgba(5,6,8,0) 70%, rgba(5,6,8,0.85) 100%);
}
.hero .bg-vignette {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 220px 30px rgba(0,0,0,0.55);
}
.hero .inner-border {
  position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  pointer-events: none;
  z-index: 4;
}

/* ---------- Nav ---------- */
/* Sticky page nav. Floats over the hero with side margins; on scroll
   past the hero it docks to top:0 full-width with a glass background.
   Lives DOM-inside .hero but rendered fixed, so it stays visible across
   every section. */
.nav {
  position: fixed;
  top: 36px;
  left: var(--pad-x);
  right: var(--pad-x);
  height: 60px;
  z-index: 100;
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 12px;
  border-bottom: 1px solid transparent;
  transition:
    top 0.35s cubic-bezier(.2,.7,.2,1),
    left 0.35s cubic-bezier(.2,.7,.2,1),
    right 0.35s cubic-bezier(.2,.7,.2,1),
    padding 0.35s cubic-bezier(.2,.7,.2,1),
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    border-radius 0.35s ease;
}
.nav.is-scrolled {
  top: 0;
  left: 0;
  right: 0;
  padding: 0 var(--pad-x);
  background: rgba(5, 6, 8, 0.65);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-radius: 0;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  flex: 0 0 auto;
  padding-right: 22px;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}
.brand-name {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #e9ebee;
  white-space: nowrap;
}

/* Subtle hairline under the hero nav — fades at the edges, no curves.
   Hero-only: scrolls away with the section. The docked sticky nav has
   its own border-bottom for separation. */
.nav-divider {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 6%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.04) 94%,
    transparent 100%
  );
  transform-origin: center;
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  height: 100%;
  align-items: center;
  padding: 0 80px;
}
.nav-links a {
  font-family: "Archivo", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
  position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -8px;
  transform: translateX(-50%);
  width: 26px; height: 1px;
  background: #e9ebee;
}

.nav-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 24px;
}
.lets-talk {
  font-family: "Archivo", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s;
}
.lets-talk:hover { color: #fff; }
.nav-plus {
  width: 32px; height: 32px;
  display: none;
  place-items: center;
  color: #cfd2d8;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.nav-plus svg { width: 12px; height: 12px; transition: transform .25s; }
.nav-plus:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.nav-plus[aria-expanded="true"] svg { transform: rotate(45deg); }

/* ---------- Hero content ---------- */
.hero .content {
  grid-row: 2;
  align-self: start;
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 640px;
  min-width: 0;
}
.eyebrow {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  letter-spacing: 0.30em;
  color: #cfd2d8;
  margin: 0 0 28px;
  font-weight: 500;
}
.display {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 9vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(180deg, #f3f5f8 0%, #cdd1d8 55%, #9ea3aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.display .l1, .display .l2 { display: block; }

.lede {
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.55;
  color: #b8bdc5;
  max-width: 360px;
  font-weight: 400;
}

.cta {
  position: relative;
  isolation: isolate;
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 17px 28px 17px 32px;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 12, 15, 0.32);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  color: #e9ebee;
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    inset 0 1.2px 0 -0.4px rgba(255, 255, 255, 0.30),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.20),
    inset 1px 0 0 -0.4px rgba(255, 255, 255, 0.08),
    inset -1px 0 0 -0.4px rgba(255, 255, 255, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.10),
    0 6px 18px rgba(0, 0, 0, 0.30);
  transition:
    transform 700ms cubic-bezier(0.175, 0.885, 0.32, 2.2),
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.02) 35%,
    rgba(255, 255, 255, 0)    65%,
    rgba(255, 255, 255, 0.06) 100%
  );
}
.cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px) scale(1.02);
}
.cta:active { transform: translateY(0) scale(0.98); }
.cta .arrow { display: inline-flex; }

/* ---------- Liquid Glass ----------
   SVG filter (defined inline in <body>) gives Chromium real refraction via
   backdrop-filter url(); other browsers gracefully fall back to plain
   blur+saturate. The shadow stack mimics edge lensing (top hot edge, bottom
   dark edge, side highlights) so the surface reads as actual glass thickness.
   The diagonal ::before sheen is the specular highlight you'd see on a real
   curved-glass surface. */
.liquid-glass-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.glass {
  position: relative;
  isolation: isolate;
  background: rgba(20, 22, 28, 0.36);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    /* edge lensing: bright top, dark bottom, soft side highlights */
    inset 0 1.5px 0 -0.5px rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.28),
    inset 1.5px 0 0 -0.5px rgba(255, 255, 255, 0.10),
    inset -1.5px 0 0 -0.5px rgba(255, 255, 255, 0.10),
    /* faint inner glow (glass thickness) */
    inset 0 0 14px -4px rgba(255, 255, 255, 0.10),
    /* outer depth */
    0 1px 5px rgba(0, 0, 0, 0.10),
    0 8px 22px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition:
    transform 700ms cubic-bezier(0.175, 0.885, 0.32, 2.2),
    box-shadow 400ms ease,
    background 400ms ease;
}

/* Diagonal sheen — fixed specular highlight from upper-left, like real glass */
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.02) 30%,
    rgba(255, 255, 255, 0)    62%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

/* Cursor-reactive specular hot-spot — applied via JS-set CSS vars.
   Larger glass surfaces only (service cards). The CTA, available card, and
   contact pause card stay static — small surfaces don't need it. */
.glass.glass--reactive::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.16),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 350ms ease;
}
.glass.glass--reactive:hover::after { opacity: 1; }

/* ---------- Available card ---------- */
.available {
  position: absolute;
  top: clamp(120px, 18vh, 196px);
  right: var(--pad-x);
  width: clamp(220px, 22vw, 268px);
  border-radius: 12px;
  overflow: hidden;
  z-index: 6;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.available:hover { transform: translateY(-2px); }
.available-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: #f3f5f8;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
  flex: 0 0 auto;
}
.available-label {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #ecedf0;
  white-space: nowrap;
}
.available-body {
  padding: 14px 18px 16px;
  display: flex; align-items: flex-end; justify-content: space-between;
  text-decoration: none; color: inherit;
}
.available-body .small {
  font-size: 11px; color: #9097a0;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  font-weight: 400;
}
.available-body .big {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #ecedf0;
  font-weight: 600;
}
.available .arrow-btn {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: #cfd2d8;
}

/* On-hold state: amber dot, no pulse, no hover lift */
.available--hold:hover { transform: none; }
.available--hold .available-label { color: #d6d9df; }
.available-body--static { cursor: default; }
.available-body--static .big { letter-spacing: 0.20em; }
.dot--hold {
  background: #e8b855;
  box-shadow: 0 0 0 4px rgba(232,184,85,0.10);
}

/* ---------- Services rail ---------- */
.services-rail {
  position: absolute;
  right: calc(var(--pad-x) + 24px);
  top: clamp(320px, 50vh, 432px);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-height: calc(100vh - clamp(380px, 56vh, 520px));
  overflow: hidden;
}
.services-marker {
  position: relative;
  width: 130px;
  height: 28px;
  margin-bottom: 26px;
  margin-right: -8px;
}
.services-marker::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.services-marker::after {
  content: ""; position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #ecedf0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px rgba(10,12,15,0.85), 0 0 0 6px rgba(255,255,255,0.18);
}
.services-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}
.services-list a {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #c0c4cc;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 14px;
}
.services-list a::before {
  content: "";
  width: 0; height: 1px;
  background: rgba(255,255,255,0.20);
  transition: width .25s ease;
}
.services-list a:hover { color: #fff; }
.services-list a:hover::before { width: 22px; }

/* ---------- Stats ---------- */
.stats {
  grid-row: 3;
  position: relative;
  z-index: 6;
  padding-bottom: clamp(40px, 8vh, 78px);
  width: 100%;
  min-width: 0;
}
.stats .label {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #c8ccd2;
  margin-bottom: 26px;
  font-weight: 500;
}
/* Pull-quote that replaced the stats trio. Bold uppercase Archivo with
   a gradient cream fill, italic gold accent on the punchline word. Sits
   in the same hero grid slot the stats used. */
.stats-quote {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  margin: 0;
  max-width: 640px;
  background: linear-gradient(180deg, #f4f6f9 0%, #cdd1d8 60%, #9ea3aa 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Tabular feel for crisp reading at smaller sizes */
  text-wrap: balance;
}
.stats-quote em {
  font-style: italic;
  font-weight: 800;
  /* Brighter cool-white gradient — same hue family as the rest of the
     quote, just lifted toward pure white. The italic does the emphasis,
     the brightness adds a subtle glow. No warm tones (clashes with the
     moonlit cinematic palette). */
  background: linear-gradient(180deg, #ffffff 0%, #e8ecf2 55%, #b6bcc6 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.18));
  letter-spacing: -0.005em;
}

/* Old stat-row CSS is dead code now (no .stat or .stats-row in markup).
   Kept the selectors empty for easy revert if ever wanted back. */
.stats-row { display: none; }

.icon-arrow { width: 14px; height: 14px; display: inline-block; }

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 6;
  color: #8a8f97;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-decoration: none;
}
.scroll-cue .line {
  width: 1px; height: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%);
  animation: cueDrift 2.4s ease-in-out infinite;
}
@keyframes cueDrift {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about .bg {
  position: absolute; inset: 0;
  background-image: url("../assets/729973fe-3899-412d-84f3-20946da853a5.webp");
  background-size: cover;
  background-position: center;
}
.about .bg-left-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(5,6,8,0.92) 0%, rgba(5,6,8,0.78) 28%, rgba(5,6,8,0.30) 50%, rgba(5,6,8,0) 65%);
}
.about .bg-vignette {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 220px 30px rgba(0,0,0,0.55);
}
.about .content {
  grid-row: 2 / 4;
  align-self: center;
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 580px;
  min-width: 0;
  padding-bottom: clamp(40px, 6vh, 80px);
}
.about .heading {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(180deg, #f3f5f8 0%, #cdd1d8 55%, #9ea3aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about .heading .dim {
  background: linear-gradient(180deg, #b9bdc4 0%, #8d929a 55%, #6a6f76 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about .lede {
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.6;
  color: #aab0b9;
  max-width: 380px;
  font-weight: 400;
}
.about .features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 32px;
}
.feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.feature:hover { transform: translateX(4px); }
.feature-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  display: grid; place-items: center;
  color: #e9ebee;
  background: rgba(20,22,28,0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color .25s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.feature-icon svg { width: 18px; height: 18px; stroke-width: 1.4; }
.feature:hover .feature-icon { color: #fff; transform: scale(1.08); }
.feature-body { padding-top: 2px; }
.feature-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #ecedf0;
  margin: 0 0 8px;
}
.feature-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: #9298a2;
  margin: 0;
}

/* ===========================================================
   SERVICES
   =========================================================== */
.services-sec .bg {
  position: absolute; inset: 0;
  background-image: url("../assets/3bdf7650-136e-4d21-ba74-df0380270611.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.02);
}
.services-sec .bg-left-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(5,6,8,0.88) 0%, rgba(5,6,8,0.66) 22%, rgba(5,6,8,0.20) 42%, rgba(5,6,8,0) 60%);
}
.services-sec .bg-vignette {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 220px 30px rgba(0,0,0,0.55);
}
.services-content {
  grid-row: 2;
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 720px;
  min-width: 0;
}
.services-display {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 10vw, 128px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  background: linear-gradient(180deg, #f3f5f8 0%, #cdd1d8 55%, #9ea3aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 8px;
}
.services-lede {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #b8bdc5;
  max-width: 420px;
  letter-spacing: 0.005em;
  font-weight: 400;
}

.services-grid {
  grid-row: 3;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  z-index: 6;
  position: relative;
  list-style: none;
  margin: 0; padding: 0;
  width: 100%;
}
.service-card {
  position: relative;
  border-radius: 14px;
  padding: 24px 24px 22px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  color: #ecedf0;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  background: rgba(28,30,36,0.42);
  border-color: rgba(255,255,255,0.16);
}
.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.service-icon {
  width: 38px; height: 38px;
  color: #e9ebee;
  display: block;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), color .25s ease;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); color: #fff; }
.service-num {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #6c727b;
  font-weight: 500;
  padding-top: 6px;
}
.service-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 -24px 18px;
}
.service-title {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #ecedf0;
  line-height: 1.35;
  margin: 0 0 14px;
}
.service-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #9298a2;
  margin: 0 0 24px;
  font-weight: 400;
}
.service-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d6d9df;
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  font-weight: 600;
  transition: color .18s, transform .18s;
  align-self: flex-start;
}
.service-cta svg { width: 12px; height: 12px; }
.service-cta:hover { color: #fff; transform: translateX(2px); }

.section.services-sec {
  /* 6-row override: the base .section.services-sec rule defines 3 rows, but
     services has more grid items (header, cards, CTA, plus top + bottom
     spacers). Higher specificity here overrides the base. */
  grid-template-rows:
    clamp(110px, 16vh, 180px)   /* row 1: top spacer */
    auto                          /* row 2: header */
    1fr                           /* row 3: stretchy gap */
    auto                          /* row 4: cards */
    auto                          /* row 5: START A PROJECT */
    clamp(96px, 12vh, 132px);    /* row 6: bottom spacer (raises the CTA) */
}
.section.services-sec .services-content { grid-row: 2; }
.section.services-sec .services-grid { grid-row: 4; }
.services-start {
  grid-row: 5;
  justify-self: end;
  margin: clamp(28px, 3.5vh, 44px) 0 0;
  z-index: 6;
  position: relative;
}

/* ===========================================================
   CONTACT + FOOTER
   =========================================================== */
.contact {
  height: auto;
  min-height: 100vh;
  background: var(--bg-deep);
  padding: var(--section-pad-y) var(--pad-x) 36px;
  display: flex;
  flex-direction: column;
}
.contact .bg {
  position: absolute; inset: 0;
  background-image: url("../assets/contact-bg.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.04);
}
.contact .bg-left-fade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,6,8,0.92) 0%, rgba(5,6,8,0.78) 28%, rgba(5,6,8,0.36) 50%, rgba(5,6,8,0.10) 75%, rgba(5,6,8,0) 100%);
}
.contact .bg-bottom-fade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,6,8,0.55) 0%, rgba(5,6,8,0) 25%, rgba(5,6,8,0) 65%, rgba(5,6,8,0.92) 100%);
}
.contact .bg-vignette {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 220px 30px rgba(0,0,0,0.55);
}
/* Make sure content + footer render above the background layers */
.contact > *:not([aria-hidden="true"]) { position: relative; z-index: 2; }
.contact-inner {
  position: relative;
  max-width: 880px;
  width: 100%;
  z-index: 2;
  flex: 1;
}
.contact-display {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 12px 0 24px;
  background: linear-gradient(180deg, #f3f5f8 0%, #cdd1d8 55%, #9ea3aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-display .dim {
  background: linear-gradient(180deg, #b9bdc4 0%, #8d929a 55%, #6a6f76 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-lede {
  font-size: 15px;
  line-height: 1.6;
  color: #aab0b9;
  max-width: 480px;
  margin: 0 0 44px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  max-width: 720px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-family: "Archivo", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: #8a8f97;
  font-weight: 600;
}
.field input,
.field textarea {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  color: #ecedf0;
  background: rgba(20,22,28,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.field textarea { min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: #6c727b; }
.field input:hover,
.field textarea:hover { border-color: rgba(255,255,255,0.18); }
.field input:focus,
.field textarea:focus { border-color: rgba(255,255,255,0.4); outline: none; background: rgba(28,30,36,0.7); }

.form-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cta-submit { margin-top: 0; cursor: pointer; }
/* On-hold variant of the CTA pill: visible but inactive — bookings paused. */
.cta-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}
.cta-disabled:hover { transform: none; }
.form-note {
  margin: 0;
  font-size: 12.5px;
  color: #8a8f97;
}
.form-note a { color: #ecedf0; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Contact: paused notice ---------- */
.contact-pause {
  max-width: 560px;
  border-radius: 16px;
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pause-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pause-label {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #ecedf0;
}
.pause-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #aab0b9;
}
.pause-body a { color: #ecedf0; text-decoration: underline; text-underline-offset: 3px; }
.contact-pause .cta { margin-top: 6px; align-self: flex-start; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.copyright {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #5e636b;
  white-space: nowrap;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-family: "Archivo", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: #8a8f97;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }

/* ===========================================================
   MOBILE MENU
   =========================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5,6,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu:not([hidden]) { display: flex; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.mobile-menu-inner a {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  letter-spacing: 0.28em;
  color: #ecedf0;
  text-decoration: none;
  font-weight: 600;
}
.mobile-menu-inner a.mobile-email {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #8a8f97;
  margin-top: 24px;
  text-transform: none;
}
body.menu-open { overflow: hidden; }

/* ===========================================================
   ANIMATIONS
   =========================================================== */
@keyframes a-fade-up   { 0% { opacity: 0; transform: translate3d(0, 22px, 0); filter: blur(2px); } 100% { opacity: 1; transform: translate3d(0,0,0); filter: blur(0); } }
@keyframes a-fade-right{ 0% { opacity: 0; transform: translate3d(36px, 0, 0); } 100% { opacity: 1; transform: translate3d(0,0,0); } }
@keyframes a-fade-left { 0% { opacity: 0; transform: translate3d(-36px, 0, 0); } 100% { opacity: 1; transform: translate3d(0,0,0); } }
@keyframes a-fade-in   { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes a-reveal-mask { 0% { clip-path: inset(0 0 100% 0); opacity: 0.001; } 100% { clip-path: inset(0 0 0 0); opacity: 1; } }
@keyframes a-scale-in  { 0% { opacity: 0; transform: scale(0.94); } 100% { opacity: 1; transform: scale(1); } }
@keyframes a-draw-line { 0% { stroke-dashoffset: var(--len, 3000); } 100% { stroke-dashoffset: 0; } }
@keyframes a-pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 var(--accent-pulse); transform: scale(1); } 50% { box-shadow: 0 0 0 6px rgba(78,210,135,0); transform: scale(1.05); } }
@keyframes a-cue-bob   { 0%, 100% { transform: translate(-50%, 0); opacity: 0.85; } 50% { transform: translate(-50%, 6px); opacity: 1; } }
@keyframes a-cue-line  { 0% { transform: scaleY(0); transform-origin: top; opacity: 0; } 50% { transform: scaleY(1); transform-origin: top; opacity: 1; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; } }
@keyframes a-bg-drift  { 0%, 100% { transform: translate3d(0, 0, 0) scale(1.0); } 50% { transform: translate3d(-1.2%, -0.6%, 0) scale(1.03); } }
@keyframes a-marker-glow { 0%, 100% { box-shadow: 0 0 0 5px rgba(10,12,15,0.85), 0 0 0 6px rgba(255,255,255,0.18), 0 0 8px 1px rgba(255,255,255,0.08); } 50% { box-shadow: 0 0 0 5px rgba(10,12,15,0.85), 0 0 0 6px rgba(255,255,255,0.45), 0 0 14px 3px rgba(255,255,255,0.22); } }
@keyframes a-arrow-bob { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(2px, -2px); } }

.reveal [data-anim] { opacity: 0; will-change: transform, opacity, filter; }
.reveal [data-anim="reveal"] { opacity: 0.001; clip-path: inset(0 0 100% 0); }

.reveal.in-view [data-anim="up"]     { animation: a-fade-up    900ms cubic-bezier(.2,.7,.2,1) both; }
.reveal.in-view [data-anim="right"]  { animation: a-fade-right 900ms cubic-bezier(.2,.7,.2,1) both; }
.reveal.in-view [data-anim="left"]   { animation: a-fade-left  900ms cubic-bezier(.2,.7,.2,1) both; }
.reveal.in-view [data-anim="fade"]   { animation: a-fade-in    1000ms ease both; }
.reveal.in-view [data-anim="scale"]  { animation: a-scale-in   900ms cubic-bezier(.2,.7,.2,1) both; }
.reveal.in-view [data-anim="reveal"] { animation: a-reveal-mask 1100ms cubic-bezier(.2,.7,.2,1) both; }

.reveal.in-view [data-delay="1"]  { animation-delay:   80ms; }
.reveal.in-view [data-delay="2"]  { animation-delay:  160ms; }
.reveal.in-view [data-delay="3"]  { animation-delay:  240ms; }
.reveal.in-view [data-delay="4"]  { animation-delay:  340ms; }
.reveal.in-view [data-delay="5"]  { animation-delay:  440ms; }
.reveal.in-view [data-delay="6"]  { animation-delay:  560ms; }
.reveal.in-view [data-delay="7"]  { animation-delay:  680ms; }
.reveal.in-view [data-delay="8"]  { animation-delay:  800ms; }
.reveal.in-view [data-delay="9"]  { animation-delay:  940ms; }
.reveal.in-view [data-delay="10"] { animation-delay: 1080ms; }

.hero .nav-divider { transform: scaleX(0); opacity: 0; }
.hero.in-view .nav-divider { animation: a-line-grow 1400ms 500ms cubic-bezier(.65,.05,.35,1) forwards; }
@keyframes a-line-grow {
  0%   { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

.hero .inner-border { opacity: 0; }
.hero.in-view .inner-border { animation: a-fade-in 900ms 1500ms ease both; }

.available .dot:not(.dot--hold) { animation: a-pulse-dot 2.4s ease-in-out infinite; }
.services-marker::after { animation: a-marker-glow 3s ease-in-out infinite; }

.scroll-cue { animation: a-cue-bob 3.4s ease-in-out infinite; }
.scroll-cue .line { animation: a-cue-line 2.4s ease-in-out infinite; }

.hero .bg, .services-sec .bg, .about .bg {
  animation: a-bg-drift 26s ease-in-out infinite;
  will-change: transform;
}

.cta:hover .arrow svg { animation: a-arrow-bob 1s ease-in-out infinite; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */

/* ---- Wide-but-not-huge: tighten side widgets ---- */
@media (max-width: 1280px) {
  /* Content was narrowed to 580 here, but LAWHEAD at 9vw=115px renders ~600px
     wide and was wrapping the D to a second line. Keep content full-width
     (640) at this range; the available card just stays at its smaller 240. */
  .hero .content { max-width: 640px; }
  .available { width: clamp(210px, 21vw, 240px); }
  .services-rail { right: calc(var(--pad-x) + 8px); }
  .services-grid { gap: 14px; }
  .service-card { padding: 22px 22px 20px; }
}

/* ---- Laptop-ish: 2x2 service grid (cards regain breathing room) ---- */
@media (max-width: 1100px) {
  .hero .content { max-width: 540px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 230px; }
}

/* ---- Small-laptop / large-tablet: drop the right-side widgets ---- */
@media (max-width: 1024px) {
  .available { display: none; }
  .services-rail { display: none; }
  .scroll-cue { display: none; }
  .hero .content { max-width: none; }
  .hero .inner-border { inset: 14px; border-radius: 14px; }
}

/* ---- Tablet & below: hamburger nav, drop divider, simplify hero ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .lets-talk { display: none; }
  .nav-plus { display: grid; }
  .nav-divider { display: none; }
  .hero .inner-border { inset: 12px; border-radius: 12px; }
  .scroll-cue { display: none; }

  .stats-row { flex-wrap: wrap; gap: 22px 36px; }
  .stat { min-width: 100px; }

  .about .features { grid-template-columns: 1fr; gap: 22px; }
  .about .content { padding-bottom: clamp(48px, 8vh, 96px); }

  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .services-grid .service-card:nth-child(4) { display: flex; }
  .service-card { min-height: 240px; padding: 22px 20px 20px; }

  .section.hero,
  .section.about,
  .section.services-sec {
    grid-template-rows: clamp(96px, 14vh, 140px) 1fr auto;
  }
}

/* ---- Phones: tighter type, looser spacing ---- */
@media (max-width: 640px) {
  .nav { top: 24px; }
  .brand-name { font-size: 11px; letter-spacing: 0.18em; }
  .lede { font-size: 13px; max-width: 100%; }
  .cta { padding: 14px 22px 14px 26px; gap: 24px; font-size: 10px; }
  .stat .num { font-size: 32px; }
  .stat .cap { font-size: 11px; margin-top: 8px; }

  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { min-height: 200px; }
  .services-start { justify-self: stretch; text-align: center; justify-content: center; }

  .site-footer { flex-direction: column; align-items: flex-start; gap: 18px; }
  .copyright { white-space: normal; }
  .contact-pause { padding: 22px 22px 24px; }
}

/* ---- Small phones: compact nav, tighter padding ---- */
@media (max-width: 480px) {
  :root { --pad-x: 18px; }
  .nav { height: 48px; }
  .nav-plus { width: 28px; height: 28px; }
  .stats-row { gap: 18px 28px; }
  .stat .num { font-size: 28px; }
  .feature { grid-template-columns: 44px 1fr; gap: 14px; }
  .feature-icon { width: 36px; height: 36px; }
  .feature-icon svg { width: 16px; height: 16px; }
}

/* ---- Tiny phones (iPhone SE 1st gen, Galaxy Fold) ---- */
@media (max-width: 360px) {
  :root { --pad-x: 14px; }
  .brand-name { font-size: 10px; letter-spacing: 0.16em; }
  .eyebrow { font-size: 10px; letter-spacing: 0.24em; margin-bottom: 22px; }
  .stat .num { font-size: 24px; }
  .cta { padding: 12px 18px 12px 22px; gap: 18px; }
  /* SERVICES title was overflowing the viewport at 320px wide. Tighter
     letter-spacing + a slightly smaller size lets it fit cleanly. */
  .services-display { font-size: 15vw; letter-spacing: -0.03em; }
}

/* ---- Short-height desktop (laptop landscape, kiosk) ---- */
@media (min-width: 901px) and (max-height: 760px) {
  .section.hero,
  .section.about,
  .section.services-sec {
    grid-template-rows: clamp(90px, 14vh, 130px) 1fr auto;
    row-gap: clamp(20px, 3vh, 36px);
  }
  .display { font-size: clamp(56px, 8.5vh, 96px); }
  .about .heading { font-size: clamp(48px, 8vh, 84px); }
  .services-display { font-size: clamp(64px, 12vh, 110px); }
  .lede, .about .lede, .services-lede { margin-top: 18px; font-size: 13px; }
  .cta { margin-top: 28px; }
  .stats .label { margin-bottom: 18px; }
  .stat .num { font-size: 32px; }
  .stats { padding-bottom: clamp(28px, 5vh, 48px); }
  .available { top: clamp(96px, 14vh, 140px); }
  .services-rail { top: clamp(260px, 42vh, 360px); }
  .services-grid { gap: 12px; }
  .service-card { min-height: 220px; padding: 20px 20px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .page { opacity: 1 !important; }
  .reveal [data-anim] { opacity: 1; clip-path: none; }
}

/* Print fallback */
@media print {
  .page { opacity: 1 !important; background: #fff; color: #000; }
  .nav, .scroll-cue, .available, .services-rail, .mobile-menu, .nav-divider { display: none !important; }
  .section { height: auto; min-height: 0; page-break-inside: avoid; }
  .display, .heading, .services-display, .contact-display { color: #000 !important; -webkit-text-fill-color: initial; background: none; }
}
