/* ==========================================================================
   New Century Suffolk
   Global stylesheet
   --------------------------------------------------------------------------
   Contents
   1.  Design tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Buttons & links
   5.  Header / navigation
   6.  Hero
   7.  Trust bar
   8.  Sections & headings
   9.  Cards (services, features, steps)
   10. Media / photo slots
   11. Split sections
   12. Service area
   13. Testimonials
   14. FAQ accordion
   15. CTA band
   16. Forms
   17. Footer
   18. Page header (interior pages)
   19. Utilities, motion & print
   ========================================================================== */

/* 1. Design tokens ======================================================== */

:root {
  /* Brand */
  --green-900: #0E2A1E;
  --green-800: #14402C;
  --green-700: #1B5E3F;
  --green-600: #237A52;
  --green-500: #2E9E6B;
  --green-100: #E3F1E9;
  --lime-400: #9BD35A;
  --lime-300: #B7E27E;

  /* Neutrals */
  --ink: #16211C;
  --ink-soft: #3D4A44;
  --muted: #61706A;
  --line: #DCE3DF;
  --sand: #F6F4EE;
  --paper: #FFFFFF;

  /* Semantic */
  --bg: var(--paper);
  --bg-alt: var(--sand);
  --text: var(--ink);
  --text-muted: var(--muted);
  --brand: var(--green-700);
  --brand-strong: var(--green-800);
  --accent: var(--lime-400);

  /* Type */
  --font-sans: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  --font-display: Georgia, "Times New Roman", Times, serif;

  /* Rhythm */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  /* Shape */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(14, 42, 30, .06), 0 2px 8px rgba(14, 42, 30, .05);
  --shadow: 0 4px 12px rgba(14, 42, 30, .08), 0 12px 32px rgba(14, 42, 30, .08);
  --shadow-lg: 0 8px 24px rgba(14, 42, 30, .10), 0 24px 60px rgba(14, 42, 30, .12);

  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* 2. Reset & base ========================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--green-900);
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

a { color: var(--brand); text-underline-offset: 3px; }
a:hover { color: var(--green-600); }

strong { font-weight: 700; color: var(--green-900); }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--lime-300); color: var(--green-900); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  padding: .75rem 1.25rem;
  background: var(--green-800);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* 3. Layout primitives ==================================================== */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: var(--wrap-narrow); }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* 4. Buttons ============================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .95rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .15s var(--ease),
              box-shadow .2s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--green-800); color: #fff; box-shadow: var(--shadow); }

.btn--accent {
  background: var(--lime-400);
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
}
.btn--accent:hover { background: var(--lime-300); color: var(--green-900); box-shadow: var(--shadow); }

.btn--ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-700);
}
.btn--ghost:hover { background: var(--green-700); color: #fff; }

.btn--ghost-light {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.btn--ghost-light:hover { background: #fff; color: var(--green-900); border-color: #fff; }

.btn--lg { padding: 1.1rem 2.25rem; font-size: 1.0125rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

/* 5. Header / navigation ================================================== */

.topbar {
  background: var(--green-900);
  color: rgba(255, 255, 255, .85);
  font-size: .875rem;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding-block: .6rem;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--lime-300); text-decoration: underline; }
.topbar__list {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar__list li { margin: 0; display: inline-flex; align-items: center; gap: .4rem; }
.topbar__icon { width: 15px; height: 15px; flex: none; opacity: .8; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--green-900);
  flex: none;
}
/* The mark is the company's own logo artwork, redrawn as SVG (assets/logo-mark.svg). */
.brand__mark { width: 58px; height: 37px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  letter-spacing: -.005em;
  white-space: nowrap;
}
.brand__tag {
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 700;
}
.brand__parent {
  margin-top: -.4rem;
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .5);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

.nav { display: flex; align-items: center; gap: 1rem; }

.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__list li { margin: 0; }

.nav__link {
  display: block;
  padding: .5rem .62rem;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover { color: var(--green-800); background: var(--green-100); }
.nav__link { white-space: nowrap; }
.site-header .nav > .btn { padding: .8rem 1.35rem; font-size: .9rem; }
.nav__link[aria-current="page"] { color: var(--green-800); }
.nav__link[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 3px;
  border-radius: 2px;
  background: var(--lime-400);
}

/* 6. Hero ================================================================= */

.hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(155deg, rgba(14, 42, 30, .92) 0%, rgba(20, 64, 44, .82) 45%, rgba(27, 94, 63, .75) 100%),
    var(--green-800);
  color: #fff;
  overflow: hidden;
}

/* Decorative leaf pattern behind the hero copy. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M20 90c0-22 14-38 34-42-2 22-14 38-34 42z'/%3E%3Cpath d='M24 86c10-12 20-20 30-24'/%3E%3Cpath d='M78 30c14 6 22 20 20 36-14-6-22-20-20-36z'/%3E%3Cpath d='M80 36c8 8 13 17 16 26'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 240px 240px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.1rem;
  padding: .4rem .9rem .4rem .5rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 0 4px rgba(155, 211, 90, .25);
}

.hero h1 { color: #fff; margin-bottom: .45em; }

.hero__lede {
  max-width: 34rem;
  margin-bottom: 1.9rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, .88);
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin: 1.9rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}
.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
}
.hero__points svg { width: 18px; height: 18px; flex: none; color: var(--lime-400); }

.hero__media { position: relative; }

.hero__card {
  position: absolute;
  left: clamp(-1rem, -2vw, 0rem);
  bottom: -1.75rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  max-width: 19rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.hero__card svg { width: 34px; height: 34px; flex: none; color: var(--green-600); }
.hero__card-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.1;
}
.hero__card-note { font-size: .85rem; color: var(--text-muted); }

/* 7. Trust bar ============================================================ */

.trustbar { background: var(--green-100); border-bottom: 1px solid var(--line); }
.trustbar__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem 1.5rem;
  margin: 0;
  padding-block: 1.5rem;
  list-style: none;
}
.trustbar__list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
  font-size: .93rem;
  font-weight: 700;
  color: var(--green-800);
}
.trustbar__list svg { width: 26px; height: 26px; flex: none; color: var(--green-600); }

/* 8. Sections & headings ================================================== */

.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--green-900); color: rgba(255, 255, 255, .86); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: block;
  margin-bottom: .75rem;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-600);
}
.section--dark .eyebrow { color: var(--lime-400); }

.section-head p {
  font-size: 1.075rem;
  color: var(--text-muted);
}
.section--dark .section-head p { color: rgba(255, 255, 255, .78); }

/* 9. Cards ================================================================ */

.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--green-500);
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-muted); font-size: .97rem; }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  color: var(--green-700);
}
.card__icon svg { width: 28px; height: 28px; }

.card__link {
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Numbered process steps */
.step {
  position: relative;
  padding: 2.25rem 1.5rem 1.75rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}
.step__num {
  position: absolute;
  top: -20px;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--bg-alt);
}
.section:not(.section--alt) .step__num { box-shadow: 0 0 0 6px var(--paper); }
.step h3 { margin-bottom: .35rem; font-size: 1.15rem; }
.step p { margin: 0; color: var(--text-muted); font-size: .95rem; }

/* Feature list with check marks */
.checklist { margin: 0; padding: 0; list-style: none; }
.checklist li {
  position: relative;
  margin-bottom: .7rem;
  padding-left: 2rem;
  font-size: .98rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B5E3F' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.section--dark .checklist li::before {
  background-color: rgba(155, 211, 90, .2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239BD35A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* 10. Media / photo slots ================================================= */

/*  Photo slots render as a styled placeholder until a real image is added.
    To use a real photo:  <div class="media"><img src="..." alt="..."></div>
    The .media--placeholder modifier draws the fallback treatment.           */

.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--green-100);
}
.media img { width: 100%; height: 100%; object-fit: cover; }

.media--placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 1.5rem;
  text-align: center;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(155, 211, 90, .35), transparent 60%),
    linear-gradient(160deg, var(--green-600), var(--green-800));
  color: rgba(255, 255, 255, .92);
}
.media--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2' stroke-linecap='round'%3E%3Cpath d='M12 62c0-16 10-28 25-31-1 16-10 28-25 31z'/%3E%3Cpath d='M15 59c7-9 14-15 22-18'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.media--placeholder > * { position: relative; }
.media__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.media__hint {
  display: block;
  margin-top: .35rem;
  font-size: .8rem;
  letter-spacing: .04em;
  opacity: .8;
}
.media--tall { aspect-ratio: 3 / 4; }
.media--wide { aspect-ratio: 16 / 9; }
.media--square { aspect-ratio: 1 / 1; }

/* Brand panel — the full logo lockup used where a photo is not the right fit. */
.brand-panel {
  display: grid;
  place-items: center;
  gap: 1.25rem;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 30% 15%, rgba(155, 211, 90, .18), transparent 62%),
    linear-gradient(155deg, var(--green-100), var(--paper) 65%);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.brand-panel img { width: min(300px, 100%); height: auto; }
.brand-panel p {
  margin: 0;
  max-width: 28ch;
  font-size: .95rem;
  color: var(--text-muted);
}

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery .media { aspect-ratio: 4 / 3; }
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery__caption {
  padding: .9rem 0 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* 11. Split sections ====================================================== */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.split--reverse .split__media { order: 2; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.section--dark .stat-row { border-color: rgba(255, 255, 255, .18); }
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--green-700);
}
.section--dark .stat__value { color: var(--lime-400); }
.stat__label {
  display: block;
  margin-top: .4rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section--dark .stat__label { color: rgba(255, 255, 255, .7); }

/* 12. Service area ======================================================== */

.towns {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.towns li { margin: 0; }
.towns span {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.section--dark .towns span {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
}

/* 13. Testimonials ======================================================== */

.quote {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius);
  background: var(--paper);
}
.quote__stars { display: flex; gap: .15rem; margin-bottom: .9rem; color: #E8A33D; }
.quote__stars svg { width: 18px; height: 18px; }
.quote blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.quote figcaption {
  margin-top: auto;
  font-size: .9rem;
  font-weight: 700;
  color: var(--green-900);
}
.quote figcaption span {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
}

/* 14. FAQ accordion ======================================================= */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 0;
  border: 0;
  background: none;
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-900);
  text-align: left;
  cursor: pointer;
}
.faq__q:hover { color: var(--green-600); }
.faq__icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  margin: -1px 0 0 -7px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .25s var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.faq__a[data-open="true"] { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding-bottom: 1.35rem;
  color: var(--text-muted);
  max-width: 60ch;
}

/* 15. CTA band ============================================================ */

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath d='M18 78c0-19 12-33 29-36-2 19-12 33-29 36z'/%3E%3Cpath d='M68 24c12 5 19 17 17 31-12-5-19-17-17-31z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
}
.cta h2 { color: #fff; margin-bottom: .3em; }
.cta p { margin: 0; color: rgba(255, 255, 255, .88); max-width: 38rem; }

/* 16. Forms =============================================================== */

.form-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.field { margin-bottom: 1.15rem; }
.field:last-of-type { margin-bottom: 1.5rem; }

.field label {
  display: block;
  margin-bottom: .4rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-900);
}
.field label .req { color: #B4472F; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem .95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(46, 158, 107, .18);
}

.field input::placeholder,
.field textarea::placeholder { color: #9AA8A2; }

.field__hint { margin: .4rem 0 0; font-size: .82rem; color: var(--text-muted); }
.field__error {
  display: none;
  margin: .4rem 0 0;
  font-size: .82rem;
  font-weight: 600;
  color: #B4472F;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #B4472F; }
.field.has-error .field__error { display: block; }

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 1.15rem;
}

/* Honeypot – hidden from humans, catches naive bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  display: none;
  margin-top: 1.15rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-weight: 600;
}
.form-status[data-state="success"] {
  display: block;
  background: var(--green-100);
  color: var(--green-800);
  border: 1px solid var(--green-500);
}
.form-status[data-state="error"] {
  display: block;
  background: #FBEDE9;
  color: #8E3522;
  border: 1px solid #D8A395;
}

/* Contact detail list */
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-list svg { width: 24px; height: 24px; flex: none; color: var(--green-600); margin-top: .2rem; }
.contact-list dt,
.contact-list .label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-list a { font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* 17. Footer ============================================================== */

.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, .74);
  font-size: .94rem;
}
.site-footer h2, .site-footer h3 { color: #fff; }
.site-footer a { color: rgba(255, 255, 255, .8); text-decoration: none; }
.site-footer a:hover { color: var(--lime-300); text-decoration: underline; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.site-footer .brand { color: #fff; margin-bottom: 1.1rem; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: var(--lime-400); }

.site-footer h3 {
  margin-bottom: 1.1rem;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.footer-list { margin: 0; padding: 0; list-style: none; }
.footer-list li { margin-bottom: .6rem; }

.social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #fff;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
              transform .2s var(--ease);
}
.social a:hover {
  background: var(--lime-400);
  border-color: var(--lime-400);
  color: var(--green-900);
  transform: translateY(-2px);
}
.social svg { width: 20px; height: 20px; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: .86rem;
  color: rgba(255, 255, 255, .55);
}
.site-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__bottom li { margin: 0; }

/* Sticky call bar – mobile only */
.callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(14, 42, 30, .97);
  backdrop-filter: blur(8px);
  gap: .6rem;
}
.callbar .btn { flex: 1; padding: .8rem 1rem; font-size: .9rem; }

/* 18. Page header (interior pages) ======================================== */

.page-head {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5rem);
  background: linear-gradient(150deg, var(--green-900) 0%, var(--green-700) 100%);
  color: #fff;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath d='M18 78c0-19 12-33 29-36-2 19-12 33-29 36z'/%3E%3Cpath d='M68 24c12 5 19 17 17 31-12-5-19-17-17-31z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.page-head h1 { color: #fff; margin-bottom: .35em; }
.page-head p { max-width: 46rem; color: rgba(255, 255, 255, .85); font-size: 1.075rem; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .5rem; opacity: .5; }
.breadcrumb a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.breadcrumb a:hover { color: var(--lime-300); }

/* Service detail blocks */
.service-block {
  scroll-margin-top: 100px;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.service-block:last-of-type { border-bottom: 0; }

.tag {
  display: inline-block;
  margin-bottom: .9rem;
  padding: .3rem .75rem;
  border-radius: 999px;
  background: var(--green-100);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-700);
}

/* Anchor chips used to jump between service blocks */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chips li { margin: 0; }
.chips a {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease);
}
.chips a:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

/* 19. Utilities, motion & print =========================================== */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 2rem; }
.lede { font-size: 1.125rem; color: var(--text-muted); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll reveal – elements start hidden only when JS is available. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Responsive ------------------------------------------------------------- */

@media (max-width: 980px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 30rem; }
  .hero__card { position: static; margin-top: 1rem; max-width: none; }
}

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: max-height .3s var(--ease), border-color .3s var(--ease);
  }
  .nav.is-open {
    max-height: 32rem;
    border-bottom-color: var(--line);
    box-shadow: var(--shadow);
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem var(--gutter) 1rem;
  }
  .nav__link {
    padding: .9rem .5rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.05rem;
  }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav > .btn { margin: 0 var(--gutter) 1.25rem; display: flex; }

  .split--reverse .split__media { order: 0; }
  .cta__inner { flex-direction: column; align-items: flex-start; }

  .callbar { display: flex; }
  body { padding-bottom: 4.5rem; }
  .site-footer__bottom { padding-bottom: 1.5rem; }
}

@media (max-width: 560px) {
  /* Keep the header lockup on one line next to the menu button. */
  .site-header .brand__mark { width: 46px; height: 29px; }
  .site-header .brand__tag { display: none; }
  .site-header__inner { min-height: 66px; }

  .site-footer__grid { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; text-align: center; }
  .btn-row .btn { width: 100%; }
  .hero__points { flex-direction: column; gap: .6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .topbar, .site-header, .callbar, .cta, .social, .btn { display: none !important; }
  body { color: #000; background: #fff; }
  .hero, .page-head, .section--dark, .site-footer { background: #fff !important; color: #000 !important; }
  .hero h1, .page-head h1, .section--dark h2, .site-footer h3 { color: #000 !important; }
  a { color: #000; text-decoration: underline; }
}
