/* ==========================================================================
   Hat Furnace & Duct Cleaning — 2026 revamp
   Brand: true black + electric green (fleet livery), yellow secondary
   Dark theme throughout, per owner preference.
   No external dependencies — everything local.
   ========================================================================== */

@font-face {
  font-family: "Vladimir Script";
  src: url("../fonts/VLADIMIR.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playball";
  src: url("../fonts/Playball-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #000000;            /* pure black: header, hero, footer, bands */
  --ink-2: #0d0e0d;          /* raised dark surface */
  --ink-3: #212421;          /* borders on dark */
  --green: #46d420;          /* brand electric green */
  --green-bright: #5ef136;   /* hover / highlights */
  --green-deep: #2ea312;     /* pressed / subtle accents */
  --yellow: #ffc82e;         /* yellow-truck nod: badges, stars */
  --paper: #0a0b0a;          /* page background */
  --wash: #0c110b;           /* green-washed section background */
  --card: #131513;           /* card surface */
  --text: #e9ede4;
  --text-soft: #a9b1a2;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --container: 1120px;
  --header-h: 76px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.015em; color: #fff; }
h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h1, h2, h3 { text-wrap: balance; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.22rem; }
p  { margin: 0 0 1em; }

a { color: var(--green); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--green-bright); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tight { padding: clamp(40px, 6vw, 64px) 0; }
.section--dark {
  background:
    radial-gradient(900px 340px at 50% -10%, rgba(70, 212, 32, 0.07), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
}
.section--wash { background: var(--wash); }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.lead { font-size: 1.13rem; color: var(--text-soft); max-width: 62ch; }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--ink-3);
  color: var(--text-soft);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 34px; gap: 16px;
}
.topbar strong { color: var(--green); font-weight: 700; }
.topbar a { color: var(--text); text-decoration: none; display: inline-block; padding: 8px 6px; margin: -8px -6px; }
.topbar a:hover { color: var(--green-bright); }
.topbar__right { display: flex; gap: 18px; white-space: nowrap; }
@media (max-width: 640px) { .topbar__hours { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-3);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7); }

.nav {
  display: flex; align-items: center; gap: 28px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand__logo { height: 44px; width: auto; }

.nav__list { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  display: block; padding: 9px 13px; border-radius: 8px;
  color: var(--text); text-decoration: none; font-weight: 600; font-size: 0.95rem;
}
.nav__list a:hover { color: var(--green-bright); background: var(--ink-2); }
.nav__list a[aria-current="page"] { color: var(--green); }

.nav__cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--ink-3); border-radius: 8px;
  padding: 9px 11px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: #fff; margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Collapse at 1120px: below that the full nav + brand + CTA can't fit on one line */
@media (max-width: 1120px) {
  .nav { gap: 14px; }
  .nav-toggle { display: block; }
  /* a.nav__cta outranks the later .btn { display:inline-flex } rule */
  a.nav__cta { display: none; }
  .brand__logo { height: 36px; }
  .nav__list {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--ink-3);
    padding: 10px 16px 18px;
  }
  /* Only hide the menu when JS is available to open it — no-JS visitors get it expanded */
  .js .nav__list { display: none; }
  .js .nav__list.is-open { display: flex; }
  .nav__list a { padding: 13px 10px; font-size: 1.05rem; border-bottom: 1px solid var(--ink-2); }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--green { background: var(--green); color: #000; }
.btn--green:hover { background: var(--green-bright); color: #000; box-shadow: 0 8px 24px rgba(70, 212, 32, 0.35); }

/* Light pill — the high-contrast secondary action on dark surfaces */
.btn--dark { background: #eef2ea; color: #000; }
.btn--dark:hover { background: var(--green-bright); color: #000; }

.btn--ghost { border-color: var(--green); color: var(--green); background: transparent; }
.btn--ghost:hover { background: rgba(70, 212, 32, 0.12); color: var(--green-bright); }

.btn--ghost-light { border-color: #3a3f39; color: #fff; background: transparent; }
.btn--ghost-light:hover { border-color: var(--green); color: var(--green-bright); }

.btn--lg { padding: 16px 30px; font-size: 1.06rem; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: clamp(640px, 80vh, 900px);
}
/* Grid item + auto margins would shrink-to-fit; force full width so the
   container keeps its normal 1120px centered layout */
.hero > .container { width: 100%; }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 62%;
  filter: saturate(1.05);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.8) 42%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0) 40%);
}
.hero__inner {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0;
  max-width: 640px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero p { font-size: 1.15rem; color: #cdd6c8; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(70, 212, 32, 0.12);
  border: 1px solid rgba(70, 212, 32, 0.35);
  color: var(--green-bright);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
}
.badge--yellow {
  background: rgba(255, 200, 46, 0.1);
  border-color: rgba(255, 200, 46, 0.4);
  color: var(--yellow);
}

/* Trust bar under hero */
.trustbar { background: var(--ink-2); border-top: 1px solid var(--ink-3); border-bottom: 1px solid var(--ink-3); }
.trustbar .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; padding-block: 20px;
}
.trust {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); font-weight: 600; font-size: 0.92rem;
}
.trust svg { flex: none; }
.trust small { display: block; color: var(--text-soft); font-weight: 500; font-size: 0.78rem; }
@media (max-width: 860px) { .trustbar .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trustbar .container { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--ink-3);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 14px; }
.card p { color: var(--text-soft); margin-bottom: 0; }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(70, 212, 32, 0.12); color: var(--green);
}

.card--featured { border-top-color: var(--yellow); }

.card ul { margin: 12px 0 0; padding-left: 20px; color: var(--text-soft); }
.card ul li { margin-bottom: 6px; }

/* Split layout (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split__img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* Checklist */
.checklist { list-style: none; margin: 18px 0 0; padding: 0; }
.checklist li {
  position: relative; padding-left: 34px; margin-bottom: 12px; color: var(--text-soft);
}
.checklist li strong { color: #fff; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background-color: rgba(70, 212, 32, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2346d420' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* Numbered process steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  counter-increment: step;
  background: var(--card); border: 1px solid var(--ink-3); border-radius: var(--radius);
  padding: 26px 22px;
}
.step::before {
  content: "0" counter(step);
  display: block;
  font-size: 1.9rem; font-weight: 900; color: var(--green);
  margin-bottom: 10px; letter-spacing: 0.02em;
}
.step--plain::before { content: none; }
.step h3 { color: #fff; font-size: 1.05rem; }
.step p { color: var(--text-soft); font-size: 0.94rem; margin: 0; }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } }
.stat__num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; color: var(--green); line-height: 1; }
.stat__label { color: var(--text-soft); font-size: 0.92rem; margin-top: 8px; }

/* --------------------------------------------------------------------------
   Before / after comparison slider
   -------------------------------------------------------------------------- */

.ba {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  user-select: none;
}
.ba--wide { aspect-ratio: 16 / 10; }
.ba img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba__after { clip-path: inset(0 0 0 var(--ba-pos, 50%)); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%);
  width: 3px; background: var(--green); transform: translateX(-50%);
  pointer-events: none;
}
.ba__handle::after {
  content: "\2194";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #000;
  display: grid; place-items: center;
  font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
  touch-action: pan-y;
}
/* Visible keyboard focus for the invisible range input driving the slider */
.ba:focus-within { outline: 3px solid var(--green-bright); outline-offset: 3px; }
.ba__label {
  position: absolute; top: 14px; z-index: 2;
  padding: 5px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0, 0, 0, 0.78); color: #fff;
  pointer-events: none;
}
.ba__label--before { left: 14px; }
.ba__label--after { right: 14px; color: var(--green-bright); }

/* Slider card: slider + caption below */
.ba-card { margin: 0; }
.ba-card figcaption { padding: 12px 6px 0; color: var(--text-soft); font-size: 0.95rem; }
.ba-card figcaption strong { color: #fff; }

/* Before/after side-by-side pair cards (for pairs shot from different angles) */
.pair-card {
  background: var(--card); border: 1px solid var(--ink-3); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); margin: 0;
  border-top: 3px solid var(--green);
}
.pair-card__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--ink); }
.pair-card__half { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.pair-card__half img { width: 100%; height: 100%; object-fit: cover; }
.pair-chip {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0, 0, 0, 0.8); color: #fff;
}
.pair-chip--after { color: var(--green-bright); }
.pair-card figcaption { padding: 14px 18px; color: var(--text-soft); font-size: 0.95rem; }
.pair-card figcaption strong { color: #fff; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative; border: 1px solid var(--ink-3); padding: 0; cursor: zoom-in;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.045); }
.gallery-item:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 2px; }
.gallery-item figcaption, .gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
  color: #fff; font-size: 0.85rem; font-weight: 600; text-align: left;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  overscroll-behavior: contain; touch-action: none;
  display: none;
  align-items: center; justify-content: center;
  padding: 28px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw); max-height: 82vh;
  width: auto; height: auto;
  border-radius: 10px; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}
.lightbox__caption {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: #dfe7da; font-size: 0.95rem; text-align: center; max-width: 84vw;
  background: rgba(0, 0, 0, 0.78); padding: 8px 14px; border-radius: 10px;
}
.lightbox__btn {
  position: absolute; z-index: 2;
  background: var(--ink-2); color: #fff;
  border: 1px solid var(--ink-3); border-radius: 50%;
  width: 46px; height: 46px; font-size: 1.25rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
}
.lightbox__btn:hover { color: var(--green-bright); border-color: var(--green); }
.lightbox__btn { touch-action: manipulation; }
.lightbox__btn:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 2px; }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   Testimonials / reviews
   -------------------------------------------------------------------------- */

.quote-card {
  background: var(--card); border: 1px solid var(--ink-3); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
  border-top: 3px solid var(--green);
}
.quote-card__stars { color: var(--yellow); font-size: 1rem; letter-spacing: 3px; }
.quote-card blockquote { margin: 0; color: var(--text); font-size: 1.02rem; }
.quote-card figcaption { color: var(--text-soft); font-weight: 700; margin-top: auto; }
.quote-card figcaption::before { content: "— "; color: var(--green); }

/* Masonry wall for the full review set */
.review-wall { columns: 2; column-gap: 22px; }
@media (min-width: 1000px) { .review-wall { columns: 3; } }
@media (max-width: 640px) { .review-wall { columns: 1; } }
.review-wall .quote-card { break-inside: avoid; margin-bottom: 22px; }

/* Platform tag on a review card ("via Google", "via Facebook") */
.quote-card__source {
  display: inline-flex; align-items: center; gap: 7px;
  align-self: flex-start;
  padding: 3px 11px; border-radius: 999px;
  border: 1px solid var(--ink-3);
  color: var(--text-soft); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.quote-card__source b { color: var(--green); font-weight: 900; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  background:
    radial-gradient(900px 300px at 85% 120%, rgba(70, 212, 32, 0.16), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--ink-3);
}
.cta-band .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px; padding-block: clamp(44px, 6vw, 72px);
}
.cta-band h2 { color: #fff; margin: 0 0 6px; }
.cta-band p { margin: 0; color: var(--text-soft); }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.phone-big {
  font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 900; color: var(--green);
  text-decoration: none; white-space: nowrap;
}
.phone-big:hover { color: var(--green-bright); }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--card); border: 1px solid var(--ink-3);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 40px);
  display: flex; flex-direction: column;
}
/* Let the form fill the card and the details textarea absorb spare height,
   so the two contact columns bottom-align */
.form-card form { display: flex; flex-direction: column; flex: 1; }
.field--grow { flex: 1; display: flex; flex-direction: column; }
.field--grow textarea { flex: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: #fff; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #2b2f2a; border-radius: var(--radius-sm);
  font: inherit; color: var(--text); background: #0c0e0c;
}
.field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 44px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9b1a2' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.83rem; color: var(--text-soft); margin-top: 12px; }

.info-card {
  background: var(--ink); border: 1px solid var(--ink-3);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-lg);
}
.info-card h3 { color: #fff; }
.info-card a { color: var(--green-bright); }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--ink-3);
}
.info-list li:last-child { border-bottom: none; }
.info-list svg { flex: none; margin-top: 3px; color: var(--green); }
.info-list strong { display: block; color: #fff; font-size: 0.92rem; }
.info-list span { color: var(--text-soft); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */

.page-hero {
  background:
    radial-gradient(700px 240px at 12% 130%, rgba(70, 212, 32, 0.14), transparent 60%),
    var(--ink);
  padding: clamp(48px, 7vw, 84px) 0;
  border-bottom: 3px solid var(--green);
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: var(--text-soft); max-width: 62ch; margin: 0; font-size: 1.08rem; }
.breadcrumb { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 14px; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--green); text-decoration: none; display: inline-block; padding: 10px 8px; margin: -10px -8px; }
.breadcrumb a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--ink); color: var(--text-soft); border-top: 1px solid var(--ink-3); }
.site-footer .container { padding-block: clamp(44px, 6vw, 64px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h2 { color: #fff; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--text-soft); text-decoration: none; }
.site-footer li a { display: inline-block; padding-block: 8px; margin-block: -4px; }
.site-footer a:hover { color: var(--green-bright); }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid var(--ink-3); margin-top: 36px; padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 0.82rem;
}
.footer-bottom .tagline { color: var(--green); font-weight: 600; }

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */

/* Hidden state only applies once JS has tagged <html class="js">,
   so content stays visible with JavaScript disabled. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }
@media print { .js .reveal { opacity: 1 !important; transform: none !important; } }

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

/* Utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.maxw { max-width: 68ch; }
