/* — css/style.css — */
/* Detector Inspectors LLC — "the 2AM chirp", awwwards register.
   Neutral monochrome + ONE scarlet. Mobile-first: base styles ARE the
   phone; every @media is min-width. Zero external requests at load.
   Geist + Geist Mono vendored (SIL OFL 1.1); display face Georgia. */

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geist-latin.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: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geist-latin-ext.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: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geist-mono-latin.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: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geist-mono-latin-ext.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;
}

/* ═══ the entire palette lives in this block ═══ */
:root {
  --ink: #0D0D0B;
  --ink-2: #161614;
  --paper: #FAFAF8;
  --gray-bg: #F1F1EE;
  --white: #FFFFFF;
  --red: #D92A0F;
  --red-deep: #A81F09;
  --muted: #5F5F5A;
  --on-dark: #F5F5F2;
  --on-dark-70: rgba(245, 245, 242, 0.72);
  --on-dark-55: rgba(245, 245, 242, 0.55);
  --hair: rgba(13, 13, 11, 0.10);
  --hair-2: rgba(13, 13, 11, 0.24);
  --hair-light: rgba(250, 250, 248, 0.12);
  --hair-light-2: rgba(250, 250, 248, 0.32);
  --stroke-dark: rgba(250, 250, 248, 0.14);
  --focus: #1a56db;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
  --pad: 1.25rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(13, 13, 11, 0.010) 2px 4px),
    repeating-linear-gradient(90deg, transparent 0 2px, rgba(13, 13, 11, 0.010) 2px 4px),
    var(--paper);
}

::selection { background: var(--red); color: var(--white); }

.wrap { width: 100%; max-width: 74rem; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.025em; line-height: 0.98; }
h1 em, h2 em { font-style: italic; color: var(--red); }
h2 { font-size: clamp(2.3rem, 7vw, 4.2rem); margin-bottom: 1.5rem; }

a { color: var(--red-deep); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.sec-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.sec-tag span {
  color: var(--red);
  border: 1px solid currentColor;
  padding: 0.2rem 0.45rem;
  font-size: 0.65rem;
}
.sec-tag::after { content: ""; flex: 1; height: 1px; background: var(--hair); }
.sec-tag-light::after { background: var(--hair-light-2); }
.sec-tag-dark::after { background: var(--hair-2); }

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3.75rem;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--mono);
  font-size: 0.85rem;
  padding: 0.75rem 1.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  z-index: 40;
  text-decoration: none;
  transition: top 120ms ease;
}
.skip-link:focus { top: 0; }

.ticker {
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  border-bottom: 1px solid var(--hair-light);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker-track span {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.55rem 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

header {
  background: var(--paper);
  border-bottom: 1px solid var(--hair-2);
  position: sticky;
  top: 0;
  z-index: 30;
}
.bar {
  max-width: 74rem;
  margin: 0 auto;
  padding: 0.55rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1rem;
}
.brand { font-family: var(--serif); font-size: 1.25rem; letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 0.5rem; }
.b-cross { color: var(--red); font-size: 0.95rem; }
.b-llc {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  border: 1px solid var(--hair-2);
  padding: 0.14rem 0.4rem;
  margin-left: 0.3rem;
  align-self: center;
}
nav ul { list-style: none; display: flex; flex-wrap: wrap; }
nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.65rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
nav a:hover { color: var(--red); }

.hero {
  position: relative;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(250, 250, 248, 0.012) 3px 6px),
    var(--ink);
  color: var(--on-dark);
  overflow: hidden;
}
.ghost-type {
  position: absolute;
  top: -0.12em;
  right: -0.06em;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(9rem, 34vw, 24rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--stroke-dark);
  pointer-events: none;
  user-select: none;
}
.hero-grid {
  position: relative;
  max-width: 74rem;
  margin: 0 auto;
  padding: 3.25rem var(--pad) 3rem;
  display: grid;
  gap: 3rem;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.kicker .tick { margin-right: 0.4rem; }
.hero h1 { font-size: clamp(3.2rem, 12.5vw, 7.5rem); margin-bottom: 1.75rem; }
.h-line { display: block; }
.h-flame { color: var(--red); font-style: italic; }
.h-am { font-size: 0.62em; letter-spacing: 0.02em; vertical-align: 0.16em; }
.lede { font-size: 1.16rem; line-height: 1.55; color: var(--on-dark-70); max-width: 30rem; margin-bottom: 2.25rem; }
.hero-cta { display: grid; gap: 0.9rem; justify-items: start; margin-bottom: 2.5rem; }
.cta-note { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--on-dark-55); }

.checklist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  border-top: 1px solid var(--hair-light);
  padding-top: 1.25rem;
  max-width: 30rem;
}
.checklist li {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-70);
}
.checklist li::before { content: "☑ "; color: var(--red); font-size: 0.9rem; }

.crest { justify-self: center; text-align: center; max-width: 21rem; }
.crest-frame {
  background: var(--white);
  border: 1px solid var(--hair-2);
  outline: 1px solid var(--hair-light-2);
  outline-offset: 6px;
  padding: 1.4rem 1.4rem 1rem;
  transform: rotate(-2.5deg);
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.55);
}
.crest img { display: block; width: 100%; height: auto; }
.crest figcaption {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-55);
  margin-top: 1.4rem;
}

.cta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
  max-width: 100%;
  text-align: center;
  min-height: 58px;
  padding: 0.6rem 1.4rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--mono);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid var(--red-deep);
  box-shadow: 5px 5px 0 0 var(--ink);
  transition: transform 130ms ease, box-shadow 130ms ease;
}
.cta:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--ink); background: var(--red-deep); }
.cta-ring { font-size: 0.6rem; color: var(--white); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.cta.ghost {
  display: flex;
  width: 100%;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 0 var(--hair-2);
  margin-top: 2.25rem;
}
.cta.ghost:hover { background: var(--ink); color: var(--paper); box-shadow: 2px 2px 0 0 var(--hair-2); }

.stats { padding: 3.5rem 0 3rem; border-bottom: 1px solid var(--hair); }
.stat-row { display: grid; gap: 0; border: 1px solid var(--hair-2); background: var(--white); }
.stat { padding: 1.9rem 1.6rem; border-bottom: 1px solid var(--hair); position: relative; }
.stat:last-child { border-bottom: 0; }
.stat::before {
  content: "\25C6";
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 0.55rem;
  color: var(--red);
}
.stat-n {
  font-family: var(--serif);
  font-size: clamp(4rem, 13vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 0.75rem;
}
.stat-hollow { color: transparent; -webkit-text-stroke: 2px var(--red); }
.stat-frac { font-size: 0.42em; color: var(--red); letter-spacing: 0; }
.stat-unit { font-family: var(--mono); font-size: 0.26em; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-left: 0.4rem; }
.stat-t { color: var(--muted); font-size: 0.96rem; line-height: 1.5; max-width: 22rem; }
.src {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1rem;
  text-align: right;
}

.visit {
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(250, 250, 248, 0.012) 3px 6px),
    var(--ink-2);
  color: var(--on-dark);
  padding: 4rem 0 4.5rem;
}
.visit h2 { color: var(--on-dark); }
.visit .sec-tag { color: var(--on-dark-55); }
.steps { list-style: none; display: grid; gap: 1px; background: var(--hair-light); border: 1px solid var(--hair-light); margin-top: 2.25rem; }
.step { background: var(--ink-2); padding: 1.75rem 1.5rem 2rem; }
.step-n { font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: var(--red); margin-bottom: 0.9rem; }
.step h3 { font-family: var(--mono); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.65rem; color: var(--on-dark); }
.step p:last-child { color: var(--on-dark-70); font-size: 0.95rem; line-height: 1.55; }

.rates { padding: 4.25rem 0 4.5rem; }
.sheet {
  position: relative;
  background: var(--white);
  border: 1px solid var(--hair-2);
  outline: 1px dashed var(--hair-2);
  outline-offset: 7px;
  margin: 2.5rem 0.5rem 0;
}
.stamp {
  position: absolute;
  top: -1.4rem;
  right: 0.75rem;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  padding: 1.15rem 0.8rem;
  transform: rotate(8deg);
  background: rgba(255, 255, 255, 0.94);
}
.rate-list { list-style: none; }
.rate { padding: 1.9rem 1.5rem 2rem; border-bottom: 1px solid var(--hair); }
.rate:last-child { border-bottom: 0; }
.rate-no { font-family: var(--mono); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.rate-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem 2rem; margin-bottom: 0.8rem; }
.rate h3 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; letter-spacing: -0.015em; line-height: 1.1; max-width: 24rem; }
.rate-price { font-family: var(--mono); font-weight: 500; font-size: clamp(2.6rem, 8vw, 3.4rem); line-height: 1; letter-spacing: -0.05em; }
.rate-price sup { font-size: 0.45em; color: var(--red); vertical-align: 0.8em; }
.rate-per { font-size: 0.3em; letter-spacing: 0.04em; color: var(--muted); }
.rate-desc { color: var(--muted); font-size: 0.97rem; max-width: 36rem; }
.rate-desc em { font-style: italic; color: var(--ink); }

.fix { background: var(--red); color: var(--white); overflow: hidden; }
.fix-grid { display: grid; gap: 0; padding-top: 3.5rem; padding-bottom: 3.75rem; }
.fix-num { position: relative; line-height: 0.8; margin-bottom: 1rem; }
.fix-num span {
  font-family: var(--serif);
  font-size: clamp(8rem, 30vw, 17rem);
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
}
.fix-num em {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}
.fix .sec-tag { color: rgba(255, 255, 255, 0.8); }
.fix .sec-tag span { color: var(--white); }
.fix .sec-tag::after { background: rgba(255, 255, 255, 0.35); }
.fix h2 { color: var(--white); }
.fix h2 em { color: var(--ink); }
.fix p { max-width: 34rem; margin-bottom: 1rem; color: rgba(255, 255, 255, 0.9); }
.fix strong { color: var(--white); }

.law {
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(250, 250, 248, 0.012) 3px 6px),
    var(--ink);
  color: var(--on-dark);
  padding: 4rem 0 4.25rem;
}
.law-grid { display: grid; gap: 1.5rem; }
.law-mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 9rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(217, 42, 15, 0.8);
}
.law h2 { color: var(--on-dark); }
.law p { max-width: 38rem; margin-bottom: 1.1rem; color: var(--on-dark-70); }
.law strong { color: var(--on-dark); }
.law-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
}
.law-link:hover { color: var(--on-dark); border-color: var(--on-dark); }

/* ---- watch (click-to-load video facade) ---- */
.watch {
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(250, 250, 248, 0.012) 3px 6px),
    var(--ink-2);
  color: var(--on-dark);
  padding: 4rem 0 4.5rem;
}
.watch h2 { color: var(--on-dark); }
.watch .sec-tag { color: var(--on-dark-55); }
.watch-lede { color: var(--on-dark-70); max-width: 32rem; margin-bottom: 2rem; }
.player {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--hair-light-2);
  background: var(--ink);
}
.player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(250, 250, 248, 0.014) 3px 6px),
    var(--ink);
  color: var(--on-dark);
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 1rem;
}
.player button:hover .play-disc { background: var(--red-deep); transform: scale(1.06); }
.play-disc {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.5rem;
  padding-left: 0.35rem;
  transition: transform 130ms ease, background 130ms ease;
}
.play-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  letter-spacing: -0.02em;
}
.play-meta {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-55);
}

.about { padding: 4.25rem 0 4.5rem; }
.about-grid { display: grid; gap: 3rem; }
.about p { margin-bottom: 1.15rem; max-width: 38rem; }
.drop::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  float: left;
  line-height: 0.8;
  padding: 0.08em 0.12em 0 0;
  color: var(--red);
}
.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-left: 3px solid var(--red);
  padding: 0.4rem 0 0.4rem 1.4rem;
  margin: 1.9rem 0;
  max-width: 34rem;
}
.sig { font-family: var(--serif); font-style: italic; font-size: 1.3rem; margin-top: 1.5rem; }
.sig span { font-family: var(--mono); font-style: normal; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-left: 0.5rem; }
.badge-line {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px dashed var(--hair-2);
  padding: 0.85rem 1.15rem;
  margin-top: 1rem;
  color: var(--ink);
}
.about-crest { text-align: center; max-width: 17rem; justify-self: center; }
.about-crest img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
  border: 1px solid var(--hair-2);
  outline: 1px solid var(--hair);
  outline-offset: 5px;
  padding: 1rem;
  transform: rotate(2deg);
}
.about-crest figcaption {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.1rem;
}

.faq { background: var(--gray-bg); border-top: 1px solid var(--hair); padding: 4.25rem 0 4.5rem; }
.faq dl { margin-top: 2rem; }
.qa { border-top: 1px solid var(--hair-2); padding: 1.7rem 0; }
.qa:last-child { border-bottom: 1px solid var(--hair-2); }
.faq dt { font-family: var(--serif); font-size: clamp(1.25rem, 3.4vw, 1.6rem); letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 0.65rem; }
.q-no { font-family: var(--mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; color: var(--red); margin-right: 1rem; vertical-align: 0.35em; }
.faq dd { color: var(--muted); max-width: 44rem; }
.faq dd em { color: var(--ink); }

.clock {
  background: var(--white);
  color: var(--ink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 2.5rem 0;
}
.clock-row { display: grid; gap: 1rem; }
.clock-big {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 5.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.clock-big span { color: var(--red); }
.clock-sub { font-size: 0.98rem; max-width: 34rem; color: var(--muted); }
.clock-sub a { color: var(--ink); font-weight: 700; display: inline-flex; align-items: center; min-height: 44px; }

.contact {
  position: relative;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(250, 250, 248, 0.012) 3px 6px),
    var(--ink);
  color: var(--on-dark);
  padding: 4.25rem 0 5rem;
  overflow: hidden;
}
.ghost-low {
  top: auto;
  bottom: -0.18em;
  left: -0.05em;
  right: auto;
}
.contact .wrap { position: relative; }
.contact h2 { color: var(--on-dark); }
.contact-cols { display: grid; gap: 3rem; margin-top: 2rem; }
.bigphone {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(2.6rem, 11vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--on-dark);
  text-decoration: none;
  border-bottom: 4px solid var(--red);
  padding-bottom: 0.4rem;
}
.bigphone:hover { color: var(--red); }
.line-note { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-top: 1rem; }
.direct .line { display: block; color: var(--on-dark-70); margin-top: 1.35rem; font-size: 0.98rem; }
.direct a.line { display: inline-flex; align-items: center; min-height: 44px; color: var(--on-dark); text-decoration-color: var(--hair-light-2); }
.addr { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.9; }
.contact-crest {
  display: block;
  width: 100%;
  max-width: 11.5rem;
  height: auto;
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid var(--hair-light-2);
  padding: 0.8rem;
  transform: rotate(-2deg);
}

form { border: 1px solid var(--hair-light-2); background: rgba(250, 250, 248, 0.03); padding: 1.9rem 1.6rem 2.1rem; }
.form-head { font-family: var(--serif); font-size: 1.55rem; letter-spacing: -0.015em; margin-bottom: 1.4rem; }
form label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-55);
  margin: 1.3rem 0 0.45rem;
}
form input, form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--hair-light-2);
  border-radius: 0;
  background: rgba(13, 13, 11, 0.5);
  color: var(--on-dark);
  font: inherit;
}
form textarea { min-height: 6.5rem; }
form input::placeholder, form textarea::placeholder { color: rgba(245, 245, 242, 0.32); }
form button {
  margin-top: 1.6rem;
  min-height: 56px;
  width: 100%;
  padding: 0 1.9rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--red-deep);
  cursor: pointer;
  box-shadow: 5px 5px 0 0 rgba(250, 250, 248, 0.25);
  transition: transform 130ms ease, box-shadow 130ms ease;
}
form button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 rgba(250, 250, 248, 0.25); background: var(--red-deep); }

footer { background: var(--ink); color: var(--on-dark-55); border-top: 1px solid var(--hair-light); overflow: hidden; }
.foot-word {
  font-family: var(--serif);
  font-size: clamp(3rem, 12vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px var(--stroke-dark);
  transform: translateY(0.12em);
  user-select: none;
}
.foot {
  display: grid;
  gap: 0.15rem;
  justify-items: center;
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 2.25rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  border-top: 1px solid var(--hair-light);
}
.foot a { display: inline-flex; align-items: center; min-height: 44px; color: var(--on-dark); font-weight: 700; text-decoration-color: var(--red); }
.foot .fine { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.18em; }

@media (min-width: 721px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid var(--hair); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-cols { grid-template-columns: 1fr 1.1fr; align-items: start; }
  form button { width: auto; }
  .cta.ghost { display: inline-flex; width: auto; }
  .clock-row { grid-template-columns: 1.2fr 1fr; align-items: center; }
  .fix-grid { grid-template-columns: auto 1fr; gap: 3.5rem; align-items: center; }
  .law-grid { grid-template-columns: auto 1fr; gap: 3rem; align-items: start; }
}

@media (min-width: 961px) {
  .hero-grid { grid-template-columns: 1.5fr 1fr; align-items: center; gap: 4rem; padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .crest { justify-self: end; }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; border-right: 1px solid var(--hair); }
  .stat:nth-child(2n) { border-right: 1px solid var(--hair); }
  .stat:last-child { border-right: 0; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1.6fr 1fr; align-items: center; }
  .rates .wrap > h2, .faq .wrap > h2 { max-width: 50rem; }
  .sheet { margin-left: 0; margin-right: 0; }
  .rate { display: grid; grid-template-columns: 7rem 1fr; gap: 0 2rem; padding: 2.1rem 2.25rem; }
  .rate-no { padding-top: 0.5rem; }
  .rate-head, .rate-desc { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
