:root {
  --forest: #2f4f3a;
  --deep-forest: #17251c;
  --moss: #6b7f59;
  --sage: #8fa58b;
  --pale-sage: #dce5d8;
  --cream: #f6f3ea;
  --cream-2: #efeadd;
  --paper: #fffdf8;
  --ink: #263028;
  --muted: #667061;
  --line: rgba(47, 79, 58, .18);
  --gold: #b79b62;
  --shadow: 0 28px 85px rgba(23, 37, 28, .16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(143, 165, 139, .35), transparent 28rem),
    radial-gradient(circle at 92% 30%, rgba(183, 155, 98, .18), transparent 30rem),
    linear-gradient(180deg, var(--cream), #fbfaf6 38%, var(--cream));
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 150px;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(47,79,58,.10), transparent),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 170'%3E%3Cpath d='M0 160c45-33 82-31 117 0 26-57 67-66 124-8 24-73 75-90 153-2 21-59 61-73 119-4 31-78 89-91 174-5 23-57 60-70 112-9 48-79 111-83 190-3 43-50 92-48 148 13 30-47 73-45 127 6v22H0z' fill='%232f4f3a' fill-opacity='.12'/%3E%3C/svg%3E") bottom center / cover no-repeat;
}

.image-backdrop-page {
  background:
    linear-gradient(180deg, rgba(246, 243, 234, .86), rgba(251, 250, 246, .78) 42%, rgba(246, 243, 234, .92)),
    radial-gradient(circle at 12% 14%, rgba(183, 155, 98, .16), transparent 28rem),
    var(--cream);
}

.image-backdrop-page main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --backdrop-parallax-y: 0px;
}

.image-backdrop-page main::before {
  content: "";
  position: fixed;
  inset: var(--header-h) 0 auto;
  width: 100%;
  height: calc(100vh + 180px);
  z-index: -2;
  pointer-events: none;
  background: url("assets/background.jpeg") center / cover no-repeat;
  opacity: .26;
  filter: saturate(.82) contrast(.94);
  transform: translate3d(0, var(--backdrop-parallax-y), 0);
  will-change: transform;
}

.image-backdrop-page main::after {
  content: "";
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(246, 243, 234, .62), rgba(246, 243, 234, .34) 46%, rgba(246, 243, 234, .66)),
    radial-gradient(circle at 76% 18%, rgba(47, 79, 58, .08), transparent 24rem);
}

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

a { color: inherit; text-decoration-thickness: .09em; text-underline-offset: .18em; }
a:hover { color: var(--forest); }

button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  transform: translateY(-150%);
  z-index: 999;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--deep-forest);
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.site-status-banner {
  padding: .62rem clamp(1rem, 4vw, 2rem);
  background: var(--deep-forest);
  color: rgba(255, 253, 248, .92);
  text-align: center;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
}

.site-status-banner strong {
  color: var(--paper);
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  min-height: var(--header-h);
  z-index: 100;
  border-bottom: 1px solid rgba(47, 79, 58, .12);
  background: rgba(246, 243, 234, .86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: .85rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  min-width: 0;
  color: var(--deep-forest);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 58px;
  padding: 5px;
  border-radius: 999px;
  background: var(--deep-forest);
  border: 1px solid rgba(255, 253, 248, .55);
  box-shadow: 0 12px 26px rgba(23, 37, 28, .18);
}

.brand-text { display: grid; line-height: 1.05; }

.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.22rem, 2.1vw, 1.48rem);
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 20rem;
}

.brand-subtitle {
  margin-top: .18rem;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(38, 48, 40, .68);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .2rem;
}

.nav-links a {
  padding: .7rem .84rem;
  border-radius: 999px;
  color: rgba(38, 48, 40, .86);
  text-decoration: none;
  font-weight: 800;
  font-size: .93rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(143, 165, 139, .18);
  color: var(--deep-forest);
  outline: none;
}

.nav-cta {
  margin-left: .4rem;
  background: var(--forest) !important;
  color: var(--paper) !important;
  box-shadow: 0 12px 28px rgba(47, 79, 58, .18);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(47, 79, 58, .24);
  border-radius: 999px;
  background: rgba(255, 253, 248, .72);
  color: var(--deep-forest);
  padding: .68rem .95rem;
  cursor: pointer;
  font-weight: 900;
}

main { position: relative; }

.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(220, 229, 216, .42), rgba(246, 243, 234, .76)),
    radial-gradient(circle at 12% 15%, rgba(183, 155, 98, .12), transparent 22rem);
  border-top: 1px solid rgba(47, 79, 58, .08);
  border-bottom: 1px solid rgba(47, 79, 58, .08);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding: clamp(4.25rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem) clamp(4rem, 7vw, 6rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23,37,28,.80), rgba(23,37,28,.50) 47%, rgba(246,243,234,.30)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1500' height='900' viewBox='0 0 1500 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%232f4f3a'/%3E%3Cstop offset='1' stop-color='%2390a48b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1500' height='900' fill='url(%23g)'/%3E%3Cg fill='%2317251c' fill-opacity='.38'%3E%3Cpath d='M75 900V408c0-91 21-157 59-196 9 34 13 82 13 145v543z'/%3E%3Cpath d='M60 390c90-80 205-113 314-67-93-9-163 18-230 82z'/%3E%3Cpath d='M125 520c110-61 199-62 284 2-100-22-184-8-284 49z'/%3E%3Cpath d='M1200 900V315c0-76 19-135 57-176 13 49 18 108 18 177v584z'/%3E%3Cpath d='M1080 370c131-103 275-111 393-26-137-32-241-3-373 75z'/%3E%3Cpath d='M1125 540c114-62 225-54 335 25-135-34-237-15-335 28z'/%3E%3Cpath d='M570 900V430c0-78 18-130 52-178 27 59 38 125 38 197v451z'/%3E%3Cpath d='M455 445c111-94 237-115 363-28-143-26-249-2-363 62z'/%3E%3Cpath d='M500 596c128-68 247-65 358 16-131-35-260-19-358 45z'/%3E%3C/g%3E%3Cg fill='%23fffdf8' fill-opacity='.08'%3E%3Ccircle cx='260' cy='170' r='240'/%3E%3Ccircle cx='1260' cy='170' r='190'/%3E%3C/g%3E%3C/svg%3E") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 185px;
  z-index: -1;
  background: linear-gradient(0deg, var(--cream), rgba(246,243,234,0));
}

.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy {
  color: var(--paper);
  text-shadow: 0 2px 16px rgba(0,0,0,.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1rem;
  color: rgba(255, 253, 248, .86);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .82rem;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(255, 253, 248, .62);
}

h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .96;
  color: var(--deep-forest);
  letter-spacing: -.02em;
}

h1 {
  color: var(--paper);
  max-width: 760px;
  font-size: clamp(4rem, 10vw, 8.6rem);
  font-weight: 700;
}

.page-intro h1 {
  color: var(--deep-forest);
  max-width: 820px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.hero-lead {
  max-width: 690px;
  margin: 1.35rem 0 0;
  font-size: clamp(1.16rem, 2vw, 1.46rem);
  color: rgba(255, 253, 248, .91);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 79, 58, .28);
  background: var(--paper);
  color: var(--deep-forest);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(23, 37, 28, .12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(23, 37, 28, .18);
  outline: none;
  color: var(--deep-forest);
}

.button.primary {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}

.button.primary:hover { color: var(--paper); }

.button.light {
  background: rgba(255, 253, 248, .92);
  border-color: rgba(255, 253, 248, .52);
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 253, 248, .54);
  color: var(--paper);
  box-shadow: none;
}

.button.ghost:hover { background: rgba(255, 253, 248, .12); color: var(--paper); }

.hero-card {
  border: 1px solid rgba(255, 253, 248, .42);
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(255, 253, 248, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  color: var(--ink);
}

.hero-logo-wrap {
  display: grid;
  place-items: center;
  width: min(292px, 74vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.4rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,253,248,.98), rgba(220,229,216,.72));
  border: 1px solid rgba(47, 79, 58, .16);
  box-shadow: inset 0 0 0 8px rgba(255, 253, 248, .36), 0 20px 55px rgba(23, 37, 28, .12);
}

.hero-logo {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.hero-card h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-align: center;
}

.hero-card p {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: .72rem;
}

.hero-points li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  padding: .78rem .9rem;
  border-radius: var(--radius-md);
  background: rgba(220, 229, 216, .58);
  color: var(--deep-forest);
  font-weight: 800;
}

.leaf-bullet {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .18rem;
  border-radius: 70% 15% 70% 15%;
  background: var(--moss);
  transform: rotate(-32deg);
  flex: 0 0 auto;
  opacity: .9;
}

.section-heading {
  max-width: 770px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-kicker {
  margin: 0 0 .7rem;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .8rem;
  font-weight: 900;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.section-heading p {
  margin: 1.05rem 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.content-card,
.quote-card,
.contact-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 20px 60px rgba(23, 37, 28, .08);
}

.content-card { padding: clamp(1.35rem, 3vw, 2rem); }

.intro-card {
  max-width: 760px;
}

.content-card h3,
.quote-card h3,
.contact-card h3,
.form-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.content-card p,
.quote-card p,
.contact-card p,
.form-card p { color: var(--muted); }

.quote-card {
  padding: clamp(1.5rem, 3vw, 2.35rem);
  background: rgba(255, 253, 248, .78);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}


.quote-card h3 { color: var(--deep-forest); }
.quote-card p { color: var(--muted); }

.review-carousel {
  max-width: 860px;
  margin: 0 auto;
}

.quote-carousel {
  margin-top: 1.3rem;
}

.review-carousel-frame {
  overflow: hidden;
  border: 1px solid rgba(47, 79, 58, .16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .86), rgba(220, 229, 216, .62)),
    var(--paper);
  box-shadow: var(--shadow);
}

.quote-carousel .review-carousel-frame {
  border-color: rgba(47, 79, 58, .16);
  background: rgba(255, 253, 248, .86);
  box-shadow: 0 18px 46px rgba(23, 37, 28, .08);
}

.review-track {
  display: flex;
  transform: translateX(calc(var(--review-index, 0) * -100%));
  transition: transform .45s ease;
}

.review-slide {
  flex: 0 0 100%;
  display: grid;
  place-items: center;
  min-height: clamp(430px, 68vw, 720px);
  margin: 0;
  padding: clamp(1rem, 3vw, 2rem);
}

.review-slide img {
  max-height: min(680px, 72vh);
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 58px rgba(23, 37, 28, .18);
}

.quote-carousel .review-slide {
  min-height: clamp(360px, 48vw, 600px);
  padding: clamp(.8rem, 2vw, 1.25rem);
}

.quote-carousel .review-slide img {
  max-height: min(560px, 68vh);
}

.review-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-button {
  min-height: 2.8rem;
  padding: .7rem 1rem;
  border: 1px solid rgba(47, 79, 58, .24);
  border-radius: 999px;
  background: rgba(255, 253, 248, .86);
  color: var(--deep-forest);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(23, 37, 28, .08);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--forest);
  color: var(--paper);
  outline: none;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
}

.review-dot {
  width: .72rem;
  height: .72rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 79, 58, .28);
  cursor: pointer;
}

.review-dot.is-active {
  width: 1.75rem;
  background: var(--forest);
}

.quote-carousel .carousel-button {
  border-color: rgba(47, 79, 58, .24);
  background: rgba(255, 253, 248, .86);
  color: var(--deep-forest);
  box-shadow: 0 12px 24px rgba(23, 37, 28, .08);
}

.quote-carousel .carousel-button:hover,
.quote-carousel .carousel-button:focus-visible {
  background: var(--forest);
  color: var(--paper);
}

.quote-carousel .review-dot {
  background: rgba(47, 79, 58, .28);
}

.quote-carousel .review-dot.is-active {
  background: var(--forest);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  background: rgba(255, 253, 248, .75);
  box-shadow: 0 16px 45px rgba(23, 37, 28, .07);
}

.feature-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(143, 165, 139, .22);
  color: var(--forest);
  font-weight: 900;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
}

.feature-card h3 { font-size: clamp(1.65rem, 2.4vw, 2.1rem); }
.feature-card p { margin-bottom: 0; color: var(--muted); }

.steps {
  counter-reset: steps;
  display: grid;
  gap: .9rem;
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, .78);
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  font-weight: 900;
}

.step h3 { font-size: clamp(1.45rem, 2vw, 1.8rem); }
.step p { margin: .35rem 0 0; color: var(--muted); }

.soft-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .65rem;
}

.soft-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--muted);
}

.soft-list li::before {
  content: "";
  margin-top: .45rem;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--sage);
  flex: 0 0 auto;
}

.journal-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.journal-card::before {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(143, 165, 139, .14);
}

.tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(143, 165, 139, .18);
  color: var(--forest);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.places-list {
  columns: 2;
  column-gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.places-list li {
  break-inside: avoid;
  margin: 0 0 .72rem;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,248,.66);
  color: var(--deep-forest);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: start;
}

.contact-card,
.form-card { padding: clamp(1.4rem, 3vw, 2rem); }

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -66px;
  width: 210px;
  aspect-ratio: 1 / 1;
  background: url("assets/wild-heart-logo-forest-transparent.png") center / contain no-repeat;
  opacity: .055;
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-methods {
  display: grid;
  gap: .8rem;
  margin-top: 1.3rem;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(220, 229, 216, .46);
  text-decoration: none;
  font-weight: 900;
  color: var(--deep-forest);
  word-break: break-word;
}

.contact-methods a span:first-child {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  flex: 0 0 38px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.field { display: grid; gap: .35rem; }

label {
  color: var(--deep-forest);
  font-weight: 900;
  font-size: .92rem;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(47, 79, 58, .24);
  border-radius: 16px;
  background: rgba(255, 253, 248, .86);
  color: var(--ink);
  padding: .92rem 1rem;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(143, 165, 139, .18);
}

textarea { min-height: 150px; resize: vertical; }

.form-note {
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: .93rem;
}

.form-status {
  margin-top: .9rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(143, 165, 139, .18);
  color: var(--deep-forest);
  font-weight: 800;
}

.site-footer {
  padding: 2.5rem clamp(1rem, 4vw, 2rem);
  background: var(--deep-forest);
  color: rgba(255, 253, 248, .76);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--paper);
  font-weight: 900;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: .88;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: calc(100% + .5rem);
    left: clamp(1rem, 4vw, 2rem);
    right: clamp(1rem, 4vw, 2rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    border: 1px solid rgba(47, 79, 58, .16);
    border-radius: 22px;
    background: rgba(255, 253, 248, .96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { text-align: center; }
  .nav-cta { margin-left: 0; }

  .hero-inner,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { max-width: 520px; }
  .grid-3 { grid-template-columns: 1fr; }

  .review-controls {
    grid-template-columns: 1fr 1fr;
  }

  .review-dots {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .carousel-button {
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  :root { --header-h: 72px; }
  .brand-logo { width: 50px; height: 50px; flex-basis: 50px; padding: 4px; }
  .brand-subtitle { display: none; }
  .brand-title { max-width: 14rem; }
  .hero { min-height: auto; }
  .eyebrow { letter-spacing: .12em; }
  h1 { font-size: clamp(3.35rem, 18vw, 5.1rem); }
  .hero-lead { font-size: 1.08rem; }
  .grid-2, .field-grid { grid-template-columns: 1fr; }
  .places-list { columns: 1; }
  .review-slide { min-height: 360px; padding: .75rem; }
  .review-slide img { max-height: 560px; width: 100%; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .image-backdrop-page main::before {
    transform: none;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}

