/* ==========================================================================
   Evergreen Odyssey — design system
   One stylesheet, no framework, no build step.
   Sections: 1 tokens · 2 reset · 3 type · 4 layout · 5 header · 6 buttons
             7 hero · 8 cards · 9 stats · 10 table · 11 gallery · 12 contact
             13 cta · 14 footer · 15 utilities · 16 motion
   ========================================================================== */

/* 1 · Tokens ------------------------------------------------------------- */

:root {
  /* Brand greens */
  --forest: #2d5016;
  --forest-700: #24400f;
  --forest-900: #14240a;
  --sage: #87a96b;
  --sage-400: #9dbb84;
  --sage-100: #e6eddd;
  --sage-50: #f1f5ea;

  /* Neutrals & warmth */
  --ink: #16190f;
  --ink-2: #3f463a;
  --ink-3: #6d7566;
  --cream: #f8f5ec;
  --white: #fff;
  --line: rgb(45 80 22 / 14%);
  --line-soft: rgb(45 80 22 / 8%);

  /* Type */
  --font-display: fraunces, georgia, "Times New Roman", serif;
  --font-body:
    -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue",
    arial, sans-serif;
  --fs-display: clamp(2.5rem, 1.6rem + 3.8vw, 4.25rem);
  --fs-h1: clamp(2.1rem, 1.5rem + 2.6vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 1.35rem + 1.7vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 1.05rem + 0.45vw, 1.4rem);
  --fs-lead: clamp(1.05rem, 1rem + 0.45vw, 1.3rem);
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.78rem;

  /* Space & shape */
  --wrap: 74rem;
  --wrap-narrow: 46rem;
  --gutter: clamp(1.25rem, 0.9rem + 1.6vw, 2.5rem);
  --section: clamp(4rem, 3rem + 5vw, 7.5rem);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgb(20 36 10 / 6%), 0 1px 3px rgb(20 36 10 / 5%);
  --shadow-md: 0 4px 12px rgb(20 36 10 / 7%), 0 2px 4px rgb(20 36 10 / 5%);
  --shadow-lg: 0 18px 40px -12px rgb(20 36 10 / 22%);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

/* 2 · Reset -------------------------------------------------------------- */

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

* {
  margin: 0;
}

html {
  /* iOS Safari only honours the prefixed form; it stops the browser inflating
     text when a phone is rotated to landscape. */
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  min-height: 100vh;
  background: var(--white);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizelegibility;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--forest-700);
}

button {
  font: inherit;
  color: inherit;
}

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

::selection {
  background: var(--sage-100);
  color: var(--forest-900);
}

/* 3 · Typography --------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--forest-900);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.25;
}

p {
  text-wrap: pretty;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-family: var(--font-body);
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

.eyebrow--center::after {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

/* 4 · Layout ------------------------------------------------------------- */

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

.section {
  padding-block: var(--section);
}

.section--tight {
  padding-block: calc(var(--section) * 0.62);
}

.section--cream {
  background: var(--cream);
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head > .eyebrow {
  margin-bottom: 1rem;
}

.section-head > h2 + p {
  margin-top: 1rem;
}

.grid {
  display: grid;
  gap: clamp(1.25rem, 1rem + 1vw, 2rem);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s var(--ease);
}

.skip-link:focus {
  transform: translate(-50%, 0);
  color: var(--white);
}

/* 5 · Header ------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.25s var(--ease);
}

.site-header.is-stuck {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding-block: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand__mark {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  color: var(--forest);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--forest-900);
  letter-spacing: -0.02em;
}

.brand__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4rem + 1.4vw, 2.25rem);
}

.nav__link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding-block: 0.4rem;
  white-space: nowrap;
  transition: color 0.18s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}

.nav__link:hover {
  color: var(--forest);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link[aria-current="page"] {
  color: var(--forest);
  font-weight: 600;
}

.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 0.25rem;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--forest);
  cursor: pointer;
  transition:
    background 0.18s var(--ease),
    border-color 0.18s var(--ease);
}

.nav-toggle:hover {
  background: var(--sage-50);
  border-color: var(--sage);
}

.nav-toggle__bars {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentcolor;
  border-radius: 2px;
  transition: background 0.2s var(--ease);
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentcolor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (width <= 60rem) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem var(--gutter) 1.5rem;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    padding: 0.9rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin: 1.25rem 0 0;
    justify-content: center;
  }
}

/* 6 · Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn__icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--forest-700);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--sage);
}

.btn--outline:hover {
  background: var(--sage-50);
  color: var(--forest-700);
  border-color: var(--forest);
}

.btn--light {
  background: var(--white);
  color: var(--forest);
  box-shadow: var(--shadow-md);
}

.btn--light:hover {
  background: var(--cream);
  color: var(--forest-700);
  box-shadow: var(--shadow-lg);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgb(255 255 255 / 45%);
}

.btn--ghost-light:hover {
  background: rgb(255 255 255 / 12%);
  color: var(--white);
  border-color: var(--white);
}

.btn--sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.9rem;
}

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

.btn-row--center {
  justify-content: center;
}

/* 7 · Hero --------------------------------------------------------------- */

/* Built entirely from gradients — no hero photograph. Costs about 2 KB
   instead of ~300 KB, renders instantly, and never claims to depict work
   that isn't ours. To use a real photograph later, add it as the last
   background layer with `center / cover no-repeat` and keep the top
   linear-gradient as the scrim so the headline stays legible. */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(78vh, 46rem);
  padding-block: clamp(4rem, 3rem + 6vw, 8rem);
  background:
    radial-gradient(
      64rem 42rem at 10% -12%,
      rgb(135 169 107 / 32%),
      transparent 62%
    ),
    radial-gradient(
      52rem 36rem at 92% 112%,
      rgb(135 169 107 / 22%),
      transparent 60%
    ),
    radial-gradient(
      40rem 32rem at 74% 14%,
      rgb(45 80 22 / 55%),
      transparent 66%
    ),
    linear-gradient(158deg, #1b3410 0%, #14240a 56%, #0f1c07 100%);
  background-color: var(--forest-900);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

/* Tiled leaf motif, drawn from the same path as the brand mark. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='%23ffffff'%3E%3Cg transform='translate(6 10) rotate(-18) scale(1.5)'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z'/%3E%3C/g%3E%3Cg transform='translate(96 62) rotate(142) scale(1.7)'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z'/%3E%3C/g%3E%3Cg transform='translate(52 108) rotate(28) scale(1.3)'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px 150px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6rem;
  background: linear-gradient(to top, rgb(255 255 255 / 100%), transparent);
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  max-width: 40rem;
}

.hero .eyebrow {
  color: var(--sage-400);
}

.hero .eyebrow::before {
  background: var(--sage-400);
}

.hero h1 {
  font-size: var(--fs-display);
  color: var(--white);
  margin-block: 1.25rem 1.5rem;
}

.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: rgb(255 255 255 / 88%);
  margin-bottom: 2.25rem;
  max-width: 34rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgb(255 255 255 / 18%);
  font-size: var(--fs-small);
  color: rgb(255 255 255 / 78%);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__meta svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--sage-400);
  flex-shrink: 0;
}

/* Compact page banner for interior pages */
.page-head {
  position: relative;
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem);
  background: var(--forest-900);
  color: var(--white);
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      50rem 26rem at 88% -10%,
      rgb(135 169 107 / 26%),
      transparent 70%
    ),
    radial-gradient(
      36rem 22rem at 4% 110%,
      rgb(135 169 107 / 16%),
      transparent 70%
    );
  pointer-events: none;
}

.page-head__inner {
  position: relative;
  max-width: 46rem;
}

.page-head .eyebrow {
  color: var(--sage-400);
  margin-bottom: 1rem;
}

.page-head .eyebrow::before {
  background: var(--sage-400);
}

.page-head h1 {
  color: var(--white);
}

.page-head p {
  margin-top: 1.15rem;
  font-size: var(--fs-lead);
  color: rgb(255 255 255 / 82%);
}

/* 8 · Cards -------------------------------------------------------------- */

.card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.5rem, 1.25rem + 0.7vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-100);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
  border-radius: var(--r);
  background: var(--sage-50);
  color: var(--forest);
  flex-shrink: 0;
}

.card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card p {
  color: var(--ink-3);
}

/* Feature: centred icon + text */
.feature {
  text-align: center;
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1.25rem;
  border-radius: var(--r-pill);
  background: var(--sage-50);
  color: var(--forest);
  border: 1px solid var(--sage-100);
}

.feature__icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.feature h3 {
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--ink-3);
  max-width: 24rem;
  margin-inline: auto;
}

/* Panel: soft container for prose blocks */
.panel {
  padding: clamp(1.75rem, 1.4rem + 1.4vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

/* 9 · Stats -------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  padding: clamp(2rem, 1.5rem + 2vw, 3rem);
  background: var(--forest-900);
  border-radius: var(--r-lg);
  color: var(--white);
}

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.8rem + 2vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat__label {
  display: block;
  margin-top: 0.6rem;
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  color: rgb(255 255 255 / 72%);
}

/* Client logos / names */
.clients {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.clients li {
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest-900);
}

/* 10 · Service list / table ---------------------------------------------- */

.service-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: clamp(1rem, 0.5rem + 2vw, 2.5rem);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  background: var(--white);
  transition: background 0.2s var(--ease);
}

.service-item:hover {
  background: var(--sage-50);
}

.service-item__head h3 {
  margin-bottom: 0.4rem;
}

.service-item__tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--sage-100);
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-item__body p + p {
  margin-top: 0.75rem;
}

.service-item__body strong {
  color: var(--forest-700);
}

@media (width <= 46rem) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

/* 11 · Gallery ----------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
  gap: clamp(1rem, 0.85rem + 0.8vw, 1.5rem);
}

.gallery__item {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--sage-50);
  overflow: hidden;
}

.gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery__item:hover .gallery__media img {
  transform: scale(1.04);
}

.gallery__caption {
  padding: 1.15rem 1.35rem 1.35rem;
}

.gallery__caption h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.gallery__caption p {
  font-size: var(--fs-small);
  color: var(--ink-3);
}

/* 12 · Contact ----------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
  align-items: stretch;
}

.contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
}

.contact-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--sage-50);
  color: var(--forest);
}

.contact-list__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-list dt,
.contact-list__label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.15rem;
}

.contact-list__value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest-900);
  text-decoration: none;
}

a.contact-list__value:hover {
  color: var(--forest);
  text-decoration: underline;
}

.map-frame {
  position: relative;
  min-height: 22rem;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--sage-50);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

.hours {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}

.hours li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours span:last-child {
  font-weight: 600;
  color: var(--forest-900);
}

/* 13 · CTA band ---------------------------------------------------------- */

.cta {
  position: relative;
  padding: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  border-radius: var(--r-lg);
  background: var(--forest);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      40rem 20rem at 15% 0%,
      rgb(135 169 107 / 35%),
      transparent 65%
    ),
    radial-gradient(
      36rem 20rem at 90% 110%,
      rgb(20 36 10 / 55%),
      transparent 65%
    );
}

.cta h2 {
  color: var(--white);
  max-width: 24ch;
  margin-inline: auto;
}

.cta p {
  max-width: 46ch;
  margin: 1.15rem auto 2rem;
  color: rgb(255 255 255 / 85%);
  font-size: var(--fs-lead);
}

/* 14 · Footer ------------------------------------------------------------ */

.site-footer {
  background: var(--forest-900);
  color: rgb(255 255 255 / 72%);
  padding-block: clamp(3rem, 2.5rem + 2vw, 4.5rem) 2rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: rgb(255 255 255 / 78%);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(min(100%, 20rem), 1.4fr) repeat(
      auto-fit,
      minmax(min(100%, 11rem), 1fr)
    );
  gap: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  padding-bottom: 2.5rem;
}

.footer-brand__mark {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--sage-400);
  margin-bottom: 1rem;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-brand p {
  max-width: 32ch;
}

.footer-col h2 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-400);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: var(--fs-small);
  color: rgb(255 255 255 / 55%);
}

.social {
  display: flex;
  gap: 0.6rem;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--r-pill);
  border: 1px solid rgb(255 255 255 / 18%);
  color: rgb(255 255 255 / 80%);
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.social a:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--forest-900);
}

.social svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* 15 · Utilities --------------------------------------------------------- */

.stack-lg > * + * {
  margin-top: 1.75rem;
}

.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
}

.narrow {
  max-width: var(--wrap-narrow);
  margin-inline: auto;
}

.note {
  display: flex;
  gap: 0.85rem;
  padding: 1.15rem 1.35rem;
  border-left: 3px solid var(--sage);
  background: var(--sage-50);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.95rem;
  color: var(--ink-2);
}

.note svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--forest);
  margin-top: 0.15rem;
}

/* 16 · Motion ------------------------------------------------------------ */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.js .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.js .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.js .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.js .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.js .reveal:nth-child(6) {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .card:hover,
  .gallery__item:hover {
    transform: none;
  }
}

/* Print ------------------------------------------------------------------ */

@media print {
  .site-header,
  .nav-toggle,
  .skip-link,
  .cta,
  .map-frame {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .page-head {
    background: none;
    color: #000;
    padding-block: 1rem;
  }

  .hero h1,
  .page-head h1,
  .hero__lead,
  .page-head p {
    color: #000;
  }
}
