/* Fastlocks Fife. Brand colours from the van livery: charcoal black, locksmith red, white, brushed steel. */
:root {
  --char-950: #0d0d0e;
  --char-900: #141415;
  --char-850: #1a1a1c;
  --char-800: #212124;
  --char-700: #2d2d31;
  --line: rgba(236,236,238, .14);
  --paper: #f3f3f3;
  --muted: #b4b4ba;
  --stone: #d6d6db;
  --ink: #1a1a1a;
  --ink-soft: #45454b;
  --amber: #e11d38;
  --amber-hi: #ff5a6e;
  --amber-ink: #ffffff;
  --steel-a: #cdd4d0;
  --steel-b: #eef1ef;
  --steel-c: #bfc7c3;
  --err: #ffb4a3;

  --r-plate: 10px;
  --r-btn: 6px;

  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Schibsted Grotesk", system-ui, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --gutter: clamp(16px, 4vw, 48px);
  --max: 1320px;

  --z-callbar: 40;
  --z-nav: 50;
  --z-drawer: 60;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--char-900);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
.btn, .buzz, .chip, .qa summary, .panel__call { touch-action: manipulation; }
.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; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
[data-lucide], .lucide { width: 1.1em; height: 1.1em; stroke-width: 2; flex: none; }

.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--amber); color: var(--amber-ink); padding: 10px 16px; border-radius: var(--r-btn); font-weight: 700; }
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- type ---------- */
.h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.01em;
  margin: 0 0 .35em;
  text-wrap: balance;
}
.h2--ink { color: var(--ink); }
.lede { color: var(--muted); font-size: 1.15rem; max-width: 52ch; margin: 0 0 2.2rem; text-wrap: pretty; }

/* ---------- brushed steel plate ---------- */
.plate {
  position: relative;
  color: var(--ink);
  border-radius: var(--r-plate);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, rgba(0,0,0,.035) 1px 2px, transparent 2px 4px),
    linear-gradient(104deg, var(--steel-a) 0%, var(--steel-b) 34%, var(--steel-c) 58%, #e6eae8 82%, var(--steel-a) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -1px 0 rgba(0,0,0,.22),
    inset 1px 0 0 rgba(255,255,255,.35),
    0 40px 70px -28px rgba(0,0,0, .85),
    0 10px 22px -6px rgba(0,0,0, .5);
}
.plate .screw {
  position: absolute; width: 11px; height: 11px; border-radius: 50%;
  background:
    linear-gradient(var(--rot, 35deg), transparent 44%, rgba(30,30,33,.75) 44% 56%, transparent 56%),
    radial-gradient(circle at 35% 30%, #fbfcfb, #9aa39f 70%, #6f7874);
  box-shadow: 0 1px 0 rgba(255,255,255,.7), inset 0 -1px 1px rgba(0,0,0,.35);
}
.screw.s1 { top: 10px; left: 10px; --rot: 30deg; }
.screw.s2 { top: 10px; right: 10px; --rot: 110deg; }
.screw.s3 { bottom: 10px; left: 10px; --rot: 160deg; }
.screw.s4 { bottom: 10px; right: 10px; --rot: 65deg; }

.engrave {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #2a2a2e;
  text-shadow: 0 1px 0 rgba(255,255,255,.75), 0 -1px 0 rgba(0,0,0,.22);
  margin: 0;
}

/* ---------- buttons ---------- */
.btn {
  --lift: 0px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 48px; padding: .7em 1.25em;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  font-weight: 700; font-size: 1rem; letter-spacing: .005em;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transform: translateY(var(--lift));
  transition: transform .35s var(--ease-out), background-color .25s, box-shadow .35s var(--ease-out), border-color .25s;
}
.btn:hover { --lift: -2px; }
.btn:active { --lift: 1px; transition-duration: .08s; }
.btn--lg { min-height: 58px; font-size: 1.08rem; padding: .8em 1.5em; }
.btn--block { width: 100%; }
.btn--amber {
  background: var(--amber); color: var(--amber-ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), inset 0 -2px 0 rgba(80,0,12,.35), 0 10px 26px -10px rgba(225,29,56,.55);
}
.btn--amber:hover { background: var(--amber-hi); box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -2px 0 rgba(80,0,12,.3), 0 16px 34px -12px rgba(225,29,56,.7); }
.btn--ghost { color: var(--paper); border-color: rgba(243,243,243,.34); background: rgba(13,13,14,.35); }
.btn--ghost:hover { border-color: var(--paper); background: rgba(13,13,14,.6); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: var(--z-nav);
  transition: background-color .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.is-solid { background: rgba(16,16,17, .86); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); box-shadow: 0 1px 0 var(--line); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand__logo { display: block; height: 58px; width: auto; }
@media (max-width: 600px) { .brand__logo { height: 48px; } }
.m-ring { fill: none; stroke: var(--paper); stroke-width: 2; }
.m-plug { fill: var(--paper); }
.m-key { fill: var(--char-900); }
.brand__word { font-family: var(--display); font-weight: 800; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .04em; line-height: 1; }
.brand__word span { color: var(--amber); margin-left: .22em; }
.nav__links { display: flex; gap: 26px; }
.nav__links a { text-decoration: none; font-weight: 500; font-size: .98rem; color: var(--paper); opacity: .82; position: relative; padding: 6px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__call { min-height: 44px; }
.nav__menu { display: none; width: 44px; height: 44px; border: 1px solid rgba(243,243,243,.3); background: transparent; border-radius: var(--r-btn); position: relative; cursor: pointer; }
.nav__menu span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--paper); transition: transform .35s var(--ease-out); }
.nav__menu span:first-child { top: 17px; } .nav__menu span:last-child { top: 25px; }
.nav__menu[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.drawer { position: fixed; inset: 72px 0 auto; z-index: var(--z-drawer); background: var(--char-950); padding: 12px var(--gutter) 28px; display: grid; box-shadow: 0 30px 50px rgba(0,0,0,.4); overscroll-behavior: contain; max-height: calc(100dvh - 72px); overflow-y: auto; }
.drawer[hidden] { display: none; }
.drawer a { font-family: var(--display); font-weight: 800; font-size: 2rem; text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--line); }
.drawer a:last-child { color: var(--amber); border: 0; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  padding: 104px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))) 56px;
  isolation: isolate;
  overflow: clip;
}
.hero__photo {
  position: absolute; top: 0; right: 0; bottom: 0; width: 64%; z-index: -1; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 30%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 30%);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; filter: saturate(.92) contrast(1.04); }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,21,.55) 0%, transparent 22%, transparent 70%, rgba(20,20,21,.9) 100%); }
.hero__copy { position: relative; max-width: 720px; padding-right: 24px; }
.hero__open { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; font-weight: 600; font-size: .98rem; color: var(--paper); }
.led { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px rgba(225,29,56,.18), 0 0 12px 2px rgba(225,29,56,.55); }
.hero__open.is-closed .led { background: #6d6450; box-shadow: none; }
.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3.1rem, 6.4vw, 6rem);
  line-height: .95; letter-spacing: -.012em;
  margin: 0 0 24px; text-wrap: balance;
}
.hero__title em { font-style: normal; color: var(--amber); }
.hero__title .w { display: inline-block; overflow: clip; padding-bottom: .06em; vertical-align: top; }
.hero__title .w > span { display: inline-block; }
.hero__sub { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: #d9d9dd; max-width: 40ch; margin: 0 0 34px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* the door-entry panel */
.panel-wrap { position: relative; display: flex; justify-content: flex-end; padding-top: 40px; }
.panel { width: min(360px, 100%); padding: 30px 26px 26px; }
.panel__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.panel__name { font-size: 1.35rem; }
.grille { width: 58px; height: 34px; background-image: radial-gradient(circle, #36363b 1.6px, transparent 2.2px); background-size: 8px 8px; opacity: .8; filter: drop-shadow(0 1px 0 rgba(255,255,255,.7)); }
.lcd {
  position: relative; overflow: hidden;
  min-height: 70px; padding: 12px 14px; margin-bottom: 18px;
  border-radius: 6px;
  background: linear-gradient(180deg, #0a0a0b, #18181a);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.7), 0 1px 0 rgba(255,255,255,.8);
  font-family: var(--display); font-weight: 700; letter-spacing: .08em; font-size: 1.02rem; line-height: 1.25;
  color: var(--amber); text-shadow: 0 0 8px rgba(225,29,56,.45);
}
.lcd::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(0,0,0,.18) 0 1px, transparent 1px 3px); pointer-events: none; }
.lcd__line { display: block; }
.lcd__caret { display: inline-block; width: .55em; height: 1em; margin-left: 2px; background: var(--amber); vertical-align: -2px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.buzzers { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; }
.buzzers li {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 6px 6px 6px 14px; border-radius: 6px;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(255,255,255,.18));
  box-shadow: inset 0 1px 2px rgba(0,0,0,.18), 0 1px 0 rgba(255,255,255,.7);
}
.buzzers .engrave { font-size: 1rem; letter-spacing: .07em; }
.buzz {
  position: relative; flex: none; width: 46px; height: 46px; border-radius: 6px; cursor: pointer;
  border: 1px solid #8f9894;
  background: radial-gradient(circle at 40% 30%, #fbfcfb, #d3d9d6 55%, #aeb6b2);
  box-shadow: 0 3px 0 #7f8884, 0 5px 10px rgba(0,0,0,.25), inset 0 1px 0 #fff;
  transition: transform .12s var(--ease-out), box-shadow .12s var(--ease-out);
}
.buzz:hover { box-shadow: 0 3px 0 #7f8884, 0 7px 14px rgba(0,0,0,.28), inset 0 1px 0 #fff; }
.buzz.is-down, .buzz:active { transform: translateY(3px); box-shadow: 0 0 0 #7f8884, 0 1px 3px rgba(0,0,0,.3), inset 0 2px 3px rgba(0,0,0,.2); }
.buzz__led { position: absolute; top: 7px; right: 7px; width: 7px; height: 7px; border-radius: 50%; background: #6d6450; box-shadow: inset 0 1px 1px rgba(0,0,0,.5); transition: background-color .2s, box-shadow .3s; }
.buzz[aria-pressed="true"] .buzz__led { background: var(--amber-hi); box-shadow: 0 0 6px 2px rgba(225,29,56,.9), 0 0 16px 4px rgba(225,29,56,.35); }
.panel__call {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 16px 18px; border-radius: 6px; text-decoration: none;
  background: var(--amber); color: var(--amber-ink);
  box-shadow: 0 4px 0 #8f0c20, 0 12px 22px -8px rgba(120,8,25,.6), inset 0 1px 0 rgba(255,255,255,.5);
  transition: transform .14s var(--ease-out), box-shadow .14s, background-color .2s;
}
.panel__call:hover { background: var(--amber-hi); }
.panel__call:active { transform: translateY(4px); box-shadow: 0 0 0 #8f0c20, 0 3px 8px rgba(120,8,25,.5), inset 0 2px 4px rgba(0,0,0,.18); }
.panel__call.is-nudge { animation: nudge 1.2s var(--ease-out) 2; }
@keyframes nudge { 0%, 100% { box-shadow: 0 4px 0 #8f0c20, 0 12px 22px -8px rgba(120,8,25,.6), 0 0 0 0 rgba(225,29,56,.6); } 50% { box-shadow: 0 4px 0 #8f0c20, 0 12px 22px -8px rgba(120,8,25,.6), 0 0 0 10px rgba(225,29,56,0); } }
.panel__call-label { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 1.6rem; letter-spacing: .1em; }
.panel__call-num { font-family: var(--display); font-weight: 800; font-size: 1.45rem; letter-spacing: .03em; }
.panel__cb { display: block; text-align: center; margin-top: 14px; font-weight: 600; font-size: .95rem; color: var(--ink-soft); }
.panel__cb:hover { color: var(--ink); }

/* ---------- marquee strip ---------- */
.strip {
  position: relative; z-index: 1;
  overflow: hidden; border-block: 1px solid rgba(0,0,0,.25);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, rgba(0,0,0,.03) 1px 2px, transparent 2px 4px),
    linear-gradient(180deg, #e5e9e7, #bfc7c3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.strip__track { display: flex; align-items: center; gap: 30px; width: max-content; padding: 16px 0; animation: marquee 48s linear infinite; }
.strip span { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 1.15rem; color: #2a2a2e; text-shadow: 0 1px 0 rgba(255,255,255,.75); white-space: nowrap; }
.strip i { width: 9px; height: 9px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fbfcfb, #8b9490 75%); box-shadow: 0 1px 0 rgba(255,255,255,.7); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- services bento ---------- */
.van { padding-top: clamp(90px, 12vw, 160px); }
.van__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.van__shot { margin: 0; overflow: hidden; border-radius: var(--r-plate); background: var(--char-800); }
.van__shot img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.van__shot--side img { aspect-ratio: auto; }
.van__shot:hover img { transform: scale(1.03); }
@media (max-width: 860px) {
  .van__grid { grid-template-columns: 1fr 1fr; }
  .van__shot--side { grid-column: 1 / -1; }
}
.services { padding-top: clamp(50px, 7vw, 90px); padding-bottom: clamp(70px, 9vw, 120px); }
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: minmax(300px, auto); gap: 16px; }
.tile { position: relative; overflow: hidden; border-radius: var(--r-plate); background: var(--char-800); min-height: 300px; display: flex; align-items: flex-end; isolation: isolate; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transform: scale(1.02); transition: transform 1.2s var(--ease-out); }
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(13,13,14,0) 30%, rgba(13,13,14,.72) 64%, rgba(13,13,14,.95) 100%); }
.tile:hover img { transform: scale(1.07); }
.tile--b::before { background: linear-gradient(180deg, rgba(13,13,14,.15) 0%, rgba(13,13,14,.8) 45%, rgba(13,13,14,.97) 100%); }
.tile--b img { object-position: 70% 20%; }
.tile__body { padding: 26px; max-width: 560px; }
.tile h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 2.3vw, 2.1rem); line-height: 1; margin: 0 0 10px; }
.tile p { margin: 0; color: #dcdce0; font-size: 1rem; }
.tile__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; color: var(--amber); text-decoration: none; }
.tile__link:hover { text-decoration: underline; text-underline-offset: 4px; }
.tile--a { grid-column: 1 / 3; grid-row: 1 / 3; min-height: 616px; }
.tile--a img { object-position: 50% 40%; }
.tile--b { grid-column: 3; grid-row: 1; }
.tile--c { grid-column: 3; grid-row: 2; }
.tile--d { grid-column: 1 / 3; grid-row: 3; min-height: 360px; }
.tile--e { grid-column: 3; grid-row: 3; }

/* ---------- how (pinned) ---------- */
.how { position: relative; height: 270vh; background: linear-gradient(180deg, var(--char-900), var(--char-950) 30%, var(--char-950) 70%, var(--char-900)); }
.how__sticky { position: sticky; top: 0; height: 100dvh; display: flex; align-items: center; overflow: hidden; }
.how__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.how__steps { list-style: none; counter-reset: s; margin: 10px 0 0; padding: 0; display: grid; gap: 6px; }
.how__steps li { counter-increment: s; position: relative; padding: 14px 0 14px 54px; opacity: .5; transition: opacity .5s var(--ease-out); }
.how__steps li::before { content: attr(data-n); position: absolute; left: 0; top: 14px; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid currentColor; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.1rem; transition: background-color .4s, color .4s, border-color .4s; }
.how__steps li.is-on { opacity: 1; }
.how__steps li.is-on::before { background: var(--amber); border-color: var(--amber); color: var(--amber-ink); }
.how__steps h3 { font-family: var(--display); font-weight: 800; font-size: 1.7rem; line-height: 1.05; margin: 0 0 4px; }
.how__steps p { margin: 0; color: var(--muted); max-width: 42ch; }
.how__fig { margin: 0; }
.lock { width: 100%; height: auto; overflow: hidden; }
.shear { stroke: var(--amber); stroke-width: 2; stroke-dasharray: 6 6; opacity: .35; transition: opacity .4s, filter .4s; }
.lock.is-open .shear { opacity: 1; filter: drop-shadow(0 0 5px rgba(225,29,56,.9)); }
.lock__label { fill: var(--muted); font-family: var(--body); font-size: 14px; }
.wrench { fill: #7d8783; }
.pick { fill: none; stroke: #c9d0cc; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.spring { fill: none; stroke: #9aa39f; stroke-width: 2.4; }
.how__cap { margin-top: 6px; font-family: var(--display); font-weight: 700; font-size: 1.2rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.how__cap span { color: var(--amber); }

/* ---------- areas ---------- */
.areas { position: relative; padding-block: clamp(90px, 12vw, 160px); isolation: isolate; overflow: hidden; }
.areas__bg { position: absolute; inset: 0; z-index: -1; }
.areas__bg img { width: 100%; height: 115%; object-fit: cover; opacity: .5; }
.areas__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,21,.97) 0%, rgba(20,20,21,.86) 45%, rgba(20,20,21,.55) 100%), linear-gradient(180deg, var(--char-900) 0%, transparent 18%, transparent 82%, var(--char-900) 100%); }
.areas__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.finder { padding: 30px 26px 24px; max-width: 460px; }
.finder__label { display: block; font-size: 1.05rem; margin-bottom: 10px; }
.finder input {
  width: 100%; min-height: 54px; padding: 10px 16px; border-radius: 6px;
  border: 1px solid #7e8884; background: #f7f9f8; color: var(--ink); font-size: 1.1rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.12);
}
.finder input::placeholder { color: #5e5e64; }
.finder input:focus-visible { outline: 3px solid #8f0c20; outline-offset: 2px; }
.finder__out { margin: 14px 0 12px; font-weight: 600; color: var(--ink); min-height: 3.2em; }
.finder__out b { font-family: var(--display); font-size: 1.35rem; letter-spacing: .02em; }
.finder__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { border: 1px solid #8a948f; background: linear-gradient(180deg, #f4f6f5, #d7ddda); color: var(--ink); border-radius: 999px; min-height: 34px; padding: 4px 12px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: background-color .2s, transform .2s var(--ease-out); }
.chip:hover { transform: translateY(-1px); }
.chip[aria-pressed="true"] { background: var(--amber); border-color: #8f0c20; }
.radar { margin: 0; }
.radar svg { width: 100%; height: auto; max-height: 76vh; overflow: visible; }
.rings circle { fill: none; stroke: rgba(243,243,243,.2); stroke-width: .08; stroke-dasharray: .35 .35; }
.ring-labels text { fill: rgba(243,243,243,.72); font-size: .95px; font-family: var(--body); }
.sea { fill: rgba(180,180,186,.55); font-size: 1.2px; font-style: italic; font-family: var(--body); letter-spacing: .08px; }
.north { fill: var(--muted); font-family: var(--display); font-weight: 800; font-size: 1.6px; }
.north-arrow { fill: var(--muted); }
/* radar light-up (JS adds .will-light) */
.will-light .rings circle { opacity: 0; transform: scale(.6); transform-box: fill-box; transform-origin: center; transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out); }
.will-light .town { opacity: 0; transition: opacity .6s var(--ease-out); }
.will-light.is-lit .rings circle { opacity: 1; transform: none; }
.will-light.is-lit .town { opacity: 1; }
.town circle { fill: var(--paper); transition: fill .3s, r .3s; }
.town text { fill: #e2e2e5; font-size: 1.15px; font-family: var(--body); font-weight: 500; transition: fill .3s; }
.town.quiet text { opacity: 0; }
.town.quiet circle { r: .32; }
.has-hit .town:not(.is-hit):not(.quiet) text { opacity: .22; }
.town.is-hit text { opacity: 1; }
.town.is-hit circle { fill: var(--amber); r: .75; }
.town.is-hit text { fill: var(--amber-hi); font-weight: 700; }
.town line { stroke: var(--amber); stroke-width: .1; opacity: 0; }
.town.is-hit line { opacity: .8; }
.home circle { fill: var(--amber); }
.home__pulse { fill: none !important; stroke: var(--amber); stroke-width: .15; transform-origin: 0 0; animation: pulse 2.6s var(--ease-out) infinite; }
@keyframes pulse { from { transform: scale(1); opacity: .9; } to { transform: scale(5); opacity: 0; } }
.home text { fill: var(--amber-hi); font-family: var(--display); font-weight: 800; font-size: 1.6px; letter-spacing: .05px; }
.radar figcaption { color: var(--muted); font-size: .95rem; margin-top: 8px; max-width: 60ch; }

/* ---------- break-in ---------- */
.breakin { position: relative; min-height: 100dvh; display: flex; align-items: center; padding-block: 100px; isolation: isolate; overflow: hidden; }
.breakin__photo { position: absolute; inset: -8% 0; z-index: -1; }
.breakin__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; }
.breakin__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,13,14,.1) 20%, rgba(13,13,14,.75) 70%), linear-gradient(180deg, var(--char-900), transparent 20%, transparent 80%, var(--char-900)); }
.breakin__inner { display: flex; justify-content: flex-end; }
.reno { padding-block: clamp(60px, 8vw, 110px) 0; }
.reno__plate { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px 40px; padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 52px); color: var(--ink); }
.reno__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1; margin: 0 0 10px; }
.reno__copy p { margin: 0; color: var(--ink-soft); font-size: 1.08rem; max-width: 56ch; }
.reno__btn { flex-shrink: 0; }
@media (max-width: 760px) { .reno__plate { flex-direction: column; align-items: stretch; } }
.checklist { width: min(560px, 100%); padding: 40px 36px 34px; }
.checklist__intro { color: var(--ink-soft); margin: -4px 0 20px; }
.ticks { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.ticks label { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; cursor: pointer; padding: 12px 14px; border-radius: 6px; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(255,255,255,.2)); box-shadow: inset 0 1px 2px rgba(0,0,0,.14), 0 1px 0 rgba(255,255,255,.7); transition: background-color .3s; }
.ticks input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.tick { width: 30px; height: 30px; border-radius: 6px; border: 1.5px solid #6f7974; background: #f6f8f7; position: relative; box-shadow: inset 0 1px 2px rgba(0,0,0,.15); transition: background-color .25s, border-color .25s; }
.tick::after { content: ""; position: absolute; left: 9px; top: 4px; width: 8px; height: 15px; border: solid var(--amber-ink); border-width: 0 3px 3px 0; transform: rotate(45deg) scale(0); transition: transform .35s var(--ease-out); }
.ticks input:checked + .tick { background: var(--amber); border-color: #8f0c20; }
.ticks input:checked + .tick::after { transform: rotate(45deg) scale(1); }
.ticks input:focus-visible + .tick { outline: 3px solid #8f0c20; outline-offset: 2px; }
.ticks input:checked ~ span:last-child { color: var(--ink-soft); }
.ticks span:last-child { color: var(--ink); line-height: 1.45; }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 80px); padding-block: clamp(90px, 12vw, 160px) clamp(60px, 8vw, 110px); }
.faq__side { position: sticky; top: 110px; align-self: start; }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; font-family: var(--display); font-weight: 700; font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.15; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary svg { width: 26px; height: 26px; color: var(--amber); transition: transform .45s var(--ease-out); }
.qa[open] summary svg { transform: rotate(45deg); }
.qa summary:hover span { color: var(--amber-hi); }
.qa__a { overflow: hidden; }
.qa__a p { margin: 0 0 26px; color: #d4d4d8; max-width: 62ch; }

/* ---------- callback ---------- */
.callback { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 80px); align-items: center; padding-block: clamp(60px, 8vw, 110px) clamp(90px, 12vw, 150px); }
.bignum { display: inline-block; white-space: nowrap; font-family: var(--display); font-weight: 900; font-size: clamp(2.8rem, 13vw, 6.4rem); line-height: .9; letter-spacing: -.01em; color: var(--amber); text-decoration: none; margin: 6px 0 32px; transition: color .25s; }
.bignum:hover { color: var(--amber-hi); }
.facts { display: grid; gap: 14px; margin: 0; }
.facts div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; }
.facts dt { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.facts dd { margin: 0; }
.form { padding: 34px 30px 28px; display: grid; gap: 16px; }
.form__title { font-size: 1.5rem; margin-bottom: 4px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: .95rem; color: var(--ink); }
.field input, .field select {
  width: 100%; min-height: 50px; padding: 10px 14px; border-radius: 6px;
  border: 1px solid #7e8884; background: #f7f9f8; color: var(--ink); font-size: 1.02rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.1);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 52%, calc(100% - 14px) 52%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field input::placeholder { color: #5e5e64; }
.field input:focus-visible, .field select:focus-visible { outline: 3px solid #8f0c20; outline-offset: 2px; }
.field.is-bad input { border-color: #a3321c; box-shadow: 0 0 0 1px #a3321c; }
.field__err { margin: 0; color: #8f2511; font-weight: 600; font-size: .92rem; }
.form__note { margin: 0; min-height: 1.4em; color: var(--ink); font-weight: 600; }
.form__note a { color: #6a0816; }
.form button[aria-busy="true"] .btn__label::after { content: ""; display: inline-block; width: 1em; height: 1em; margin-left: 10px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; vertical-align: -2px; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(1turn); } }

/* ---------- footer ---------- */
.foot { padding-bottom: 40px; }
.foot__plate { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 10px 30px; padding: 34px clamp(24px, 4vw, 48px); max-width: calc(var(--max) - 2 * var(--gutter)); width: calc(100% - 2 * var(--gutter)); }
.foot__logo { display: block; width: clamp(220px, 34vw, 420px); height: auto; }
.foot__line { margin: 0; font-weight: 700; color: var(--ink-soft); }
.foot__cols { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: 28px; padding-top: 34px; color: var(--muted); }
.foot__cols p { margin: 0; }
.foot__cols a { color: var(--paper); font-weight: 700; text-decoration: none; }
.foot__legal { margin-top: 30px; font-size: .88rem; color: rgba(180,180,186,.85); }

/* ---------- mobile call bar ---------- */
.callbar { display: none; }

/* ---------- motion prep (JS adds .js) ---------- */
.pre:not(.ready) .hero__copy, .pre:not(.ready) .panel, .pre:not(.ready) .hero__photo { opacity: 0; }
.how--static { height: auto; padding-block: 100px; }
.how--static .how__sticky { position: static; height: auto; }
.how--static .how__steps li { display: block; opacity: 1; }
.js [data-reveal] { opacity: 0; transform: translateY(40px); }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .nav__links { gap: 18px; }
  .nav__links a { font-size: .92rem; }
}
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__menu { display: inline-block; }
  .hero { grid-template-columns: 1fr; padding-top: 96px; align-items: start; gap: 8px; min-height: auto; }
  .hero__photo { width: 100%; height: 78vh; bottom: auto; -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 100%); mask-image: linear-gradient(180deg, #000 30%, transparent 100%); }
  .hero__photo img { object-position: 60% 40%; opacity: .55; }
  .hero__copy { padding: 16vh 0 0; }
  .panel-wrap { justify-content: flex-start; padding-top: 36px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .tile--a { grid-column: 1 / 3; grid-row: auto; min-height: 480px; }
  .tile--b, .tile--c { grid-column: auto; grid-row: auto; }
  .tile--d { grid-column: 1 / 3; grid-row: auto; }
  .tile--e { grid-column: 1 / 3; grid-row: auto; }
  .how { height: 230vh; }
  .how__grid { grid-template-columns: 1fr; gap: 10px; }
  .how__text .h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .how__steps { gap: 0; }
  .how__steps li { display: none; padding-top: 6px; }
  .how__steps li.is-on { display: block; }
  .how__steps li::before { top: 6px; }
  .how__fig { order: -1; }
  .how__cap { margin-top: 4px; font-size: 1rem; }
  .areas__grid { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .faq__side { position: static; }
  .callback { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr; }
  .nav__call span { display: none; }
  .nav__call { padding: 0; width: 44px; }
  .callbar {
    display: grid; grid-template-columns: 1fr auto; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-callbar);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(13,13,14,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -1px 0 var(--line);
    transform: translateY(110%); transition: transform .5s var(--ease-out);
  }
  .callbar.is-on { transform: none; }
  .foot { padding-bottom: 100px; }
}
@media (max-width: 600px) {
  .town text { font-size: 1.9px; }
  .town.minor text { opacity: 0; }
  .town.minor.is-hit text { opacity: 1; }
  .ring-labels text { font-size: 1.5px; }
  .home text { font-size: 2.4px; }
  .sea { font-size: 1.8px; }
  body { font-size: 1rem; }
  .hero__title { font-size: clamp(2.7rem, 12.5vw, 3.6rem); }
  .hero__ctas .btn { width: 100%; }
  .panel { width: 100%; }
  .bento { grid-template-columns: 1fr; }
  .tile, .tile--a, .tile--b, .tile--c, .tile--d, .tile--e { grid-column: 1; min-height: 380px; }
  .tile--a { min-height: 460px; }
  .checklist { padding: 34px 22px 26px; }
  .breakin__photo::after { background: linear-gradient(180deg, var(--char-900), rgba(13,13,14,.5) 30%, rgba(13,13,14,.7) 100%); }
  .facts div { grid-template-columns: 1fr; gap: 0; }
  .brand__word { font-size: 1.3rem; }
  .nav__inner { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .strip__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; padding-inline: 16px; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .home__pulse { display: none; }
}
