/* styles.css: the design system. Structure and appearance only; no copy.
   SOP: /architecture/SOP-build.md. Transcribed from the owner-approved
   redesign (D-065): iron-black body, steel-plate cards, chrome display type,
   brand green reserved for action and proof. The reveal system pairs with
   the inline script (D-066); html.js gates every hidden-until-revealed state
   so a no-JS visitor sees the whole page. Bundled Anton (D-063). */
/* Iron Disciples redesign · dark forged-steel system.
   Tokens: iron black bg, steel-plate cards, chrome display type,
   brand green reserved for action + proof, jet blue as a trace accent. */

@font-face {
  font-family: "Anton";
  src: url("assets/fonts/anton-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0d09;
  --bg-deep: #080a07;
  --raise: #12150f;
  --card: #171b13;
  --line: #2a2f26;
  --line-lit: #3a4234;
  --fg: #f1f4ea;
  --muted: #b9c0ad;
  --faint: #8b9282;
  --green: #77e13f;
  --green-hot: #8bef55;
  --green-deep: #3f7a2b;
  --green-shadow: #26541a;
  --green-ink: #12240b;
  --jet: #6bd3ff;
  --focus: #79c4ff;

  --t0: clamp(1rem, 0.96rem + 0.3vw, 1.125rem);
  --t1: clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --t2: clamp(1.55rem, 1.4rem + 0.7vw, 1.9rem);
  --t3: clamp(2rem, 1.7rem + 1.5vw, 2.7rem);
  --t4: clamp(2.5rem, 2rem + 2.4vw, 3.6rem);
  --t-hero: clamp(2.9rem, 1.7rem + 6.2vw, 6rem);

  --sec: clamp(64px, 9vw, 128px);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --display: "Anton", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--t0);
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
}
.grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 0.06'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.55;
}
::selection { background: var(--green-deep); color: var(--fg); }
img { max-width: 100%; height: auto; }
p { margin: 0 0 16px; }
a { color: var(--green); }
a:focus-visible, .btn:focus-visible, button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(18px, 5vw, 56px); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green); color: var(--green-ink);
  padding: 12px 18px; border-radius: var(--r-sm); font-weight: 700;
}
.skip:focus-visible { left: 16px; top: 16px; }

/* ---------- display type ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
h3 { font-size: var(--t1); letter-spacing: 0.03em; }

.chrome {
  color: #dfe3d7;
  background: linear-gradient(103deg,
    #99a18e 0%, #f6f8f1 16%, #c0c7b3 30%, #eef1e6 45%,
    #939b88 58%, #f1f4ea 74%, #aeb5a2 88%, #e6e9de 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chrome-sweep 9s var(--ease) infinite;
}
@keyframes chrome-sweep {
  0% { background-position: 130% 0; }
  32% { background-position: 0% 0; }
  100% { background-position: 0% 0; }
}
.amp { -webkit-text-fill-color: var(--green); color: var(--green); background: none; }

/* section heading kit */
.eyebrow {
  display: block;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
h2 { font-size: var(--t3); margin-bottom: 20px; }
.bar {
  display: block;
  width: 72px; height: 5px;
  margin: 18px 0 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease) 0.25s;
}
h2.in .bar, .in .bar { transform: scaleX(1); }
.lede { color: var(--muted); max-width: 62ch; font-size: var(--t1); line-height: 1.55; }

/* ---------- reveal system ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease) var(--d, 0ms),
    transform 0.7s var(--ease) var(--d, 0ms);
}
.js [data-reveal="left"]  { transform: translateX(-34px); }
.js [data-reveal="right"] { transform: translateX(34px); }
.js [data-reveal="zoom"]  { transform: scale(0.94); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(11, 13, 9, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 244, 234, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-head.stuck { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5); }
.head-row { display: flex; align-items: center; gap: 22px; padding-block: 13px; }
.brand { display: flex; align-items: center; gap: 12px; margin: 0; text-decoration: none; }
.brand-shield { flex: none; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.brand-tag {
  color: var(--faint);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 5px;
}
.site-nav { display: flex; gap: clamp(14px, 2.5vw, 30px); margin-left: auto; }
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--fg); }
.site-nav a[aria-current="page"] { color: var(--fg); border-bottom-color: var(--green); }
.head-phone {
  color: var(--fg);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.head-phone:hover { color: var(--green); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  isolation: isolate; /* keep the badge's lighten blend inside the hero, over its gradient */
  overflow: hidden;
  padding-block: clamp(72px, 10vw, 140px) clamp(64px, 8vw, 110px);
  background:
    radial-gradient(1000px 560px at 78% 30%, rgba(119, 225, 63, 0.09), transparent 62%),
    radial-gradient(760px 480px at 8% 90%, rgba(107, 211, 255, 0.05), transparent 60%),
    linear-gradient(180deg, #0d100b 0%, var(--bg) 70%);
}
.hero-grid { display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (min-width: 920px) { .hero-grid { grid-template-columns: 1.12fr 0.88fr; } }
.hero h1 { font-size: var(--t-hero); margin-bottom: 26px; }
.hero-sub {
  font-size: var(--t1);
  line-height: 1.55;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 34px;
}
.cta-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-phone {
  color: var(--fg);
  font-size: var(--t1);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero-phone:hover { color: var(--green); }
.sms-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px;
  color: var(--faint);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.sms-link:hover { color: var(--jet); }

/* hero art: badge floats over a breathing green glow */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(119, 225, 63, 0.22), transparent 72%);
  filter: blur(14px);
  animation: glow-breathe 5.5s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}
.hero-badge {
  position: relative;
  width: min(100%, 440px);
  mix-blend-mode: lighten;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.65));
  animation: badge-float 6s ease-in-out infinite;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* hero load sequence */
.js .hero-copy > * { animation: rise-in 0.7s var(--ease) backwards; }
.js .hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.js .hero-copy > *:nth-child(2) { animation-delay: 0.16s; }
.js .hero-copy > *:nth-child(3) { animation-delay: 0.3s; }
.js .hero-copy > *:nth-child(4) { animation-delay: 0.44s; }
.js .hero-copy > *:nth-child(5) { animation-delay: 0.56s; }
.js .hero-art { animation: badge-in 1.1s ease-out 0.2s backwards; }
@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
/* opacity only: a transform here would isolate the badge's blend mode
   and expose the square edge of the jpeg */
@keyframes badge-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(180deg, var(--green-hot), #5fcb31);
  color: var(--green-ink);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 12px;
  box-shadow:
    0 5px 0 var(--green-shadow),
    0 16px 34px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.55) 50%, transparent 64%);
  transform: translateX(-140%);
  animation: btn-sheen 5s ease-in-out infinite 1.5s;
}
@keyframes btn-sheen {
  0%, 60% { transform: translateX(-140%); }
  80%, 100% { transform: translateX(140%); }
}
.btn:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow:
    0 7px 0 var(--green-shadow),
    0 20px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn:active {
  transform: translateY(3px);
  box-shadow:
    0 1px 0 var(--green-shadow),
    0 6px 14px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ---------- ticker: brushed-steel band, iron ink ---------- */
.ticker {
  overflow: hidden;
  background: linear-gradient(180deg, #eef0e7 0%, #d3d8c9 38%, #b3baa7 58%, #cdd2c3 82%, #dfe3d6 100%);
  border-top: 1px solid #f6f8f1;
  border-bottom: 2px solid #070806;
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.75),
    inset 0 -4px 10px rgba(20, 24, 16, 0.28),
    0 10px 26px rgba(0, 0, 0, 0.45);
  padding-block: 13px;
}
.ticker-track { display: flex; width: max-content; animation: ticker-roll 55s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--display);
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #161a11;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  padding-right: 0.8em;
}
.ticker-track i { font-style: normal; color: var(--green-deep); text-shadow: none; }
@keyframes ticker-roll { to { transform: translateX(-50%); } }

/* ---------- section rhythm ---------- */
.sec { padding-block: var(--sec); }
.sec-raise { background: var(--raise); border-block: 1px solid var(--line); }

/* ---------- path cards (home) ---------- */
.paths-grid { display: grid; gap: 22px; margin-top: 44px; }
@media (min-width: 860px) { .paths-grid { grid-template-columns: 1fr 1fr; } }
.path {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(340px, 42vw, 440px);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.path:hover {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 1px var(--green-deep), 0 24px 48px rgba(0, 0, 0, 0.55);
  transform: translateY(-4px);
}
.path-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
  transition: transform 1s var(--ease);
}
.path:hover .path-img { transform: scale(1.06); }
.path::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 9, 0.2) 0%, rgba(11, 13, 9, 0.55) 45%, rgba(8, 10, 7, 0.95) 100%);
}
.path-body { position: relative; z-index: 1; padding: clamp(24px, 4vw, 40px); }
.path-kicker {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.path-title { display: block; font-size: var(--t4); color: var(--fg); }
.path-copy { display: block; color: var(--muted); margin: 12px 0 18px; max-width: 44ch; }
.path-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}
.path-link svg { transition: transform 0.25s var(--ease); }
.path:hover .path-link svg { transform: translateX(6px); }

/* ---------- trust chips ---------- */
.chips {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.chips li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px 10px 14px;
  font-size: 0.95rem;
  color: var(--muted);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.chips li:hover { border-color: var(--green-deep); color: var(--fg); }
.chips .tick { flex: none; }

/* animated check strokes */
.tick path {
  stroke: var(--green);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  transition: stroke-dashoffset 0.6s var(--ease) calc(var(--d, 0ms) + 0.25s);
}
.in .tick path, .in.tick path { stroke-dashoffset: 0; }
.no-js .tick path, html:not(.js) .tick path { stroke-dashoffset: 0; }

/* ---------- service cards ---------- */
.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 44px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 26px 24px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-deep) 60%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-lit);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.card:hover::before { transform: scaleX(1); }
.card .spray { margin-bottom: 14px; display: block; }
.card h3 {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
  color: var(--fg);
}
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.services-closing { margin: 38px 0 0; font-weight: 700; max-width: 62ch; color: var(--fg); }

/* ---------- steps ---------- */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 48px 0 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.steps::before {
  content: "";
  position: absolute;
  top: 34px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--green-deep), var(--line) 80%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease) 0.3s;
}
.steps.in::before { transform: scaleX(1); }

/* a bead of water runs the line once it has drawn */
.steps::after {
  content: "";
  position: absolute;
  top: 31px; left: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px 3px rgba(119, 225, 63, 0.5);
  opacity: 0;
  pointer-events: none;
}
.steps.in::after { animation: line-pulse 5s linear 1.8s infinite; }
@keyframes line-pulse {
  0% { left: 0; opacity: 0; }
  6% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: calc(100% - 7px); opacity: 0; }
}
@media (max-width: 859px) { .steps::before, .steps::after { display: none; } }

/* numbers stamp in like a press, staggered per step */
.js .steps li::before {
  opacity: 0;
  transform: scale(1.7);
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--d, 0ms) + 0.25s),
    opacity 0.3s ease calc(var(--d, 0ms) + 0.25s);
}
.js .steps li.in::before { opacity: 1; transform: scale(1); }
.steps li { counter-increment: step; position: relative; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: inline-block;
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: var(--t4);
  line-height: 1;
  padding-right: 12px;
  background:
    linear-gradient(103deg, #9aa28f, #f4f6ef 40%, #a9b19e 70%, #e9ece1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #cfd4c5;
  margin-bottom: 14px;
  text-shadow: none;
}
.steps li { padding-top: 0; }
.steps h3 {
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- promise checklist ---------- */
.promise-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 68ch;
}
.promise-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
}
.promise-list .tick { flex: none; margin-top: 3px; }
.promise-list strong { color: var(--fg); }

/* ---------- proof ---------- */
.ba-pair {
  margin: 44px 0 0;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.ba-frame {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.ba-frame img { display: block; width: 100%; height: auto; }
.ba-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 7px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.ba-tag-before { background: rgba(8, 10, 7, 0.78); color: var(--muted); border: 1px solid var(--line-lit); }
.ba-tag-after { background: var(--green); color: var(--green-ink); box-shadow: 0 4px 16px rgba(119, 225, 63, 0.4); }
.ba-caption { margin: 18px 0 0; color: var(--faint); font-size: 0.9rem; }

/* ---------- stakes (hazard band) ---------- */
.stakes { background: var(--bg-deep); }
.hazard {
  height: 10px;
  background: repeating-linear-gradient(135deg, var(--green-deep) 0 16px, transparent 16px 32px);
  opacity: 0.55;
}
.stakes-list {
  margin: 36px 0 0;
  padding-left: 1.3em;
  max-width: 62ch;
  display: grid;
  gap: 16px;
  color: var(--muted);
}
.stakes-list li::marker { color: var(--green); }

/* ---------- success ---------- */
.success-copy { max-width: 58ch; font-size: var(--t1); line-height: 1.55; color: var(--muted); }
.success-punch {
  font-size: var(--t3);
  max-width: 26ch;
  margin-top: 34px;
}

/* ---------- verse plaque ---------- */
.verse-plate {
  position: relative;
  max-width: 760px;
  margin: 40px 0 34px;
  padding: clamp(30px, 5vw, 52px);
  background: linear-gradient(180deg, #1b1f16, #12150f);
  border: 1px solid var(--line-lit);
  border-radius: var(--r-md);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 24px 56px rgba(0, 0, 0, 0.5);
}
.verse-plate::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  background:
    radial-gradient(4px 4px at 4px 4px, var(--line-lit) 40%, transparent 45%),
    radial-gradient(4px 4px at calc(100% - 4px) 4px, var(--line-lit) 40%, transparent 45%),
    radial-gradient(4px 4px at 4px calc(100% - 4px), var(--line-lit) 40%, transparent 45%),
    radial-gradient(4px 4px at calc(100% - 4px) calc(100% - 4px), var(--line-lit) 40%, transparent 45%);
  background-repeat: no-repeat;
}
.verse-plate p {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: var(--t2);
  line-height: 1.4;
  color: var(--fg);
  margin: 0 0 16px;
}
.verse-plate cite {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ethos-body { max-width: 62ch; margin: 0; color: var(--muted); }

/* ---------- discount / final call ---------- */
.callout {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(119, 225, 63, 0.12), transparent 65%),
    var(--raise);
  border-block: 1px solid var(--line);
}
.callout-label {
  font-size: var(--t3);
  max-width: 22ch;
  margin: 0 auto 16px;
}
.callout-sub { color: var(--muted); max-width: 52ch; margin: 0 auto 34px; }
.callout-phone {
  display: block;
  margin-top: 22px;
  color: var(--fg);
  font-weight: 800;
  font-size: var(--t1);
  text-decoration: none;
}
.callout-phone:hover { color: var(--green); }

/* ---------- area ---------- */
.towns {
  color: var(--muted);
  max-width: 66ch;
  font-size: var(--t1);
  line-height: 1.8;
}
.towns i { font-style: normal; color: var(--green-deep); padding-inline: 2px; }
.area-invite { font-weight: 700; margin: 26px 0 0; color: var(--fg); }

/* ---------- crosslink ---------- */
.crosslink { padding-block: 56px; border-top: 1px solid var(--line); }
.crosslink-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 30px;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.crosslink-card:hover {
  border-color: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
.crosslink-card strong { color: var(--fg); font-size: var(--t1); font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.03em; }
.crosslink-card span { color: var(--muted); }
.crosslink-card .path-link { margin-left: auto; }
@media (max-width: 700px) { .crosslink-card .path-link { margin-left: 0; } }

/* ---------- footer ---------- */
.site-foot {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding-block: 64px 46px;
  color: var(--faint);
  font-size: 0.92rem;
}
.foot-grid { display: grid; gap: 36px; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.foot-brand .brand-name { font-size: 1.35rem; }
.foot-verse { margin-top: 14px; color: var(--faint); font-style: italic; font-family: Georgia, serif; }
.foot-h {
  color: var(--fg);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 14px;
}
.foot-line { margin: 6px 0; }
.site-foot a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.site-foot a:hover { color: var(--green); }
.foot-legal { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--faint); }

/* ---------- sticky mobile call bar ---------- */
.sticky-call { display: none; }
@media (max-width: 47rem) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .head-phone { display: none; }
  .nav-home { display: none; }
  .brand-tag { display: none; }
  .brand { gap: 9px; }
  .brand-name { white-space: nowrap; font-size: 1rem; }
  .head-row { gap: 10px; flex-wrap: wrap; }
  .site-nav { gap: 12px; }
  .site-nav a { font-size: 0.72rem; letter-spacing: 0.04em; }
  .sticky-call {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 100;
    display: flex;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(8, 10, 7, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line-lit);
  }
  .sticky-tel, .sticky-sms {
    text-align: center;
    text-decoration: none;
    font-family: var(--display);
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    padding: 15px 10px;
    border-radius: 12px;
  }
  .sticky-tel {
    flex: 1.4;
    background: linear-gradient(180deg, var(--green-hot), #5fcb31);
    color: var(--green-ink);
    box-shadow: 0 3px 0 var(--green-shadow);
  }
  .sticky-tel:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--green-shadow); }
  .sticky-sms { flex: 1; color: var(--fg); border: 1px solid var(--line-lit); }
  .sticky-sms:active { background: var(--card); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .bar { transform: scaleX(1); }
  .steps::before { transform: scaleX(1); }
  .steps.in::after { animation: none; }
  .js .steps li::before { opacity: 1; transform: none; }
  .tick path { stroke-dashoffset: 0; }
}
