/* =========================================================================
   Inspection Ready Cleaning — design system
   Provisional palette. Every colour is a token, so swapping to the final
   logo palette is a one-place change in :root below.
   ========================================================================= */

/* ----- Tokens --------------------------------------------------------- */
:root {
  /* Brand colour */
  --ink:        #23241f;   /* warm near-black for text            */
  --ink-soft:   #51564b;   /* secondary text                      */
  --ink-faint:  #837f72;   /* captions, meta                      */

  --paper:      #fbf8f1;   /* warm linen page background          */
  --paper-2:    #f3eedf;   /* soft panel                          */
  --paper-3:    #ece4d2;   /* deeper panel / borders on light     */

  --green:      #234d3e;   /* primary brand — deep eucalyptus     */
  --green-700:  #1a3a2f;
  --green-500:  #3a6f59;
  --green-300:  #7ba48d;   /* mid sage for icons / lines          */

  --sage:       #d9e6d8;   /* soft sage fill                      */
  --sage-soft:  #eaf1e7;   /* lightest sage tint                  */

  --honey:      #2C7CA6;   /* clean fresh blue accent             */
  --honey-700:  #1F5E80;
  --honey-soft: #DCEAF2;
  --blue-deep:    #1A4E69;   /* deep blue for dark surfaces        */
  --blue-deepest: #16415A;   /* footer anchor                      */

  --line:       #e4dbc8;   /* warm hairline on light              */
  --line-green: rgba(255,255,255,.16);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Figtree", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono:    "Spline Sans Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.22vw, 1.13rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.40vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.30rem + 0.75vw, 1.95rem);
  --step-3:  clamp(1.80rem, 1.55rem + 1.25vw, 2.70rem);
  --step-4:  clamp(2.20rem, 1.75rem + 2.20vw, 3.80rem);
  --step-5:  clamp(2.70rem, 2.00rem + 3.40vw, 5.20rem);

  /* Space + shape */
  --radius:    14px;
  --radius-lg: 24px;
  --radius-sm: 9px;
  --shadow:    0 1px 2px rgba(35,36,31,.05), 0 14px 34px -22px rgba(35,36,31,.30);
  --shadow-lg: 0 2px 6px rgba(35,36,31,.06), 0 30px 60px -30px rgba(35,36,31,.40);
  --maxw: 1140px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
}

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

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
  color: var(--green-700);
}
h1 { font-size: var(--step-5); font-weight: 560; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
p { color: var(--ink-soft); }

/* ----- Layout --------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.center { text-align: center; }
.lede { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.5; max-width: 56ch; }
.center .lede { margin-inline: auto; }

/* Eyebrow / mono label — part of the "inspection report" signature */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-500);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 1.6em; height: 1px;
  background: var(--green-300);
}
.eyebrow.is-bare::before { display: none; }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.center .section-head { margin-inline: auto; }
.section-head h2 { margin-top: 0.7rem; }
.section-head p { margin-top: 1rem; }

/* ----- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1;
  padding: 0.95em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--honey-700); color: #fff; box-shadow: 0 10px 22px -12px rgba(31,94,128,.7); }
.btn--primary:hover { background: #18465f; transform: translateY(-2px); }
.btn--green { background: var(--green); color: #f4f0e6; }
.btn--green:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: var(--green); color: var(--green); }
.btn--ghost:hover { background: var(--green); color: #f4f0e6; transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--green-700); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 1.05em 1.8em; font-size: var(--step-1); }

/* ----- Header / nav --------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 10px 30px -26px rgba(35,36,31,.6); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }

/* Brand lockup — placeholder until the logo image drops in */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--green-700); }
.brand__mark {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--green);
  color: var(--honey-soft);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.14);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; line-height: 1; letter-spacing: -0.01em; }
.brand__name span { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green-500); margin-top: 4px; font-weight: 500; }
.brand img.brand__logo { height: 50px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.97rem; padding: 0.5rem 0.7rem; border-radius: 8px; transition: background-color .15s ease, color .15s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--sage-soft); color: var(--green-700); }

/* dropdown */
.has-sub { position: relative; }
.has-sub > button {
  background: none; border: 0; cursor: pointer;
  font-weight: 500; font-size: 0.97rem; color: var(--ink);
  padding: 0.5rem 0.7rem; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 0.3em;
}
.has-sub > button:hover { background: var(--sage-soft); color: var(--green-700); }
.has-sub > button svg { width: 0.8em; height: 0.8em; transition: transform .2s ease; }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 0.5rem; min-width: 248px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.has-sub:hover > button svg { transform: rotate(180deg); }
.submenu a { display: block; padding: 0.6rem 0.8rem; border-radius: 9px; font-size: 0.93rem; }
.submenu a small { display: block; color: var(--ink-faint); font-weight: 400; font-size: 0.78rem; }

.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.nav-phone { font-family: var(--font-mono); font-weight: 500; font-size: 0.9rem; color: var(--green-700); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4em; }
.nav-phone:hover { color: var(--honey-700); }
.nav-phone svg { width: 1em; height: 1em; }

.nav-toggle { display: none; }

/* ----- Hero ----------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5rem); overflow: clip; }
.hero::before {
  /* soft sunlight wash */
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at 72% 28%, rgba(44,124,166,.16), rgba(44,124,166,0) 60%);
  z-index: 0; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-top: 1.1rem; font-family: var(--font-body); font-weight: 700; font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.08; letter-spacing: -0.02em; color: var(--green-700); }
.hero h1 em { font-style: normal; color: var(--honey); }
.hero p.lede { margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; margin-top: 2.1rem; align-items: center; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; }
.hero-trust svg { width: 1.15em; height: 1.15em; color: var(--green-500); flex: none; }

/* Hero visual: a friendly "inspection report" card with the stamp signature */
.report-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  rotate: 0.6deg;
}
.report-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6); pointer-events: none;
}
.report-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px dashed var(--line); }
.report-card__title { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }
.report-card__addr { font-family: var(--font-display); font-size: 1.15rem; color: var(--green-700); margin-top: 0.3rem; }
.report-list { margin-top: 1rem; display: grid; gap: 0.6rem; }
.report-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; color: var(--ink); }
.report-list .tick { flex: none; width: 1.4em; height: 1.4em; border-radius: 50%; background: var(--sage); color: var(--green-700); display: grid; place-items: center; }
.report-list .tick svg { width: 0.85em; height: 0.85em; }
.report-list .res { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--green-500); text-transform: uppercase; }

/* The signature stamp */
.stamp {
  position: absolute;
  display: inline-grid; place-items: center; text-align: center;
  font-family: var(--font-mono); font-weight: 600;
  color: var(--honey-700);
  border: 2.5px solid var(--honey-700);
  border-radius: 12px;
  padding: 0.5em 0.7em;
  line-height: 1.05;
  letter-spacing: 0.08em; text-transform: uppercase;
  rotate: -9deg;
  opacity: 0.92;
  box-shadow: inset 0 0 0 2px rgba(44,124,166,.18);
}
.stamp small { font-size: 0.62em; letter-spacing: 0.14em; font-weight: 500; display: block; opacity: .85; }
.report-card .stamp { right: -10px; bottom: -16px; font-size: 0.95rem; background: var(--paper); }

/* ----- Trust strip ---------------------------------------------------- */
.strip { background: var(--blue-deep); color: #eef1e7; }
.strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; padding-block: clamp(1.6rem, 3vw, 2.2rem); }
.strip-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.strip-item svg { width: 1.6rem; height: 1.6rem; flex: none; color: var(--sage); }
.strip-item h3 { color: #fff; font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; line-height: 1.2; }
.strip-item p { color: rgba(238,241,231,.78); font-size: 0.9rem; margin-top: 0.15rem; }

/* ----- Service cards -------------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-decoration: none; color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--honey); transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--paper-3); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--sage-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 1.1rem; }
.svc-ico svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.svc-tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--honey-700); margin-bottom: 0.8rem; }
.svc-card p { font-size: 0.96rem; flex: 1; }
.svc-card .more { margin-top: 1.1rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 0.4em; font-size: 0.95rem; }
.svc-card .more svg { width: 1em; height: 1em; transition: transform .2s ease; }
.svc-card:hover .more svg { transform: translateX(3px); }

/* ----- Split / feature ------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--sage) 0%, var(--sage-soft) 100%);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  display: grid; place-items: center;
  overflow: hidden;
}
.media-card.is-wide { aspect-ratio: 4 / 3; }
.media-card .ph-note { text-align: center; color: var(--green-500); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; max-width: 22ch; padding: 1rem; }
.media-card .ph-note svg { width: 34px; height: 34px; margin: 0 auto 0.7rem; opacity: .7; }

/* ----- Inspection report (standards) section -------------------------- */
.report { background: var(--blue-deep); color: #eef1e7; border-radius: 0; }
.report h2, .report h3 { color: #fff; }
.report .eyebrow { color: var(--honey-soft); }
.report .eyebrow::before { background: rgba(220,234,242,.5); }
.report p { color: rgba(238,241,231,.82); }
.report-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 2rem); margin-top: 2.4rem; }
.report-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.8rem);
}
.report-panel h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.report-panel h3 .num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--honey-soft); }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.4rem 0; font-size: 0.94rem; color: rgba(238,241,231,.9); }
.check-list .tick { flex: none; width: 1.35em; height: 1.35em; border-radius: 50%; background: rgba(217,230,216,.18); color: var(--sage); display: grid; place-items: center; margin-top: 0.1em; }
.check-list .tick svg { width: 0.8em; height: 0.8em; }

/* light variant of checklist for white sections */
.check-list--ink li { color: var(--ink); }
.check-list--ink .tick { background: var(--sage); color: var(--green-700); }

/* ----- Steps ---------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); counter-reset: step; }
.step { position: relative; }
.step__n { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.12em; color: var(--honey-700); font-weight: 600; }
.step h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin: 0.6rem 0 0.4rem; color: var(--green-700); }
.step p { font-size: 0.93rem; }
.step::before { content: ""; display: block; width: 38px; height: 38px; border-radius: 50%; background: var(--sage-soft); border: 1.5px solid var(--sage); margin-bottom: 0.9rem; display: grid; }
.step__ico { position: absolute; top: 0; left: 0; width: 38px; height: 38px; display: grid; place-items: center; color: var(--green); }
.step__ico svg { width: 19px; height: 19px; }

/* ----- Testimonials --------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 1.9rem); display: flex; flex-direction: column;
}
.quote .stars { display: flex; gap: 2px; color: var(--honey); margin-bottom: 0.9rem; }
.quote .stars svg { width: 1.05em; height: 1.05em; }
.quote blockquote { font-size: 1rem; line-height: 1.55; color: var(--ink); flex: 1; }
.quote figcaption { margin-top: 1.1rem; display: flex; align-items: center; gap: 0.7rem; }
.quote .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: var(--honey-soft); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1rem; flex: none; }
.quote .who { font-weight: 700; color: var(--green-700); font-size: 0.95rem; line-height: 1.2; }
.quote .where { color: var(--ink-faint); font-size: 0.82rem; }

/* ----- Gallery / before-after ----------------------------------------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.8rem, 2vw, 1.2rem); }
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1;
  background: linear-gradient(150deg, var(--sage) 0%, var(--sage-soft) 100%);
  border: 1px solid var(--line); display: grid; place-items: center;
}
.ba span { position: absolute; top: 10px; left: 10px; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--green); color: #eef1e7; padding: 0.3em 0.6em; border-radius: 6px; }
.ba .ph-note { color: var(--green-500); font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; padding: 1rem; }

/* ----- CTA band ------------------------------------------------------- */
.cta-band { position: relative; background: var(--honey-700); color: #eaf2f7; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: auto -8% -60% auto; width: 50vw; height: 50vw; max-width: 560px; max-height: 560px; background: radial-gradient(circle, rgba(255,255,255,.4), transparent 60%); }
.cta-band .wrap { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; padding-block: clamp(2.6rem, 5vw, 4rem); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(234,242,247,.88); margin-top: 0.7rem; max-width: 46ch; }
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 0.8rem; }
.cta-band .cta-actions .btn--green { background: var(--paper); color: var(--green-700); }
.cta-band .cta-actions .btn--light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.cta-band .cta-actions .btn--light:hover { background: rgba(255,255,255,.14); }
.cta-band .micro { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(234,242,247,.7); text-align: center; }

/* ----- Forms ---------------------------------------------------------- */
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.4rem); box-shadow: var(--shadow);
}
.field { margin-bottom: 1.1rem; }
.field > label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--green-700); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.8em 0.9em; font-size: 0.98rem; color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(58,111,89,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.8rem; }

/* contact aside */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-list { display: grid; gap: 1.4rem; margin-top: 1.6rem; }
.contact-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--sage-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item h3 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--green-700); }
.contact-item a, .contact-item p { color: var(--ink-soft); text-decoration: none; font-size: 0.96rem; }
.contact-item a:hover { color: var(--honey-700); }

/* ----- FAQ ------------------------------------------------------------ */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  margin-bottom: 0.8rem; overflow: hidden; transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--paper-3); box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.3rem;
  font-family: var(--font-display); font-weight: 540; font-size: 1.1rem; color: var(--green-700);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--sage-soft); color: var(--green); display: grid; place-items: center; transition: transform .25s ease, background-color .2s; }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--honey-soft); color: var(--honey-700); }
.faq summary .pm svg { width: 13px; height: 13px; }
.faq .faq-body { padding: 0 1.3rem 1.2rem; }
.faq .faq-body p { font-size: 0.97rem; }
.faq .faq-body p + p { margin-top: 0.7rem; }

/* ----- Page hero (interior) ------------------------------------------- */
.page-hero { background: var(--paper-2); border-bottom: 1px solid var(--line); position: relative; overflow: clip; }
.page-hero::before { content: ""; position: absolute; inset: -30% -10% auto auto; width: 44vw; height: 44vw; max-width: 520px; max-height: 520px; background: radial-gradient(circle at 70% 30%, rgba(44,124,166,.12), transparent 60%); }
.page-hero .wrap { position: relative; padding-block: clamp(2.6rem, 5vw, 4.2rem); }
.page-hero h1 { font-size: var(--step-4); max-width: 18ch; margin-top: 0.9rem; }
.page-hero p { margin-top: 1.1rem; max-width: 56ch; font-size: var(--step-1); }
.crumbs { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.crumbs a { color: var(--green-500); text-decoration: none; }
.crumbs a:hover { color: var(--honey-700); }

/* prose for service body */
.prose { max-width: 64ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2.4rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8rem; }
.prose p { margin-top: 1rem; }
.prose ul.ticks { margin-top: 1.1rem; display: grid; gap: 0.55rem; }
.prose ul.ticks li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink); }
.prose ul.ticks .tick { flex: none; width: 1.35em; height: 1.35em; border-radius: 50%; background: var(--sage); color: var(--green-700); display: grid; place-items: center; margin-top: 0.12em; }
.prose ul.ticks .tick svg { width: 0.8em; height: 0.8em; }

/* sidebar card on service pages */
.sticky-aside { position: sticky; top: 96px; }
.aside-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow); }
.aside-card h3 { font-size: 1.2rem; }
.aside-card p { font-size: 0.93rem; margin-top: 0.5rem; }
.aside-card .btn { margin-top: 1.1rem; }
.aside-list { margin-top: 1.2rem; display: grid; gap: 0.6rem; border-top: 1px dashed var(--line); padding-top: 1.1rem; }
.aside-list li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); align-items: center; }
.aside-list svg { width: 1.05em; height: 1.05em; color: var(--green-500); flex: none; }

/* ----- Footer --------------------------------------------------------- */
.site-footer { background: var(--blue-deepest); color: rgba(238,241,231,.75); padding-block: clamp(2.6rem, 5vw, 3.6rem) 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: rgba(238,241,231,.7); font-size: 0.92rem; margin-top: 1rem; max-width: 30ch; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.9rem; letter-spacing: 0.01em; }
.footer-col a { display: block; color: rgba(238,241,231,.72); text-decoration: none; font-size: 0.92rem; padding: 0.28rem 0; }
.footer-col a:hover { color: var(--honey-soft); }
.footer-contact a { display: flex; align-items: center; gap: 0.5em; }
.footer-contact svg { width: 1em; height: 1em; flex: none; color: var(--honey-soft); }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.footer-bottom .legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(238,241,231,.6); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

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

/* ----- Focus + a11y --------------------------------------------------- */
:focus-visible { outline: 3px solid var(--honey-700); outline-offset: 2px; border-radius: 4px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--green); color: #fff; padding: 0.7em 1em; border-radius: 0 0 8px 0; z-index: 200; }
.skip:focus { left: 0; }

/* ----- Responsive ----------------------------------------------------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .report-card { max-width: 460px; margin-inline: auto; }
  .split, .split--reverse .split__media, .contact-grid, .cta-band .wrap { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .report-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-aside { position: static; }
}
@media (max-width: 720px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta > a.btn { display: none; }
  .nav { min-height: 66px; }
  .nav-toggle {
    display: inline-grid; place-items: center; width: 46px; height: 46px;
    background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer;
  }
  .nav-toggle svg { width: 22px; height: 22px; color: var(--green-700); }
  .svc-grid, .strip .wrap, .field-row, .ba-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* mobile menu drawer */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 100; background: var(--paper);
    transform: translateX(100%); transition: transform .3s ease;
    display: flex; flex-direction: column; padding: 1.4rem var(--gutter);
    overflow-y: auto;
  }
  .mobile-menu.open { transform: none; }
  .mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
  .mobile-menu__close { width: 46px; height: 46px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; display: grid; place-items: center; cursor: pointer; }
  .mobile-menu__close svg { width: 22px; height: 22px; }
  .mobile-menu nav { margin-top: 1.6rem; display: grid; gap: 0.2rem; }
  .mobile-menu nav a { font-family: var(--font-display); font-size: 1.5rem; color: var(--green-700); text-decoration: none; padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
  .mobile-menu nav a.sub { font-size: 1.05rem; font-family: var(--font-body); padding-left: 1rem; color: var(--ink-soft); border-bottom: 0; }
  .mobile-menu .btn { margin-top: 1.6rem; }
  .mobile-menu .m-phone { margin-top: 1rem; font-family: var(--font-mono); color: var(--green-700); text-decoration: none; text-align: center; }
}
body.menu-open { overflow: hidden; }
@media (min-width: 721px) { .mobile-menu { display: none; } }

/* Service areas */
.areas-split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.area-chips{display:flex;flex-wrap:wrap;gap:.5rem;align-content:flex-start}
.area-chips span{background:var(--paper);border:1px solid var(--paper-3);color:var(--green-700);border-radius:999px;padding:.5rem 1rem;font-size:.92rem;font-weight:500}
@media (max-width:780px){.areas-split{grid-template-columns:1fr}}

/* Contact form */
.qform{display:grid;gap:1rem}
.qform label{display:block;font-weight:600;font-size:.9rem;color:var(--green-700);margin-bottom:.35rem}
.qform input,.qform select,.qform textarea{width:100%;font-family:var(--font-body);font-size:1rem;color:var(--ink);background:var(--paper);border:1.5px solid var(--paper-3);border-radius:12px;padding:.8rem .9rem;transition:border-color .2s,box-shadow .2s}
.qform input::placeholder,.qform textarea::placeholder{color:var(--ink-faint)}
.qform input:focus,.qform select:focus,.qform textarea:focus{outline:none;border-color:var(--honey-700);box-shadow:0 0 0 3px rgba(44,124,166,.15)}
.qform .row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.qform textarea{min-height:120px;resize:vertical}
@media (max-width:560px){.qform .row{grid-template-columns:1fr}}

/* Light check-list (on cream sections) */
.check-list--light .tick{background:var(--sage-soft);color:var(--green)}

.check-list--light li { color: var(--ink); }

/* ===== Consistent centred layout ===== */
.section-head { margin-inline: auto; text-align: center; }
.section-head .eyebrow, .cta-band .eyebrow, .areas-split .eyebrow { justify-content: center; }
.section-head .lede, .section-head p, .cta-band p { margin-inline: auto; }
.page-hero .wrap { text-align: center; }
.page-hero h1, .page-hero p { margin-inline: auto; }
.page-hero .crumbs { justify-content: center; }
.cta-band .wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.4rem; }
.cta-band .cta-actions { width: 100%; max-width: 320px; margin-inline: auto; }
.areas-split { display: block; max-width: 780px; margin-inline: auto; text-align: center; }
.areas-split .lede { margin-inline: auto; }
.area-chips { justify-content: center; margin-top: 1.6rem; }

/* Real photos in media slots */
.media-card img, .ba img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 721px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
