/* ============================================================
   Plant Air Audit — Landing Page (v2: industrial-premium)
   Brand: charcoal #2a2a28, gold #C8A951, off-white #faf9f6
   ============================================================ */

:root {
  --bg: #faf9f6;
  --bg-alt: #f3f1ec;
  --ink: #1c1c1a;
  --ink-2: #2a2a28;
  --ink-3: #34342f;
  --ink-soft: #4a4946;
  --ink-mute: #6e6c66;
  --gold: #C8A951;
  --gold-deep: #a88c3d;
  --gold-soft: #e6d49a;
  --rule: #e3dfd4;
  --rule-dark: rgba(255,255,255,0.08);
  --shadow: 0 1px 2px rgba(28,28,26,.05), 0 8px 24px rgba(28,28,26,.08);
  --shadow-lg: 0 4px 12px rgba(28,28,26,.08), 0 30px 80px rgba(28,28,26,.18);
  --shadow-dark: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,169,81,0.18);
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; margin: 0 0 0.5em; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 6.4vw, 5.4rem); line-height: 0.98; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); line-height: 1.3; }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '//';
  color: var(--gold);
  opacity: 0.55;
}
.divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 28px;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 120ms ease, box-shadow 220ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(200,169,81,0.25);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 12px 32px rgba(200,169,81,0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn:active { transform: translateY(1px); }
.btn .arrow { font-size: 14px; transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}
.site-header.scrolled {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--rule);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.brand { display: flex; flex-direction: column; gap: 5px; }
.wordmark {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
  position: relative;
  padding-bottom: 7px;
  transition: color 240ms ease;
}
.wordmark::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--gold);
}
.site-header.scrolled .wordmark { color: var(--ink); }
.service-of {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.04em;
  transition: color 240ms ease;
}
.site-header.scrolled .service-of { color: var(--ink-mute); }
.service-of img { height: 18px; width: auto; opacity: 0.95; }
.service-of a { display: inline-flex; align-items: center; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  transition: color 240ms ease;
}
.site-header.scrolled .header-phone { color: var(--ink); }
.header-phone:hover { color: var(--gold) !important; }

.site-header .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.site-header .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.site-header.scrolled .btn-ghost {
  color: var(--ink);
  border-color: var(--ink);
}
.site-header.scrolled .btn-ghost:hover { background: var(--ink); color: #fff; }

/* ---------- Hero (dark, full-bleed) ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: clamp(96px, 11vw, 132px) 0 clamp(80px, 9vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
body.has-travel-banner .hero { padding-top: calc(var(--banner-height, 0px) + clamp(72px, 9vw, 108px)); }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(200, 169, 81, 0.18), transparent 65%),
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(200, 169, 81, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-copy h1 {
  color: #fff;
  max-width: 14ch;
}
.hero-copy h1 .accent { color: var(--gold); }
.hero-sub {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  margin: 16px 0 40px;
  line-height: 1.55;
}
.hero .eyebrow { color: var(--gold); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-cta .secondary {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  padding-left: 8px;
}
.hero-cta .secondary a {
  color: #fff;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.hero-cta .secondary a:hover { color: var(--gold); }

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 18px 0 0;
}
.hero-trust-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-trust img {
  height: 22px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  transition: opacity 200ms ease;
}
.hero-trust img.tall { height: 32px; max-width: 70px; }
.hero-trust img:hover { opacity: 1; }

/* Boar's Head: combine the B&W boar mark (native, so black oval blends into hero) with a serif wordmark below */
.hero-trust-bh {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.hero-trust-bh img {
  height: 26px;
  width: auto;
  filter: none;
  opacity: 0.78;
  transition: opacity 200ms ease;
}
.hero-trust-bh-name {
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.78);
  transition: color 200ms ease;
}
.hero-trust-bh:hover img { opacity: 1; }
.hero-trust-bh:hover .hero-trust-bh-name { color: #fff; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-dark);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Hero video card */
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  aspect-ratio: 1552 / 2080;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-dark);
}
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(200,169,81,0.35), transparent 60%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,169,81,0.4);
  border-radius: 4px;
  pointer-events: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(200,169,81,0.4);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
.hero-video-tag .live-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- Stats strip (dark, dramatic) ---------- */
.stats {
  background: var(--ink-2);
  color: #fff;
  padding: 72px 0;
  position: relative;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.stats .container { position: relative; }
.stats-eyebrow {
  text-align: center;
  margin-bottom: 48px;
  display: block;
}
.stats-eyebrow .eyebrow { color: rgba(255,255,255,0.55); }
.stats-eyebrow .eyebrow::before { color: rgba(255,255,255,0.35); }
.stats .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  text-align: left;
  padding: 8px 40px;
  border-left: 1px solid var(--rule-dark);
  position: relative;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.stat:first-child::before { left: 0; }
.stat:not(:first-child)::before { left: 40px; }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}
.stat .label {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  max-width: 28ch;
}

/* ---------- Process (light bg, dark inverted cards) ---------- */
.process { background: var(--bg); }
.process .header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.process .header-row p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0;
}
.process .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process .grid.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.step {
  background: var(--ink);
  color: #fff;
  border-top: 3px solid var(--gold);
  padding: 56px 36px 48px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.step::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(28,28,26,0.25);
}
.step .num {
  font-family: var(--serif);
  font-size: 5.5rem;
  color: var(--gold);
  line-height: 0.85;
  margin-bottom: 24px;
  display: block;
  position: relative;
  z-index: 1;
  letter-spacing: -0.04em;
}
.step h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.step p {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
.step .step-tag {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  z-index: 1;
}
.step-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,169,81,0.4);
  padding-bottom: 3px;
  transition: color 180ms ease, border-color 180ms ease;
}
.step-link:hover {
  color: #fff;
  border-color: var(--gold);
}

/* Report preview block (sample PDF) */
.report-preview {
  margin-top: 80px;
  background: var(--ink);
  color: #fff;
  border-top: 3px solid var(--gold);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.report-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}
.report-preview-image {
  position: relative;
  display: block;
  z-index: 1;
  transition: transform 280ms ease;
}
.report-preview-image:hover { transform: translateY(-4px); }
.report-preview-image img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,169,81,0.25);
}
.report-preview-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(28,28,26,0.92);
  color: var(--gold);
  padding: 6px 10px;
  border: 1px solid rgba(200,169,81,0.4);
}
.report-preview-content { position: relative; z-index: 1; }
.report-preview-content .eyebrow { color: var(--gold); }
.report-preview-content h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 22ch;
}
.report-preview-content p {
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 56ch;
}
.report-preview-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.report-preview-download {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}
.report-preview-download:hover {
  color: #fff;
  border-color: var(--gold);
}

/* ---------- Why us (DARK section) ---------- */
.why {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(200,169,81,0.10), transparent 65%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(200,169,81,0.06), transparent 70%);
  pointer-events: none;
}
.why::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 30%, transparent 100%);
}
.why .container { position: relative; z-index: 1; }
.why h2 { color: #fff; }
.why p { color: rgba(255,255,255,0.75); }
.why .layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: stretch;
}
.why .layout > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.why .layout > div:nth-child(2) > .cred-also { margin: 0; }
.why-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-top: 16px;
  transition: color 180ms ease, border-color 180ms ease;
}
.why-link:hover { color: var(--gold); }

/* Cred tile grid */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
}
.cred-tile {
  background: var(--ink);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 200ms ease;
}
.cred-tile:hover { background: var(--ink-2); }
.cred-tile .cred-mark {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.cred-tile .cred-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}

.cred-also {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Marquee logo strip — copied from eneroi.com (grayscale to color on hover) */
.marquee-strip {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--rule-dark);
}
.marquee-strip .strip-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  text-align: center;
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 60s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0;
  margin: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #fff;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 220ms ease, filter 220ms ease, border-color 220ms ease;
  height: 72px;
  min-width: 160px;
}
.marquee-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  border-color: var(--gold);
}
.marquee-item img {
  max-height: 48px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Service area ---------- */
.service-area { background: var(--bg); }
.service-area .layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.service-area .copy p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 50ch;
}
.service-area ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.service-area ul.state-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
}
.service-area li {
  font-size: 15.5px;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.service-area li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.15);
}
.map-wrap {
  background: var(--ink);
  border: 1px solid var(--ink-3);
  padding: 28px;
  aspect-ratio: 959 / 593;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.us-map {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.map-wrap svg { width: 100%; height: 100%; position: relative; z-index: 1; }
.map-corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  z-index: 2;
}
.map-corner.tl { top: 16px; left: 16px; }
.map-corner.br { bottom: 16px; right: 16px; }

/* ---------- Form section (dark) ---------- */
.lead {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
}
.lead::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,169,81,0.12), transparent 70%);
  pointer-events: none;
}
.lead .container { max-width: 820px; position: relative; z-index: 1; }
.lead h2 { color: #fff; }
.lead .lead-sub {
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  max-width: 50ch;
  font-size: 1.05rem;
}
.lead .divider { background: var(--gold); }

.form-card {
  background: var(--bg);
  color: var(--ink);
  padding: 36px 40px 32px;
  border-radius: 0;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.form-grid .full { grid-column: 1 / -1; }
.field-section {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 6px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field label .req { color: var(--gold-deep); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 10px 14px;
  width: 100%;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field textarea { min-height: 72px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.18);
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #c8514f; }
.error-msg { color: #c8514f; font-size: 13px; min-height: 0; margin-top: 0; }
.error-msg:not(:empty) { margin-top: 2px; }
.honeypot { position: absolute; left: -10000px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* Google Places Autocomplete element (web component). The shadow DOM
   honors prefers-color-scheme, so we force light mode and override every
   Material/MD3 color token both Google libraries are known to read. */
gmp-place-autocomplete,
gmp-place-autocomplete::part(input),
gmp-place-autocomplete::part(prediction-item) {
  color-scheme: light;
}
gmp-place-autocomplete {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  /* gmpx-* tokens (older variable scheme) */
  --gmpx-color-surface: #fff;
  --gmpx-color-surface-variant: var(--bg-alt);
  --gmpx-color-on-surface: var(--ink);
  --gmpx-color-on-surface-variant: var(--ink-soft);
  --gmpx-color-primary: var(--gold);
  --gmpx-color-outline: var(--rule);
  --gmpx-font-family-base: var(--sans);
  /* Material 3 tokens used by the dropdown/popover */
  --md-sys-color-surface: #fff;
  --md-sys-color-surface-container: #fff;
  --md-sys-color-surface-container-high: var(--bg-alt);
  --md-sys-color-surface-container-highest: var(--bg-alt);
  --md-sys-color-on-surface: var(--ink);
  --md-sys-color-on-surface-variant: var(--ink-soft);
  --md-sys-color-primary: var(--gold);
  --md-sys-color-outline: var(--rule);
  --md-sys-color-outline-variant: var(--rule);
}
gmp-place-autocomplete::part(input) {
  background: #fff;
  color: var(--ink);
}
/* Belt-and-suspenders: the dropdown sometimes renders into a top-layer
   popover attached to body. Force light tokens there too. */
:root {
  --gmpx-color-surface: #fff;
  --gmpx-color-on-surface: #1c1c1a;
  --md-sys-color-surface: #fff;
  --md-sys-color-surface-container: #fff;
  --md-sys-color-surface-container-high: #f3f1ec;
  --md-sys-color-on-surface: #1c1c1a;
  --md-sys-color-on-surface-variant: #4a4946;
}
.form-card .submit-row { margin-top: 20px; }
.form-card .btn { width: 100%; padding: 14px 28px; font-size: 16px; }
.form-meta {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #131311;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 40px;
  font-size: 14px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer .brand-block { color: rgba(255,255,255,0.85); }
.site-footer .brand-block .wordmark { color: #fff; }
.site-footer .brand-block .wordmark::after { background: var(--gold); }
.site-footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,0.65); margin: 0 0 8px; }
.site-footer a { transition: color 150ms ease; }
.site-footer a:hover { color: var(--gold); }
.site-footer .copy-row {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ---------- Thank you page ---------- */
.thanks {
  padding: 180px 0 120px;
  text-align: center;
  background: var(--bg);
}
.thanks .container { max-width: 680px; }
.thanks h1 { font-size: clamp(3rem, 6vw, 4.4rem); margin-bottom: 16px; }
.thanks .lede { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 64px; }
.thanks h2 { font-size: 1.4rem; margin-bottom: 28px; }
.thanks ol {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 auto 48px;
  max-width: 480px;
  counter-reset: step;
  display: grid;
  gap: 22px;
}
.thanks ol li {
  counter-increment: step;
  position: relative;
  padding-left: 50px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.thanks ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--serif);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--gold);
}
.thanks .urgent {
  margin-top: 8px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
  color: var(--ink-mute);
}
.thanks .urgent a { color: var(--ink); border-bottom: 1px solid var(--gold); }

/* ---------- Travel banner (slim, dismissible, above sticky nav) ---------- */
.travel-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #131311;
  color: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(200,169,81,0.32);
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.4;
}
.travel-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}
.travel-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.travel-banner-content {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: center;
  text-align: center;
}
.travel-banner-where {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.travel-banner-where::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(200,169,81,0.7);
}
.travel-banner-cta {
  color: #fff;
  border-bottom: 1px solid rgba(200,169,81,0.55);
  padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}
.travel-banner-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.travel-banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.travel-banner-close:hover {
  color: #fff;
  border-color: var(--gold);
  background: rgba(200,169,81,0.12);
}

/* Stack the sticky nav below the banner when it is visible */
body.has-travel-banner .site-header { top: var(--banner-height, 0); }


/* ---------- Sticky mobile CTA bar (mobile only) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background: rgba(19,19,17,0.96);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-top: 1px solid rgba(200,169,81,0.35);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
}
.sticky-cta .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
body.cta-hidden .sticky-cta { transform: translateY(120%); }
.sticky-cta { transition: transform 220ms ease; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stat:not(:first-child)::before { left: 32px; }
  .stat { padding: 8px 32px; }
  .why .layout { gap: 56px; }
  .service-area .layout { gap: 56px; }
  .process .grid.grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .step { padding: 44px 28px 36px; }
  .step .num { font-size: 4.6rem; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .hero { padding: 88px 0 64px; }
  body.has-travel-banner .hero { padding-top: calc(var(--banner-height, 0px) + 64px); }
  .hero-meta { margin-top: 24px; padding-top: 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-video-wrap { max-width: 300px; margin: 0 auto; }
  .hero-meta { flex-wrap: wrap; gap: 16px 24px; }
  .stats { padding: 56px 0; }
  .stats .grid { grid-template-columns: 1fr; gap: 0; }
  .stat { padding: 32px 0; border-left: none; border-top: 1px solid var(--rule-dark); }
  .stat:first-child { border-top: none; padding-top: 8px; }
  .stat:not(:first-child)::before { left: 0; }
  .process .header-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .process .grid,
  .process .grid.grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .report-preview {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 28px;
    margin-top: 56px;
  }
  .report-preview-image { max-width: 320px; margin: 0 auto; }
  .why .layout,
  .service-area .layout { grid-template-columns: 1fr; gap: 48px; }
  .service-area ul.state-list { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: 1fr; }
  .marquee-item { width: 150px; height: 64px; padding: 14px 20px; margin: 0 12px; }
  .marquee-item img { max-height: 32px; max-width: 110px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 36px 24px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .header-phone { display: none; }
  .site-header .container { padding-top: 16px; padding-bottom: 16px; }
  h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero { padding: 100px 0 56px; }
  body.has-travel-banner .hero { padding-top: calc(var(--banner-height, 0px) + 100px); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-cta .secondary { padding-left: 0; text-align: center; }
  .step { padding: 40px 28px 36px; }
  .step .num { font-size: 4.4rem; }
  .map-wrap { padding: 20px; }
  .form-card { padding: 28px 20px; }
  .stat { padding: 28px 0; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .travel-banner .container { padding-top: 8px; padding-bottom: 8px; gap: 8px; }
  .travel-banner { font-size: 12.5px; }
  .travel-banner-where { font-size: 10.5px; }
  .travel-banner-close { right: 10px; width: 24px; height: 24px; font-size: 12px; }
  .travel-banner-content { padding-right: 30px; }
}

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