/* ==========================================================================
   Caserta's Land Services — "Northshore Arbor" v8
   Palette locked to logo.png: leaf #60903C · deep #45682B · moss #ACC097
                               ink #142010 · paper #F3F0E6 · white #FFFFFF
   Small text clears 4.5:1 over its own textured band.
   Hero: ink band + centered copy + arch-window photo trio bleeding down
   Cards: grouped service directory rows beside one tall arch photo
   Type: Archivo headings / Newsreader body prose
   ========================================================================== */

:root {
  --leaf: #60903c;
  --leaf-hover: #6c9c3c;
  /* Same logo hue, darkened so small text and white-on-green pass AA. */
  --leaf-deep: #45682b;
  --leaf-deep-hover: #3a5624;
  --moss: #acc097;
  --ink: #142010;
  --paper: #f3f0e6;
  --white: #ffffff;

  --ink-tint-6: rgba(20, 32, 16, 0.06);
  --ink-tint-10: rgba(20, 32, 16, 0.1);
  --ink-tint-14: rgba(20, 32, 16, 0.14);
  --ink-tint-55: rgba(20, 32, 16, 0.78);
  --ink-tint-72: rgba(20, 32, 16, 0.92);
  --paper-tint-12: rgba(243, 240, 230, 0.12);
  --paper-tint-20: rgba(243, 240, 230, 0.2);
  --paper-tint-72: rgba(243, 240, 230, 0.88);
  --paper-tint-86: rgba(243, 240, 230, 0.97);

  --wrap: 1160px;
  --hdr: 74px;
  --dock-h: 0px;

  --display: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --body: "Newsreader", Georgia, "Times New Roman", serif;

  --grain: url("./assets/grain.png");
  --canopy: url("./assets/wash-canopy.jpg");

  --arch: 240px 240px 8px 8px;
  --arch-sm: 120px 120px 6px 6px;
  --r: 6px;
  --ease: cubic-bezier(0.22, 0.68, 0.24, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Sticky header must not cover a section heading when the nav jumps to it. */
section[id] { scroll-margin-top: calc(var(--hdr) + 10px); }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--hdr) + 12px);
  background: var(--paper);
}

body {
  font-family: var(--body);
  font-size: 1.06rem;
  line-height: 1.66;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  padding-bottom: var(--dock-h);
  -webkit-font-smoothing: antialiased;
}
body.lock { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; max-width: 100%; }

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

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--leaf-deep);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: var(--r);
}
.skip:focus { left: 0.75rem; top: 0.75rem; }

:focus-visible {
  outline: 3px solid var(--leaf-hover);
  outline-offset: 2px;
}

/* ---------- labels ---------- */
.eyebrow {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf-deep);
  margin-bottom: 0.85rem;
}
.eyebrow--onink { color: var(--moss); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.3rem;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  text-align: center;
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease),
    color 220ms var(--ease), transform 220ms var(--ease);
}
.btn--leaf {
  background: var(--leaf-deep);
  border-color: var(--leaf-deep);
  color: var(--white);
}
.btn--leaf:hover {
  background: var(--leaf-deep-hover);
  border-color: var(--leaf-deep-hover);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  border-color: var(--paper-tint-20);
  color: var(--paper);
}
.btn--outline:hover {
  border-color: var(--paper);
  background: rgba(243, 240, 230, 0.08);
}
.btn--quiet {
  background: transparent;
  border-color: var(--ink-tint-14);
  color: var(--ink);
}
.btn--quiet:hover { border-color: var(--leaf-deep); color: var(--leaf-deep); }
.btn--lg { min-height: 54px; padding: 0.8rem 1.6rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--ink);
  color: var(--paper-tint-72);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--paper-tint-12);
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  flex-wrap: wrap;
  padding: 0.3rem 0;
}
.topbar b { color: var(--moss); font-weight: 700; }
.topbar a { color: var(--paper); font-weight: 700; }
.topbar a:hover { color: var(--moss); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--ink);
  border-bottom: 1px solid var(--paper-tint-12);
  transition: box-shadow 220ms var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(20, 32, 16, 0.28); }
.site-header__in {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--hdr);
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: auto; height: 46px; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
}
.nav a {
  color: var(--paper-tint-86);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.nav a:hover { color: var(--white); border-bottom-color: var(--leaf); }

.header-cta { flex: 0 0 auto; }

.menu {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--paper-tint-20);
  border-radius: var(--r);
  cursor: pointer;
  padding: 0.6rem 0.5rem;
  margin-left: auto;
}
.menu span {
  display: block;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}
.menu span + span { margin-top: 6px; }
/* Keep the hamburger a full 44px thumb target. */
.menu { min-width: 44px; min-height: 44px; }
.menu.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu.open span:nth-child(2) { opacity: 0; }
.menu.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- shared band washes ---------- */
.band-ink {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}
.band-ink::before,
.band-ink::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.band-ink::before {
  background-image: linear-gradient(rgba(20, 32, 16, 0.55), rgba(20, 32, 16, 0.7)), var(--canopy);
  background-size: auto, cover;
  background-position: center, center;
  opacity: 0.5;
}
.band-ink::after {
  background-image: var(--grain);
  background-size: 192px 192px;
  opacity: 0.12;
}
.band-paper {
  position: relative;
  background: var(--paper);
  isolation: isolate;
}
.band-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--grain);
  background-size: 192px 192px;
  opacity: 0.16;
  pointer-events: none;
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(3.2rem, 7vw, 5.6rem) 0 0;
  z-index: 4;
}
.hero__in {
  max-width: min(72.5rem, var(--wrap));
  margin-inline: auto;
  text-align: center;
}
.hero h1 {
  /* Uses the full wrap so a 4.15rem desktop cap still balances on two lines. */
  font-size: clamp(2.15rem, 5.8vw, 4.15rem);
  text-wrap: balance;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.hero h1 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--moss);
  letter-spacing: 0;
}
.hero__lede {
  font-size: clamp(1.06rem, 2.2vw, 1.22rem);
  color: var(--paper-tint-86);
  max-width: 40rem;
  margin-inline: auto;
}
.hero__acts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.7rem;
}
.hero__note {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--moss);
  letter-spacing: 0.01em;
}

.arches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.6vw, 1.2rem);
  align-items: end;
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: clamp(-120px, -8vw, -60px);
  position: relative;
  z-index: 3;
}
.arch {
  position: relative;
  overflow: hidden;
  border-radius: var(--arch);
  border: 1px solid var(--paper-tint-20);
  background: var(--ink);
  box-shadow: 0 22px 44px rgba(20, 32, 16, 0.34);
  transform-origin: center bottom;
}
.arch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.arch--a { height: clamp(160px, 26vw, 300px); }
.arch--b { height: clamp(200px, 33vw, 390px); }
.arch--c { height: clamp(160px, 26vw, 300px); }

/* ---------- fact rail ---------- */
.rail { padding: clamp(8rem, 13vw, 10.5rem) 0 clamp(2.6rem, 5vw, 3.6rem); }
.rail__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink-tint-14);
  border-bottom: 1px solid var(--ink-tint-14);
}
.rail__list li {
  padding: 1.5rem 1.4rem;
  border-left: 1px solid var(--ink-tint-10);
}
.rail__list li:first-child { border-left: 0; padding-left: 0; }
.rail__list b {
  display: block;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.rail__list span {
  font-size: 0.98rem;
  color: var(--ink-tint-72);
}

/* ---------- service directory ---------- */
.dir { padding: clamp(3rem, 6vw, 4.6rem) 0 clamp(3.6rem, 7vw, 5.6rem); }
.dir__head { max-width: 44rem; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.dir__head h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); margin-bottom: 0.9rem; }
.dir__head p { color: var(--ink-tint-72); }

.group {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(1.6rem, 3.4vw, 3rem);
  padding: clamp(2rem, 4vw, 2.8rem) 0;
  border-top: 1px solid var(--ink-tint-14);
}
.group:last-of-type { border-bottom: 1px solid var(--ink-tint-14); }
.group__side { align-self: start; }
.group__photo {
  position: relative;
  height: clamp(240px, 30vw, 340px);
  border-radius: var(--arch);
  overflow: hidden;
  background: var(--ink);
  margin-bottom: 1.2rem;
}
.group__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.group__side h3 {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
}
.group__side p { font-size: 0.99rem; color: var(--ink-tint-72); }

.rows { display: flex; flex-direction: column; }
.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1rem;
  border-bottom: 1px solid var(--ink-tint-10);
  border-radius: var(--r);
  transition: background-color 240ms var(--ease), transform 240ms var(--ease);
}
.row:first-child { border-top: 1px solid var(--ink-tint-10); }
.row:hover { background: rgba(96, 144, 60, 0.08); transform: translateY(-2px); }
.row__name {
  display: block;
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.18rem;
}
.row__note { display: block; font-size: 0.99rem; color: var(--ink-tint-72); }
.row__cta {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--leaf-deep);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.row__cta:hover { color: var(--leaf-deep-hover); border-bottom-color: var(--leaf-deep-hover); }
.row--urgent .row__name::after {
  content: "24 hr";
  display: inline-block;
  margin-left: 0.55rem;
  vertical-align: 2px;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--leaf-deep);
  border-radius: 3px;
  padding: 0.12rem 0.4rem;
}
.dir__close {
  margin-top: clamp(2rem, 4vw, 2.8rem);
  max-width: 50rem;
  color: var(--ink-tint-72);
}

/* ---------- emergency band ---------- */
.alert { padding: clamp(2.6rem, 5vw, 3.8rem) 0; }
.alert__in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.6rem;
  align-items: center;
}
.alert h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); color: var(--white); margin-bottom: 0.7rem; }
.alert p { color: var(--paper-tint-86); max-width: 42rem; }
.alert__acts { display: flex; flex-direction: column; gap: 0.7rem; }

/* ---------- about ---------- */
.about { padding: clamp(3.4rem, 7vw, 5.4rem) 0; }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}
.about h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
.about p + p { margin-top: 0.95rem; }
.about .btn { margin-top: 1.6rem; }
.about__photo {
  position: relative;
  height: clamp(320px, 46vw, 520px);
  border-radius: var(--arch);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 24px 48px rgba(20, 32, 16, 0.18);
}
.about__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.about__photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.2rem 1rem;
  background: linear-gradient(transparent, rgba(20, 32, 16, 0.88));
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.owners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.owners li {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--ink-tint-14);
  border-radius: 999px;
  color: var(--ink-tint-72);
}

/* ---------- reviews ---------- */
.reviews { padding: clamp(3.4rem, 7vw, 5.2rem) 0; }
.reviews__head { max-width: 42rem; margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem); }
.reviews__head h2 { font-size: clamp(1.85rem, 3.6vw, 2.5rem); color: var(--white); margin-bottom: 0.8rem; }
.reviews__head p { color: var(--paper-tint-86); }
.quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
}
.q {
  border: 1px solid var(--paper-tint-20);
  border-radius: var(--r);
  border-top-left-radius: 90px;
  padding: 1.6rem 1.5rem 1.35rem;
  background: rgba(243, 240, 230, 0.05);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}
.q:hover { transform: translateY(-3px); border-color: var(--moss); }
.q--wide { grid-column: 1 / -1; }
.q p { color: var(--paper); font-size: 1.04rem; }
.q footer {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
}

/* ---------- gallery ---------- */
.gallery { padding: clamp(3rem, 6vw, 4.4rem) 0; }
.gallery__head { margin-bottom: clamp(1.6rem, 3vw, 2.2rem); max-width: 40rem; }
.gallery__head h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-bottom: 0.7rem; }
.gallery__head p { color: var(--ink-tint-72); }
.gallery__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
}
.gallery figure {
  position: relative;
  height: clamp(180px, 22vw, 280px);
  border-radius: var(--arch-sm);
  overflow: hidden;
  background: var(--ink);
  transition: transform 240ms var(--ease);
}
.gallery figure:hover { transform: translateY(-4px); }
.gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* ---------- faq ---------- */
.faq { padding: clamp(3.2rem, 6.5vw, 5rem) 0; }
.faq__head { max-width: 42rem; margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem); }
.faq__head h2 { font-size: clamp(1.85rem, 3.6vw, 2.5rem); margin-bottom: 0.8rem; }
.faq__head p { color: var(--ink-tint-72); }
.faq__list { border-top: 1px solid var(--ink-tint-14); }
.faq__list details {
  border-bottom: 1px solid var(--ink-tint-14);
  padding: 0.15rem 0;
}
.faq__list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--leaf);
  flex: 0 0 auto;
}
.faq__list details[open] summary::after { content: "–"; }
.faq__list details > p {
  padding: 0 0 1.2rem;
  max-width: 58rem;
  color: var(--ink-tint-72);
}
.faq__list a { color: var(--leaf-deep); text-decoration: underline; }

/* ---------- contact ---------- */
.contact { padding: clamp(3.4rem, 7vw, 5.2rem) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: start;
}
.contact h2 { font-size: clamp(1.85rem, 3.6vw, 2.5rem); color: var(--white); margin-bottom: 1rem; }
.contact p { color: var(--paper-tint-86); }
.contact p + p { margin-top: 0.9rem; }
.contact__phone {
  margin-top: 1.6rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact__phone a { color: var(--white); border-bottom: 2px solid var(--leaf); }
.contact__phone a:hover { color: var(--moss); }
.nap {
  margin-top: 1.5rem;
  border-top: 1px solid var(--paper-tint-20);
  padding-top: 1.1rem;
  font-size: 1rem;
  color: var(--paper-tint-86);
}
.nap li + li { margin-top: 0.3rem; }
.nap b { font-family: var(--display); color: var(--white); }

.form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 26px 26px var(--r) var(--r);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 26px 54px rgba(20, 32, 16, 0.34);
}
.form__title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.fine { font-size: 0.88rem; color: var(--ink-tint-55); }
.form label {
  display: block;
  margin-top: 1rem;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.72rem 0.8rem;
  font-family: var(--body);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  background: var(--white);
  border: 1px solid var(--ink-tint-14);
  border-radius: var(--r);
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--leaf); }
.form textarea { resize: vertical; }
.form .btn { margin-top: 1.3rem; }

/* ---------- footer ---------- */
.footer { padding: clamp(2.8rem, 6vw, 4rem) 0 1.4rem; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
.footer img { height: 52px; width: auto; margin-bottom: 1rem; }
.footer p { color: var(--paper-tint-86); font-size: 1rem; }
.footer__phone {
  margin-top: 0.8rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
}
.footer__phone a { color: var(--white); }
.footer__phone a:hover { color: var(--moss); }
.footer h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.85rem;
}
.footer li,
.footer nav a {
  display: block;
  color: var(--paper-tint-86);
  font-size: 1rem;
  padding: 0.16rem 0;
}
.footer nav a:hover { color: var(--white); }
.footer__bar {
  margin-top: clamp(2rem, 4vw, 2.8rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--paper-tint-12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 0.8rem;
  color: var(--paper-tint-72);
}

/* ---------- mobile call dock ---------- */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  background: var(--ink);
  border-top: 1px solid var(--paper-tint-20);
  transform: translateY(110%);
  transition: transform 320ms var(--ease);
}
.dock.show { transform: translateY(0); }
.dock__call {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 50px;
  padding: 0.35rem 0.9rem;
  background: var(--leaf-deep);
  color: var(--white);
  border-radius: var(--r);
  font-family: var(--display);
}
.dock__call small { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.9; }
.dock__call b { font-size: 1.02rem; font-weight: 700; }
.dock__quote {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 1rem;
  border: 1px solid var(--paper-tint-20);
  border-radius: var(--r);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ---------- motion ----------
   Every entrance waits for scroll: the observer adds `.in` once the block
   has entered the viewport. One infinite float only: the centre arch. */
.rise {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}
.rise.in { opacity: 1; transform: none; }
.rise--1 { transition-delay: 90ms; }
.rise--2 { transition-delay: 180ms; }
.rise--3 { transition-delay: 270ms; }

/* Children reveal one after another once the parent scrolls in. */
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: 40ms; }
.stagger.in > *:nth-child(2) { transition-delay: 110ms; }
.stagger.in > *:nth-child(3) { transition-delay: 180ms; }
.stagger.in > *:nth-child(4) { transition-delay: 250ms; }
.stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.stagger.in > *:nth-child(6) { transition-delay: 390ms; }
.stagger.in > *:nth-child(7) { transition-delay: 450ms; }
.stagger.in > *:nth-child(n + 8) { transition-delay: 510ms; }

/* Directory rows wipe in from the rule they hang on. */
.stagger--rows > * { transform: translateX(-14px); }
.stagger--rows.in > * { transform: none; }

/* Hero copy uses the same scroll stagger as the rest of the page. */
.hero__in > *:nth-child(2) { transition-delay: 90ms; }
.hero__in > *:nth-child(3) { transition-delay: 170ms; }
.hero__in > *:nth-child(4) { transition-delay: 250ms; }
.hero__in > *:nth-child(5) { transition-delay: 330ms; }

/* Arch trio stays closed until `.arches` scrolls in, then opens L→R. */
.arch {
  opacity: 0;
  transform: translateY(26px) scaleY(0.9);
}
.arches.in .arch { animation: archIn 660ms var(--ease) both; }
.arches.in .arch--a { animation-delay: 40ms; }
.arches.in .arch--c { animation-delay: 200ms; }
.arches.in .arch img { animation: photoSettle 660ms var(--ease) both; }
.arches.in .arch--a img { animation-delay: 40ms; }
.arches.in .arch--b img { animation-delay: 120ms; }
.arches.in .arch--c img { animation-delay: 200ms; }

/* Float starts after the entrance has finished, so the two never fight. */
.arches.in .arch--b {
  animation:
    archIn 660ms var(--ease) 120ms both,
    drift 7s var(--ease) 1.6s infinite alternate;
}

/* Group photos ease up as their rows wipe in. */
.group__photo { transition: transform 560ms var(--ease), opacity 560ms var(--ease); }
.group .group__photo { opacity: 0; transform: translateY(20px); }
.group.in .group__photo { opacity: 1; transform: none; }

@keyframes liftIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes archIn {
  from { opacity: 0; transform: translateY(26px) scaleY(0.9); }
  to { opacity: 1; transform: none; }
}
@keyframes photoSettle {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(-9px); }
}

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .group { grid-template-columns: minmax(0, 240px) minmax(0, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  /* Must clear the dock itself plus the home-indicator inset, or the dock
     covers the last line of the footer. */
  :root { --dock-h: calc(74px + env(safe-area-inset-bottom)); }
  .menu { display: block; }
  .header-cta { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: var(--ink);
    border-bottom: 1px solid var(--paper-tint-20);
    box-shadow: 0 18px 34px rgba(20, 32, 16, 0.34);
    max-height: calc(100vh - var(--hdr));
    max-height: calc(100dvh - var(--hdr));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { display: flex; animation: liftIn 320ms var(--ease) both; }
  .nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--paper-tint-12);
    font-size: 1.02rem;
  }
  .nav a:last-child { border-bottom: 0; }
  .dock { display: flex; }

  .group { grid-template-columns: minmax(0, 1fr); }
  .group__photo { height: clamp(200px, 42vw, 280px); }
  .about__grid { grid-template-columns: minmax(0, 1fr); }
  .about__photo { order: -1; height: clamp(280px, 60vw, 400px); }
  .contact__grid { grid-template-columns: minmax(0, 1fr); }
  /* Single column: centre the emergency band so it reads on one axis. */
  .alert__in { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .alert p { margin-inline: auto; }
  .alert__acts { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .gallery__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail__list li { border-left: 0; padding-left: 0; padding-right: 1rem; }
  .rail__list li:nth-child(n + 3) { border-top: 1px solid var(--ink-tint-10); }
  .rail { padding-top: clamp(5rem, 16vw, 8rem); }
  .arches { margin-bottom: -48px; }
  .quotes { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 1.02rem; }
  .wrap { width: calc(100% - 2rem); }
  .topbar__in { justify-content: center; font-size: 0.74rem; }
  .brand img { height: 40px; }
  .arches { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: -34px; }
  .arch { border-radius: var(--arch-sm); }
  .arch--a, .arch--c { height: 120px; }
  .arch--b { height: 148px; }
  .rail { padding-top: 4.4rem; }
  .rail__list { grid-template-columns: minmax(0, 1fr); }
  .rail__list li { border-left: 0; padding: 1.05rem 0; }
  .rail__list li + li { border-top: 1px solid var(--ink-tint-10); }
  .row { grid-template-columns: minmax(0, 1fr); align-items: start; }
  /* Thumb-sized targets: the estimate link is the conversion path on every row. */
  .row__cta {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0.05rem;
  }
  .topbar a { display: inline-block; padding: 0.45rem 0; }
  .footer nav a { padding: 0.6rem 0; }
  .footer li { padding: 0.2rem 0; }
  .faq__list summary { padding: 1.25rem 0; }
  .gallery__row { grid-template-columns: minmax(0, 1fr); }
  .gallery figure { height: 210px; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__acts .btn,
  .alert__acts .btn { width: 100%; }
  .alert__acts { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  /* Nothing may stay hidden once its animation is removed. */
  .rise,
  .stagger > *,
  .hero__in > *,
  .arch,
  .arch img,
  .group .group__photo {
    opacity: 1;
    transform: none;
  }
}
