/* ============================================================
   H2 DIRT WRK — Turning Soil Into Success
   Palette pulled straight from the logo:
   gold #F5A705 · ink #0A0805 · bone #F5F3F1 · sepia #977240
   ============================================================ */

:root {
  --gold: #f5a705;
  --gold-hi: #ffc42e;
  --gold-deep: #c07f04;
  --ink: #0a0805;
  --ink-2: #120e08;
  --panel: #1a140c;
  --panel-2: #211a10;
  --line: rgba(245, 167, 5, 0.16);
  --bone: #f5f3f1;
  --bone-dim: #c9c2b8;
  --mute: #94897a;
  --sepia: #977240;
  --font-display: "Anton", Impact, sans-serif;
  --font-label: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --stripe: repeating-linear-gradient(-45deg, var(--gold) 0 14px, var(--ink) 14px 28px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--ink); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- film grain over everything ---------- */
.grain {
  position: fixed;
  inset: -100px;
  z-index: 2000;
  pointer-events: none;
  filter: url(#grain);
  opacity: 0.05;
  mix-blend-mode: overlay;
}
.grain-defs { position: absolute; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--stripe);
  flex: none;
}

.section { padding: clamp(84px, 11vw, 150px) 0; position: relative; }

.section__head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--bone);
}
.section__title em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 42px rgba(245, 167, 5, 0.35);
}

.section__sub {
  margin-top: 18px;
  color: var(--bone-dim);
  font-size: 1.08rem;
  max-width: 60ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: color 0.28s var(--ease-out), transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  cursor: pointer;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; }

.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-hi);
  transform: translateX(-101%) skewX(-12deg) scaleX(1.2);
  transition: transform 0.34s var(--ease-out);
  z-index: -1;
}
.btn--gold:hover::after { transform: translateX(0) skewX(0) scaleX(1); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(245, 167, 5, 0.28); }
.btn--gold { z-index: 0; }

.btn--ghost { background: transparent; color: var(--bone); border-color: rgba(245, 243, 241, 0.32); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--big { padding: 18px 38px; font-size: 1.1rem; }
.btn--nav { padding: 10px 22px; font-size: 0.92rem; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 7px 0;
}
.topbar__note { display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
.topbar .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink);
  animation: blink 2.2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.topbar__phone { color: var(--ink); font-weight: 700; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.topbar__phone:hover { text-decoration: underline; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(10, 8, 5, 0.92); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.brand__img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(245, 167, 5, 0.28));
  transition: filter 0.3s;
}
.brand:hover .brand__img { filter: drop-shadow(0 0 26px rgba(245, 167, 5, 0.5)); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}
.nav__links > a:not(.btn) {
  color: var(--bone-dim);
  text-decoration: none;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav__links > a:not(.btn):hover { color: var(--gold); }
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 28px; height: 3px;
  background: var(--gold);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 980px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 0 140px;
  isolation: isolate;
}

/* real dawn photo, graded into the brand */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -4;
}
.hero__photo img,
.hero__photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.92) contrast(1.05);
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 5, 0.82) 0%, rgba(10, 8, 5, 0.45) 46%, rgba(10, 8, 5, 0.15) 100%),
    linear-gradient(180deg, rgba(10, 8, 5, 0.55) 0%, rgba(10, 8, 5, 0.18) 40%, rgba(10, 8, 5, 0.92) 88%, var(--ink) 100%);
}

/* sepia storm-light glow pulsing over the photo, straight off the logo */
.hero__sky {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(58% 44% at 68% 30%, rgba(151, 114, 64, 0.36), transparent 70%),
    radial-gradient(80% 60% at 50% 8%, rgba(245, 167, 5, 0.10), transparent 60%);
  mix-blend-mode: screen;
  animation: skyPulse 9s ease-in-out infinite alternate;
}
@keyframes skyPulse {
  from { filter: brightness(1); }
  to   { filter: brightness(1.22); }
}
/* vignette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.hero__dust {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero__content { position: relative; z-index: 2; max-width: 860px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 9.6vw, 7.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bone);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
  margin: 6px 0 26px;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(245, 167, 5, 0.45);
}

.hero__sub {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: var(--bone-dim);
  max-width: 56ch;
  margin-bottom: 36px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hero__scroll-line {
  width: 2px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }
.hero__scroll-text {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--gold);
  border-block: 6px solid var(--ink);
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  box-shadow: 0 0 0 3px var(--gold);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker__track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.ticker__track i { font-style: normal; color: var(--ink); opacity: 0.55; font-size: 0.9rem; }

/* ---------- trust ---------- */
.trust {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 7vw, 90px) 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.trust__item h3 {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 14px 0 8px;
  color: var(--bone);
}
.trust__item p { color: var(--mute); font-size: 0.98rem; }
.trust__icon {
  width: 44px; height: 44px;
  fill: var(--gold);
  filter: drop-shadow(0 0 18px rgba(245, 167, 5, 0.35));
}

/* ---------- services ---------- */
.services { background: var(--ink); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  background: linear-gradient(160deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  padding: 36px 30px 42px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--stripe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.card:hover { transform: translateY(-8px); border-color: rgba(245, 167, 5, 0.45); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5); }
.card:hover::before { transform: scaleX(1); }

.card__photo {
  margin: -36px -30px 24px;
  height: 210px;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid rgba(245, 167, 5, 0.35);
}
.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) sepia(0.12) contrast(1.02);
  transition: transform 0.6s var(--ease-out), filter 0.5s;
}
.card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 5, 0.25) 0%, transparent 40%, rgba(26, 20, 12, 0.55) 100%);
  pointer-events: none;
}
.card:hover .card__photo img { transform: scale(1.07); filter: saturate(1) sepia(0) contrast(1.04); }

.card__icon {
  width: 64px; height: 64px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.card__icon svg { width: 38px; height: 38px; stroke: var(--gold); fill: none; stroke-width: 2.6; transition: stroke 0.3s; }
.card:hover .card__icon { background: var(--gold); transform: rotate(-4deg) scale(1.05); }
.card:hover .card__icon svg { stroke: var(--ink); }

.card h3 {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card p { color: var(--mute); font-size: 0.99rem; }

.card__num {
  position: absolute;
  right: 18px; bottom: 4px;
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 167, 5, 0.18);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.35s;
}
.card:hover .card__num { -webkit-text-stroke-color: rgba(245, 167, 5, 0.5); }

.services__cta {
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px dashed rgba(245, 167, 5, 0.35);
  padding: 26px 32px;
}
.services__cta p {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
}

/* ---------- equipment ---------- */
.equipment {
  background:
    radial-gradient(70% 55% at 50% 0%, rgba(151, 114, 64, 0.16), transparent 70%),
    var(--ink-2);
  border-block: 1px solid var(--line);
}

.equip__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.equip__tab {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  background: transparent;
  border: 1px solid var(--line);
  padding: 14px 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.equip__tab-num { color: var(--gold); font-size: 0.85rem; }
.equip__tab:hover { color: var(--bone); border-color: rgba(245, 167, 5, 0.5); }
.equip__tab.is-active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.equip__tab.is-active .equip__tab-num { color: var(--ink); }

.equip__stage {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--panel), rgba(10, 8, 5, 0.6));
  position: relative;
  overflow: hidden;
}
.equip__stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: var(--stripe);
  opacity: 0.9;
}

.equip__panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
}
.equip__panel[hidden] { display: none; }
.equip__panel.is-active { animation: panelIn 0.55s var(--ease-out); }
@keyframes panelIn {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: translateX(0); }
}

.equip__art svg { width: 100%; height: auto; }
.equip__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 167, 5, 0.45);
  outline: 5px solid rgba(245, 167, 5, 0.08);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.equip__photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}
.equip__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(200deg, rgba(245, 167, 5, 0.12) 0%, transparent 35%),
    linear-gradient(180deg, transparent 55%, rgba(10, 8, 5, 0.5) 100%);
  pointer-events: none;
}
.equip__info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.equip__tag {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.equip__info > p:not(.equip__tag) { color: var(--bone-dim); margin-bottom: 20px; }

.equip__list { list-style: none; display: grid; gap: 10px; }
.equip__list li {
  position: relative;
  padding-left: 26px;
  color: var(--bone-dim);
  font-size: 1rem;
}
.equip__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 4px;
  background: var(--gold);
}

/* ---------- about ---------- */
.about { background: var(--ink); overflow: hidden; }
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about__text p { color: var(--bone-dim); margin-bottom: 18px; }
.about__text p strong { color: var(--bone); }
.about__text p em { color: var(--gold); font-style: italic; }
.about__text .section__title { margin-bottom: 24px; }

.about__checks { list-style: none; margin: 10px 0 30px; display: grid; gap: 12px; }
.about__checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.check {
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
  flex: none;
}

.about__plaque { perspective: 1100px; }
.plaque {
  position: relative;
  border: 1px solid rgba(245, 167, 5, 0.4);
  outline: 6px solid rgba(245, 167, 5, 0.08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 0 90px rgba(245, 167, 5, 0.12);
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out, box-shadow 0.3s;
  will-change: transform;
  overflow: hidden;
}
.plaque img { width: 100%; }
.plaque__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.plaque:hover .plaque__shine { opacity: 1; }
.about__plaque-caption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  font-size: 0.85rem;
}

/* ---------- field band ---------- */
.band {
  position: relative;
  padding: clamp(110px, 15vw, 190px) 0;
  background-image:
    linear-gradient(90deg, rgba(10, 8, 5, 0.85) 0%, rgba(10, 8, 5, 0.45) 55%, rgba(10, 8, 5, 0.65) 100%),
    linear-gradient(180deg, var(--ink) 0%, rgba(10, 8, 5, 0.25) 18%, rgba(10, 8, 5, 0.25) 82%, var(--ink) 100%),
    url("../assets/photos/band-quarry.webp");
  background-size: auto, auto, cover;
  background-position: center;
  border-block: 3px solid rgba(245, 167, 5, 0.4);
}
@media (min-width: 1024px) and (hover: hover) {
  .band { background-attachment: scroll, scroll, fixed; }
}
.band .eyebrow { justify-content: flex-start; }
.band__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 8px 50px rgba(0, 0, 0, 0.8);
  margin-bottom: 14px;
}
.band__sub {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

/* ---------- process ---------- */
.process {
  background:
    radial-gradient(60% 50% at 50% 100%, rgba(151, 114, 64, 0.14), transparent 70%),
    var(--ink-2);
  border-block: 1px solid var(--line);
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 44px; left: 4%; right: 4%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(245, 167, 5, 0.4) 0 10px, transparent 10px 22px);
  z-index: 0;
}
.step { position: relative; z-index: 1; padding-top: 0; }
.step__num {
  display: grid;
  place-items: center;
  width: 88px; height: 88px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold);
  background: var(--ink);
  border: 2px solid var(--gold);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  margin-bottom: 22px;
  box-shadow: 0 0 40px rgba(245, 167, 5, 0.18);
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s;
}
.step:hover .step__num { transform: rotate(-4deg) scale(1.06); background: var(--gold); color: var(--ink); }
.step h3 {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step p { color: var(--mute); font-size: 0.97rem; }

/* ---------- area ---------- */
.area { background: var(--ink); }
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.area__map svg { width: 100%; max-width: 460px; height: auto; margin-inline: auto; display: block; }
.la-shape {
  fill: rgba(245, 167, 5, 0.06);
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 30px rgba(245, 167, 5, 0.15));
}
.la-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.34em;
  fill: var(--mute);
}
.pin-core { fill: var(--gold); }
.pin-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  opacity: 0;
  animation: ping 3s ease-out infinite;
}
.pin-ring.r2 { animation-delay: 0.5s; }
.pin-ring.r3 { animation-delay: 1s; }
@keyframes ping {
  0% { transform: scale(0.3); transform-origin: 118px 196px; opacity: 0.9; }
  80%, 100% { transform: scale(1.25); transform-origin: 118px 196px; opacity: 0; }
}

.area__text .section__title { margin-bottom: 20px; }
.area__text > p { color: var(--bone-dim); margin-bottom: 24px; }
.area__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 26px;
}
.area__list li {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
  padding-left: 34px;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.area__list li::before {
  content: "";
  position: absolute;
  left: 14px; top: 50%;
  translate: 0 -50%;
  width: 8px; height: 8px;
  background: var(--gold);
  rotate: 45deg;
}
.area__list li:hover { border-color: rgba(245, 167, 5, 0.5); transform: translateX(4px); }
.area__note { color: var(--gold); font-style: italic; }

/* ---------- faq ---------- */
.faq {
  background:
    radial-gradient(50% 40% at 80% 10%, rgba(151, 114, 64, 0.12), transparent 70%),
    var(--ink-2);
  border-block: 1px solid var(--line);
}
.faq__wrap { max-width: 860px; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: rgba(245, 167, 5, 0.5); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }
.faq__plus {
  position: relative;
  width: 18px; height: 18px;
  flex: none;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease-out);
}
.faq__plus::before { left: 0; top: 8px; width: 18px; height: 2.6px; }
.faq__plus::after { left: 7.7px; top: 0; width: 2.6px; height: 18px; }
.faq__item[open] .faq__plus::after { transform: scaleY(0); }
.faq__item p {
  padding: 0 26px 24px;
  color: var(--bone-dim);
  max-width: 68ch;
}

/* ---------- final cta ---------- */
.cta {
  background:
    radial-gradient(70% 90% at 50% 50%, rgba(151, 114, 64, 0.35), transparent 75%),
    radial-gradient(45% 60% at 50% 45%, rgba(245, 167, 5, 0.12), transparent 70%),
    var(--ink);
  text-align: center;
  padding: 0;
  overflow: hidden;
}
.cta__stripe { height: 14px; background: var(--stripe); }
.cta__inner { padding: clamp(84px, 11vw, 150px) 0; }
.cta .eyebrow { justify-content: center; }
.cta .eyebrow::before { display: none; }

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--bone);
  margin: 10px 0 24px;
}
.cta__title span { display: block; }
.cta__gold {
  color: var(--gold);
  text-shadow: 0 0 80px rgba(245, 167, 5, 0.5);
}
.cta__sub {
  color: var(--bone-dim);
  max-width: 52ch;
  margin: 0 auto 40px;
  font-size: 1.12rem;
}
.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.cta__owner {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  font-size: 0.88rem;
}

/* ---------- quote form ---------- */
.quote {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: left;
  background: rgba(26, 20, 12, 0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  padding: clamp(26px, 4vw, 44px);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.quote__title {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--bone);
}
.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.quote__field { display: grid; gap: 7px; }
.quote__field--wide { grid-column: 1 / -1; }
.quote__field span {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote__field input,
.quote__field select,
.quote__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--bone);
  background: rgba(10, 8, 5, 0.7);
  border: 1px solid rgba(245, 167, 5, 0.25);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  resize: vertical;
}
.quote__field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.quote__field input::placeholder,
.quote__field textarea::placeholder { color: rgba(148, 137, 122, 0.7); }
.quote__field input:focus,
.quote__field select:focus,
.quote__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 167, 5, 0.18);
}
.quote__submit { width: 100%; }
.quote__note {
  margin-top: 16px;
  text-align: center;
  color: var(--mute);
  font-size: 0.92rem;
}
.quote__note a { color: var(--gold); }

@media (max-width: 640px) {
  .quote__grid { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.footer { background: #070503; border-top: 1px solid var(--line); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  padding: clamp(56px, 7vw, 84px) 0;
}
.brand--footer .brand__img { height: 54px; }
.footer__slogan {
  margin-top: 16px;
  color: var(--mute);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.7;
}
.footer__col h4 {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; display: grid; gap: 10px; margin-bottom: 20px; }
.footer__col a {
  color: var(--bone-dim);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
}
.footer__col a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact li { color: var(--bone-dim); }
.footer__bottom { border-top: 1px solid rgba(245, 167, 5, 0.1); padding: 20px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--mute);
  font-size: 0.9rem;
}
.footer__tagline {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 167, 5, 0.5);
}

/* ---------- call fab (mobile) ---------- */
.callfab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  width: 58px; height: 58px;
  display: none;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(245, 167, 5, 0.5);
  animation: fabPulse 2.4s infinite;
}
.callfab svg { width: 26px; height: 26px; fill: var(--ink); }
@keyframes fabPulse {
  0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(245, 167, 5, 0.45); }
  70% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 18px rgba(245, 167, 5, 0); }
  100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(245, 167, 5, 0); }
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 22px; }
  .steps::before { display: none; }
  .equip__panel { grid-template-columns: 1fr; }
  .equip__art { max-width: 480px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .about__grid, .area__grid { grid-template-columns: 1fr; }
  .about__plaque { max-width: 560px; margin-inline: auto; }
  .area__map { order: 2; }
  .hero { padding-bottom: 150px; }
}

@media (max-width: 760px) {
  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }

  .nav__burger { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 30px 0 38px;
    background: #0a0805;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__links > a:not(.btn) { font-size: 1.35rem; }
  .nav__burger { position: relative; z-index: 110; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  .callfab { display: grid; }
  .hero__scroll { display: none; }

  .hero { padding-bottom: 110px; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .area__list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .ticker__track span { font-size: 1.1rem; }
  .btn--big { width: 100%; }
  .hero__cta { flex-direction: column; }
}
