/* Iron & Earth Site Services — styles */

:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #161616;
  --panel:     #1a1a1a;
  --line:      #262626;
  --line-soft: #1e1e1e;
  --ink:       #f2efe9;
  --ink-2:     #b9b4aa;
  --ink-3:     #7a766e;
  --ink-4:     #4a4842;
  --red:       #c8102e;
  --red-hot:   #e11a37;
  --red-dark:  #8c0b20;
  --orange:    #ff6a00;
  --steel:     #3a3f44;

  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans:  "Inter", -apple-system, Segoe UI, Roboto, system-ui, sans-serif;

  --maxw: 1240px;
  --pad:  clamp(20px, 4vw, 56px);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

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

.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;
}

/* ---------- NAV ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark { display: inline-flex; color: var(--red); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__line1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.brand__line2 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  align-items: center;
}
.nav__links > a,
.nav__item > a {
  color: var(--ink-2);
  transition: color .2s;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
}
.nav__links > a:hover,
.nav__item > a:hover,
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active { color: var(--red-hot); }

.nav__item {
  position: relative;
}
.nav__item--has-menu > a::after {
  content: "";
}
.nav__menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 260px;
  background: rgba(10,10,10,0.98);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__menu a {
  display: block;
  padding: 10px 22px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  transition: background .15s, color .15s, padding .15s;
}
.nav__menu a:hover {
  color: var(--ink);
  background: var(--bg-2);
  padding-left: 28px;
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 8px;
}
.nav__phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav__phone:hover { color: var(--red-hot); }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-hot);
  border-color: var(--red-hot);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
}
.btn--block { width: 100%; padding: 18px; font-size: 13px; }
.btn--lg { padding: 16px 30px; font-size: 13px; }

/* ---------- HERO (homepage) ---------- */

.hero {
  position: relative;
  height: min(100vh, 56.25vw); /* never taller than 16:9 proportion */
  min-height: 400px;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 18%, rgba(10,10,10,0) 70%, rgba(10,10,10,0.9) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-2);
  animation: floaty 2.6s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--ink-2), transparent);
}
@keyframes floaty {
  0%, 100% { transform: translate(-50%, 0); opacity: .85; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* ---------- SUBPAGE HERO ---------- */

.subhero {
  position: relative;
  padding: 180px 0 90px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.92) 100%),
    url("../img/hero-poster.jpg") center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.services .service a[href],
.subhero { isolation: isolate; }
.subhero__crumbs {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.subhero__crumbs a { color: var(--ink-2); }
.subhero__crumbs a:hover { color: var(--red-hot); }
.subhero__crumbs span { color: var(--ink-4); }
.subhero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 18ch;
}
.subhero p {
  max-width: 58ch;
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-2);
  margin: 0;
}
/* For service detail subpages at ../../assets/img/ depth */
.subhero--deep {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.92) 100%),
    url("../../assets/img/hero-poster.jpg") center/cover no-repeat;
}

/* Video-backed subhero */
.subhero--video {
  background: #000;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.subhero__video {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}
.subhero__overlay {
  display: none;
}
.subhero--video .container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 60px max(var(--pad), calc((100% - var(--maxw)) / 2 + var(--pad))) 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

/* ---------- TRUST STRIP ---------- */

.trust {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.trust__item strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.trust__item span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.trust__sep { width: 1px; height: 36px; background: var(--line); }

/* ---------- SECTIONS ---------- */

.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}
.section--dark {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--cta {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
}
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--ink);
}
.section__lede {
  max-width: 58ch;
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-2);
  margin: 0 0 48px;
  line-height: 1.65;
}

/* ---------- SERVICES GRID ---------- */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  padding: 40px 36px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background .3s ease;
  position: relative;
  display: block;
  color: inherit;
}
.service:hover { background: var(--bg-2); }
.service::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .4s ease;
}
.service:hover::after { width: 100%; }
.service__num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.service__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
}
.service p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.service__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-hot);
}
.service__more::after {
  content: "→";
  transition: transform .25s;
}
.service:hover .service__more::after { transform: translateX(4px); }

.service--feature {
  grid-column: span 2;
  background: linear-gradient(135deg, #17080b 0%, #0c0c0c 60%);
  border-left: 3px solid var(--red);
}
.service--feature .service__title { font-size: 38px; }
.service--feature p { font-size: 16px; max-width: 60ch; }
.service__tags {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service__tags li {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 100px;
}
@media (max-width: 760px) {
  .service--feature { grid-column: span 1; }
  .service--feature .service__title { font-size: 28px; }
  .service { padding: 30px 22px 34px; }
}

/* ---------- ABOUT ---------- */

.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__copy p {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0 0 18px;
  max-width: 58ch;
}
.about__visual img {
  width: 100%;
  border: 1px solid var(--line);
  filter: grayscale(0.1) contrast(1.02);
}
.equipment {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.equipment__item h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}
.equipment__item p {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 48px; }
  .equipment { grid-template-columns: 1fr; }
}

/* ---------- AREA / MAP ---------- */

.area {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.area li, .area a {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: background .2s, color .2s;
  position: relative;
  display: block;
}
.area li::before, .area a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  margin-right: 14px;
  transform: translateY(-4px);
}
.area li:hover, .area a:hover { background: var(--bg-2); }
.area small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
  margin-left: 20px;
}

.map-wrap {
  margin-top: 48px;
  padding: 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
}
.map {
  width: 100%;
  height: auto;
  display: block;
  font-family: var(--sans);
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.map-legend__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-legend__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
.map-legend__dot--hq { background: var(--red); box-shadow: 0 0 0 4px rgba(200,16,46,0.25); }
.map-legend__circle {
  width: 18px; height: 18px;
  border: 2px dashed var(--red);
  border-radius: 50%;
}

/* Clickable SVG towns */
.map-town { cursor: pointer; outline: none; }
.map-town__hit { pointer-events: all; }
.map-town text { transition: fill .2s; }
.map-town circle { transition: fill .2s, opacity .2s, r .2s; }
.map-town:hover .map-town__hit { opacity: 0.15 !important; }
.map-town:hover text { fill: #c8102e !important; }
.map-town:hover circle:not(.map-town__hit) { fill: #c8102e !important; }
.map-town:focus-visible .map-town__hit { opacity: 0.25 !important; }

/* ---------- CONTACT ---------- */

.contact {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact__copy p {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0 0 32px;
  max-width: 52ch;
}
.contact__lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.contact__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  transition: padding .2s;
}
.contact__line:hover { padding-left: 10px; }
.contact__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-3);
}
.contact__value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.contact__form {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  font-weight: 600;
}
.contact__form input,
.contact__form textarea,
.contact__form select {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s, background .2s;
}
.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--bg-3);
}
.contact__form textarea { resize: vertical; }
.contact__note {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin: 4px 0 0;
}
.contact__note a { color: var(--red-hot); font-weight: 600; }

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- PRICING ---------- */

.pricing {
  display: grid;
  gap: 64px;
}
.pricing__group h3 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 8px;
  line-height: 1.1;
}
.pricing__group > p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0 0 28px;
  max-width: 70ch;
}
.pricing__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pricing__tier {
  padding: 32px 28px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing__tier--feature {
  background: linear-gradient(180deg, #17080b 0%, #0c0c0c 50%);
}
.pricing__tier--feature::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 12px;
}
.pricing__tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.pricing__price {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pricing__price small {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
}
.pricing__tier ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 24px;
  flex-grow: 1;
}
.pricing__tier li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
  font-size: 14px;
  display: flex;
  gap: 10px;
}
.pricing__tier li::before {
  content: "▸";
  color: var(--red);
  font-size: 12px;
}
.pricing__fine {
  margin-top: 40px;
  padding: 24px;
  border: 1px dashed var(--line);
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.7;
}
@media (max-width: 820px) {
  .pricing__tiers { grid-template-columns: 1fr; }
}

/* ---------- GALLERY ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.gallery-tile {
  aspect-ratio: 4/3;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--ink);
}
.gallery-tile svg.gallery-tile__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.gallery-tile__body {
  position: relative;
  z-index: 1;
  width: 100%;
}
.gallery-tile__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 6px;
}
.gallery-tile__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
}
.gallery-tile__stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line);
  padding: 5px 10px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* ---------- PROCESS / STEPS ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 48px;
}
.step {
  padding: 36px 30px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.step__num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}
.step p {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0;
}

/* ---------- FAQ ---------- */

.faq {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-right: 8px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 28px;
  color: var(--red);
  transition: transform .3s;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin: 16px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  max-width: 70ch;
}

/* ---------- CTA BLOCK ---------- */

.cta-block {
  text-align: center;
  padding: clamp(60px, 8vw, 110px) var(--pad);
  background: linear-gradient(135deg, #17080b 0%, #0c0c0c 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-block h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 18ch;
  margin-left: auto; margin-right: auto;
}
.cta-block p {
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto 36px;
  font-size: 17px;
}
.cta-block__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- PROSE ---------- */

.prose {
  max-width: 72ch;
}
.prose p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 22px;
}
.prose h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  margin: 48px 0 14px;
  color: var(--ink);
}
.prose ul, .prose ol {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  padding-left: 20px;
  margin: 0 0 22px;
}
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}
.two-col__side {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
}
.two-col__side h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}
.two-col__side ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.two-col__side li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
  font-size: 14px;
}
.two-col__side li:last-child { border-bottom: 0; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- FOOTER ---------- */

.foot {
  background: #060606;
  border-top: 1px solid var(--line);
  padding-top: 72px;
}
.foot__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 56px;
}
.foot__brand p {
  color: var(--ink-3);
  font-size: 13px;
  margin: 16px 0 8px;
  max-width: 32ch;
}
.foot__tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-2) !important;
  font-size: 13px !important;
  border-left: 2px solid var(--red);
  padding-left: 12px;
  margin-top: 14px !important;
}
.brand--foot { color: var(--ink); }
.foot__col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin: 0 0 18px;
  font-weight: 700;
}
.foot__col a {
  display: block;
  color: var(--ink-2);
  font-size: 13px;
  padding: 5px 0;
  transition: color .15s, padding .15s;
}
.foot__col a:hover { color: var(--red-hot); padding-left: 4px; }
.foot__cred h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 700;
}
.foot__cred p {
  margin: 0 0 6px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}
.foot__cred strong {
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.placeholder {
  border-bottom: 1px dashed var(--ink-3);
  color: var(--ink-3);
  cursor: help;
}
.foot__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.foot__contact a:hover { color: var(--red-hot); }
.foot__legal {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}
.foot__legal-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot__legal-links a:hover { color: var(--red-hot); }

@media (max-width: 1020px) {
  .foot__inner { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 40px; }
}
@media (max-width: 560px) {
  .foot__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1080px) {
  .nav__links { gap: 16px; }
  .nav__links > a, .nav__item > a { font-size: 11px; }
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }
  .nav__cta .btn { display: none; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    padding: 16px var(--pad) 24px;
    gap: 0;
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open .nav__links > a,
  .nav.is-open .nav__item > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .nav.is-open .nav__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    padding: 0 0 8px 20px;
    min-width: 0;
  }
  .nav.is-open .nav__menu a { padding: 7px 0; font-size: 12px; }
  .nav.is-open .nav__menu a:hover { padding-left: 6px; }
}

/* Mobile hero video sizing fix */
@media (max-width: 820px) {
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 16/10;
  }
  .hero__scroll { bottom: 18px; font-size: 9px; }
  .hero__scroll-line { height: 28px; }
  .subhero { padding: 140px 0 60px; }
  .subhero--video .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 560px) {
  .hero { aspect-ratio: 16/9; }
  .hero__video { object-position: center center; }
  .subhero--video .container {
    padding-top: 30px;
    padding-bottom: 28px;
  }
  .subhero--video h1 {
    font-size: clamp(24px, 6.5vw, 34px);
    line-height: 1.1;
  }
  .subhero--video p {
    font-size: 14px;
    line-height: 1.5;
  }
  .trust__inner { justify-content: flex-start; gap: 18px; padding: 22px var(--pad); }
  .trust__sep { display: none; }
  .trust__item { flex-basis: calc(50% - 12px); }
  .brand__line1 { font-size: 17px; }
  .brand__line2 { font-size: 9px; }
  .nav__phone { display: none; }
  .map-wrap { padding: 20px; }
}

/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__scroll { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
