/* ============================================================
   Hendrix Home Checks — styles.css
   Single shared stylesheet for all pages.
   Design: warm amber/bronze accent on charcoal-navy, white +
   warm off-white bands, dark footer. Mobile-first.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --bg:           #ffffff;
  --bg-alt:       #faf7f2;   /* warm off-white section bands */
  --ink:          #16202b;   /* charcoal-navy headings/text */
  --ink-soft:     #48535f;   /* muted body text */
  --ink-faint:    #6b7682;
  --accent:       #b9742a;   /* amber-bronze */
  --accent-strong:#9a5e1f;   /* hover */
  --accent-tint:  #f5ead9;   /* chips / badges */
  --line:         #e9e2d7;   /* hairline borders */
  --line-strong:  #d9cfc0;
  --footer-bg:    #13202b;
  --footer-ink:   #c7d0d8;
  --star:         #d9a23b;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(22,32,43,.06), 0 1px 3px rgba(22,32,43,.05);
  --shadow-md: 0 8px 24px rgba(22,32,43,.08), 0 2px 6px rgba(22,32,43,.05);
  --shadow-lg: 0 20px 48px rgba(22,32,43,.12), 0 6px 14px rgba(22,32,43,.06);

  /* Layout */
  --container: 1160px;
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  /* Type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--accent-strong); text-decoration: none; }
a:hover { color: var(--accent); }
ul, ol { padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.4rem); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 7vw, 104px); }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 14px;
}
.section-head { max-width: 680px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.lede { color: var(--ink-soft); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); margin-top: 14px; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 200; transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  text-align: center; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--_bg); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-strong); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-strong); transform: translateY(-1px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent-tint); color: var(--accent-strong); transform: translateY(-1px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(255,255,255,.94); }
.nav { display: flex; align-items: center; gap: 18px; min-height: 72px; }
.nav__menu { display: contents; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1.18rem; letter-spacing: -0.01em; }
.brand:hover { color: var(--ink); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-strong); line-height: 1; margin-top: 3px; }

.nav__links {
  display: flex; align-items: center; gap: 4px; list-style: none;
  margin-left: auto;
}
.nav__links a {
  display: inline-block; padding: 9px 13px; border-radius: 8px;
  color: var(--ink); font-weight: 500; font-size: 0.95rem;
  transition: background-color .15s ease, color .15s ease;
}
.nav__links a:hover { background: var(--accent-tint); color: var(--accent-strong); }
.nav__links a[aria-current="page"] { color: var(--accent-strong); }
.nav__links a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; border-radius: 2px;
  background: var(--accent); margin: 4px 13px 0;
}
.nav__cta { display: inline-flex; gap: 10px; align-items: center; }
.nav__cta .btn { padding: 11px 18px; font-size: 0.92rem; }

.nav__toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border: 1px solid var(--line-strong);
  background: #fff; border-radius: 11px; cursor: pointer;
  align-items: center; justify-content: center; color: var(--ink);
}
.nav__toggle svg { width: 24px; height: 24px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--bg-alt); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 460px at 88% -10%, rgba(185,116,42,.10), transparent 60%),
    radial-gradient(800px 400px at -5% 110%, rgba(22,32,43,.05), transparent 55%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px); align-items: start; padding-block: clamp(48px, 6vw, 88px); }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); color: var(--ink-soft); font-size: 0.82rem; font-weight: 600; padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #2fae6b; box-shadow: 0 0 0 3px rgba(47,174,107,.18); }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--accent-strong); }
.hero__sub { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.2rem, 1rem + 0.9vw, 1.6rem); color: var(--ink); margin-bottom: 14px; }
.hero__text { color: var(--ink-soft); font-size: 1.1rem; max-width: 36ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__assure { display: flex; flex-wrap: wrap; gap: 18px 26px; list-style: none; color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }
.hero__assure li { display: inline-flex; align-items: center; gap: 8px; }
.hero__assure svg { width: 19px; height: 19px; color: var(--accent); flex: none; }

.hero__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(22px, 3vw, 32px);
}
.hero__card-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; margin-bottom: 20px; border: 1px solid var(--line); }
.hero__card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.hero__card-top strong { font-family: var(--font-head); font-size: 1.15rem; }
.hero__rating { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.hero__rating .stars { display: inline-flex; }
.hero__checklist { list-style: none; display: grid; gap: 13px; }
.hero__checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; }
.hero__checklist .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; }
.hero__checklist .tick svg { width: 14px; height: 14px; }
.hero__card-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.88rem; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }

.stars svg { width: 17px; height: 17px; color: var(--star); }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: #fff; }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; padding-block: 26px; }
.trust__label { width: 100%; text-align: center; color: var(--ink-faint); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-soft); font-weight: 600; font-size: 0.94rem;
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-alt);
}
.badge svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%;
}
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-strong); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: 0.93rem; color: var(--accent-strong); }
.card__more svg { width: 16px; height: 16px; transition: transform .15s ease; }
.card--link:hover .card__more svg { transform: translateX(3px); }

/* ---------- Feature / why-us rows ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--ink); color: var(--accent); display: grid; place-items: center; }
.feature__icon svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Process steps ---------- */
.steps { list-style: none; display: grid; gap: clamp(18px, 2.5vw, 26px); counter-reset: step; }
.steps--row { grid-template-columns: repeat(4, 1fr); }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.step__num {
  counter-increment: step; font-family: var(--font-head); font-weight: 600;
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-size: 1.25rem; margin-bottom: 16px;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.12rem; margin-bottom: 7px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Split media block ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.split--reverse .split__media { order: 2; }
.media-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-alt); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ticklist { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.ticklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.ticklist svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 1px; }
.ticklist strong { color: var(--ink); }

/* ---------- County / area cards ---------- */
.area-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.area-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.area-card__pin { width: 44px; height: 44px; border-radius: 11px; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; flex: none; }
.area-card__pin svg { width: 22px; height: 22px; }
.area-card h3 { font-size: 1.25rem; }
.area-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 14px; }
.town-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.town-list li { font-size: 0.84rem; color: var(--ink-soft); background: var(--bg-alt); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }

/* ---------- Reviews ---------- */
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; height: 100%; }
.review__stars { display: inline-flex; gap: 2px; }
.review__quote { color: var(--ink); font-size: 1rem; flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--accent-tint); display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; flex: none; }
.review__who b { display: block; font-size: 0.95rem; }
.review__who span { font-size: 0.83rem; color: var(--ink-faint); }
.reviews__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.gmark { display: inline-flex; align-items: center; gap: 10px; justify-content: center; color: var(--ink-soft); font-weight: 600; margin-bottom: 6px; }
.gmark svg { width: 22px; height: 22px; }

/* Reviews coming soon (no testimonials yet) */
.reviews-soon { max-width: 660px; margin-inline: auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: clamp(34px, 5vw, 60px); }
.reviews-soon .stars { display: inline-flex; gap: 4px; margin-bottom: 20px; }
.reviews-soon .stars svg { width: 28px; height: 28px; }
.reviews-soon p { color: var(--ink-soft); font-size: 1.08rem; margin: 0 auto 28px; max-width: 52ch; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--ink);
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__q:hover { color: var(--accent-strong); }
.faq__icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; transition: transform .25s ease; }
.faq__icon svg { width: 15px; height: 15px; }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 22px 22px; color: var(--ink-soft); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  position: relative; transition: transform .18s ease, box-shadow .18s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card--featured { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.price-card__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 15px; border-radius: 999px; white-space: nowrap; }
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card__desc { color: var(--ink-soft); font-size: 0.92rem; min-height: 42px; }
.price-card__price { font-family: var(--font-head); margin: 18px 0 4px; }
.price-card__price .from { font-size: 0.82rem; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; display: block; font-family: var(--font-body); margin-bottom: 2px; }
.price-card__price .amount { font-size: 2.8rem; font-weight: 600; color: var(--ink); }
.price-card__features { list-style: none; display: grid; gap: 11px; margin: 22px 0; }
.price-card__features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.price-card__features svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 2px; }
.price-card .btn { margin-top: auto; }
.price-note { text-align: center; color: var(--ink-soft); font-size: 0.95rem; margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap; }
.price-note svg { width: 19px; height: 19px; color: var(--accent); }

.addons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.addon { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 22px 24px; }
.addon__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; }
.addon__icon svg { width: 23px; height: 23px; }
.addon h3 { font-size: 1.1rem; margin-bottom: 5px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-strong); background: var(--accent-tint); padding: 3px 9px; border-radius: 999px; }
.addon p { color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num { font-family: var(--font-head); font-size: clamp(2rem, 1.5rem + 1.6vw, 2.8rem); font-weight: 600; color: var(--accent-strong); line-height: 1; }
.stat__label { color: var(--ink-soft); font-size: 0.92rem; margin-top: 8px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--footer-bg); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 300px at 85% 0%, rgba(185,116,42,.22), transparent 60%); }
.cta-band__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: clamp(44px, 5vw, 64px); }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: var(--footer-ink); margin-top: 10px; max-width: 46ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--bg-alt); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 320px at 90% -20%, rgba(185,116,42,.10), transparent 60%); pointer-events: none; }
.page-hero__inner { position: relative; padding-block: clamp(44px, 5vw, 76px); max-width: 760px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 16px; list-style: none; }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 7px; color: var(--line-strong); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field .req { color: var(--accent-strong); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 10px;
  background: #fff; width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(185,116,42,.16); }
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field--row .field { margin-bottom: 0; }
.form-note { font-size: 0.85rem; color: var(--ink-faint); margin-top: 6px; }
.form-status { display: none; padding: 13px 16px; border-radius: 10px; font-size: 0.93rem; font-weight: 500; margin-bottom: 16px; }
.form-status.is-error { display: block; background: #fdecec; color: #9b2c2c; border: 1px solid #f3c4c4; }
.form-status.is-ok { display: block; background: #e8f6ee; color: #1f6b43; border: 1px solid #bfe3cd; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-aside { display: grid; gap: 16px; }
.contact-tile { display: flex; gap: 15px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.contact-tile__icon { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; }
.contact-tile__icon svg { width: 23px; height: 23px; }
.contact-tile h3 { font-size: 1.08rem; margin-bottom: 3px; }
.contact-tile a { font-weight: 600; }
.contact-tile p, .contact-tile span { color: var(--ink-soft); font-size: 0.94rem; }

.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--bg-alt); }
.map-placeholder { aspect-ratio: 16 / 8; display: grid; place-items: center; text-align: center; color: var(--ink-faint); padding: 28px; }
.map-placeholder svg { width: 54px; height: 54px; color: var(--accent); margin-bottom: 12px; }
.map-placeholder span { font-size: 0.88rem; max-width: 44ch; }
.map-embed iframe { width: 100%; border: 0; display: block; aspect-ratio: 16 / 8; }

/* ---------- Prose (about / generic) ---------- */
.prose { max-width: 720px; }
.prose p { color: var(--ink-soft); margin-bottom: 18px; }
.prose h2 { margin: 38px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 10px; margin-bottom: 18px; }
.prose ul li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.prose ul li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 9px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-ink); padding-block: clamp(48px, 6vw, 72px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand__name small { color: var(--accent); }
.footer-brand p { font-size: 0.94rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--footer-ink); font-size: 0.94rem; }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-contact a { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; align-items: center; font-size: 0.86rem; color: #92a0ac; }
.footer-bottom a { color: #92a0ac; }
.footer-bottom a:hover { color: var(--accent); }
.footer-disclaimer { font-size: 0.78rem; color: #7d8b97; margin-top: 14px; max-width: 70ch; }

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

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.flow > * + * { margin-top: 1em; }
.muted { color: var(--ink-soft); }
.nowrap { white-space: nowrap; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps--row { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .price-card--featured { order: -1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}

@media (max-width: 760px) {
  /* Mobile nav: single dropdown panel holding links + CTAs */
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 14px;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: 16px 18px 22px;
  }
  .site-header.nav-open .nav__menu { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 2px; margin-left: 0; }
  .nav__links a { padding: 13px 12px; border-radius: 10px; font-size: 1.05rem; }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__cta { flex-direction: column; align-items: stretch; }
  .nav__cta .btn { width: 100%; padding: 14px 18px; font-size: 1rem; }
}

@media (max-width: 620px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps--row { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero__actions .btn, .cta-band__actions .btn, .reviews__actions .btn { width: 100%; }
  .hero__actions, .cta-band__actions { width: 100%; }
}
