/* ============================================================
   El Eden Landscaping — stylesheet
   Palette, type, and layout tokens live in :root. Change a
   value there and it updates everywhere on the site.
   ============================================================ */

:root {
  /* Greens */
  --ink:        #14241c;
  --green-900:  #14372a;
  --green-800:  #1b4332;
  --green-700:  #2d6a4f;
  --green-600:  #35805e;
  --green-500:  #40916c;
  --green-300:  #74c69d;
  --green-50:   #eef4ef;

  /* Neutrals */
  --sand:   #f7f6f2;
  --white:  #ffffff;
  --text:   #2a3630;
  --muted:  #5f6d66;
  --line:   #e3e7e2;

  /* Type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1140px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(20, 36, 28, .06), 0 2px 8px rgba(20, 36, 28, .05);
  --shadow-md: 0 8px 24px rgba(20, 36, 28, .10), 0 2px 6px rgba(20, 36, 28, .06);
  --shadow-lg: 0 22px 50px rgba(20, 36, 28, .16);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .5em; color: var(--green-900); }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 50%; translate: -50% -120%;
  z-index: 200; background: var(--green-800); color: #fff;
  padding: .7rem 1.2rem; border-radius: 0 0 10px 10px; text-decoration: none;
  transition: translate .18s ease;
}
.skip-link:focus { translate: -50% 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45em;
  font: inherit; font-weight: 600; letter-spacing: .01em;
  padding: .72rem 1.35rem; border: 1.5px solid transparent; border-radius: 999px;
  /* <button> elements otherwise inherit the browser's grey button face, which
     shows through every variant that doesn't set its own background. */
  background: transparent; color: inherit;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease,
              transform .18s ease, box-shadow .18s ease;
}
.btn--primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }
/* Solid white button, for use on the dark green panels. */
.btn--light { background: #fff; color: var(--green-800); border-color: #fff; box-shadow: var(--shadow-sm); }
.btn--light:hover { background: var(--green-50); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--light:active { transform: translateY(0); }
/* Bordered secondary button for light backgrounds. */
.btn--outline { border-color: var(--line); color: var(--green-800); }
.btn--outline:hover { border-color: var(--green-500); background: var(--green-50); }
.btn--lg { padding: .95rem 1.9rem; font-size: 1.03rem; }
.btn--block { width: 100%; }

/* ── Eyebrow labels ──────────────────────────────────────── */
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--green-600); margin: 0 0 .85rem;
}
.eyebrow--light { color: var(--green-300); }

/* ── Top bar ─────────────────────────────────────────────── */
.topbar { background: var(--green-900); color: rgba(255,255,255,.82); font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; flex-wrap: wrap; }
.topbar__note { margin: 0; }
.topbar__actions { display: flex; align-items: center; gap: 1rem; }
.topbar__phone { display: inline-flex; align-items: center; gap: .4rem; color: #fff; font-weight: 600; text-decoration: none; }
.topbar__phone:hover { color: var(--green-300); }
.topbar__phone svg { width: 15px; height: 15px; fill: currentColor; }

.langtoggle { display: inline-flex; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; overflow: hidden; }
.langtoggle button {
  font: inherit; font-weight: 700; font-size: .74rem; letter-spacing: .06em;
  background: transparent; color: rgba(255,255,255,.72); border: 0;
  padding: .22rem .62rem; cursor: pointer; transition: background-color .16s ease, color .16s ease;
}
.langtoggle button:hover { color: #fff; }
.langtoggle button.is-active { background: var(--green-300); color: var(--green-900); }

/* ── Header ──────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(20,36,28,.06); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--green-800); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  line-height: 1; letter-spacing: -.01em; color: var(--green-900);
  display: flex; flex-direction: column; gap: .18rem;
}
.brand__text em {
  font-family: var(--sans); font-style: normal; font-size: .6rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--green-600);
}

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a:not(.btn) { color: var(--text); }
.nav a { text-decoration: none; font-size: .95rem; font-weight: 500; position: relative; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--green-500); scale: 0 1; transform-origin: left; transition: scale .2s ease;
}
.nav a:not(.btn):hover::after { scale: 1 1; }
.nav__cta { margin-left: .4rem; }

.hamburger {
  display: none; width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--line); border-radius: 11px; cursor: pointer;
}
.hamburger span {
  display: block; width: 19px; height: 2px; margin: 4px auto; border-radius: 2px;
  background: var(--green-800); transition: transform .22s ease, opacity .18s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  /* Order matters: the photo must sit ABOVE the solid green gradient, which is
     only a fallback for when images/hero.jpg is missing. */
  background-image:
    linear-gradient(180deg, rgba(11,32,23,.72) 0%, rgba(11,32,23,.55) 45%, rgba(11,32,23,.85) 100%),
    url("images/hero.jpg"),
    linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 45%, #5aa17b 100%);
  background-size: cover, cover, cover;
  background-position: center, center, center;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 26px);
}
.hero__inner { padding-block: clamp(4.5rem, 12vw, 8.5rem); max-width: 750px; }
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.lead { font-size: clamp(1.05rem, 1.9vw, 1.3rem); line-height: 1.6; color: rgba(255,255,255,.9); max-width: 58ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.1rem; }

.trust { display: flex; flex-wrap: wrap; gap: .6rem 1.9rem; margin-top: 2.6rem; font-size: .93rem; color: rgba(255,255,255,.88); }
.trust li { display: flex; align-items: center; gap: .5rem; }
.trust li::before {
  content: ""; width: 17px; height: 17px; flex: none; border-radius: 50%;
  background: var(--green-300) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 13 4 4 10-10' fill='none' stroke='%2314372a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ── Sections ────────────────────────────────────────────── */
.section { padding-block: clamp(3.75rem, 8vw, 6.5rem); }
.section--alt { background: var(--sand); }
.section--dark { background: var(--green-900); color: rgba(255,255,255,.82); }
.section--dark h2 { color: #fff; }

.section__head { max-width: 640px; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section__lead { font-size: 1.09rem; color: var(--muted); margin: 0; }
.section--dark .section__lead { color: rgba(255,255,255,.75); }
.section__foot { margin: 2.75rem 0 0; text-align: center; color: var(--muted); }
.section__foot a { font-weight: 600; }

/* ── Service cards ───────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.9rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d3ddd6; }
.card__icon {
  width: 52px; height: 52px; border-radius: 15px; margin-bottom: 1.15rem;
  display: grid; place-items: center;
  background: var(--green-50); color: var(--green-700);
}
.card__icon svg { width: 27px; height: 27px; }
.card p { color: var(--muted); font-size: .97rem; }

.ticks { margin-top: 1.15rem; display: grid; gap: .5rem; font-size: .94rem; }
.ticks li { display: flex; gap: .6rem; align-items: flex-start; }
.ticks li::before {
  content: ""; width: 16px; height: 16px; flex: none; margin-top: .28rem; border-radius: 50%;
  background: var(--green-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 13 4 4 10-10' fill='none' stroke='%232d6a4f' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}
.ticks--light li::before { background-color: rgba(116,198,157,.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 13 4 4 10-10' fill='none' stroke='%2374c69d' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* ── Steps ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.9rem; counter-reset: step; }
.steps li { position: relative; padding-top: .35rem; }
.steps__num {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 1rem;
  border-radius: 50%; background: var(--green-700); color: #fff;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
}
.steps li h3 { margin-bottom: .35rem; }
.steps li p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.shot { margin: 0; }
.shot--tall { grid-row: span 2; }
.shot--wide { grid-column: span 2; }
.shot__img {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  background-image:
    linear-gradient(160deg, rgba(20,55,42,.18), rgba(20,55,42,.42)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px),
    linear-gradient(140deg, var(--green-600), var(--green-800));
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.shot--tall .shot__img { aspect-ratio: 4 / 6.4; }
.shot--wide .shot__img { aspect-ratio: 8 / 3; }
.shot:hover .shot__img { transform: scale(1.015); box-shadow: var(--shadow-md); }
.shot figcaption { margin-top: .65rem; font-size: .88rem; color: var(--muted); }

/* Drop matching files into images/ and these fill in automatically. */
.shot__img[data-photo="work-1"] { background-image: linear-gradient(160deg, rgba(20,55,42,.15), rgba(20,55,42,.35)), url("images/work-1.jpg"), repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px), linear-gradient(140deg, var(--green-600), var(--green-800)); }
.shot__img[data-photo="work-2"] { background-image: linear-gradient(160deg, rgba(20,55,42,.15), rgba(20,55,42,.35)), url("images/work-2.jpg"), repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px), linear-gradient(140deg, var(--green-500), var(--green-700)); }
.shot__img[data-photo="work-3"] { background-image: linear-gradient(160deg, rgba(20,55,42,.15), rgba(20,55,42,.35)), url("images/work-3.jpg"), repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px), linear-gradient(140deg, var(--green-700), var(--green-900)); }
.shot__img[data-photo="work-4"] { background-image: linear-gradient(160deg, rgba(20,55,42,.15), rgba(20,55,42,.35)), url("images/work-4.jpg"), repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px), linear-gradient(140deg, var(--green-600), var(--green-900)); }
.shot__img[data-photo="work-5"] { background-image: linear-gradient(160deg, rgba(20,55,42,.15), rgba(20,55,42,.35)), url("images/work-5.jpg"), repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px), linear-gradient(140deg, var(--green-500), var(--green-800)); }

/* ── Yard guide pages ────────────────────────────────────── */
/* The language switch hides whole blocks of prose on the guide pages, so
   [hidden] has to win against anything that sets display. */
[hidden] { display: none !important; }

.guide { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.guide__back {
  display: inline-flex; align-items: center; gap: .45rem; font-size: .92rem;
  color: var(--muted); text-decoration: none; margin-bottom: 1.6rem;
}
.guide__back:hover { color: var(--green-700); }
.guide__body { max-width: 74ch; }
.guide__body h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.75rem); margin-top: 2.8rem; margin-bottom: .7rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.guide__body h3 { font-family: var(--sans); font-size: 1.02rem; margin: 1.7rem 0 .5rem; }
.guide__body p { margin: 0 0 1rem; }
.guide__body ul { margin: 0 0 1.2rem; padding-left: 1.15rem; }
.guide__body li { margin-bottom: .45rem; }
.guide__body a { color: var(--green-700); }

/* Tables scroll sideways on a phone instead of squashing. */
.gtable { overflow-x: auto; margin: 0 0 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); }
.gtable table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .95rem; }
.gtable th, .gtable td { padding: .7rem .85rem; text-align: left; border-bottom: 1px solid var(--line); }
.gtable thead th { background: var(--green-50); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--green-800); }
.gtable tbody tr:last-child td { border-bottom: 0; }
.gtable td:first-child { font-weight: 600; white-space: nowrap; }

.callout {
  border-left: 3px solid var(--green-500); background: var(--green-50);
  padding: 1rem 1.2rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 0 0 1.5rem;
}
.callout p:last-child { margin-bottom: 0; }
.callout--warn { border-left-color: #b8860b; background: #fdf6e3; }

.sources { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.sources ul { padding-left: 1.15rem; }

.guide-cta {
  margin-top: 3rem; background: var(--green-800); color: #fff;
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.5vw, 2.4rem);
}
.guide-cta h2 { color: #fff; margin: 0 0 .5rem; border: 0; padding: 0; }
.guide-cta p { color: rgba(255,255,255,.82); margin: 0 0 1.4rem; max-width: 52ch; }

/* Cards linking to the guides from the homepage. */
/* Fixed counts rather than auto-fit: with four cards, auto-fit lands on 3+1 at
   tablet widths. 4 across on desktop, 2x2 on tablet, stacked on a phone.
   If you add a fifth guide, revisit these numbers. */
.guides { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 1040px) { .guides { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px)  { .guides { grid-template-columns: 1fr; } }
.guidecard {
  display: block; text-decoration: none; color: inherit; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.guidecard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-300); }
.guidecard h3 { font-family: var(--serif); font-size: 1.2rem; margin: .6rem 0 .4rem; }
.guidecard p { color: var(--muted); font-size: .95rem; margin: 0; }
.guidecard__more { display: inline-block; margin-top: .9rem; font-size: .9rem; color: var(--green-700); font-weight: 600; }

/* ── Mowing game ─────────────────────────────────────────── */
.game { margin-top: 2rem; max-width: 720px; }
.game__stats {
  display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0 0 1rem; padding: 0;
}
.game__stats li {
  flex: 1 1 auto; min-width: 88px; background: var(--green-50); border-radius: var(--radius);
  padding: .55rem .8rem; display: flex; flex-direction: column; gap: .1rem;
}
.game__stats span { font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: var(--green-800); }
.game__stats strong { font-size: 1.15rem; font-variant-numeric: tabular-nums; }

.game__stage { position: relative; }
#gameCanvas {
  width: 100%; height: auto; display: block; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); background: var(--green-800);
}
#gameCanvas:focus-visible { outline: 3px solid var(--green-500); outline-offset: 3px; }

.game__overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(11, 32, 23, .78); border-radius: var(--radius); padding: 1rem;
}
.game__panel { text-align: center; color: #fff; max-width: 34ch; }
.game__panel h2 { color: #fff; margin: 0 0 .4rem; font-size: clamp(1.2rem, 3.5vw, 1.6rem); }
.game__panel p { color: rgba(255,255,255,.85); margin: 0 0 1.2rem; font-size: .95rem; }
.game__panelbtns { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.game__panelbtns .btn:not(.btn--primary) { border-color: rgba(255,255,255,.5); color: #fff; }
.game__panelbtns .btn:not(.btn--primary):hover { background: rgba(255,255,255,.14); }

/* Thumb controls — shown on touch screens, where arrow keys aren't available. */
.game__pad { display: none; flex-direction: column; align-items: center; gap: .5rem; margin-top: .9rem; }
.game__padrow { display: flex; gap: .5rem; }
.game__key {
  width: 62px; height: 52px; font-size: 1.2rem; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--white); color: var(--green-800);
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.game__key:active { background: var(--green-50); transform: translateY(1px); }
@media (hover: none), (max-width: 720px) { .game__pad { display: flex; } }

.game__foot {
  display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; align-items: center;
  justify-content: space-between; margin-top: 1.1rem;
}
.game__hint { margin: 0; font-size: .9rem; color: var(--muted); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Off the clock (owner's photography) ─────────────────── */
/* Squarer tiles and no captions, so these read as personal snapshots
   rather than as more project work. */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.6rem, 1.4vw, 1rem); }
.snap { margin: 0; }
.snap__img {
  aspect-ratio: 1 / 1; border-radius: var(--radius); background-size: cover;
  background-position: center; box-shadow: var(--shadow-sm);
  background-image: linear-gradient(140deg, var(--green-500), var(--green-800));
  transition: transform .3s ease;
}
.snap:hover .snap__img { transform: scale(1.02); }
.snap__img[data-photo="nature-1"] { background-image: url("images/nature-1.jpg"), linear-gradient(140deg, var(--green-500), var(--green-800)); }
.snap__img[data-photo="nature-2"] { background-image: url("images/nature-2.jpg"), linear-gradient(140deg, var(--green-600), var(--green-800)); }
.snap__img[data-photo="nature-3"] { background-image: url("images/nature-3.jpg"), linear-gradient(140deg, var(--green-500), var(--green-700)); }
.snap__img[data-photo="nature-4"] { background-image: url("images/nature-4.jpg"), linear-gradient(140deg, var(--green-600), var(--green-900)); }
.strip__sig { margin-top: 1.2rem; font-size: .92rem; color: var(--muted); font-style: italic; }
@media (max-width: 640px) { .strip { grid-template-columns: repeat(2, 1fr); } }

/* ── Why us ──────────────────────────────────────────────── */
.why { display: grid; grid-template-columns: 1.25fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.why__text p { color: rgba(255,255,255,.78); }
.why__text .ticks { margin-top: 1.6rem; }
.stats { display: grid; gap: 1rem; margin: 0; }
.stats > div {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
}
.stats dt { font-family: var(--serif); font-size: 1.85rem; color: var(--green-300); line-height: 1.1; }
.stats dd { margin: .25rem 0 0; font-size: .9rem; color: rgba(255,255,255,.72); }

/* ── Testimonials ────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; }
.quote-card {
  margin: 0; padding: 1.9rem 1.7rem; border-radius: var(--radius-lg);
  background: var(--sand); border: 1px solid var(--line);
}
.quote-card blockquote {
  margin: 0 0 1.2rem; font-family: var(--serif); font-size: 1.1rem; line-height: 1.5; color: var(--green-900);
}
.quote-card blockquote::before { content: "\201C"; font-size: 2.4rem; line-height: 0; vertical-align: -.35em; color: var(--green-300); margin-right: .1em; }
.quote-card figcaption { display: grid; gap: .1rem; font-size: .88rem; }
.quote-card figcaption strong { color: var(--text); }
.quote-card figcaption span { color: var(--muted); }
/* Visible reminder that these are not real reviews yet. Delete
   `is-placeholder` from the markup once real quotes are in. */
.is-placeholder { border-style: dashed; border-color: #c8d2cb; background: repeating-linear-gradient(135deg, #f4f6f3 0 12px, #eef1ed 12px 24px); }
.is-placeholder blockquote { color: var(--muted); font-style: italic; }

/* ── Service area ────────────────────────────────────────── */
.area { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.area p { color: var(--muted); margin-bottom: 1.6rem; }
.area__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .6rem; }
.area__list li {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: .6rem .9rem; font-size: .92rem; font-weight: 500;
  display: flex; align-items: center; gap: .5rem;
}
.area__list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); flex: none; }

/* ── Quote form ──────────────────────────────────────────── */
.quote { background: var(--green-800); color: rgba(255,255,255,.85); padding-block: clamp(3.75rem, 8vw, 6rem); }
.quote__inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.quote h2 { color: #fff; }
.quote__aside p { color: rgba(255,255,255,.78); }
.quote__contact { margin-top: 2rem; display: grid; gap: .8rem; }
.quote__contact a { display: inline-flex; align-items: center; gap: .6rem; color: #fff; font-weight: 600; text-decoration: none; font-size: 1.05rem; width: fit-content; }
.quote__contact a:hover { color: var(--green-300); }
.quote__contact svg { width: 19px; height: 19px; flex: none; }
.quote__contact svg path:not([stroke]) { fill: currentColor; }
.quote__contact svg path[stroke] { fill: none; }
.quote__hours { font-size: .9rem; color: rgba(255,255,255,.6); margin: .25rem 0 0; }

.form {
  background: var(--white); color: var(--text);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 1.05rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .87rem; font-weight: 600; margin-bottom: .38rem; color: var(--green-900); }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .97rem; color: var(--text);
  padding: .72rem .9rem; background: #fbfcfb;
  border: 1.5px solid var(--line); border-radius: 11px;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff;
  border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(64,145,108,.15);
}
.field input:user-invalid { border-color: #c0563f; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%235f6d66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 17px; padding-right: 2.4rem; }
.form .btn { margin-top: .4rem; }
.form__fine { font-size: .82rem; color: var(--muted); text-align: center; margin: .9rem 0 0; }
.form__status { margin: .9rem 0 0; font-size: .93rem; font-weight: 600; text-align: center; }
.form__status.is-ok { color: var(--green-700); }
.form__status.is-err { color: #c0563f; }
.hp { position: absolute; left: -9999px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,.66); padding-top: clamp(2.75rem, 5vw, 4rem); font-size: .93rem; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer .brand { color: var(--green-300); }
.footer .brand__text { color: #fff; }
.footer .brand__text em { color: var(--green-300); }
.footer__brand p { margin: 1rem 0 0; max-width: 34ch; }
.footer__nav { display: grid; gap: .6rem; align-content: start; }
.footer__nav a, .footer__contact a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--green-300); }
.footer__contact { display: grid; gap: .6rem; align-content: start; }
.footer__contact p { margin: 0; color: rgba(255,255,255,.5); }
.footer__legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem;
  font-size: .84rem; color: rgba(255,255,255,.45);
}
.footer__legal p { margin: 0; }

/* ── Scroll reveal ───────────────────────────────────────── */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .why, .area, .quote__inner { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hamburger { display: block; }
  .nav {
    position: fixed; inset: 116px 0 auto; z-index: 90;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: .5rem var(--gutter) 1.4rem;
    clip-path: inset(0 0 100% 0); opacity: 0;
    transition: clip-path .28s ease, opacity .2s ease;
  }
  .nav.is-open { clip-path: inset(0 0 0 0); opacity: 1; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav__cta { margin: 1.1rem 0 0; border-bottom: 0; justify-content: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .shot--tall { grid-row: span 1; }
  .shot--tall .shot__img { aspect-ratio: 4 / 3; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .topbar__note { display: none; }
  .topbar__inner { justify-content: space-between; }
  .nav { inset-block-start: 106px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .gallery { grid-template-columns: 1fr; }
  .shot--wide { grid-column: span 1; }
  .shot--wide .shot__img { aspect-ratio: 4 / 3; }
  .hero__cta .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
}

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