/* ============================================================
   ECA ASPHALT PAVING — Denver, CO
   Design language: "fresh blacktop at night"
   Near-black asphalt surfaces · chrome beveled display type ·
   hot gold accents · dashed road center-lines as motif
   Display: Kanit heavy italic  ·  Body: Barlow
   ============================================================ */

:root {
  /* Surfaces */
  --asphalt-990: #060708;
  --asphalt-950: #0b0c0e;   /* page background */
  --asphalt-900: #101114;   /* alt band */
  --asphalt-850: #14161a;   /* cards / panels */
  --asphalt-800: #191b20;   /* raised elements */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Gold (logo "ASPHALT") */
  --gold-300: #ffd766;
  --gold-400: #ffc93c;
  --gold-500: #f5a623;
  --gold-600: #d98e04;
  --gold-ink: #1b1302;

  /* Chrome (logo "ECA") */
  --chrome-hi: #ffffff;
  --chrome-mid: #c7cdd6;
  --chrome-low: #878e99;

  /* Text */
  --text: #dcdad4;
  --text-dim: #a3a19b;
  --text-faint: #75736e;

  /* Type */
  --font-display: "Kanit", "Arial Black", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;

  /* Rhythm */
  --section-pad: clamp(4.5rem, 9vw, 7.5rem);
  --inner-width: 1180px;

  /* Motif */
  --dash-gold: repeating-linear-gradient(90deg,
      var(--gold-500) 0 30px, transparent 30px 54px);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--asphalt-950);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.04;
  margin: 0 0 1rem;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1.1rem; }
a { color: var(--gold-400); }
a:hover { color: var(--gold-300); }
ul, ol { margin: 0; padding: 0; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold-500); color: var(--gold-ink);
  padding: 10px 18px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Shared text treatments ---------- */
.chrome-text {
  background: linear-gradient(180deg,
    var(--chrome-hi) 0%, #eef1f5 34%, var(--chrome-mid) 47%,
    var(--chrome-low) 52%, #b9bfc9 60%, #f2f4f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.55));
}

.gold-text {
  background: linear-gradient(180deg,
    var(--gold-300) 0%, var(--gold-400) 40%, var(--gold-500) 62%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.55));
}

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: "";
  width: 42px; height: 3px;
  background: var(--dash-gold);
  background-size: 54px 3px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1.1rem;
}

.section-intro {
  color: var(--text-dim);
  max-width: 560px;
  font-size: 1.05rem;
}

.section-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section-head { margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head--center { text-align: center; }
.section-head--center .section-intro { margin: 0 auto; }
.section-head--center .section-label::before { display: none; }
.section-head--center .section-label::after { display: none; }

/* ---------- Buttons ---------- */
.btn-gold, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-size: 0.98rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transform: skewX(-8deg);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease,
              background-color 0.18s ease, border-color 0.18s ease;
}
.btn-gold > span, .btn-ghost > svg, .btn-ghost { will-change: transform; }

.btn-gold {
  background: linear-gradient(180deg, #ffd15c 0%, var(--gold-500) 55%, var(--gold-600) 100%);
  color: var(--gold-ink);
  padding: 0.85rem 1.6rem;
  box-shadow: 0 3px 0 #8a5a02, 0 10px 26px -8px rgba(245, 166, 35, 0.55);
}
.btn-gold > span {
  display: inline-flex; align-items: center; gap: 0.55rem;
  transform: skewX(8deg);
}
.btn-gold:hover {
  filter: brightness(1.07);
  transform: skewX(-8deg) translateY(-2px);
  box-shadow: 0 5px 0 #8a5a02, 0 16px 32px -8px rgba(245, 166, 35, 0.65);
  color: var(--gold-ink);
}
.btn-gold:active { transform: skewX(-8deg) translateY(1px); box-shadow: 0 2px 0 #8a5a02; }

.btn-ghost {
  color: #fff;
  border: 1.5px solid var(--line-strong);
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost svg, .btn-ghost { transform: skewX(-8deg); }
.btn-ghost > * { transform: skewX(8deg); }
.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-300); background: rgba(245, 166, 35, 0.06); }

.btn-lg { font-size: 1.08rem; padding: 1rem 1.9rem; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 130;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  padding: 0.4rem 0;
  /* Solid dark bar: the logo JPG's black plate disappears against it
     (mix-blend-mode can't reach the hero image behind a fixed header). */
  background: rgba(8, 9, 11, 0.93);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -18px rgba(0, 0, 0, 0.8);
}

.header-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}

.logo-block { display: inline-flex; flex-shrink: 0; }
.logo-img {
  width: 158px; height: auto;
  mix-blend-mode: screen; /* melts the JPG's black box into the dark header */
  filter: contrast(1.14) brightness(1.03); /* crush JPEG near-blacks so no gray box ghosts through */
}

.nav-menu { margin-left: auto; display: flex; align-items: center; gap: 1.9rem; }
.nav-menu-links { display: flex; gap: 1.9rem; }
.nav-menu-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
/* Solid rule that wipes in from the left. A dashed pattern here rendered as one
   dash plus a clipped stub on short links — different fragment on every item. */
.nav-menu-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400) 45%, var(--gold-300));
  box-shadow: 0 0 9px rgba(245, 166, 35, 0.45);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.25, 1);
}
.nav-menu-links a:hover { color: #fff; }
.nav-menu-links a:hover::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .nav-menu-links a::after { transition: none; }
}

.header-cta--drawer { display: none; }
.nav-close { display: none; }
.nav-toggle { display: none; }
.nav-backdrop {
  position: fixed; inset: 0; z-index: 118;
  background: rgba(4, 5, 6, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(94vh, 980px);
  display: flex;
  align-items: center;
  padding: 9.5rem 0 5.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
      rgba(6, 7, 8, 0.96) 0%, rgba(6, 7, 8, 0.88) 34%,
      rgba(6, 7, 8, 0.55) 62%, rgba(8, 9, 11, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 7, 8, 0.55) 0%, rgba(6, 7, 8, 0) 26%,
      rgba(6, 7, 8, 0) 62%, rgba(11, 12, 14, 0.92) 100%);
}
.hero-glow {
  position: absolute;
  left: -18%; bottom: -32%;
  width: 66%; aspect-ratio: 1;
  background: radial-gradient(circle,
    rgba(245, 166, 35, 0.22) 0%, rgba(245, 166, 35, 0.07) 42%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
/* asphalt grain */
.hero::after, .contact::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

.hero-content { max-width: var(--inner-width); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); width: 100%; }

.hero-kicker {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.kicker-dash { width: 54px; height: 3px; background: var(--dash-gold); background-size: 54px 3px; flex-shrink: 0; }

.hero h1 {
  font-size: clamp(2.55rem, 6.3vw, 4.8rem);
  margin: 0 0 1.4rem;
}
/* Both lines share one size and the same chrome/gold split used by every
   section title — the headline reads as a single unit, not three treatments. */
.hero h1 > span { display: block; }

.hero-lead {
  max-width: 560px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #c9c7c1;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem 1.1rem; margin-bottom: 2.2rem; }

.hero-pills {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 0.6rem 0.65rem;
  max-width: 620px;
}
.hero-pills li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.03em;
  color: #d6d4ce;
  border: 1px solid var(--line-strong);
  background: rgba(10, 11, 13, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
}
.hero-pills svg { color: var(--gold-400); flex-shrink: 0; }

/* ---------- Road divider (signature motif) ---------- */
.road-divider {
  position: relative;
  height: 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0, transparent 3px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 0, transparent 3px),
    #0d0e10;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.road-line {
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 4px;
  transform: translateY(-50%);
  background: var(--dash-gold);
  background-size: 54px 4px;
  opacity: 0.85;
  animation: dash-crawl 26s linear infinite;
}
@keyframes dash-crawl {
  from { background-position-x: 0; }
  to   { background-position-x: -540px; }
}
@media (prefers-reduced-motion: reduce) {
  .road-line { animation: none; }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--asphalt-900);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}
.stat { text-align: left; position: relative; padding-left: 1.2rem; }
.stat::before {
  content: "";
  position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
}
.stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  line-height: 1;
  background: linear-gradient(180deg, #fff 8%, var(--chrome-mid) 48%, var(--chrome-low) 55%, #eef1f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.45;
}

/* ---------- Services ---------- */
.services { padding: var(--section-pad) 0; position: relative; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.svc-card {
  position: relative;
  background: var(--asphalt-850);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.svc-card::after {
  /* dashed gold trace that draws on hover */
  content: "";
  position: absolute; inset: 8px;
  border: 1.5px dashed rgba(245, 166, 35, 0);
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 24px 44px -22px rgba(0, 0, 0, 0.85);
}
.svc-card:hover::after { border-color: rgba(245, 166, 35, 0.4); }

.svc-media { overflow: hidden; aspect-ratio: 16 / 10; flex-shrink: 0; }
.svc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.25, 1), filter 0.5s ease;
  filter: saturate(0.92);
}
.svc-card:hover .svc-media img { transform: scale(1.055); filter: saturate(1.05); }

.svc-body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.svc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  margin-bottom: 0.35rem;
}
.svc-num::after { content: " /"; color: var(--text-faint); font-weight: 700; }
.svc-card h3 { font-size: 1.28rem; margin-bottom: 0.55rem; color: #f2f1ed; }
.svc-body p { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 1.1rem; }

.svc-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-400);
  text-decoration: none;
}
.svc-link svg { transition: transform 0.2s ease; }
.svc-link:hover svg { transform: translateX(5px); }

/* Featured card: spans 2 columns, media left */
.svc-card--featured { grid-column: span 2; flex-direction: row; }
.svc-card--featured .svc-media { aspect-ratio: auto; width: 46%; }
.svc-card--featured .svc-body { width: 54%; justify-content: center; padding: 2rem 2.1rem; }
.svc-card--featured h3 { font-size: 1.7rem; }
.svc-card--featured p { font-size: 1.02rem; }
.svc-card--featured .svc-link { margin-top: 1rem; flex-grow: 0; }

/* CTA tile */
.svc-card--cta {
  background:
    radial-gradient(140% 120% at 85% 110%, rgba(245, 166, 35, 0.16) 0%, transparent 55%),
    var(--asphalt-800);
  justify-content: center;
}
.svc-cta-inner { padding: 2rem 1.7rem; }
.svc-cta-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svc-card--cta h3 { font-size: 1.35rem; }
.svc-card--cta p { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 1.4rem; }

/* ---------- Why ECA ---------- */
.why { padding: var(--section-pad) 0; background: var(--asphalt-900); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.why-text .section-title { max-width: 16ch; }
.why-text > p { color: var(--text-dim); max-width: 56ch; }

.feature-list { list-style: none; margin: 1.8rem 0 2.2rem; display: grid; gap: 1.05rem; }
.feature-list li { display: flex; gap: 0.95rem; align-items: flex-start; }
.feature-dash {
  flex-shrink: 0;
  width: 26px; height: 4px;
  margin-top: 0.62em;
  background: var(--dash-gold);
  background-size: 30px 4px;
}
.feature-list strong { color: #f2f1ed; font-weight: 700; }
.feature-list div { color: var(--text-dim); }

.why-media { position: relative; }
.framed-photo { position: relative; margin: 0; }
.framed-photo::before {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 2px dashed rgba(245, 166, 35, 0.4);
  z-index: 0;
}
.framed-photo img {
  position: relative; z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 74%; /* keep the roller + fresh pad in frame, not just sky */
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
}
.photo-badge {
  position: absolute; z-index: 2;
  left: -0.9rem; bottom: 1.6rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(10, 11, 13, 0.92);
  border: 1px solid rgba(245, 166, 35, 0.45);
  color: #eae8e3;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
}
.photo-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 10px 1px rgba(255, 201, 60, 0.8); }

/* ---------- Process ---------- */
.process { padding: var(--section-pad) 0; }
.process-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  position: relative;
  counter-reset: step;
}
.process-track::before {
  /* connecting dashed road line */
  content: "";
  position: absolute;
  top: 27px; left: 4%; right: 4%;
  height: 3px;
  background: var(--dash-gold);
  background-size: 54px 3px;
  opacity: 0.4;
}
.process-step { position: relative; padding-top: 4.6rem; }
.process-disc {
  position: absolute; top: 0; left: 0;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.5rem;
  color: #17181b;
  background:
    radial-gradient(120% 120% at 30% 20%, #ffffff 0%, #d9dde3 38%, #9aa1ab 66%, #e6e9ee 100%);
  border-radius: 50%;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.5), inset 0 -3px 6px rgba(0, 0, 0, 0.25);
}
.process-step h3 { font-size: 1.18rem; margin-bottom: 0.45rem; color: #f2f1ed; }
.process-step p { color: var(--text-dim); font-size: 0.96rem; margin: 0; }

/* ---------- Recent work ---------- */
.work { padding: var(--section-pad) 0; background: var(--asphalt-900); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.work-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  background: var(--asphalt-850);
}
.work-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.6, 0.25, 1);
}
.work-tile:hover img { transform: scale(1.05); }
.work-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.2rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 7, 8, 0.88) 62%);
  color: var(--text-dim);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}
.work-tile figcaption span {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.04rem;
  color: var(--gold-400);
  letter-spacing: 0.05em;
}
.work-follow { margin: 1.9rem 0 0; color: var(--text-dim); font-size: 0.98rem; }
.work-follow a { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; text-decoration: none; }
.work-follow a:hover { text-decoration: underline; }

/* ---------- Service area ---------- */
.area { padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.area-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.area-dial-wrap { display: flex; justify-content: center; }
.area-dial { position: relative; width: min(300px, 74vw); aspect-ratio: 1; }
.area-ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.ring-outer {
  stroke: var(--gold-500);
  stroke-dasharray: 26 18;
  opacity: 0.8;
  transform-origin: 150px 150px;
  animation: ring-spin 90s linear infinite;
}
.ring-mid { stroke: rgba(255, 255, 255, 0.18); stroke-dasharray: 4 10; transform-origin: 150px 150px; animation: ring-spin 140s linear infinite reverse; }
.ring-inner { stroke: rgba(255, 255, 255, 0.12); stroke-dasharray: 2 8; }
@keyframes ring-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .ring-outer, .ring-mid { animation: none; }
}
.area-dial-core {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 0.15rem;
}
.area-dial-star { color: var(--gold-400); font-size: 1.5rem; line-height: 1; text-shadow: 0 0 18px rgba(255, 201, 60, 0.65); }
.area-dial-city {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 10%, var(--chrome-mid) 50%, var(--chrome-low) 56%, #eef1f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
}
.area-dial-radius {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.area-chips {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.6rem 0 1.4rem;
  max-width: 640px;
}
.area-chips li {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  border: 1px solid var(--line);
  background: var(--asphalt-850);
  padding: 0.38rem 0.8rem;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.area-chips li:hover { color: var(--gold-300); border-color: rgba(245, 166, 35, 0.5); transform: translateY(-2px); }
.area-note { color: var(--text-dim); font-size: 0.98rem; max-width: 56ch; }
.area-text > p:first-of-type { color: var(--text-dim); max-width: 54ch; }

/* ---------- Contact ---------- */
.contact {
  padding: var(--section-pad) 0;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(90% 70% at 110% 110%, rgba(245, 166, 35, 0.1) 0%, transparent 55%),
    radial-gradient(70% 60% at -10% -10%, rgba(245, 166, 35, 0.06) 0%, transparent 55%),
    var(--asphalt-990);
  border-top: 1px solid var(--line);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}
.contact-left > p { color: var(--text-dim); max-width: 46ch; }

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.1rem 0 1.7rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-400) 40%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.6));
}
.contact-phone:hover { filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.6)) brightness(1.12); }

.pulse-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 0 rgba(255, 201, 60, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 201, 60, 0.55); }
  70% { box-shadow: 0 0 0 13px rgba(255, 201, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 201, 60, 0); }
}
@media (prefers-reduced-motion: reduce) { .pulse-dot { animation: none; } }

.contact-benefits { list-style: none; display: grid; gap: 0.8rem; margin: 0 0 1.8rem; }
.contact-benefits li { display: flex; align-items: center; gap: 0.7rem; color: var(--text-dim); font-size: 0.99rem; }
.contact-benefits svg { color: var(--gold-400); flex-shrink: 0; }

.contact-fb {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--line-strong);
  padding: 0.6rem 1rem;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.contact-fb:hover { border-color: var(--gold-400); color: var(--gold-300); }
.contact-fb svg { color: var(--gold-400); }

/* Form panel */
.contact-form-wrap { position: relative; }
.contact-form-panel {
  position: relative;
  background: var(--asphalt-850);
  border: 1px solid var(--line-strong);
  padding: clamp(1.5rem, 3.5vw, 2.3rem);
  box-shadow: 0 34px 70px -36px rgba(0, 0, 0, 0.95);
}
.contact-form-panel::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300), var(--gold-600));
}
#contact-form-head h3 { font-size: 1.45rem; margin-bottom: 0.2rem; }
#contact-form-head p { color: var(--text-faint); font-size: 0.92rem; margin-bottom: 1.4rem; }

.hp-field { position: absolute; left: -9999px; top: -9999px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.05rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.form-group label span { color: var(--gold-400); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px; /* iOS: prevents auto-zoom */
  color: var(--text);
  background: #0d0e11;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0.78rem 0.9rem;
  transition: border-color 0.18s ease, background-color 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group textarea { resize: vertical; min-height: 108px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #5d5b56; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500); /* border swap, no box-shadow spread (mobile overflow) */
  background: #101216;
}
.form-group input.is-invalid, .form-group textarea.is-invalid { border-color: #e5484d; }
.field-error { color: #ff8f93; font-size: 0.84rem; margin-top: 0.35rem; }

.select-wrap { position: relative; }
.select-wrap svg {
  position: absolute; right: 0.9rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  pointer-events: none;
}
.select-wrap select { padding-right: 2.4rem; color: var(--text); cursor: pointer; }

.form-error {
  background: rgba(229, 72, 77, 0.12);
  border: 1px solid rgba(229, 72, 77, 0.45);
  color: #ffb3b5;
  font-size: 0.93rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1.1rem;
}

.form-submit { width: 100%; justify-content: center; margin-top: 1.2rem; font-size: 1.05rem; padding: 1rem 1.4rem; }
.form-submit.is-loading { opacity: 0.65; pointer-events: none; }
.form-privacy { color: var(--text-faint); font-size: 0.82rem; text-align: center; margin: 0.9rem 0 0; }

/* ALTCHA widget dark theme */
altcha-widget {
  display: block;
  margin-top: 0.4rem;
  --altcha-color-base: #0d0e11;
  --altcha-color-border: rgba(255, 255, 255, 0.14);
  --altcha-color-text: #dcdad4;
  --altcha-color-border-focus: #f5a623;
  --altcha-border-width: 1px;
  --altcha-border-radius: 0;
  --altcha-max-width: 100%;
}

.form-success-msg { text-align: center; padding: 2.4rem 1rem; }
.form-success-msg:focus { outline: none; }
.success-mark {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  color: var(--gold-ink);
  background: linear-gradient(180deg, #ffd15c, var(--gold-600));
  box-shadow: 0 0 0 8px rgba(245, 166, 35, 0.14), 0 14px 30px -12px rgba(245, 166, 35, 0.6);
  margin-bottom: 1.1rem;
}
.form-success-msg h3 { font-size: 1.6rem; }
.form-success-msg p { color: var(--text-dim); max-width: 34ch; margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--asphalt-990); }
.road-divider--footer { border-top-color: var(--line-strong); }
.footer-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 3.4rem clamp(1.25rem, 4vw, 2.5rem) 2.6rem;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.4rem;
}
.footer-logo { width: 180px; height: auto; mix-blend-mode: screen; filter: contrast(1.14) brightness(1.03); margin-bottom: 1rem; }
.footer-tagline { color: var(--text-dim); font-size: 0.95rem; max-width: 34ch; }
.footer-fb {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.footer-fb:hover { color: var(--gold-300); border-color: var(--gold-400); }

.footer-col h4 {
  font-size: 0.98rem;
  letter-spacing: 0.09em;
  color: var(--gold-400);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.24rem 0;
}
.footer-col a:hover { color: var(--gold-300); }
.footer-col p { color: var(--text-faint); font-size: 0.92rem; margin-top: 0.6rem; }
.footer-phone {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.3rem !important;
  color: var(--gold-400) !important;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.3rem clamp(1.25rem, 4vw, 2.5rem) calc(1.3rem + env(safe-area-inset-bottom, 0px));
  max-width: var(--inner-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Mobile CTA bar ---------- */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 110;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-strong);
  background: rgba(8, 9, 11, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateY(105%);
  transition: transform 0.3s ease;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar.is-suppressed { transform: translateY(105%); }
.mcta-quote, .mcta-call {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  padding: 1.02rem 0.5rem;
  text-decoration: none;
}
.mcta-quote { color: #fff; }
.mcta-call {
  color: var(--gold-ink);
  background: linear-gradient(180deg, #ffd15c, var(--gold-500) 60%, var(--gold-600));
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.6, 0.25, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card--featured { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1.6rem; }
  .process-track::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .why-layout, .area-layout, .contact-layout { grid-template-columns: 1fr; }
  .why-media { order: -1; max-width: 460px; }
  .area-dial-wrap { order: -1; }
  .contact-left { max-width: 560px; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }

  /* Nav becomes drawer */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    background: none;
    border: 1px solid var(--line-strong);
    padding: 11px 10px;
    cursor: pointer;
  }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: #eae8e3; transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .header-cta--bar { display: none; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 125;
    width: min(320px, 84vw);
    background: var(--asphalt-900);
    border-left: 1px solid var(--line-strong);
    flex-direction: column;
    align-items: flex-start;
    padding: 4.6rem 1.8rem 2rem;
    gap: 2rem;
    transform: translateX(105%);
    transition: transform 0.3s ease;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu-links { flex-direction: column; gap: 0.4rem; width: 100%; }
  .nav-menu-links a {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.35rem;
    padding: 0.55rem 0;
  }
  /* Drawer links stretch full width, where the underline would read as a stray
     divider rather than a hover state. */
  .nav-menu-links a::after { display: none; }
  .nav-menu-links a:hover, .nav-menu-links a:active { color: var(--gold-300); }
  .nav-close {
    display: block;
    position: absolute;
    top: 0.9rem; right: 1rem;
    background: none; border: 0;
    color: var(--text);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
  }
  .header-cta--drawer { display: inline-flex; }

  .hero { padding: 8rem 0 4.5rem; min-height: 0; }
  .hero-media img { object-position: 58% 42%; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc-card--featured { grid-column: auto; flex-direction: column; }
  .svc-card--featured .svc-media { width: 100%; aspect-ratio: 16 / 10; }
  .svc-card--featured .svc-body { width: 100%; padding: 1.35rem 1.4rem 1.5rem; }
  .svc-card--featured h3 { font-size: 1.4rem; }

  .work-grid { grid-template-columns: 1fr; }
  .work-tile { aspect-ratio: 4 / 5; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.9rem; padding-bottom: 1.8rem; }
  .footer-bottom { padding-bottom: calc(4.9rem + env(safe-area-inset-bottom, 0px)); }

  .mobile-cta-bar { display: grid; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.55rem; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }
  .process-track { grid-template-columns: 1fr; }
}
