﻿/* ==========================================================================
   Iowa Amish Roofing Company — stylesheet
   Palette + type scale are driven by the logo: cream, dark walnut, barn red.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* brand */
  --ink:        #241608;
  --walnut-900: #2E1E12;
  --walnut-800: #3A2517;
  --walnut-700: #4E3320;
  --walnut-500: #7A5738;
  --walnut-300: #A98A67;

  --cream-50:   #FDFBF7;
  --cream-100:  #FAF6EE;
  --cream-200:  #F3EADA;
  --cream-300:  #E8DAC3;
  --cream-400:  #D9C6A8;

  --barn:       #8C3A1E;
  --barn-dark:  #6E2C15;
  --barn-light: #B04B27;

  --moss:       #4F6141;

  /* semantic */
  --bg:          var(--cream-100);
  --bg-alt:      var(--cream-200);
  --surface:     #FFFFFF;
  --text:        var(--walnut-900);
  --text-muted:  #6B5540;
  --line:        var(--cream-300);
  --accent:      var(--barn);

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

  /* shape + depth */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(46, 30, 18, .06), 0 2px 6px rgba(46, 30, 18, .05);
  --shadow:    0 2px 6px rgba(46, 30, 18, .07), 0 12px 28px -12px rgba(46, 30, 18, .18);
  --shadow-lg: 0 4px 12px rgba(46, 30, 18, .09), 0 28px 56px -20px rgba(46, 30, 18, .28);

  /* layout */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.125rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --header-h: 72px;

  /* z-index scale — every layered element pulls from here */
  --z-actionbar: 80;
  --z-header:    90;
  --z-drawer:    120;
  --z-lightbox:  150;
  --z-skip:      200;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Every interactive surface: kill the 300ms tap delay, never let a press
   shift layout bounds, and keep hit areas honest. */
a, button, input, select, textarea, summary, label, [role="button"] {
  touch-action: manipulation;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Bottom action bar on phones must never cover page content. */
@media (max-width: 860px) {
  body { padding-bottom: env(safe-area-inset-bottom); }
  body.has-actionbar { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 5.4vw, 3.85rem); }
h2 { font-size: clamp(1.75rem, 3.9vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); letter-spacing: -0.01em; }
h4 { font-size: 1.0625rem; letter-spacing: 0; }

p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--barn-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--barn); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

strong { font-weight: 650; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

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

::selection { background: var(--cream-400); color: var(--walnut-900); }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream { background: var(--bg-alt); }
.section--white { background: var(--surface); }
.section--dark {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(176,75,39,.22), transparent 60%),
    var(--walnut-900);
  color: var(--cream-200);
}
.section--dark h2, .section--dark h3 { color: var(--cream-50); }
.section--dark a { color: var(--cream-100); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: var(--z-skip);
  background: var(--walnut-900);
  color: var(--cream-50);
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.075rem; margin-bottom: 0; }
.section--dark .section-head p { color: var(--cream-300); }

/* Small caps eyebrow with the rule marks from the logo lockup */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--barn);
  margin-bottom: 1rem;
}
.eyebrow::before,
.eyebrow::after { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .55; }
.eyebrow--start::before { display: none; }
.section--dark .eyebrow { color: var(--cream-400); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--barn);
  --btn-fg: #fff;
  --btn-bd: var(--barn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .85rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover  { --btn-bg: var(--barn-dark); --btn-bd: var(--barn-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--walnut-800); --btn-bd: var(--cream-400); box-shadow: none; }
.btn--ghost:hover { --btn-bg: var(--cream-200); --btn-fg: var(--walnut-900); --btn-bd: var(--walnut-300); }

.btn--dark { --btn-bg: var(--walnut-800); --btn-bd: var(--walnut-800); }
.btn--dark:hover { --btn-bg: var(--ink); --btn-bd: var(--ink); }

.btn--onDark { --btn-bg: var(--cream-100); --btn-fg: var(--walnut-900); --btn-bd: var(--cream-100); }
.btn--onDark:hover { --btn-bg: #fff; --btn-bd: #fff; color: var(--walnut-900); }

.btn--outlineLight { --btn-bg: transparent; --btn-fg: var(--cream-100); --btn-bd: rgba(250,246,238,.45); box-shadow: none; }
.btn--outlineLight:hover { --btn-bg: rgba(250,246,238,.12); --btn-bd: var(--cream-100); color: #fff; }

.btn--lg { min-height: 58px; padding: 1rem 2rem; font-size: 1.075rem; }
.btn--block { width: 100%; }
.btn .ico { width: 19px; height: 19px; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .875rem; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--walnut-900);
  color: var(--cream-200);
  font-size: .8125rem;
  letter-spacing: .01em;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 38px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar a { color: var(--cream-100); font-weight: 600; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar .dot { opacity: .4; }
@media (max-width: 560px) { .topbar .hide-xs { display: none; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(253, 251, 247, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 4px 20px -8px rgba(46,30,18,.28); background: rgba(253,251,247,.96); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; flex: none; }
.brand img { height: 46px; width: auto; }
.brand-text { display: none; }
@media (min-width: 420px) {
  .brand-text { display: block; line-height: 1.1; }
  .brand-text .b1 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 650;
    letter-spacing: .01em;
    color: var(--walnut-900);
    display: block;
  }
  .brand-text .b2 {
    font-size: .6875rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
  }
}

.nav-links { display: none; }
@media (min-width: 1120px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    display: block;
    padding: .55rem .7rem;
    border-radius: var(--radius-sm);
    color: var(--walnut-800);
    font-size: .9375rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color .15s var(--ease), color .15s var(--ease);
  }
  .nav-links a:hover { background: var(--cream-200); color: var(--walnut-900); }
  .nav-links a[aria-current="page"] { color: var(--barn); background: rgba(140,58,30,.07); }
}

.nav-actions { display: flex; align-items: center; gap: .625rem; }

.nav-call {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .4rem .75rem .4rem .5rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--walnut-900);
  transition: background-color .15s var(--ease);
}
.nav-call:hover { background: var(--cream-200); color: var(--walnut-900); }
.nav-call .ico { width: 34px; height: 34px; padding: 8px; border-radius: 50%; background: var(--cream-200); color: var(--barn); flex: none; }
.nav-call .lbl { line-height: 1.15; }
.nav-call .lbl small { display: block; font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.nav-call .lbl b { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; }
@media (min-width: 720px) { .nav-call { display: inline-flex; } }

.nav-cta { display: none; }
@media (min-width: 1120px) { .nav-cta { display: inline-flex; min-height: 46px; padding: .65rem 1.25rem; font-size: .95rem; } }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1.5px solid var(--cream-400);
  border-radius: var(--radius-sm);
  color: var(--walnut-800);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--cream-200); }
@media (min-width: 1120px) { .nav-toggle { display: none; } }
.nav-toggle span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s var(--ease), background-color .2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s var(--ease), top .2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.is-open { visibility: visible; pointer-events: auto; }
.mobile-nav__scrim {
  position: absolute;
  inset: 0;
  background: rgba(36, 22, 8, .5);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.mobile-nav.is-open .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--cream-50);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.125rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.mobile-nav__top img { height: 42px; }
.mobile-nav__close {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid var(--cream-400); border-radius: var(--radius-sm);
  color: var(--walnut-800); font-size: 1.35rem; line-height: 1; cursor: pointer;
}
.mobile-nav__close:hover { background: var(--cream-200); }
.mobile-nav ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.mobile-nav li { margin: 0; border-bottom: 1px solid var(--line); }
.mobile-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem .25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--walnut-900);
  text-decoration: none;
}
.mobile-nav li a:hover { color: var(--barn); }
.mobile-nav li a[aria-current="page"] { color: var(--barn); }
.mobile-nav li a::after { content: "→"; opacity: .3; font-family: var(--font-body); font-size: 1rem; }
.mobile-nav__cta { display: grid; gap: .625rem; margin-top: auto; padding-top: 1.25rem; }
.mobile-nav__note { margin-top: 1rem; font-size: .8125rem; color: var(--text-muted); text-align: center; }

/* --------------------------------------------------------------------------
   6. Sticky mobile action bar
   -------------------------------------------------------------------------- */
.actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-actionbar);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px -12px rgba(46,30,18,.35);
  padding-bottom: env(safe-area-inset-bottom);
}
.actionbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  min-height: 66px;
  padding: .5rem .25rem;
  background: var(--cream-50);
  color: var(--walnut-900);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .02em;
  text-decoration: none;
}
.actionbar a .ico { width: 21px; height: 21px; color: var(--barn); }
.actionbar a.primary { background: var(--barn); color: #fff; }
.actionbar a.primary .ico { color: #fff; }
.actionbar a:active { filter: brightness(.95); }
@media (min-width: 861px) { .actionbar { display: none; } }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  color: var(--cream-100);
  padding-block: clamp(4rem, 11vw, 8.5rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(28,17,8,.92) 0%, rgba(28,17,8,.78) 42%, rgba(28,17,8,.42) 72%, rgba(28,17,8,.30) 100%),
    linear-gradient(to top, rgba(28,17,8,.55), transparent 45%);
}
.hero__inner { max-width: 660px; }
.hero .eyebrow { color: var(--cream-400); }
.hero h1 { color: #fff; margin-bottom: .55rem; }
.hero h1 .accent { color: var(--cream-400); font-style: italic; }
.hero__lede {
  font-size: clamp(1.075rem, 1.9vw, 1.25rem);
  color: rgba(250, 246, 238, .9);
  max-width: 50ch;
  margin-bottom: 1.75rem;
}
.hero__points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: 0;
  font-size: .975rem;
  color: rgba(250, 246, 238, .92);
}
.hero__points .ico { width: 19px; height: 19px; flex: none; margin-top: .22rem; color: var(--cream-400); }

/* Sub-page hero */
.pagehead {
  position: relative;
  isolation: isolate;
  padding-block: clamp(2.75rem, 7vw, 5rem);
  background:
    radial-gradient(900px 420px at 12% -30%, rgba(140,58,30,.10), transparent 65%),
    var(--cream-200);
  border-bottom: 1px solid var(--line);
}
.pagehead__inner { max-width: 68ch; }
.pagehead h1 { margin-bottom: .35rem; }
.pagehead p { color: var(--text-muted); font-size: 1.1rem; max-width: 58ch; margin-bottom: 0; }

.crumbs { font-size: .8125rem; color: var(--text-muted); margin-bottom: .875rem; }
.crumbs a { color: var(--text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--barn); text-decoration: underline; }
.crumbs span { opacity: .5; margin-inline: .4rem; }

/* --------------------------------------------------------------------------
   8. Trust strip
   -------------------------------------------------------------------------- */
.trust {
  background: var(--walnut-900);
  color: var(--cream-200);
  padding-block: 1.5rem;
}
.trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem 1.75rem;
}
.trust li {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
  font-size: .9375rem;
  font-weight: 550;
  line-height: 1.35;
}
.trust .ico { width: 22px; height: 22px; flex: none; color: var(--cream-400); }

/* --------------------------------------------------------------------------
   9. Cards / grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--text-muted); font-size: .975rem; margin-bottom: 0; }

a.card, .card--link { text-decoration: none; color: inherit; }
a.card:hover, .card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--cream-400);
  color: inherit;
}
.card__more {
  margin-top: 1rem;
  font-size: .875rem;
  font-weight: 650;
  color: var(--barn);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
a.card:hover .card__more { gap: .6rem; }
.card__more span { transition: transform .2s var(--ease); }

.card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: var(--cream-200);
  color: var(--barn);
  flex: none;
}
.card__icon svg { width: 26px; height: 26px; }
a.card:hover .card__icon { background: var(--barn); color: #fff; }

/* numbered process steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 4.25rem; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -.15rem;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-200);
  border: 1.5px solid var(--cream-400);
  color: var(--barn);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
}
.section--dark .step::before { background: rgba(250,246,238,.08); border-color: rgba(250,246,238,.25); color: var(--cream-400); }
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--text-muted); font-size: .975rem; margin-bottom: 0; }
.section--dark .step p { color: var(--cream-300); }

/* Split layouts */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 920px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left  { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .85fr 1.15fr; }
  .split--top { align-items: start; }
}
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.split__media--stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.split__media--stack img:first-child { grid-column: 1 / -1; }

/* checklist */
.checks { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .7rem; }
.checks li { display: flex; align-items: flex-start; gap: .7rem; margin: 0; font-size: 1rem; }
.checks .ico { width: 21px; height: 21px; flex: none; margin-top: .2rem; color: var(--moss); }
.section--dark .checks .ico { color: var(--cream-400); }

/* Stat / callout band */
.callout {
  background: var(--cream-200);
  border: 1px solid var(--cream-300);
  border-left: 4px solid var(--barn);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  font-size: .975rem;
}
.callout strong { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .2rem; }
/* Phone links inside sentences: grow the hit box without disturbing line flow. */
.callout a, .form-note a { padding-block: .35rem; font-weight: 650; }

/* --------------------------------------------------------------------------
   10. Gallery + lightbox
   -------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(.875rem, 2vw, 1.25rem); }
.gallery__item {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-200);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.045); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem .95rem .8rem;
  background: linear-gradient(to top, rgba(28,17,8,.85), transparent);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  text-align: left;
}
.gallery__item--tall img { aspect-ratio: 3 / 4; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(28, 17, 8, .93);
  backdrop-filter: blur(4px);
}
.lightbox.is-open { display: grid; }
.lightbox__stage { display: grid; justify-items: center; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 84vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__cap { margin-top: .9rem; color: var(--cream-200); font-size: .9375rem; text-align: center; }
.lightbox__btn {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(250,246,238,.12);
  border: 1px solid rgba(250,246,238,.3);
  border-radius: 50%;
  color: var(--cream-100);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__btn:hover { background: rgba(250,246,238,.24); }
.lightbox__close { top: clamp(.75rem, 3vw, 1.75rem); right: clamp(.75rem, 3vw, 1.75rem); }
.lightbox__prev { left: clamp(.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   11. Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.form-card > h2, .form-card > h3 { margin-top: 0; }

.form-grid { display: grid; gap: 1.05rem; }
@media (min-width: 620px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }

.field { display: grid; gap: .35rem; }
.field > label {
  font-size: .875rem;
  font-weight: 650;
  color: var(--walnut-800);
  letter-spacing: .01em;
}
.field .opt { font-weight: 500; color: var(--text-muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: .8rem .95rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--cream-50);
  border: 1.5px solid var(--cream-300);
  border-radius: var(--radius);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background-color .15s var(--ease);
  appearance: none;
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.55; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236B5540' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 18px;
  padding-right: 2.6rem;
}
.field input::placeholder, .field textarea::placeholder { color: #A8957F; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--cream-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--barn);
  box-shadow: 0 0 0 4px rgba(140, 58, 30, .13);
}
.field .err { font-size: .8125rem; font-weight: 600; color: var(--barn-dark); min-height: 0; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--barn); background: #FFF7F4; }

/* Chip-style radio group — one tap, no dropdown */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
/* The real radio is removed from the layout entirely — it must not inherit the
   52px min-height from .field input, or it leaves an invisible hit box that can
   swallow taps meant for a neighbouring chip. Focus still lands on it, so
   .chips input:focus-visible + label keeps the keyboard ring working. */
.chips input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.chips label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .5rem 1rem;
  background: var(--cream-50);
  border: 1.5px solid var(--cream-300);
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--walnut-800);
  cursor: pointer;
  transition: all .15s var(--ease);
}
.chips label:hover { border-color: var(--walnut-300); background: var(--cream-200); }
.chips input:checked + label { background: var(--barn); border-color: var(--barn); color: #fff; }
.chips input:focus-visible + label { outline: 3px solid var(--barn); outline-offset: 3px; }

.form-foot { margin-top: 1.5rem; display: grid; gap: .875rem; }
.form-note { font-size: .8125rem; color: var(--text-muted); line-height: 1.55; }
.form-note a { color: var(--barn-dark); }

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

.form-status {
  display: none;
  margin-top: 1.1rem;
  padding: .95rem 1.1rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 550;
  line-height: 1.55;
}
.form-status.is-visible { display: block; }
.form-status.ok   { background: #EEF4EA; border: 1px solid #C6D8B9; color: #33502A; }
.form-status.err  { background: #FDF1EC; border: 1px solid #EAC3B4; color: var(--barn-dark); }
.form-status.busy { background: var(--cream-200); border: 1px solid var(--cream-300); color: var(--text-muted); }
.form-status a { color: inherit; font-weight: 700; }

.btn:disabled,
.btn[aria-busy="true"] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-sm);
}
.btn:disabled:hover,
.btn[aria-busy="true"]:hover { transform: none; }

/* --------------------------------------------------------------------------
   12. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq details[open] { border-color: var(--cream-400); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.075rem;
  font-weight: 600;
  color: var(--walnut-900);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--cream-100); }
.faq summary::after {
  content: "";
  flex: none;
  width: 13px; height: 13px;
  border-right: 2px solid var(--barn);
  border-bottom: 2px solid var(--barn);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq .faq__body { padding: 0 1.35rem 1.3rem; color: var(--text-muted); font-size: .975rem; }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   13. Service area
   -------------------------------------------------------------------------- */
.towns { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.towns li {
  margin: 0;
  padding: .4rem .85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 550;
  color: var(--walnut-800);
}
.section--dark .towns li { background: rgba(250,246,238,.08); border-color: rgba(250,246,238,.2); color: var(--cream-200); }

/* --------------------------------------------------------------------------
   13b. Jump navigation, panels, contact tiles
   -------------------------------------------------------------------------- */
.jumpnav { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.jumpnav li { margin: 0; }
.jumpnav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--walnut-800);
  text-decoration: none;
  transition: background-color .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.jumpnav a:hover { background: var(--barn); border-color: var(--barn); color: #fff; }

.panel {
  background: var(--cream-200);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.section--cream .panel { background: var(--surface); border-color: var(--line); }
.panel h3 { margin-top: 0; }
.panel .checks { margin-top: 1rem; }
.panel .checks li { font-size: .9375rem; }

/* Service detail block: keeps a readable measure and clear anchor offset. */
.svc { scroll-margin-top: calc(var(--header-h) + 24px); }
.svc + .svc { margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: clamp(3rem, 6vw, 4.5rem); border-top: 1px solid var(--line); }
.svc .prose { max-width: 68ch; }

/* Contact method tiles */
.contact-tiles { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  padding: 1.5rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
a.contact-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--cream-400); color: inherit; }
.contact-tile .card__icon { margin-bottom: .75rem; }
.contact-tile .k { font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--text-muted); }
.contact-tile .v { font-family: var(--font-display); font-size: 1.35rem; font-weight: 650; letter-spacing: -.01em; color: var(--walnut-900); }
.contact-tile .n { font-size: .875rem; color: var(--text-muted); }

/* Big numeric callout row */
.facts { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.fact { padding: 1.25rem 0; }
.fact b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--barn);
  margin-bottom: .2rem;
}
.section--dark .fact b { color: var(--cream-400); }
.fact span { font-size: .9375rem; color: var(--text-muted); }
.section--dark .fact span { color: var(--cream-300); }

/* --------------------------------------------------------------------------
   14. Big CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream-100);
  text-align: center;
  padding-block: clamp(3.25rem, 7vw, 5.5rem);
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,17,8,.86), rgba(28,17,8,.9));
}
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { max-width: 54ch; margin-inline: auto; color: rgba(250,246,238,.88); font-size: 1.075rem; }
.cta-band .btn-row { margin-top: 1.75rem; }
.cta-band__phone {
  display: inline-block;
  margin-top: 1.1rem;
  padding-block: .35rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 650;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.01em;
}
.cta-band__phone:hover { color: var(--cream-400); }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--walnut-900);
  color: var(--cream-300);
  padding-block: clamp(3rem, 6vw, 4.5rem) 0;
  font-size: .9375rem;
}
.site-footer h2 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-400);
  margin-bottom: 1rem;
}
.footer-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.footer-grid > :first-child { grid-column: span 1; }
@media (min-width: 900px) { .footer-brand { max-width: 330px; } }
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 650;
  color: var(--cream-50);
  line-height: 1.2;
  margin-bottom: .1rem;
}
.footer-brand .tag {
  font-size: .8125rem;
  font-style: italic;
  color: var(--cream-400);
  margin-bottom: 1rem;
}
.footer-brand p { color: var(--cream-300); font-size: .9375rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .25rem; }
.site-footer a {
  display: inline-block;
  padding-block: .4rem;
  color: var(--cream-200);
  text-decoration: none;
}
.site-footer a:hover { color: #fff; text-decoration: underline; }
/* Comfortable thumb targets for footer links on touch screens. */
@media (max-width: 860px) {
  .site-footer li { margin-bottom: .1rem; }
  .site-footer a { padding-block: .55rem; }
}
.footer-contact a { display: inline-flex; align-items: center; gap: .55rem; }
.footer-contact .ico { width: 17px; height: 17px; flex: none; color: var(--cream-400); }
.footer-phone {
  font-family: var(--font-display);
  font-size: 1.45rem !important;
  font-weight: 650;
  color: #fff !important;
  letter-spacing: -.01em;
}
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-block: 1.35rem;
  border-top: 1px solid rgba(250, 246, 238, .14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8125rem;
  color: var(--cream-400);
}
@media (max-width: 860px) { .footer-bottom { padding-bottom: 1.5rem; } }

/* --------------------------------------------------------------------------
   16. Utilities
   -------------------------------------------------------------------------- */
.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;
}
.center { text-align: center; }
.muted { color: var(--text-muted); }
.lede { font-size: clamp(1.075rem, 1.9vw, 1.2rem); color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mb-0 { margin-bottom: 0; }
.nowrap { white-space: nowrap; }

/* --------------------------------------------------------------------------
   17. Scroll reveal
   -------------------------------------------------------------------------- */
/* Content is visible by default. JS "arms" only the elements that start below
   the fold, so a blocked observer or a dead script can never leave the page
   blank — the animation is enhancement, never a prerequisite for reading. */
.js .reveal { transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-armed { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   18. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .mobile-nav, .actionbar, .topbar, .cta-band, .hero__bg { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; }
}
