/* =====================================================================
   Superior Turf — site.css
   Warm SoCal craftsman design system. Single stylesheet, no build step.
   ===================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var.woff2") format("woff2");
  font-weight: 300 640;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/ae8f02b3_inter-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #f5efe3;
  --paper-raised: #fcf8f0;
  --ink: #26221d;
  --ink-strong: #17140f;
  --olive: #47542f;
  --olive-deep: #333d22;
  --terracotta: #bb5a38;
  --terracotta-deep: #9e4a2d;
  --sand-line: #e3d8c4;
  --sand-line-strong: #d3c4a6;
  --stone: #7d7566;
  --white: #ffffff;

  --font-serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --wrap-narrow: 880px;
  --gutter: clamp(20px, 5vw, 40px);
  --band-y: clamp(56px, 9vw, 116px);
  --radius: 4px;
  --shadow-card: 0 1px 2px rgba(38, 34, 29, 0.06), 0 12px 30px rgba(38, 34, 29, 0.08);
  --shadow-header: 0 1px 0 var(--sand-line), 0 10px 30px rgba(38, 34, 29, 0.07);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* faint paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: var(--terracotta); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--terracotta-deep); }
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  color: var(--ink-strong);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 1.6rem + 3vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 1.35rem + 2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem); font-weight: 600; line-height: 1.25; }
p { text-wrap: pretty; }
strong { font-weight: 600; color: var(--ink-strong); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.9rem;
}
.lede {
  font-size: clamp(1.075rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink);
}
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head p { margin-top: 0.9rem; color: var(--stone); }
.u-center { text-align: center; margin-inline: auto; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.band { position: relative; z-index: 2; padding-block: var(--band-y); }
.band--raised { background: var(--paper-raised); border-block: 1px solid var(--sand-line); }
.band--dark { background: var(--olive-deep); color: #efe7d6; }
.band--dark h1, .band--dark h2, .band--dark h3 { color: #fbf7ec; }
.band--dark .eyebrow { color: #e6b79c; }
.band--dark a { color: #f0c3ab; }
.band--tight { padding-block: clamp(40px, 6vw, 72px); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--text-left { grid-template-columns: 5fr 6fr; }
.split--text-right { grid-template-columns: 6fr 5fr; }
.split--text-right .split__media { order: -1; }
@media (max-width: 860px) {
  .split, .split--text-left, .split--text-right { grid-template-columns: 1fr; }
  .split--text-right .split__media { order: 0; }
}
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--sand-line-strong);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
figure.framed { margin: 0; }
figure.framed figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--stone);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: transform 0.15s var(--ease), background-color 0.15s var(--ease),
    color 0.15s var(--ease), border-color 0.15s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.btn--primary:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); color: #fff; }
.btn--ghost { border-color: var(--olive); color: var(--olive); }
.btn--ghost:hover { background: rgba(71, 84, 47, 0.08); color: var(--olive); }
.btn--on-dark { border-color: rgba(255, 255, 255, 0.55); color: #fbf7ec; }
.btn--on-dark:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.btn--lg { padding: 1rem 1.85rem; font-size: 1.02rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Utility bar ---------- */
.utilitybar {
  background: var(--olive-deep);
  color: #e7ddc8;
  font-size: 0.82rem;
  position: relative;
  z-index: 60;
}
.utilitybar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 40px;
}
.utilitybar a { color: #f3e8d2; text-decoration: none; font-weight: 600; }
.utilitybar a:hover { color: #fff; }
.utilitybar__right { display: flex; gap: 1.4rem; align-items: center; }
.utilitybar__tag { color: #cbe0a8; font-weight: 600; letter-spacing: 0.02em; }
@media (max-width: 780px) { .utilitybar { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease),
    background-color 0.2s var(--ease);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--paper) 97%, transparent);
  box-shadow: var(--shadow-header);
  border-color: var(--sand-line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding-block: 0.6rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink-strong);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-right: auto;
  flex-shrink: 0;
}
.brand img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.brand span { white-space: nowrap; }

.nav__links { display: flex; align-items: center; gap: 0.1rem; margin-left: auto; }
.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.58rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}
.nav__links a:hover { background: rgba(71, 84, 47, 0.09); color: var(--ink-strong); }
.nav__links a.is-current { color: var(--terracotta); font-weight: 600; }

.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
.nav__phone {
  font-weight: 700;
  color: var(--olive);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--olive-deep); }

/* dropdown */
.nav__drop { position: relative; }
.nav__drop-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--sand-line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 6px;
  display: none;
  flex-direction: column;
}
.nav__drop:hover .nav__drop-panel,
.nav__drop.is-open .nav__drop-panel { display: flex; }
.nav__drop-panel a { font-size: 0.9rem; padding: 0.6rem 0.75rem; }

/* mobile nav */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--sand-line-strong);
  border-radius: var(--radius);
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--ink-strong);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1200px) {
  .nav__phone { display: none; }
}
@media (max-width: 1040px) {
  /* backdrop-filter makes the header a containing block for position:fixed
     children, which would trap the slide-in drawer. Drop it on mobile. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav__toggle { display: block; order: 3; position: relative; z-index: 62; }
  .nav__cta .btn { display: none; }
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(23, 20, 15, 0.4);
  }
  .nav__links {
    margin-left: 0;
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 60;
    width: min(360px, 84vw);
    background: var(--paper-raised);
    border-left: 1px solid var(--sand-line-strong);
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 90px 20px 40px;
    transform: translateX(102%);
    transition: transform 0.28s var(--ease);
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(38, 34, 29, 0.15);
  }
  body.nav-open .nav__links { transform: translateX(0); }
  .nav__links a { padding: 0.85rem 0.75rem; font-size: 1rem; border-bottom: 1px solid var(--sand-line); }
  .nav__drop-panel {
    position: static;
    display: flex;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 0.75rem;
    background: transparent;
  }
  .nav__drop-panel a { border-bottom: 1px solid var(--sand-line); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fbf7ec;
  isolation: isolate;
}
.hero--page { min-height: auto; padding-block: clamp(48px, 8vw, 96px); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
/* Left-weighted scrim: keeps white text readable over the left column,
   lets the right of the photo (where the worker is) stay bright and visible. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(23, 20, 15, 0.78) 0%,
      rgba(23, 20, 15, 0.55) 26%,
      rgba(23, 20, 15, 0.18) 52%,
      rgba(23, 20, 15, 0.02) 78%),
    linear-gradient(180deg,
      rgba(23, 20, 15, 0) 60%,
      rgba(23, 20, 15, 0.28) 100%);
}
@media (max-width: 720px) {
  .hero__media img { object-position: 68% center; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(23,20,15,0.35) 0%, rgba(23,20,15,0.72) 100%);
  }
}
.hero__inner { padding-block: clamp(3rem, 8vw, 6rem); max-width: 40rem; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: #e9bda3; }
.hero__lede { margin-top: 1.1rem; color: rgba(255, 255, 255, 0.9); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem); }
.hero .btn-row { margin-top: 1.9rem; }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 1.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}
.hero__chips span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__chips span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #cbe0a8; }

/* page hero (interior) */
.page-hero { background: var(--paper-raised); border-bottom: 1px solid var(--sand-line); position: relative; z-index: 2; }
.page-hero .wrap { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .page-hero__grid { grid-template-columns: 1fr; } }
.page-hero__lede { margin-top: 1.1rem; }
.page-hero .btn-row { margin-top: 1.6rem; }
.proof-panel {
  background: var(--white);
  border: 1px solid var(--sand-line-strong);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.proof-panel h2 { font-size: 1.05rem; margin-bottom: 1rem; }
.proof-panel dl { display: grid; gap: 1rem; }
.proof-panel dt {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 600;
}
.proof-panel dd { margin: 0.2rem 0 0; font-size: 0.92rem; color: var(--stone); }

/* breadcrumb */
.breadcrumb { font-size: 0.82rem; color: var(--stone); margin-bottom: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.breadcrumb a { color: var(--stone); text-decoration: none; }
.breadcrumb a:hover { color: var(--terracotta); }

/* ---------- Quick estimate bar ---------- */
.quickbar { position: relative; z-index: 3; margin-top: calc(-1 * clamp(28px, 5vw, 52px)); }
.quickbar__inner {
  background: var(--white);
  border: 1px solid var(--sand-line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
}
.quickbar form { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 0.85rem; align-items: end; }
@media (max-width: 860px) { .quickbar form { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .quickbar form { grid-template-columns: 1fr; } }
.quickbar__tag {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
}
.field { display: grid; gap: 0.3rem; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--ink-strong); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--sand-line-strong);
  border-radius: 2px;
  padding: 0.7rem 0.8rem;
  background: var(--paper-raised);
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--olive);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.quickbar .btn { width: 100%; justify-content: center; height: 100%; }

/* ---------- Service / feature cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--sand-line-strong);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card__icon { width: 40px; height: 40px; color: var(--olive); }
.card__icon svg { width: 100%; height: 100%; }
.card h3 a { text-decoration: none; color: inherit; }
.card p { color: var(--stone); font-size: 0.95rem; }
.card__more { margin-top: auto; font-weight: 600; font-size: 0.9rem; color: var(--terracotta); text-decoration: none; }
.card--feature { padding: 0; overflow: hidden; }
.card--feature img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.card--feature .card__body { padding: clamp(1.3rem, 3vw, 1.8rem); display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }

/* numbered steps */
.steps { counter-reset: step; display: grid; gap: clamp(1.4rem, 3vw, 2.2rem); }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; }
.step__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
  min-width: 2.4ch;
}
.step h3 { margin-bottom: 0.3rem; }
.step p { color: var(--stone); font-size: 0.95rem; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--olive);
  color: #f2ead8;
  position: relative;
  z-index: 2;
}
.trust .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.2rem;
  padding-block: 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust span::before { content: ""; width: 7px; height: 7px; background: #cbe0a8; border-radius: 50%; }

/* ---------- Owner band ---------- */
.owner__sig { margin-top: 1.5rem; }
.owner__sig strong { display: block; font-family: var(--font-serif); font-size: 1.15rem; }
.owner__sig span { color: var(--stone); font-size: 0.88rem; }

/* ---------- Results / gallery strip ---------- */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 860px) { .results { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .results { grid-template-columns: 1fr; } }
.results figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--sand-line-strong); }
.results img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.results figcaption {
  position: absolute;
  left: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(23, 20, 15, 0.78));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 1.6rem 0.9rem 0.7rem;
  width: 100%;
}

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white);
  border: 1px solid var(--sand-line-strong);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--ink-strong);
}
.quote blockquote::before { content: "\201C"; color: var(--terracotta); margin-right: 0.1rem; }
.quote figcaption { font-size: 0.86rem; color: var(--stone); margin-top: auto; }
.quote figcaption strong { color: var(--ink-strong); }
.quote__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  background: rgba(71, 84, 47, 0.09);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; } }
.town-list { columns: 2; column-gap: 2rem; list-style: none; padding: 0; }
.town-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--sand-line); break-inside: avoid; }
.town-list a { text-decoration: none; color: var(--ink); font-weight: 500; }
.town-list a:hover { color: var(--terracotta); }
.area-grid img { border-radius: var(--radius); border: 1px solid var(--sand-line-strong); width: 100%; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.75rem; max-width: 52rem; }
.faq details {
  border: 1px solid var(--sand-line-strong);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 1.1rem;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 0;
  font-weight: 600;
  color: var(--ink-strong);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > p { padding: 0 0 1.1rem; color: var(--stone); font-size: 0.96rem; }
.faq__group-title { margin: 2rem 0 0.9rem; font-size: 1.1rem; }
.faq__group-title:first-child { margin-top: 0; }

/* ---------- Forms (full) ---------- */
.formcard {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--sand-line-strong);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-card);
}
.formcard .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.formcard .form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .formcard .form-grid { grid-template-columns: 1fr; } }
.formcard .btn { width: 100%; justify-content: center; margin-top: 0.3rem; }
.form-note { font-size: 0.82rem; color: var(--stone); margin-top: 0.9rem; }
.captcha-row { display: flex; align-items: center; gap: 0.9rem; }
.captcha-row img { border-radius: 2px; border: 1px solid var(--sand-line-strong); cursor: pointer; }
.form-status { border-radius: var(--radius); padding: 0.9rem 1rem; font-weight: 600; font-size: 0.92rem; }
.form-status:empty { display: none; }
.contact-methods { display: grid; gap: 1.4rem; align-content: start; }
.contact-methods .method { border-left: 3px solid var(--terracotta); padding-left: 1rem; }
.contact-methods .method h3 { font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); margin-bottom: 0.25rem; }
.contact-methods .method p { font-size: 1.05rem; }
.contact-methods .method a { font-weight: 700; text-decoration: none; }

/* honeypot */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- CTA band ---------- */
.cta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-band__copy { max-width: 40rem; }
.cta-band__copy p { margin-top: 0.6rem; color: rgba(255,255,255,0.82); }

/* ---------- Article / prose ---------- */
.prose { max-width: 44rem; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.4rem; font-size: clamp(1.5rem, 1.3rem + 1vw, 1.9rem); }
.prose h3 { margin-top: 1.8rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: 0.4rem; }
.prose img { border-radius: var(--radius); border: 1px solid var(--sand-line-strong); margin-block: 1.8rem; }
.prose blockquote {
  border-left: 3px solid var(--terracotta);
  padding-left: 1.2rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink-strong);
}
.article-meta { font-size: 0.85rem; color: var(--stone); letter-spacing: 0.03em; text-transform: uppercase; }
.aside-box {
  background: var(--paper-raised);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 1.4rem;
  margin-top: 2.4rem;
}
.aside-box h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.aside-box a { display: inline-block; margin-right: 1rem; font-weight: 600; font-size: 0.9rem; }

/* related cards */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.related-card {
  display: block;
  border: 1px solid var(--sand-line-strong);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); color: inherit; }
.related-card__kicker { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stone); }
.related-card h3 { margin: 0.5rem 0 0.7rem; font-size: 1.05rem; }
.related-card span.more { font-size: 0.85rem; font-weight: 600; color: var(--terracotta); }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-deep); color: #d9cdb4; position: relative; z-index: 2; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer a { color: #e9ddc4; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand span.name { font-family: var(--font-serif); font-size: 1.2rem; color: #fbf7ec; font-weight: 600; }
.footer-brand p { margin-top: 0.8rem; font-size: 0.9rem; line-height: 1.6; max-width: 34ch; }
.footer-brand .phone { margin-top: 1rem; font-size: 1.05rem; font-weight: 700; }
.footer-brand .footer-social { margin-top: 1.05rem; }
.footer-social a { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; }
.footer-social svg { width: 1.2rem; height: 1.2rem; fill: currentColor; }
.footer-col h2 { font-family: var(--font-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: #b9c79a; margin-bottom: 0.9rem; }
.footer-col a { display: block; padding: 0.32rem 0; font-size: 0.9rem; }
.footer-bottom {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #a99f88;
}

/* ---------- Mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 940px) {
  .callbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 45;
    border-top: 1px solid var(--sand-line-strong);
  }
  .callbar a {
    text-align: center;
    padding: 0.9rem 0.5rem;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
  }
  .callbar a:first-child { background: var(--olive); color: #fff; }
  .callbar a:last-child { background: var(--terracotta); color: #fff; }
  body { padding-bottom: 56px; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  z-index: 100;
  background: var(--terracotta);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.15s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Helpers ---------- */
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1.1rem; }
.muted { color: var(--stone); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
