@charset "UTF-8";
/* ==========================================================================
   Outfront Landscaping — design system
   Single stylesheet, no framework, no build step beyond a copy.
   ========================================================================== */

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Tokens --------------------------------------------------------------- */
:root {
  --green-900: #0e2a18;
  --green-800: #143a21;
  --green-700: #1a4d2c;
  /* Drives eyebrows, links, stat figures, icons and hover states site-wide.
     Light mode uses the readable shade; dark mode swaps in the bright one. */
  --green-600: #55730a;
  --green-500: #92c01b;

  /* Brand accent palette (client-supplied).
     These three are bright enough that they only work as FILLS or as text on a
     dark background — as text on the cream page they measure 1.3-2.1:1, well
     under the 4.5:1 minimum. --lime-700 is a darker shade of the same hue,
     used wherever lime-coloured text sits on a light background. */
  --lime-300:  #d5ea07;   /* brightest highlight */
  --lime-400:  #9fbd04;
  --lime-500:  #92c01b;   /* default fill */
  --lime-600:  #6b8c0c;   /* fill borders — 3.7:1 on cream, meets the 3:1 UI rule */
  --lime-700:  #55730a;   /* derived: 5.2:1 on cream, safe for text */
  --lime-ink:  #16250a;   /* text that sits ON a lime fill — 7.5:1 to 12:1 */

  --sand-50:  #fbf9f4;
  --sand-100: #f4efe4;
  --sand-200: #e8e0cf;

  /* Neutral dark charcoal for the footer — sits under the lime accents without
     competing with them the way another green did. */
  --charcoal:     #242729;
  --charcoal-txt: #b8bdb6;
  --charcoal-mut: #8d918b;

  --ink-900: #14180f;
  --ink-700: #333a2c;
  --ink-500: #5c6552;
  --ink-300: #8b937f;

  --bg:        var(--sand-50);
  --bg-raised: #ffffff;
  --bg-sunken: var(--sand-100);
  --text:      var(--ink-900);
  --text-soft: var(--ink-500);
  --border:    #e2dccb;
  --brand:     var(--lime-500);
  --brand-ink: var(--lime-ink);
  --accent:    var(--lime-300);
  --focus:     var(--lime-700);

  --shadow-sm: 0 1px 2px rgba(20, 24, 15, .06), 0 2px 6px rgba(20, 24, 15, .05);
  --shadow-md: 0 4px 12px rgba(20, 24, 15, .08), 0 12px 32px rgba(20, 24, 15, .07);
  --shadow-lg: 0 12px 28px rgba(20, 24, 15, .12), 0 32px 64px rgba(20, 24, 15, .10);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-full: 999px;

  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);

  --font: 'Outfit', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;

  --step--1: clamp(.86rem, .83rem + .14vw, .94rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.12rem);
  --step-1:  clamp(1.19rem, 1.11rem + .38vw, 1.44rem);
  --step-2:  clamp(1.42rem, 1.28rem + .68vw, 1.9rem);
  --step-3:  clamp(1.7rem, 1.45rem + 1.15vw, 2.5rem);
  --step-4:  clamp(2.02rem, 1.62rem + 1.85vw, 3.3rem);
  --step-5:  clamp(2.4rem, 1.75rem + 2.9vw, 4.35rem);
}

/* Dark theme, applied automatically when the visitor's OS is set to dark.
   TO SHIP LIGHT-ONLY: change the line below to `@media (prefers-color-scheme: none)`
   or delete this whole block. Everything then uses the light palette above,
   which is the design the brand photography was chosen for. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --bg:        #141a12;
    --bg-raised: #1e2619;
    --bg-sunken: #0f1410;
    --text:      #eaf1e2;
    --text-soft: #aab89c;
    --border:    #333e2c;
    --brand:     var(--lime-500);
    --brand-ink: #0b1207;
    --sand-100:  #1e2619;
    /* Accent green has to lighten in dark mode or links and eyebrows fail
       contrast against the dark background. */
    --green-600: var(--lime-300);
    --green-500: var(--lime-400);
    --focus:     var(--lime-300);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .45);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, .5);
  }
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

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

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

/* Inline icons.
   An <svg> carrying only a viewBox has no intrinsic size and will stretch to
   fill whatever box it lands in. Every icon() call emits .ic so it always has a
   sane default; the rules further down only adjust it where a context needs a
   different size. Do not remove this. */
.ic {
  width: 1em;
  height: 1em;
  flex: none;
  display: inline-block;
  vertical-align: -.125em;
}
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -.022em; text-wrap: balance; }
p, li { text-wrap: pretty; }
a { color: inherit; }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--lime-300); color: var(--lime-ink); }

/* --- Layout helpers ------------------------------------------------------- */
.wrap { width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - var(--gut) * 2, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: clamp(3.25rem, 7vw, 6.5rem); }
.section--sunken { background: var(--bg-sunken); }
.section--dark { background: var(--green-900); color: #eaf3e6; }
.section--dark h2, .section--dark h3 { color: #fff; }
.stack > * + * { margin-top: 1.05em; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--green-800); color: #fff; padding: .8rem 1.3rem;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-600);
}
.eyebrow::before {
  content: ''; width: 1.6rem; height: 2px; background: var(--accent); border-radius: 2px;
}
.section--dark .eyebrow { color: var(--lime-300); }

.section-head { max-width: 58ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 { font-size: var(--step-3); margin-top: .7rem; }
.section-head p { margin-top: .9rem; color: var(--text-soft); font-size: var(--step-1); line-height: 1.5; }
.section--dark .section-head p { color: #b9cdb3; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .92rem 1.6rem; border-radius: var(--r-full);
  font-weight: 650; font-size: var(--step-0); line-height: 1.2;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* Lime fills carry a slightly darker border of the same hue. On the cream
   background the fill alone is only ~2:1 against the page, which would leave the
   button edge hard to make out; the border lifts that boundary to 3.7:1. */
.btn.btn--primary {
  background: var(--lime-500); color: var(--lime-ink);
  border-color: var(--lime-600); box-shadow: var(--shadow-md);
}
.btn.btn--primary:hover { background: var(--lime-400); box-shadow: var(--shadow-lg); }

.btn.btn--accent {
  background: var(--lime-300); color: var(--lime-ink);
  border-color: var(--lime-500); box-shadow: var(--shadow-md);
}
.btn.btn--accent:hover { background: #e3f43d; box-shadow: var(--shadow-lg); }

.btn.btn--ghost { background: transparent; border-color: currentColor; }
.btn.btn--ghost:hover { background: color-mix(in srgb, currentColor 10%, transparent); }

.btn.btn--light { background: #fff; color: var(--lime-ink); }

.btn.btn--dark { background: var(--green-800); color: #fff; border-color: var(--green-900); }
.btn.btn--dark:hover { background: var(--green-700); }
.btn.btn--light:hover { background: var(--sand-100); }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* --- Header --------------------------------------------------------------- */
.topbar {
  background: var(--lime-500); color: var(--lime-ink);
  font-size: var(--step--1); padding-block: .5rem;
}
.topbar__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem; }
@media (max-width: 859px) { .topbar { display: none; } }
.topbar a { color: var(--lime-ink); text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }
.topbar__meta { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.topbar__meta > span { display: inline-flex; align-items: center; gap: .4rem; }
.topbar .ic { width: 1.05em; height: 1.05em; color: var(--lime-ink); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .75rem; min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.brand img { width: auto; height: 56px; }
.brand__txt { display: none; }

.nav { display: none; }
@media (min-width: 1060px) {
  .nav { display: flex; align-items: center; gap: .15rem; }
}
.nav a {
  display: block; padding: .55rem .85rem; border-radius: var(--r-sm);
  text-decoration: none; font-weight: 550; font-size: .98rem; color: var(--text);
  transition: background-color .15s ease, color .15s ease;
}
.nav a:hover { background: var(--bg-sunken); color: var(--green-600); }
.nav a[aria-current='page'] { color: var(--green-600); font-weight: 700; }

.nav__group { position: relative; }
.nav__group > button {
  display: flex; align-items: center; gap: .35rem;
  padding: .55rem .85rem; border: 0; background: none; border-radius: var(--r-sm);
  font-weight: 550; font-size: .98rem; cursor: pointer;
}
.nav__group > button:hover { background: var(--bg-sunken); color: var(--green-600); }
.nav__group > button svg { width: .7em; height: .7em; transition: transform .2s ease; }
.nav__group[data-open='true'] > button svg { transform: rotate(180deg); }
/* Invisible bridge across the gap between the button and the panel. Without it
   the pointer leaves .nav__group on the way down and the menu closes before it
   can be reached. A pseudo-element is hit-tested as part of its owner, so this
   keeps :hover alive without changing layout. */
.nav__group::after {
  content: ''; position: absolute; left: 0; right: 0; top: 100%;
  height: .75rem; display: none;
}
.nav__group[data-open='true']::after { display: block; }

.nav__panel {
  position: absolute; top: calc(100% + .5rem); left: 0; z-index: 50;
  min-width: 300px; padding: .6rem;
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  display: none;
}
.nav__group[data-open='true'] .nav__panel { display: grid; gap: .1rem; }
.nav__panel--wide { min-width: 560px; grid-template-columns: 1fr 1fr; }
.nav__panel a { font-size: .93rem; padding: .5rem .7rem; }
.nav__panel .nav__all {
  grid-column: 1 / -1; margin-top: .35rem; padding-top: .5rem;
  border-top: 1px solid var(--border); font-weight: 700; color: var(--green-600);
  display: flex; align-items: center; gap: .4rem;
}
.nav__panel .nav__all .ic { width: .9em; height: .9em; }

.header-cta { display: none; }
@media (min-width: 720px) { .header-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--border);
  background: var(--bg-raised); border-radius: var(--r-sm); cursor: pointer;
}
@media (min-width: 1060px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none; border-top: 1px solid var(--border);
  background: var(--bg-raised); max-height: 76vh; overflow-y: auto;
}
.mobile-nav[data-open='true'] { display: block; }
.mobile-nav ul { list-style: none; padding: .6rem 0 1.4rem; margin: 0; }
.mobile-nav a {
  display: block; padding: .78rem var(--gut); text-decoration: none; font-weight: 550;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { background: var(--bg-sunken); }
.mobile-nav .is-sub { padding-left: calc(var(--gut) + 1.1rem); font-size: .93rem; color: var(--text-soft); }
.mobile-nav__head {
  padding: 1rem var(--gut) .4rem; font-size: var(--step--1); font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--green-600);
}

/* --- Hero ----------------------------------------------------------------- */
/* The dark background is a fallback, not decoration: hero text is white, so if
   the image 404s or is still loading the copy must stay legible on its own. */
.hero { position: relative; isolation: isolate; color: #fff; background: var(--green-900); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(9, 28, 15, .93) 0%, rgba(9, 28, 15, .78) 42%, rgba(9, 28, 15, .38) 100%);
}
.hero__in { padding-block: clamp(3.5rem, 9vw, 7.5rem); }
.hero__in > * { max-width: 44rem; }
.hero h1 { font-size: var(--step-5); color: #fff; }
.hero__lede { margin-top: 1.2rem; font-size: var(--step-1); color: #d9e8d4; line-height: 1.55; }
.hero .btn-row { margin-top: 2rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem .4rem .55rem; margin-bottom: 1.4rem;
  background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-full); font-size: var(--step--1); font-weight: 600;
  backdrop-filter: blur(6px);
}
.hero__badge .stars { color: #ffd75e; letter-spacing: .06em; }

.hero__strip {
  display: flex; flex-wrap: wrap; gap: .55rem 1.6rem;
  margin-top: 2.2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: var(--step--1); color: #c6dcbf;
}
.hero__strip span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__strip svg { width: 1.05em; height: 1.05em; color: var(--lime-300); flex: none; }

/* Compact hero for interior pages */
.pagehead { position: relative; isolation: isolate; color: #fff; background: var(--green-900); }
.pagehead__media { position: absolute; inset: 0; z-index: -2; }
.pagehead__media picture { display: block; width: 100%; height: 100%; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(9, 28, 15, .94) 12%, rgba(9, 28, 15, .66) 100%);
}
.pagehead__in { padding-block: clamp(2.4rem, 5.5vw, 4.5rem); }
.pagehead__in > * { max-width: 50rem; }
.pagehead h1 { font-size: var(--step-4); color: #fff; margin-top: .55rem; }
.pagehead__lede { margin-top: 1rem; font-size: var(--step-1); color: #d5e6d0; line-height: 1.55; }
.pagehead .btn-row { margin-top: 1.6rem; }

/* --- Breadcrumbs ---------------------------------------------------------- */
.crumbs { font-size: var(--step--1); }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.crumbs li { display: flex; align-items: center; gap: .35rem; }
.crumbs li + li::before { content: '›'; opacity: .55; }
.crumbs a { text-decoration: none; opacity: .85; }
.crumbs a:hover { text-decoration: underline; opacity: 1; }
.crumbs [aria-current='page'] { opacity: .7; }

/* --- Cards & grids -------------------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr)); }

.card {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-sunken); }
.card__media picture { display: block; width: 100%; height: 100%; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card__body { padding: clamp(1.15rem, 2.2vw, 1.6rem); display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: var(--step-1); }
.card p { margin-top: .6rem; color: var(--text-soft); font-size: .97rem; line-height: 1.6; }
.card__more {
  margin-top: auto; padding-top: 1.1rem; font-weight: 650; color: var(--green-600);
  display: inline-flex; align-items: center; gap: .4rem; font-size: .97rem;
}
.card__more svg { width: .9em; height: .9em; transition: transform .2s ease; }

.card--link { text-decoration: none; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-500); }
.card--link:hover .card__media img { transform: scale(1.05); }
.card--link:hover .card__more svg { transform: translateX(4px); }

.icon-badge {
  width: 3rem; height: 3rem; border-radius: var(--r-md); flex: none;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: color-mix(in srgb, var(--lime-300) 32%, transparent);
  /* --green-600 flips with the colour scheme (dark olive on light, bright lime
     on dark). Hardcoding --lime-700 here left the glyph at 1.15:1 in dark mode. */
  color: var(--green-600);
}
.icon-badge svg { width: 1.55rem; height: 1.55rem; }
.section--dark .icon-badge { background: rgba(255, 255, 255, .12); color: var(--lime-300); }

/* On a dark page the 32% tint is too close in value to a bright lime glyph.
   Dropping it to 16% takes the glyph from 4.7:1 to about 7.6:1. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .icon-badge {
    background: color-mix(in srgb, var(--lime-300) 16%, transparent);
  }
}

/* --- Feature list --------------------------------------------------------- */
.features { list-style: none; padding: 0; display: grid; gap: 1.1rem; }
@media (min-width: 700px) { .features { grid-template-columns: 1fr 1fr; gap: 1.3rem 2rem; } }
.features li { display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: start; }
.features .tick {
  width: 1.6rem; height: 1.6rem; border-radius: 50%; margin-top: .15rem;
  display: grid; place-items: center; flex: none;
  background: var(--lime-500); color: var(--lime-ink);
}
.features .tick svg { width: .9rem; height: .9rem; }
.features strong { display: block; font-size: 1.03rem; font-weight: 650; }
.features span.body { color: var(--text-soft); font-size: .95rem; line-height: 1.55; }

/* --- Steps ---------------------------------------------------------------- */
.steps { list-style: none; padding: 0; counter-reset: s; display: grid; gap: 1.4rem; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.6rem; } }
.steps li { counter-increment: s; position: relative; padding-top: 3.3rem; }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-size: 1.05rem; font-weight: 750; letter-spacing: .04em;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--lime-500); color: var(--lime-ink);
}
.section--dark .steps li::before { background: var(--lime-300); color: var(--lime-ink); }
.steps h3 { font-size: 1.08rem; }
.steps p { margin-top: .5rem; color: var(--text-soft); font-size: .95rem; line-height: 1.6; }
.section--dark .steps p { color: #b3c8ad; }

/* --- Stats ---------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
@media (min-width: 780px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats div { text-align: center; }
.stats dt { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 750; color: var(--green-600); line-height: 1; letter-spacing: -.03em; }
.section--dark .stats dt { color: var(--lime-300); }
.stats dd { margin: .5rem 0 0; font-size: var(--step--1); color: var(--text-soft); line-height: 1.4; }
.section--dark .stats dd { color: #b3c8ad; }

/* --- Split ---------------------------------------------------------------- */
/* stretch, not center: on the About page the media column was being centred
   against a much taller text column, which pushed the image far down. */
.split { display: grid; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: stretch; }
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; } }
.split--wide-left { }
@media (min-width: 940px) { .split--wide-left { grid-template-columns: 1.15fr .85fr; } }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; }

/* Where the media column holds a single image and nothing else, fill the column
   so the image matches the height of the text beside it. Columns that also carry
   a contact card (About, the service-area pages) are excluded, so the card still
   sits directly beneath its image instead of being stretched away from it. */
@media (min-width: 940px) {
  .split__media:has(> picture:only-child) { height: 100%; }
  .split__media:has(> picture:only-child) picture { display: block; height: 100%; }
  .split__media:has(> picture:only-child) img { height: 100%; object-fit: cover; }
}
.split h2 { font-size: var(--step-3); }
.split p { color: var(--text-soft); }
.section--dark .split p { color: #b9cdb3; }

/* --- Prose ---------------------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2.4em; }
.prose h3 { font-size: var(--step-1); margin-top: 1.9em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose ul, .prose ol { margin-top: 1.05em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose strong { font-weight: 650; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
}
.faq details[open] { border-color: var(--green-500); box-shadow: var(--shadow-sm); }
.faq summary {
  padding: 1.15rem 3.2rem 1.15rem 1.35rem; cursor: pointer; position: relative;
  font-weight: 650; font-size: 1.04rem; line-height: 1.4; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 1.35rem; top: 50%;
  width: .62rem; height: .62rem; margin-top: -.42rem;
  border-right: 2.5px solid var(--green-600); border-bottom: 2.5px solid var(--green-600);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -.16rem; }
.faq summary:hover { color: var(--green-600); }
.faq .faq__a { padding: 0 1.35rem 1.35rem; color: var(--text-soft); line-height: 1.65; }
.faq .faq__a p { max-width: 92ch; }
.faq .faq__a p + p { margin-top: .8em; }

/* --- Area / chip lists ---------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; }
.chips li a, .chips li span {
  display: inline-block; padding: .42rem .9rem;
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--r-full); font-size: .9rem; text-decoration: none;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.chips li a:hover { border-color: var(--green-500); color: var(--green-600); background: var(--bg-sunken); }
.section--dark .chips li a, .section--dark .chips li span {
  background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); color: #e5f0e1;
}
.section--dark .chips li a:hover { background: rgba(255, 255, 255, .16); border-color: var(--lime-300); color: #fff; }

.area-cols { columns: 2; column-gap: 2rem; list-style: none; padding: 0; }
@media (min-width: 700px) { .area-cols { columns: 3; } }
@media (min-width: 1000px) { .area-cols { columns: 4; } }
.area-cols li { break-inside: avoid; margin-bottom: .5rem; }
.area-cols a {
  text-decoration: none; font-size: .96rem;
  display: inline-flex; align-items: center; gap: .45rem;
}
.area-cols a .ic { width: 1em; height: 1em; color: var(--green-600); }
.area-cols a:hover { color: var(--green-600); }
.area-cols a:hover span { text-decoration: underline; }

/* --- Local notes ---------------------------------------------------------- */
.notes { list-style: none; padding: 0; display: grid; gap: .9rem; }
.notes li {
  display: grid; grid-template-columns: auto 1fr; gap: .8rem;
  padding: 1.05rem 1.2rem; background: var(--bg-raised);
  border: 1px solid var(--border); border-left: 4px solid var(--green-500);
  border-radius: var(--r-sm); font-size: .97rem; line-height: 1.6;
}
.notes .pin { color: var(--green-600); flex: none; margin-top: .2rem; }
.notes .pin svg { width: 1.15rem; height: 1.15rem; }

/* --- Gallery -------------------------------------------------------------- */
.gallery { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--bg-sunken); box-shadow: var(--shadow-sm); }
.gallery picture { display: block; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  padding: .7rem .9rem; font-size: .88rem; color: var(--text-soft);
  background: var(--bg-raised); border-top: 1px solid var(--border);
}

/* --- Contact panel -------------------------------------------------------- */
.contact-card {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-md);
}
.contact-card dl { display: grid; gap: 1.1rem; margin: 0; }
.contact-card dt {
  font-size: var(--step--1); font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--green-600); margin-bottom: .2rem;
  display: flex; align-items: center; gap: .45rem;
}
.contact-card dt .ic { width: 1.1em; height: 1.1em; }
.contact-card h2 .ic { width: .9em; height: .9em; vertical-align: -.05em; }
.contact-card dd { margin: 0; }
.contact-card a:not(.btn) { color: var(--green-600); font-weight: 600; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .contact-card a:not(.btn) { color: var(--lime-300); }
}

.hours-table { width: 100%; border-collapse: collapse; font-size: .97rem; }
.hours-table th, .hours-table td { padding: .55rem 0; text-align: left; border-bottom: 1px solid var(--border); }
.hours-table th { font-weight: 550; color: var(--text-soft); }
.hours-table td { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }

.site-footer .hours-table th { color: var(--charcoal-mut); border-color: rgba(255, 255, 255, .12); }
.site-footer .hours-table td { color: #fff; border-color: rgba(255, 255, 255, .12); }

/* --- Big CTA -------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--lime-500) 0%, var(--lime-300) 100%);
  color: var(--lime-ink);
  border: 1px solid var(--lime-600); border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.6rem);
  text-align: center; box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: var(--step-3); color: var(--lime-ink); }
.cta-band p { margin-top: .9rem; color: #26350d; font-size: var(--step-1); max-width: 46ch; margin-inline: auto; }
.cta-band .btn-row { margin-top: 1.9rem; justify-content: center; }
/* White on lime is only 2.15:1, under the 3:1 minimum for a control's edge, so
   the light button needs a dark outline to stay defined on this band. */
.cta-band .btn.btn--light { border-color: var(--green-800); }
.cta-band__note { margin-top: 1.2rem; font-size: var(--step--1); color: #374a13; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: var(--charcoal-txt); padding-block: clamp(2.75rem, 6vw, 4.5rem) 0; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #e2e5e0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 2.2rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; font-size: .95rem; }
.footer-brand img { height: 62px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .95rem; line-height: 1.65; }
.footer-areas { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-areas h3 { margin-bottom: .9rem; }
.footer-areas ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem .95rem; font-size: .89rem; }
.footer-bottom {
  margin-top: 2.2rem; padding-block: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .86rem; color: var(--charcoal-mut);
}
.footer-bottom a { color: var(--charcoal-mut); }

/* --- Sticky mobile call/text bar ------------------------------------------ */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--green-800); box-shadow: 0 -6px 24px rgba(0, 0, 0, .28);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem .5rem; color: #fff; text-decoration: none; font-weight: 650; font-size: 1.02rem;
}
.callbar a + a { border-left: 1px solid rgba(255, 255, 255, .2); }
.callbar a:last-child { background: var(--lime-300); color: var(--lime-ink); }
.callbar svg { width: 1.2em; height: 1.2em; }
@media (min-width: 860px) { .callbar { display: none; } }
@media (max-width: 859px) { body { padding-bottom: 4.1rem; } }

/* --- Misc ----------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.rule { border: 0; border-top: 1px solid var(--border); margin-block: clamp(2.5rem, 5vw, 4rem); }
.text-soft { color: var(--text-soft); }
.lead { font-size: var(--step-1); line-height: 1.55; color: var(--text-soft); }

.answer-box {
  background: var(--bg-sunken); border: 1px solid var(--border);
  border-left: 4px solid var(--green-600); border-radius: var(--r-sm);
  padding: 1.2rem 1.4rem; margin-block: 1.6rem;
}
.answer-box p { margin: 0; }
.answer-box strong { color: var(--green-700); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .answer-box strong { color: var(--lime-400); }
}

/* --- Print ---------------------------------------------------------------- */
@media print {
  .site-header, .mobile-nav, .callbar, .topbar, .cta-band, .hero__media, .pagehead__media { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .hero, .pagehead { color: #000; }
  .hero::after, .pagehead::after { display: none; }
  .hero h1, .pagehead h1 { color: #000; }
  a[href^='http']::after { content: ' (' attr(href) ')'; font-size: .8em; word-break: break-all; }
  .section { padding-block: 1.2rem; }
}
