/* ═══════════════════════════════════════════════════════
   WETLANDS LAWN CARE & SNOW REMOVAL — "Survey of the Marsh"
   Per-client design system. Rebrand by editing tokens in :root.
   Palette grounds the "Wetlands" name in NW Ohio's Great Black
   Swamp: sawgrass green + limestone sand + brackish/frost teal.
═══════════════════════════════════════════════════════ */

:root {
  /* ── Brand palette ── */
  --sand:        #f4f0e6;  /* warm limestone — page background      */
  --sand-2:      #eae4d4;  /* elevated card on light                */
  --sand-3:      #e3dcc8;  /* hairlines / wells on light            */
  --cypress:     #14302a;  /* deep green — dark bands, footer, hero */
  --cypress-2:   #1c3e34;  /* raised surface on dark                */
  --marsh:       #2f6b4f;  /* primary brand green — buttons, links  */
  --marsh-bright:#3c835f;  /* hover                                 */
  --reed:        #7e9b7a;  /* muted sage                            */
  --water:       #2c7a74;  /* brackish-teal accent (doubles: frost) */
  --water-bright:#3aa99c;
  --ink:         #19211c;  /* body text on light                    */
  --ink-muted:   #495249;  /* secondary text on light               */
  --cream:       #f4f0e6;  /* text on dark                          */
  --cream-muted: rgba(244, 240, 230, 0.70);

  --border:      rgba(26, 35, 30, 0.13);
  --border-dark: rgba(244, 240, 230, 0.16);
  --danger:      #b4452f;

  /* ── Type ── */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "Space Mono", ui-monospace, "Courier New", monospace;

  /* ── Layout ── */
  --maxw: 1180px;
  --r: 14px;
  --r-lg: 24px;
  --r-pill: 999px;
  --nav-h: 76px;

  --shadow-sm: 0 1px 2px rgba(20, 48, 42, 0.06), 0 6px 18px rgba(20, 48, 42, 0.07);
  --shadow-md: 0 10px 40px rgba(20, 48, 42, 0.14);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════ RESET ═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 1.06rem;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; transition: color 0.2s var(--ease); }
img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  color: var(--ink);
  font-optical-sizing: auto;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.015em; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; }

p { margin: 0 0 1em; text-wrap: pretty; }
strong { font-weight: 700; }

::selection { background: var(--water); color: var(--cream); }

/* ── Reusable bits ── */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--water);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--water);
  opacity: 0.65;
}
.on-dark .eyebrow, .band--dark .eyebrow { color: var(--water-bright); }
.on-dark .eyebrow::before, .band--dark .eyebrow::before { background: var(--water-bright); }

.lead { font-size: 1.18rem; line-height: 1.6; color: var(--ink-muted); max-width: 58ch; }

/* ═══════════════════════════════ SKIP LINK ═══════════════════════════════ */
.skip-link {
  position: absolute;
  left: 0; top: -100px;
  background: var(--marsh);
  color: var(--cream);
  padding: 12px 24px;
  font-weight: 700;
  z-index: 2000;
  border-radius: 0 0 var(--r) 0;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════ NAVBAR ═══════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 240, 230, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: var(--nav-h);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { height: 44px; width: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--cypress);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--water);
  transition: width 0.2s var(--ease);
}
.nav-links a:hover { color: var(--marsh); }
.nav-links a:hover::after { width: 100%; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--marsh);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-phone:hover { background: var(--marsh-bright); transform: translateY(-1px); color: var(--cream); }
.nav-phone svg { width: 15px; height: 15px; }

/* Hamburger */
.hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 11px;
  cursor: pointer;
}
.hamburger-btn span { display: block; width: 22px; height: 2px; background: var(--cypress); margin: 5px 0; border-radius: 2px; }

.mobile-dropdown {
  display: none;
  border-bottom: 1px solid var(--border);
  background: var(--sand);
}
.mobile-dropdown.open { display: block; }
.mobile-nav { display: flex; flex-direction: column; padding: 14px 24px 26px; gap: 4px; }
.mobile-nav a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-phone { margin-top: 14px; justify-content: center; }

/* ═══════════════════════════════ MAIN / BANDS ═══════════════════════════════ */
main { flex: 1; width: 100%; }

.band { padding: 84px 0; }
.band--tight { padding: 56px 0; }
.band--dark { background: var(--cypress); color: var(--cream); }
.band--dark h1, .band--dark h2, .band--dark h3, .band--dark h4 { color: var(--cream); }
.band--dark p { color: var(--cream-muted); }
.band--sand2 { background: var(--sand-2); }

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 0 0 14px; }
.section-head p { margin: 0; }

/* ═══════════════════════════════ BUTTONS ═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease),
              color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 32px; font-size: 1.04rem; }

.btn-primary { background: var(--marsh); color: var(--cream); }
.btn-primary:hover { background: var(--marsh-bright); color: var(--cream); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--marsh); color: var(--marsh); }

.btn-ghost { background: transparent; color: var(--cream); border-color: var(--border-dark); }
.btn-ghost:hover { border-color: var(--water-bright); color: var(--water-bright); }

.btn-water { background: var(--water); color: var(--cream); }
.btn-water:hover { background: var(--water-bright); color: var(--cream); }

/* ═══════════════════════════════ HERO ═══════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cypress);
  color: var(--cream);
  padding: clamp(72px, 11vw, 132px) 0 clamp(64px, 9vw, 104px);
}
/* background photo behind the hero, masked by a cypress overlay so the
   text stays crisp and the (low-res) photo reads as atmosphere */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/gallery/wide-striped-lawn-blue-sky.jpg") center 35% / cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(20, 48, 42, 0.96) 0%,
    rgba(20, 48, 42, 0.88) 42%,
    rgba(20, 48, 42, 0.60) 100%);
}
/* topographic contour signature */
.hero-contours {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  color: var(--water-bright);
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(100deg, transparent 30%, #000 100%);
          mask-image: linear-gradient(100deg, transparent 30%, #000 100%);
}
.hero-contours svg { width: 100%; height: 100%; }
.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--water-bright);
  margin: 0 0 22px;
}
.hero h1 {
  color: var(--cream);
  max-width: 15ch;
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.hero h1 em { font-style: italic; color: var(--water-bright); }
.hero-sub { font-size: 1.2rem; line-height: 1.6; color: var(--cream-muted); max-width: 50ch; margin: 0 0 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid var(--border-dark);
  border-radius: var(--r-pill);
  background: rgba(244, 240, 230, 0.04);
}
.stars { color: #e9b949; letter-spacing: 2px; font-size: 0.95rem; }
.hero-proof span { font-size: 0.92rem; color: var(--cream-muted); }
.hero-proof strong { color: var(--cream); }

/* ═══════════════════════════════ TRUST STRIP ═══════════════════════════════ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-ico {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--water);
  color: var(--cream);
}
.trust-ico svg { width: 19px; height: 19px; }
.trust-item b { display: block; font-size: 0.98rem; color: var(--ink); }
.trust-item span { font-size: 0.84rem; color: var(--ink-muted); }

/* ═══════════════════════════════ SERVICES ═══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.band--sand2 .service-card { background: #fff; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
/* photo header that bleeds to the card edges */
.service-photo {
  display: block;
  width: calc(100% + 56px);
  height: 172px;
  margin: -30px -28px 24px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.service-card:hover .service-photo { }
.service-ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--marsh);
  color: var(--cream);
  margin-bottom: 18px;
}
.service-ico svg { width: 26px; height: 26px; }
.service-card h3 { margin: 0 0 10px; }
.service-card p { margin: 0 0 16px; color: var(--ink-muted); font-size: 0.97rem; }
.service-list { list-style: none; margin: 0; padding: 0; }
.service-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
  font-size: 0.92rem;
  color: var(--ink-muted);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--water);
}

/* ═══════════════════════════════
   SERVICE ROWS (alternating photo + detail)
═══════════════════════════════ */
.svc-rows { display: flex; flex-direction: column; gap: 64px; }
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.svc-row:nth-child(even) .svc-media { order: 2; }

.svc-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.svc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.svc-row:hover .svc-media img { transform: scale(1.04); }
/* gradient accent strip along the top of the photo */
.svc-media::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--marsh), var(--water-bright));
}
.svc-num {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(20, 48, 42, 0.78);
  color: var(--cream);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.02rem;
  border: 1px solid rgba(244, 240, 230, 0.2);
}

.svc-body h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 0 0 14px; }
.svc-body > p { color: var(--ink-muted); margin: 0 0 22px; max-width: 48ch; }
.svc-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
}
.svc-tags li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--marsh);
  background: var(--sand-2);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: var(--r-pill);
}
.svc-body .btn svg { transition: transform 0.2s var(--ease); }
.svc-body .btn:hover svg { transform: translateX(3px); }

@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr; gap: 24px; }
  .svc-row:nth-child(even) .svc-media { order: 0; }
}

/* ── Services preview cards (home) — a teaser of the services page ── */
.svc-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc-preview {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--ink);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.svc-preview:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-preview-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.svc-preview-media::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--marsh), var(--water-bright));
}
.svc-preview-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.svc-preview:hover .svc-preview-media img { transform: scale(1.06); }
.svc-preview-body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-preview-body .eyebrow { margin: 0 0 10px; }
.svc-preview-body h3 { font-size: 1.12rem; margin: 0 0 8px; }
.svc-preview-body p { font-size: 0.9rem; color: var(--ink-muted); margin: 0 0 16px; }
.svc-preview-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--marsh);
}
.svc-preview-cta svg { transition: transform 0.2s var(--ease); }
.svc-preview:hover .svc-preview-cta { color: var(--marsh-bright); }
.svc-preview:hover .svc-preview-cta svg { transform: translateX(3px); }

@media (max-width: 920px) { .svc-preview-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-preview-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════ SEASONS (two-season split) ═══════════════════════════════ */
.seasons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.season {
  border-radius: var(--r-lg);
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
}
.season--green {
  background:
    linear-gradient(150deg, rgba(31, 74, 56, 0.88), rgba(20, 48, 42, 0.94)),
    url("../images/gallery/striped-lawn-tree.jpg") center / cover no-repeat;
  color: var(--cream);
}
.season--snow {
  background:
    linear-gradient(150deg, rgba(20, 48, 42, 0.82), rgba(20, 48, 42, 0.93)),
    url("../images/gallery/plow-truck-snowy-lot.jpg") center / cover no-repeat;
  color: var(--cream);
  border: 1px solid var(--border-dark);
}
.season h3 { color: var(--cream); font-size: 1.6rem; margin: 0 0 6px; }
.season p { color: var(--cream-muted); margin: 0 0 18px; }
.season .season-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.75);
  margin-bottom: 14px;
  display: block;
}
.season ul { list-style: none; margin: 0; padding: 0; }
.season li { padding: 6px 0; border-top: 1px solid rgba(244,240,230,0.14); font-size: 0.96rem; }
.season li:first-child { border-top: none; }

/* ═══════════════════════════════ PROCESS / STEPS ═══════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.step { position: relative; }
.step-n {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--water);
  display: block;
  margin-bottom: 12px;
}
.step h4 { margin: 0 0 8px; }
.step p { margin: 0; color: var(--ink-muted); font-size: 0.96rem; }
.band--dark .step p { color: var(--cream-muted); }

/* ═══════════════════════════════ STATS (about) ═══════════════════════════════ */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stat { text-align: left; }
.stat-n { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 600; color: var(--water-bright); line-height: 1; }
.stat-l { font-size: 0.96rem; color: var(--cream-muted); margin-top: 8px; }

/* ═══════════════════════════════ REVIEWS / TESTIMONIALS ═══════════════════════════════ */
/* aggregate trust bar */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 580px;
  margin: 0 auto 40px;
  padding: 15px 28px;
  background: var(--cypress-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-pill);
}
.reviews-summary .rs-fb { display: inline-flex; align-items: center; gap: 8px; color: #1877f2; font-weight: 700; font-size: 0.92rem; }
.reviews-summary .rs-fb svg { width: 20px; height: 20px; }
.reviews-summary .stars-lg { font-size: 1.2rem; letter-spacing: 3px; }
.reviews-summary .rs-text { margin: 0; color: var(--cream-muted); font-size: 0.94rem; }
.reviews-summary .rs-text strong { color: var(--cream); }
a.reviews-summary { cursor: pointer; transition: border-color 0.2s var(--ease); }
a.reviews-summary:hover { border-color: var(--water-bright); }

/* uniform review grid — equal-height cards (3 x 2 with six reviews) */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 22px;
}
.review {
  display: flex;
  flex-direction: column;
  background: var(--cypress-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 24px 24px 26px;
  position: relative;
}
.review-fb { position: absolute; top: 22px; right: 22px; color: #1877f2; line-height: 0; transition: opacity 0.2s var(--ease); }
.review-fb svg { width: 19px; height: 19px; display: block; }
.review-fb:hover { opacity: 0.72; }
.review-head { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; padding-right: 28px; }
.review-avatar {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--marsh);
  color: var(--cream);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.review:nth-child(3n+2) .review-avatar { background: var(--water); }
.review:nth-child(3n) .review-avatar { background: var(--reed); color: var(--cypress); }
.review-id { display: flex; flex-direction: column; line-height: 1.25; }
.review-name { display: block; font-weight: 700; color: var(--cream); font-size: 0.98rem; }
.review-meta { display: block; font-size: 0.78rem; color: var(--cream-muted); }
.review .stars { display: block; margin-bottom: 12px; }
.review blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
/* below 3-up, let cards size to their content (no forced equal height) */
@media (max-width: 920px) { .reviews { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; } }
@media (max-width: 600px) { .reviews { grid-template-columns: 1fr; grid-auto-rows: auto; } }

/* "show all reviews" toggle — mobile only, keeps initial scroll short */
.reviews-more-wrap { display: none; }
.reviews-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 12px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border-dark);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.reviews-more svg { width: 16px; height: 16px; }
.reviews-more:hover { border-color: var(--water-bright); color: var(--water-bright); }
@media (max-width: 600px) {
  .reviews:not(.is-open) .review:nth-child(n + 4) { display: none; }
  .reviews-more-wrap { display: block; text-align: center; }
  .reviews.is-open + .reviews-more-wrap { display: none; }
}

/* ═══════════════════════════════ GALLERY ═══════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
/* larger tiles on the dedicated gallery page */
.gallery-grid.large {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cypress);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
}
.gallery-item.tall { aspect-ratio: 3 / 4; }
.gallery-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
/* legibility scrim under the caption when the tile holds a photo */
.gallery-item:has(img)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20, 48, 42, 0.92) 0%, rgba(20, 48, 42, 0.15) 42%, transparent 68%);
}
/* Placeholder art (until real photos): layered marsh gradient + label */
.gallery-item.ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(58,169,156,0.35), transparent 60%),
    linear-gradient(160deg, var(--marsh), var(--cypress) 75%);
}
.gallery-item .gallery-tag {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 16px;
  color: var(--cream);
}
.gallery-item .gallery-tag span { display: block; opacity: 0.7; font-size: 0.62rem; margin-top: 2px; }

/* ═══════════════════════════════ FAQ ═══════════════════════════════ */
.faq { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--water);
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { margin: 0 0 22px; color: var(--ink-muted); max-width: 64ch; }

/* ═══════════════════════════════ SPLIT (image + text) ═══════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media {
  aspect-ratio: 1 / 1;        /* match the square source so it isn't stretched/cropped as hard */
  width: 100%;
  max-width: 440px;
  margin-left: auto;          /* sit to the right of the column */
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, var(--marsh), var(--cypress));
  border: 1px solid var(--border);
}
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════ CTA BANNER ═══════════════════════════════ */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--marsh);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(48px, 7vw, 72px) clamp(28px, 6vw, 64px);
  text-align: center;
}
.cta h2 { color: var(--cream); margin: 0 0 14px; }
.cta p { color: rgba(244,240,230,0.82); max-width: 48ch; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .hero-contours { opacity: 0.4; color: var(--cream); }

/* ═══════════════════════════════ PAGE HEADER (inner pages) ═══════════════════════════════ */
.page-header {
  background: var(--cypress);
  color: var(--cream);
  padding: clamp(60px, 9vw, 104px) 0 clamp(48px, 7vw, 76px);
  position: relative;
  overflow: hidden;
}
.page-header h1 { color: var(--cream); margin: 0 0 14px; }
.page-header p { color: var(--cream-muted); max-width: 56ch; margin: 0; font-size: 1.12rem; }
.page-header .container { position: relative; z-index: 1; }

/* photo-behind-overlay treatment for inner-page headers (matches the home hero) */
.page-header-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.page-header-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(20, 48, 42, 0.96) 0%,
    rgba(20, 48, 42, 0.90) 50%,
    rgba(20, 48, 42, 0.66) 100%);
}
/* lets any dark section host a background photo with content above it */
.has-photo-bg { position: relative; overflow: hidden; }
.has-photo-bg > .container { position: relative; z-index: 1; }

/* ═══════════════════════════════ FORMS ═══════════════════════════════ */
form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

input[type="text"], input[type="email"], input[type="tel"],
input[type="password"], select, textarea {
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--sand-3);
  border-radius: var(--r);
  font: inherit;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
input::placeholder, textarea::placeholder { color: #9aa39a; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--marsh);
  box-shadow: 0 0 0 3px rgba(47, 107, 79, 0.15);
}
textarea { min-height: 150px; resize: vertical; }

label { font-size: 0.92rem; color: var(--ink-muted); display: flex; align-items: center; gap: 9px; }
label input[type="checkbox"] { width: auto; accent-color: var(--marsh); }

form button[type="submit"] { align-self: flex-start; }

.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.flash { padding: 14px 18px; border-radius: var(--r); font-size: 0.96rem; margin: 0 0 8px; }
.flash-success { background: rgba(47,107,79,0.12); border: 1px solid rgba(47,107,79,0.32); color: var(--marsh); }
.flash-error   { background: rgba(180,69,47,0.10); border: 1px solid rgba(180,69,47,0.32); color: var(--danger); }

/* ── Contact: two-card layout (info + form) ── */
.contact-2col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.c-card {
  position: relative;
  background: var(--cypress-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 42px 38px;
  overflow: hidden;
}
/* gradient accent strip along the top edge */
.c-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--marsh), var(--water-bright));
}
.c-card h1, .c-card h2 { margin: 0; color: var(--cream); }
.c-intro { color: var(--cream-muted); margin: 14px 0 30px; font-size: 0.98rem; }
.c-sub { color: var(--cream-muted); margin: 8px 0 30px; }

/* info rows */
.c-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.c-row { display: flex; align-items: center; gap: 16px; }
.c-ico {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1.5px solid rgba(58, 169, 156, 0.4);
  color: var(--water-bright);
}
.c-ico svg { width: 20px; height: 20px; }
.c-row .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--water-bright);
  margin-bottom: 3px;
}
.c-row .value { display: block; font-size: 1.02rem; color: var(--cream); font-weight: 600; line-height: 1.25; }
.c-row a { color: var(--cream); }
.c-row a:hover { color: var(--water-bright); }

.c-divider { border: none; border-top: 1px solid var(--border-dark); margin: 32px 0; }
.c-response .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--water-bright);
  margin-bottom: 10px;
}
.c-response p { color: var(--cream-muted); margin: 0; font-size: 0.95rem; }
.c-response strong { color: var(--cream); }

/* form */
.c-form { display: flex; flex-direction: column; gap: 18px; }
.c-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.c-field { display: flex; flex-direction: column; gap: 8px; }
.c-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.c-field .req { color: var(--water-bright); }
.c-form input[type="text"],
.c-form input[type="email"],
.c-form input[type="tel"],
.c-form select,
.c-form textarea {
  background: rgba(9, 20, 16, 0.55);
  border: 1px solid var(--border-dark);
  color: var(--cream);
  border-radius: var(--r);
  padding: 13px 15px;
}
.c-form ::placeholder { color: rgba(244, 240, 230, 0.35); }
.c-form input:focus, .c-form select:focus, .c-form textarea:focus {
  outline: none;
  border-color: var(--water-bright);
  box-shadow: 0 0 0 3px rgba(58, 169, 156, 0.18);
}
.c-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4f0e6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.c-form textarea { min-height: 150px; resize: vertical; }
.c-consent { flex-direction: row; align-items: flex-start; gap: 10px; color: var(--cream-muted); font-size: 0.9rem; }
.c-consent input { margin-top: 3px; accent-color: var(--water); }
.c-consent a { color: var(--water-bright); font-weight: 600; }
.c-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: var(--r);
  padding: 16px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(135deg, var(--marsh), var(--water-bright));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.18s var(--ease), filter 0.2s var(--ease);
}
.c-submit:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* ═══════════════════════════════ FOOTER ═══════════════════════════════ */
.site-footer { background: var(--cypress); color: var(--cream-muted); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-sub { color: var(--cream-muted); }
.footer-logo { width: 188px; height: auto; }
.footer-brand p { margin: 18px 0 0; max-width: 34ch; font-size: 0.94rem; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--water-bright);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--cream-muted); font-size: 0.95rem; }
.footer-col a:hover { color: var(--cream); }
.footer-areas { font-size: 0.95rem; line-height: 1.9; }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
}
.footer-bottom a { color: var(--water-bright); font-weight: 600; }
.footer-bottom a:hover { color: var(--cream); }

/* ═══════════════════════════════ PROSE (privacy / terms / sitemap) ═══════════════════════════════ */
.prose {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 60px);
  box-shadow: var(--shadow-sm);
}
.prose h2 {
  font-size: 1.4rem;
  margin: 2em 0 0.55em;
  padding-top: 1.4em;
  border-top: 1px solid var(--border);
  color: var(--ink);
}
.prose h2:first-of-type { margin-top: 1.2em; }
.prose p, .prose li { color: var(--ink-muted); }
.prose .meta + p { font-size: 1.1rem; color: var(--ink); }
.prose ul { padding-left: 22px; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.4em; }
.prose ul li::marker { color: var(--water); }
.prose .meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--marsh);
  background: var(--sand-2);
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin: 0 0 1.6em;
}
.prose a { color: var(--marsh); font-weight: 600; }
.prose a:hover { text-decoration: underline; }

/* ═══════════════════════════════ ERROR PAGES ═══════════════════════════════ */
.error-wrapper { min-height: 64vh; display: grid; place-items: center; padding: 60px 24px; }
.error-card { max-width: 640px; text-align: center; }
.error-code { font-family: var(--font-mono); font-size: 4.5rem; font-weight: 700; color: var(--water); line-height: 1; margin-bottom: 12px; }
.error-card h1 { margin: 0 0 14px; }
.error-card p { color: var(--ink-muted); margin: 0 0 30px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════ MOTION / A11Y ═══════════════════════════════ */
:focus-visible { outline: 2px solid var(--water); outline-offset: 2px; border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ═══════════════════════════════ RESPONSIVE ═══════════════════════════════ */
@media (max-width: 920px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-media { aspect-ratio: 1 / 1; order: -1; margin: 0 auto; max-width: 360px; }
  .contact-2col { grid-template-columns: 1fr; gap: 22px; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 24px; }
  .seasons { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav > .nav-phone { display: none; }
  .hamburger-btn { display: block; }
  .band { padding: 60px 0; }
  .form-row, .c-form .form-row { grid-template-columns: 1fr; }
  .c-card { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .trust-strip { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}

/* ═══════════════════════════════ COOKIE CONSENT ═══════════════════════════════ */
.cc-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 420px;
  z-index: 9999;
  background: var(--cypress);
  color: var(--cream);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-md);
  display: none;
}
.cc-banner.show { display: block; }
.cc-banner h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
}
.cc-banner p { margin: 0 0 16px; font-size: 0.88rem; line-height: 1.6; color: var(--cream-muted); }
.cc-banner a { color: var(--water-bright); font-weight: 600; }
.cc-actions { display: flex; gap: 10px; }
.cc-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.cc-btn:hover { transform: translateY(-1px); }
.cc-accept { background: var(--marsh); color: var(--cream); }
.cc-accept:hover { background: var(--marsh-bright); }
.cc-decline { background: transparent; color: var(--cream-muted); border-color: var(--border-dark); }
.cc-decline:hover { color: var(--cream); border-color: var(--water-bright); }
.cookie-prefs-link { cursor: pointer; }
@media (max-width: 560px) {
  /* sits above the mobile sticky CTA bar */
  .cc-banner { left: 12px; right: 12px; bottom: 88px; max-width: none; }
}

/* ═══════════════════════════════ MOBILE STICKY CTA BAR ═══════════════════════════════ */
.mobile-cta { display: none; }
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
}
.mobile-cta .mc-call { background: #fff; color: var(--marsh); border-color: var(--border); }
.mobile-cta .mc-call svg { width: 17px; height: 17px; }
.mobile-cta .mc-quote { background: var(--marsh); color: var(--cream); }

/* show the sticky bar on mobile (placed after the base rule so it wins the cascade) */
@media (max-width: 720px) {
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(244, 240, 230, 0.93);
    backdrop-filter: saturate(140%) blur(10px);
    border-top: 1px solid var(--border);
  }
  body { padding-bottom: 78px; }
}
