/* ==========================================================================
   South Texas Asphalt Maintenance — "Black Gold"
   Asphalt blacks, molten gold, highway-signage type.
   Fonts: Big Shoulders Display (display) / Barlow (body) / Barlow Condensed (labels)
   ========================================================================== */

:root {
  --ink: #0b0b0d;
  --coal: #111114;
  --card: #17171b;
  --line: #2a2a30;
  --gold: #f0b32a;
  --gold-bright: #ffd065;
  --gold-deep: #b87f10;
  --paper: #f4efe4;
  --paper-2: #eae3d2;
  --text: #f5f2ea;
  --muted: #b5b0a4;
  --ink-on-paper: #18150f;
  --muted-on-paper: #5d5749;
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", sans-serif;
  --font-cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --radius: 14px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
blockquote { margin: 0; }
button { font: inherit; cursor: pointer; }

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

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

/* Anchor jumps land below the sticky header */
section[id], [id="quote"] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* Visible keyboard focus everywhere interactive */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* Asphalt grain on dark sections */
.section-dark::before, .section-coal::before, .hero-texture {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-texture { position: absolute; }

/* ---------- Type ---------- */
h1, h2, .step-num, .offer-big, .badge-num {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 8.5vw, 5rem); text-wrap: balance; }
h2 { font-size: clamp(2.4rem, 6.5vw, 4rem); text-wrap: balance; }
h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.45rem; line-height: 1.05; }
h1 em { font-style: normal; color: var(--gold); }

.eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow-dash { display: inline-block; width: 34px; height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 11px); flex: none; }
.eyebrow-dark { color: var(--gold-deep); }

.section-sub { color: var(--muted); max-width: 560px; font-size: 1.08rem; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 30px; font-size: 1.14rem; }
.btn-gold {
  background: linear-gradient(160deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 130%);
  color: #141004;
  box-shadow: 0 6px 22px rgba(240, 179, 42, 0.28);
}
.btn-gold:hover { box-shadow: 0 10px 30px rgba(240, 179, 42, 0.45); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(245, 242, 234, 0.28); color: var(--text); background: rgba(255, 255, 255, 0.03); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-dark { background: var(--ink); color: var(--gold-bright); box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); }
.btn-ghost-dark { border-color: rgba(11, 11, 13, 0.45); color: var(--ink); }
.btn-ghost-dark:hover { border-color: var(--ink); background: rgba(11, 11, 13, 0.08); }
.btn-outline { border-color: var(--gold); color: var(--gold-bright); background: rgba(11, 11, 13, 0.85); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 13, 0.85);
  border-bottom: 1px solid rgba(240, 179, 42, 0.14);
}
/* Blur lives on a pseudo-element: backdrop-filter on the header itself would
   make it the containing block for the fixed-position mobile nav drawer. */
.site-header::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header::before {
  content: "";
  display: block; height: 3px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 28px, transparent 28px 48px);
}
.site-header.is-scrolled { background: rgba(11, 11, 13, 0.96); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.brand img { width: 138px; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color 0.15s ease;
}
.nav-menu a:hover { color: var(--gold-bright); }
.nav-menu .nav-cta { color: var(--gold); }
.nav-close { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call { padding: 10px 18px; font-size: 1rem; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; border-radius: 2px; }
#nav-backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 98; display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 80% 0%, #1a1a20 0%, var(--ink) 55%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 1;
}
.hero-sub { color: var(--muted); font-size: 1.15rem; max-width: 520px; margin-top: 18px; }

.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 26px;
  padding: 10px 20px 10px 14px;
  border: 1.5px dashed rgba(240, 179, 42, 0.65);
  border-radius: 999px;
  background: rgba(240, 179, 42, 0.07);
  font-family: var(--font-cond);
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
}
.offer-pill strong { font-weight: 700; }
.offer-star { color: var(--gold); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; color: var(--muted); font-size: 0.98rem; }
.hero-trust li { display: flex; align-items: center; gap: 9px; }
.hero-trust li::before { content: "★"; color: var(--gold); font-size: 0.85rem; }

.hero-photo figure {
  position: relative;
  border-radius: var(--radius);
  transform: rotate(1.2deg);
}
.hero-photo figure::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid rgba(240, 179, 42, 0.5);
  border-radius: var(--radius);
  z-index: 0;
}
.hero-photo img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(11, 11, 13, 0.82);
  border: 1px solid rgba(240, 179, 42, 0.35);
  color: var(--text);
  font-family: var(--font-cond);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-photo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

/* ---------- Marquee ---------- */
.marquee {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  overflow: hidden;
  padding: 12px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: #161003;
  white-space: nowrap;
}
.marquee-track .star { font-size: 0.95rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.section-dark { background: var(--ink); }
.section-coal { background: var(--coal); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); position: relative; z-index: 1; }

.ghost-word {
  position: absolute;
  top: 6px;
  right: -8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 1;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 179, 42, 0.12);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 179, 42, 0.55);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}
.svc-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.svc-photo::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 80%);
}
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .svc-photo img { transform: scale(1.06); }
.svc-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.svc-body h3 { color: var(--text); }
.svc-body p { color: var(--muted); font-size: 0.97rem; flex: 1; }
.svc-body ul { display: grid; gap: 7px; margin-top: 6px; }
.svc-body li {
  font-family: var(--font-cond);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 9px;
}
.svc-body li::before { content: ""; width: 14px; height: 2px; background: var(--gold); flex: none; }

/* ---------- Before / After ---------- */
.ba-wrap { max-width: 680px; margin-inline: auto; position: relative; z-index: 1; }
.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.ba-img { width: 100%; height: auto; display: block; pointer-events: none; }
.ba-before-clip {
  position: absolute; inset: 0;
  width: 50%;
  overflow: hidden;
}
.ba-before-clip .ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left center;
}
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(240, 179, 42, 0.7);
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  color: #161003;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  animation: ba-invite 2.2s ease-in-out infinite;
}
/* Gentle pulse invites the drag; stops after first interaction */
.ba-slider.ba-touched .ba-handle { animation: none; }
@keyframes ba-invite {
  0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(240, 179, 42, 0.55); }
  50% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 14px rgba(240, 179, 42, 0); }
}
.ba-tag {
  position: absolute; top: 14px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding: 6px 13px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}
.ba-tag-before { left: 14px; background: rgba(11, 11, 13, 0.8); color: var(--text); border: 1px solid rgba(255,255,255,0.2); }
.ba-tag-after { right: 14px; background: var(--gold); color: #161003; }
.ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  z-index: 3;
}
.ba-caption {
  text-align: center;
  color: var(--muted);
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-top: 18px;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.process-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 50%; right: -20px;
  width: 20px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 9px);
}
.process-step:last-child::after { content: none; }
.step-num {
  display: block;
  font-size: 3.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  margin-bottom: 12px;
}
.process-step h3 { color: var(--text); }
.process-step p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ---------- Offer band ---------- */
.offer-band { position: relative; overflow: hidden; padding: clamp(70px, 9vw, 110px) 0; text-align: center; }
.offer-bg {
  position: absolute; inset: 0;
  background: url("/assets/images/gloss.webp") center 35% / cover no-repeat;
}
.offer-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(240, 179, 42, 0.93), rgba(224, 158, 24, 0.95));
}
.offer-band::before, .offer-band::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 14px; z-index: 2;
  background: repeating-linear-gradient(-45deg, var(--ink) 0 16px, var(--gold) 16px 32px);
}
.offer-band::before { top: 0; }
.offer-band::after { bottom: 0; }
.offer-inner { position: relative; z-index: 1; color: var(--ink); max-width: 760px; }
.offer-kicker {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 8px;
  color: rgba(11, 11, 13, 0.75);
}
.offer-inner h2 { font-size: clamp(2.6rem, 7vw, 4.4rem); color: var(--ink); }
.offer-big { font-size: 1.25em; }
.offer-inner p { color: rgba(11, 11, 13, 0.8); font-size: 1.12rem; max-width: 520px; margin-inline: auto; }
.offer-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }

/* ---------- About ---------- */
.section-paper { background: var(--paper); color: var(--ink-on-paper); }
.section-paper::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-photo { position: relative; }
.about-photo figure { position: relative; transform: rotate(-1.4deg); }
.about-photo img {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(24, 21, 15, 0.28);
  border: 6px solid #fff;
}
.about-photo figcaption {
  margin-top: 12px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  color: var(--muted-on-paper);
  text-align: center;
}
.about-badge {
  position: absolute;
  top: -22px; right: -10px;
  background: var(--ink);
  color: var(--gold-bright);
  border-radius: 50%;
  width: 118px; height: 118px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(6deg);
  box-shadow: 0 14px 34px rgba(24, 21, 15, 0.35);
  border: 2px solid var(--gold);
  z-index: 2;
}
.badge-num { font-size: 2.6rem; line-height: 1; }
.badge-label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--text);
}
.about-copy h2 { color: var(--ink-on-paper); }
.about-copy > p { color: #3f3a2f; max-width: 560px; }
.about-quote {
  border-left: 4px solid var(--gold);
  background: rgba(240, 179, 42, 0.1);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 26px 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.15;
  text-transform: none;
  color: var(--ink-on-paper);
  margin: 0 0 10px;
}
.about-quote cite {
  font-style: normal;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.92rem;
  color: var(--gold-deep);
}
.about-checks { display: grid; gap: 11px; }
.about-checks li { display: flex; gap: 12px; align-items: baseline; font-weight: 500; color: #2c2820; }
.about-checks li::before { content: "✓"; color: var(--gold-deep); font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.gallery-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  position: relative;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(11, 11, 13, 0.45));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-grid figure:hover::after { opacity: 1; }

/* ---------- Service area ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.areas-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.areas-chips li {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.98rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.areas-chips li:first-child { border-color: var(--gold); color: var(--gold-bright); }
.areas-chips li:hover { border-color: rgba(240, 179, 42, 0.6); }

.areas-radar { display: flex; justify-content: center; }
.radar-rings {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(240, 179, 42, 0.35);
}
.r1 { inset: 0; }
.r2 { inset: 17%; border-color: rgba(240, 179, 42, 0.45); }
.r3 { inset: 34%; border-color: rgba(240, 179, 42, 0.55); }
.radar-sweep {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(240, 179, 42, 0.22), transparent 22%);
  animation: sweep 6s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.radar-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  border: 1.5px solid var(--gold);
  color: var(--text);
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 9px 18px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 0 30px rgba(240, 179, 42, 0.25);
  white-space: nowrap;
}
.radar-star { color: var(--gold); }
.radar-label {
  position: absolute;
  bottom: 6%; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--coal);
  padding: 3px 12px;
  white-space: nowrap;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars { color: var(--gold); letter-spacing: 4px; font-size: 1.05rem; }
.review-card blockquote { color: var(--text); font-size: 1.02rem; line-height: 1.65; font-style: italic; flex: 1; }
.review-card figcaption {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.section-contact {
  background:
    radial-gradient(90% 70% at 15% 10%, #1b1b21 0%, transparent 60%),
    var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.contact-cards { display: grid; gap: 12px; margin-top: 28px; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { border-color: rgba(240, 179, 42, 0.6); transform: translateX(4px); }
.cc-label {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--muted);
}
.cc-value { font-weight: 600; font-size: 1.12rem; color: var(--gold-bright); overflow-wrap: anywhere; }

.contact-form-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
}
.contact-form-panel::before {
  content: "";
  position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
#contact-form-head h3 { color: var(--text); font-size: 1.7rem; }
#contact-form-head p { color: var(--muted); margin-bottom: 24px; }
.form-row { margin-bottom: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  display: block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 6px;
}
input, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px; /* iOS zoom prevention */
  color: var(--text);
  background: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  transition: border-color 0.2s ease;
}
input::placeholder, textarea::placeholder { color: #6a6558; }
input:focus, textarea:focus { outline: none; border-color: var(--gold); }
input.is-invalid, textarea.is-invalid { border-color: #e05a4e; }
.field-error { color: #ff8a7e; font-size: 0.88rem; margin-top: 5px; }
textarea { resize: vertical; min-height: 96px; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-submit { width: 100%; margin-top: 6px; }
.form-submit.is-loading { opacity: 0.7; pointer-events: none; }
.form-submit.is-loading span::after { content: "…"; }
.form-error { color: #ff8a7e; margin-top: 10px; min-height: 1.2em; font-size: 0.95rem; }
.form-note {
  margin: 12px 0 0;
  text-align: center;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--muted);
}
.form-disclosure {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.74rem;
  line-height: 1.5;
  color: #6a6558;
}
.form-disclosure a { color: #8a8478; }
/* Badge hidden per Google ToS: allowed once the text disclosure is shown */
.grecaptcha-badge { visibility: hidden; }
#form-success { text-align: center; padding: 30px 10px; }
.success-mark {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  color: #161003;
  font-size: 2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
#form-success h3 { color: var(--text); font-size: 1.8rem; }
#form-success p { color: var(--muted); max-width: 360px; margin: 0 auto 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #070708;
  border-top: 1px solid rgba(240, 179, 42, 0.16);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { width: 160px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 300px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.15s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-bright); }
.footer-base {
  border-top: 1px solid #1c1c20;
  padding: 18px 20px;
  text-align: center;
}
.footer-base p { margin: 0; color: #6a6558; font-size: 0.88rem; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 7, 8, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(240, 179, 42, 0.25);
  transform: translateY(0);
  transition: transform 0.25s ease;
}
.mobile-cta.is-hidden { transform: translateY(110%); }
.mobile-cta .btn { width: 100%; padding: 13px 10px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .process-step::after { content: none; }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-photo { order: 2; }
  .hero-photo img { max-height: 460px; }
  .about-grid, .areas-grid, .contact-grid { grid-template-columns: 1fr; }
  .areas-radar { order: 2; margin-top: 10px; }
  .process-grid { grid-template-columns: 1fr; max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 76px; } /* room for sticky CTA */
  .mobile-cta { display: grid; }
  .header-call span { display: none; }
  .header-call { padding: 11px; border-radius: 50%; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    background: var(--coal);
    border-left: 1px solid rgba(240, 179, 42, 0.25);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 76px 30px 30px;
    transform: translateX(105%);
    transition: transform 0.28s ease;
    z-index: 99;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu a { font-size: 1.3rem; padding: 10px 0; }
  .nav-close {
    display: block;
    position: absolute;
    top: 18px; right: 20px;
    background: none;
    border: 0;
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  /* Two-line eyebrows read cleaner without the dash on small phones */
  .hero .eyebrow-dash { display: none; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-photo { aspect-ratio: 16 / 9; }
  .hero-ctas .btn { width: 100%; }
  .offer-ctas .btn { width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .ghost-word { font-size: 4.6rem; opacity: 0.8; }
  .about-badge { width: 96px; height: 96px; top: -16px; right: 2px; }
  .badge-num { font-size: 2rem; }
}
