/* ============================================================
   ARROW INVESTMENTS OHIO — Heritage-Modern Land Brand
   Design system: parchment + forest ink + refined gold,
   topographic survey-line motif, Fraunces + Hanken Grotesk.
   ============================================================ */

/* Self-hosted fonts (latin subset, woff2) — no third-party request, no render-blocking @import */
@font-face{font-family:'Hanken Grotesk';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/hankengrotesk-400.woff2) format('woff2');}
@font-face{font-family:'Hanken Grotesk';font-style:normal;font-weight:500;font-display:swap;src:url(../fonts/hankengrotesk-500.woff2) format('woff2');}
@font-face{font-family:'Hanken Grotesk';font-style:normal;font-weight:600;font-display:swap;src:url(../fonts/hankengrotesk-600.woff2) format('woff2');}
@font-face{font-family:'Hanken Grotesk';font-style:normal;font-weight:700;font-display:swap;src:url(../fonts/hankengrotesk-700.woff2) format('woff2');}
@font-face{font-family:'Libre Caslon Display';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/librecaslondisplay-400.woff2) format('woff2');}
@font-face{font-family:'Libre Caslon Text';font-style:italic;font-weight:400;font-display:swap;src:url(../fonts/librecaslontext-400-italic.woff2) format('woff2');}
@font-face{font-family:'Libre Caslon Text';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/librecaslontext-400.woff2) format('woff2');}
@font-face{font-family:'Libre Caslon Text';font-style:normal;font-weight:700;font-display:swap;src:url(../fonts/librecaslontext-700.woff2) format('woff2');}

:root {
  /* Palette */
  --parchment:   #F6F1E7;   /* warm page base */
  --parchment-2: #EFE8D9;   /* slightly deeper card / alt section */
  --cream:       #FBF8F1;
  --ink:         #1B1E16;   /* near-black forest */
  --ink-2:       #2A2E22;
  --forest:      #2E3A24;   /* deep land green */
  --forest-2:    #3C4A2E;
  --moss:        #6B7A4F;
  --gold:        #C2901A;   /* refined brand gold */
  --gold-deep:   #A9760F;
  --amber:       #E09900;   /* brand amber */
  --gold-soft:   #E8D6A8;
  --line:        rgba(27,30,22,0.12);
  --line-strong: rgba(27,30,22,0.22);
  --muted:       #5C5A4E;

  /* Type */
  --display: 'Libre Caslon Display', 'Georgia', 'Times New Roman', serif;
  --serif:   'Libre Caslon Text', 'Georgia', serif;
  --body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(27,30,22,.06), 0 4px 14px rgba(27,30,22,.05);
  --shadow-md: 0 6px 24px rgba(27,30,22,.10), 0 2px 6px rgba(27,30,22,.06);
  --shadow-lg: 0 24px 60px rgba(27,30,22,.18), 0 8px 24px rgba(27,30,22,.10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 700; line-height: 1.1; margin: 0; letter-spacing: 0; }
/* Large editorial display uses the high-contrast Caslon Display cut (weight 400 only) */
.h-xl, .h-lg, .hero h1, .step__num, .trustbar__num, .prose h2, .cta-band h2 {
  font-family: var(--display); font-weight: 400; letter-spacing: -0.005em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* Topographic survey-line motif (SVG data-uri), used as section atmosphere */
:root {
  --topo: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1100' height='700' viewBox='0 0 1100 700'%3E%3Cg fill='none' stroke='%231B1E16' stroke-opacity='0.05' stroke-width='1.5'%3E%3Cpath d='M-50 120 C 200 60 380 180 560 130 C 760 75 940 200 1160 150'/%3E%3Cpath d='M-50 200 C 220 150 400 250 580 210 C 780 165 950 270 1160 230'/%3E%3Cpath d='M-50 290 C 240 240 420 330 600 300 C 800 268 960 350 1160 320'/%3E%3Cpath d='M-50 390 C 200 350 420 420 600 400 C 820 378 980 440 1160 420'/%3E%3Cpath d='M-50 490 C 230 450 410 520 600 500 C 810 478 980 540 1160 520'/%3E%3Cpath d='M-50 590 C 210 560 400 610 600 600 C 820 590 980 630 1160 615'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }

/* Eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body);
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.kicker.center { justify-content: center; }
.kicker.center::after { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }

.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 60ch; }
.eyebrow-num { font-family: var(--display); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1.02em 1.7em; border-radius: 100px; border: 1.5px solid transparent;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  cursor: pointer; line-height: 1; white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--gold { background: linear-gradient(180deg, var(--amber), var(--gold-deep)); color: #fff; box-shadow: 0 8px 22px rgba(169,118,15,.35); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(169,118,15,.42); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(27,30,22,.04); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 1.15em 2em; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink); color: var(--cream);
  font-size: .82rem; letter-spacing: .02em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 9px; }
.topbar__msg { display: flex; align-items: center; gap: 18px; color: rgba(251,248,241,.85); }
.topbar__msg span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__msg .dot { color: var(--gold); }
.topbar__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff; white-space: nowrap; }
.topbar__phone svg { width: 15px; height: 15px; flex: none; }
.topbar__phone:hover { color: var(--gold-soft); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,241,231,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.header.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(246,241,231,.94); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name b { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; letter-spacing: -.01em; }
.brand__name small { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--ink-2); position: relative; padding-block: 6px; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav a:hover::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .98rem; }
.header__phone svg { width: 18px; height: 18px; color: var(--gold-deep); }

.nav__cta { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 1px solid var(--line-strong); border-radius: 10px; }
.burger span { width: 20px; height: 2px; background: var(--ink); transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(52px, 7vw, 96px); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,23,15,.92) 0%, rgba(20,23,15,.78) 38%, rgba(20,23,15,.30) 72%, rgba(20,23,15,.12) 100%);
}
.hero__topo { position: absolute; inset: 0; z-index: 1; background-image: var(--topo); background-size: 1100px; opacity: .5; mix-blend-mode: overlay; }
.hero .wrap { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__copy { color: var(--cream); max-width: 38ch; }
.hero .kicker { color: var(--gold-soft); }
.hero .kicker::before { background: var(--gold); }
.hero h1 { color: #fff; margin: 18px 0 0; font-weight: 400; line-height: 1.04; }
.hero h1 .accent { font-style: italic; color: var(--gold-soft); }
.hero__sub { color: rgba(251,248,241,.86); font-size: clamp(1.05rem, 1.5vw, 1.2rem); margin-top: 22px; max-width: 44ch; }
.hero__trust { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.hero__trust li { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 500; color: rgba(251,248,241,.92); }
.hero__trust svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* Hero form card */
.offer-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.4vw, 34px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
  position: relative;
}
.offer-card__badge {
  position: absolute; top: -16px; right: 26px;
  background: linear-gradient(180deg, var(--amber), var(--gold-deep)); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 100px; box-shadow: 0 6px 16px rgba(169,118,15,.4);
}
.offer-card h2 { font-size: 1.5rem; }
.offer-card__note { font-size: .9rem; color: var(--muted); margin: 6px 0 18px; }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line-strong); border-radius: 11px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194,144,26,.16); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-fine { font-size: .76rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
.form-fine svg { width: 13px; height: 13px; vertical-align: -2px; color: var(--moss); }

/* ---------- Trust strip ---------- */
.trustbar { background: var(--ink); color: var(--cream); border-top: 2px solid var(--gold); }
.trustbar .wrap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding-block: 40px; }
.trustbar__item { text-align: center; padding: 6px 10px; position: relative; }
.trustbar__item + .trustbar__item::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: rgba(251,248,241,.14); }
.trustbar__num { font-family: var(--display); font-size: clamp(2rem, 3vw, 2.9rem); font-weight: 400; color: #fff; line-height: 1; }
.trustbar__num .u { color: var(--gold); font-family: var(--body); font-weight: 600; font-size: .5em; vertical-align: .35em; margin-left: 1px; }
.trustbar__label { font-size: .76rem; color: rgba(251,248,241,.66); margin-top: 12px; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- Section heading block ---------- */
.section-head { max-width: 56ch; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 16px; }

/* atmosphere bg for alt sections */
.bg-alt { background: var(--parchment-2); }
.bg-topo::before { content: ""; position: absolute; inset: 0; background-image: var(--topo); background-size: 1100px; opacity: .6; pointer-events: none; }
.bg-topo > .wrap { position: relative; z-index: 1; }

/* ---------- Steps (asymmetric editorial) ---------- */
.steps-wrap { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.steps-intro { position: sticky; top: 110px; }
.steps { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }
.step { display: grid; grid-template-columns: auto 1fr; gap: clamp(22px, 3vw, 44px); align-items: start; padding: clamp(24px, 3vw, 34px) clamp(16px, 1.8vw, 24px); border-top: 1px solid var(--line); border-radius: 16px; transition: background .3s var(--ease), box-shadow .3s var(--ease); }
.step:first-child { border-top: none; }
.step:hover { background: rgba(194, 144, 26, 0.08); box-shadow: 0 8px 30px rgba(27,30,22,.06); }
.step__num { font-size: clamp(2.6rem, 4vw, 3.7rem); color: var(--gold); line-height: .9; transform-origin: left center; transition: transform .4s var(--ease), color .3s var(--ease); }
.step__body { transition: transform .4s var(--ease); }
.step__body h3 { font-size: clamp(1.3rem, 1.9vw, 1.55rem); margin-bottom: 10px; transition: color .3s var(--ease); }
.step__body p { color: var(--muted); font-size: 1rem; margin: 0; max-width: 46ch; }
/* hover: highlight the row, grow + deepen the numeral, slide the text */
.step:hover .step__num { transform: scale(1.12); color: var(--gold-deep); }
.step:hover .step__body { transform: translateX(10px); }
.step:hover .step__body h3 { color: var(--gold-deep); }
@media (prefers-reduced-motion: reduce) {
  .step:hover .step__num, .step:hover .step__body { transform: none; }
}

/* ---------- Why-choose carousel (Swiper — smooth eased snap) ---------- */
.whyCarousel { margin-top: 54px; width: 100%; overflow: hidden; }
.whyCarousel .swiper-wrapper { align-items: stretch; }
.fcard.swiper-slide { width: clamp(340px, 44vw, 660px); height: auto; display: flex; flex-direction: column; }
.fcard__img { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); background: var(--parchment-2); }
.fcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.fcard:hover .fcard__img img { transform: scale(1.045); }
.fcard__body { padding: 24px 4px 0; }
.fcard__head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line-strong); }
.fcard__head h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
.fcard__meta { flex: none; font-family: var(--serif); font-weight: 700; font-size: 1rem; letter-spacing: .12em; color: var(--gold-deep); }
.fcard p { color: var(--muted); font-size: 1.02rem; margin: 0; max-width: 46ch; }

/* carousel footer: Swiper scrollbar (progress) + arrows */
.carousel-foot { display: flex; align-items: center; gap: 32px; margin-top: 44px; }
.swiper-scrollbar.whyScrollbar { position: static; flex: 1; width: auto; height: 3px; background: var(--line-strong); border-radius: 4px; }
.whyScrollbar .swiper-scrollbar-drag { background: var(--gold-deep); border-radius: 4px; height: 100%; cursor: grab; }
.carousel-nav { display: flex; gap: 12px; flex: none; }
.car-btn { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: transparent; color: var(--ink); display: grid; place-items: center; transition: background .25s var(--ease), color .25s, border-color .25s, opacity .25s; }
.car-btn svg { width: 22px; height: 22px; }
.car-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.car-btn.swiper-button-disabled { opacity: .28; cursor: default; pointer-events: none; }

/* ---------- Split: types of land + about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.checklist { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 18px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; font-weight: 500; padding: 13px 0; border-bottom: 1px solid var(--line); }
.checklist li:first-child { border-top: 1px solid var(--line); }
.checklist svg { width: 19px; height: 19px; color: var(--gold-deep); flex: none; }

.media-frame { position: relative; }
.media-frame img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: auto; display: block; }
.media-frame::before { content: ""; position: absolute; inset: -14px -14px 18px 18px; border: 1.5px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; }

/* About / family */
.about { position: relative; overflow: hidden; }
.about__quote {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.5; font-weight: 400;
  color: var(--ink); font-style: italic; margin-top: 24px; text-wrap: pretty;
}
.about__quote .mark { color: var(--gold); font-style: normal; }
.about__sig { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.about__sig b { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; }
.about__sig span { color: var(--muted); font-size: .9rem; }

/* ---------- Comparison table ---------- */
.compare { margin-top: 50px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.compare__row { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr); align-items: stretch; }
.compare__row + .compare__row { border-top: 1px solid var(--line); }
.compare__cell { padding: 18px 22px; display: flex; align-items: flex-start; gap: 10px; font-size: .98rem; line-height: 1.4; hyphens: none; background: var(--cream); }
.compare__cell svg { margin-top: 2px; }
.compare__cell--label { font-weight: 600; background: var(--parchment-2); }
.compare__cell--arrow { background: #fbf6e9; font-weight: 600; }
.compare__head { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; }
.compare__head--arrow { color: var(--gold-deep); display: flex; flex-direction: column; gap: 2px; }
.compare__head small { font-family: var(--body); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.compare__cell svg { width: 18px; height: 18px; flex: none; }
.ic-yes { color: #4f7d2e; }
.ic-no { color: #b25a3a; }

/* ---------- Areas served ---------- */
.counties { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; margin-top: 44px; background: var(--line); border: 1px solid var(--line); }
.county-link {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 19px 20px; background: var(--cream);
  font-family: var(--serif); font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em;
  transition: background .25s var(--ease), color .25s; color: var(--ink);
}
.county-link:hover { background: var(--ink); color: #fff; }
.county-link:hover .arr { transform: translateX(4px); color: var(--gold); }
.arr { transition: transform .25s, color .25s; color: var(--gold-deep); font-family: var(--body); }
.county-link--cta { background: var(--ink); color: #fff; }
.county-link--cta .arr { color: var(--gold); }
.county-link--cta:hover { background: var(--forest); color: #fff; }

/* Collapsible counties (mobile) */
.counties-more { display: none; margin-top: 20px; }
.counties-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px 22px; border: 1.5px solid var(--line-strong); border-radius: 100px; background: var(--cream); font-family: var(--body); font-weight: 700; font-size: .95rem; color: var(--ink); cursor: pointer; transition: border-color .2s, background .2s; }
.counties-toggle:hover { border-color: var(--ink); background: var(--parchment-2); }
.counties-toggle__chev { width: 18px; height: 18px; color: var(--gold-deep); transition: transform .3s var(--ease); }
.counties-toggle.is-open .counties-toggle__chev { transform: rotate(180deg); }
@media (max-width: 860px) {
  .counties.is-collapsed .county-link:nth-child(n+9) { display: none; }
  .counties-more { display: flex; justify-content: center; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-top: 44px; }
.faq__item { border-bottom: 1px solid var(--line-strong); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 24px 48px 24px 0; position: relative; font-family: var(--serif); font-size: clamp(1.08rem, 1.7vw, 1.3rem); font-weight: 700; color: var(--ink); }
.faq__q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--gold-deep); font-family: var(--body); font-weight: 400; transition: transform .3s; }
.faq__item.open .faq__q::after { content: "−"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 48px 26px 0; color: var(--muted); font-size: 1rem; }
.faq__item.open .faq__a { max-height: 340px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--forest); color: var(--cream); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; opacity: .22; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background-image: var(--topo); background-size: 1100px; opacity: .4; mix-blend-mode: soft-light; z-index: 1; }
.cta-band .wrap { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(251,248,241,.85); max-width: 54ch; margin-inline: auto; margin-top: 16px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta-band__phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: #fff; }
.cta-band__phone svg { color: var(--gold); width: 24px; height: 24px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(251,248,241,.72); padding-block: 64px 30px; font-size: .92rem; }
.footer a:hover { color: var(--gold-soft); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand .brand__name b { color: #fff; }
.footer__brand p { margin-top: 16px; max-width: 34ch; }
.footer__col h4 { font-family: var(--body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.footer__col li { margin-bottom: 10px; }
.footer__contact li { display: flex; gap: 10px; margin-bottom: 13px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(251,248,241,.12); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: rgba(251,248,241,.5); }

/* ---------- Breadcrumb (county pages) ---------- */
.crumb { font-size: .85rem; color: rgba(251,248,241,.7); display: flex; gap: 9px; align-items: center; }
.crumb a:hover { color: var(--gold-soft); }
.crumb svg { width: 13px; height: 13px; opacity: .6; }

/* prose for long-form county/blog content */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.3rem; margin: 1.4em 0 .4em; }
.prose p { color: #43463c; margin-bottom: 1.1em; }
.prose ul { margin: 0 0 1.3em; }
.prose ul li { display: flex; gap: 11px; margin-bottom: 9px; }
.prose ul li::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); margin-top: 9px; flex: none; transform: rotate(45deg); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Mobile ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 56ch; }
  .offer-card { max-width: 520px; }
  .features { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .counties { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .header.nav-open .nav { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--cream); padding: 10px var(--gutter) 22px; box-shadow: var(--shadow-md); border-top: 1px solid var(--line); }
  .header.nav-open .nav a { padding: 16px 2px; border-bottom: 1px solid var(--line); }
  .header.nav-open .nav .nav__cta { display: inline-flex; border-bottom: none; margin-top: 16px; padding: 1.05em 1.7em; justify-content: center; }
  .topbar__msg span:not(:first-child) { display: none; }
  .trustbar .wrap { grid-template-columns: 1fr 1fr; gap: 22px 8px; }
  .trustbar__item:nth-child(3)::before, .trustbar__item:nth-child(5)::before { display: none; }
  .steps-wrap { grid-template-columns: 1fr; gap: 40px; }
  .steps-intro { position: static; }
  .carousel-foot { gap: 20px; margin-top: 32px; }
  .car-btn { width: 46px; height: 46px; }
  .split { grid-template-columns: 1fr; }
  .split--rev .media-frame { order: -1; }
  .compare__row { grid-template-columns: minmax(0,1.1fr) minmax(0,1fr) minmax(0,1fr); }
  .compare__cell { padding: 13px 11px; font-size: .82rem; gap: 7px; }
  .compare__cell svg { width: 15px; height: 15px; }
  .counties { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .topbar__msg { display: none; }
  .topbar .wrap { justify-content: center; }
  .hero__trust { grid-template-columns: 1fr; gap: 11px; }
}

/* ===== About-mini (founder module on county + content pages) ===== */
.about-mini {
  display: flex;
  align-items: center;
  gap: 34px;
  max-width: 860px;
  margin-inline: auto;
}
.about-mini img {
  width: 150px;
  height: auto;
  flex: none;
  border-radius: 16px;
  box-shadow: 0 14px 34px -14px rgba(27,30,22,0.35);
}
.about-mini p { color: var(--muted); line-height: 1.75; }
@media (max-width: 640px) {
  .about-mini { flex-direction: column; text-align: center; }
  .about-mini img { width: 180px; }
}

/* ===== Prose page (privacy / guides) ===== */
.prose-page h2 { margin-top: 34px; }
.prose-page h3 { margin-top: 26px; }
.prose-page p, .prose-page li { color: var(--muted); line-height: 1.8; }
.prose-page ul, .prose-page ol { padding-left: 22px; margin-top: 12px; }
.prose-page li { margin-top: 8px; }
.prose-page .updated { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

/* ===== Google reviews / testimonials ===== */
.tstmCarousel { margin-top: 44px; width: 100%; overflow: hidden; }
.tstmCarousel .swiper-wrapper { align-items: stretch; }
.tstm.swiper-slide { width: clamp(300px, 36vw, 460px); height: auto; }
.tstm {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 28px -18px rgba(27,30,22,0.25);
}
.tstm__stars { color: var(--amber); font-size: 0.95rem; letter-spacing: 2px; }
.tstm__quote { color: var(--ink-2); line-height: 1.75; flex: 1; }
.tstm__who { display: flex; align-items: center; gap: 10px; }
.tstm__name { font-weight: 700; color: var(--ink); }
.tstm__src { font-size: 0.78rem; color: var(--muted); }
.tstm-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 20px; font-weight: 700; color: var(--ink);
}
.tstm-badge .tstm__stars { font-size: 0.85rem; }
@media (max-width: 760px) {
  .tstm.swiper-slide { width: min(86vw, 400px); }
}
