/* =========================================================
   Wildwise Management — base tokens
   Overrides Kindsight palette in DESIGN.md with Wildwise brand.
   ========================================================= */

:root {
  /* Brand — refined for Watch Program (2026-05) */
  --forest:        #0F241C;
  --forest-deep:   #06110D;
  --forest-soft:   #1a3a2a;
  --olive:         #7B6A2A;
  --olive-soft:    #9c8a3e;
  --olive-deep:    #5e5020;
  --gold:          #7B6A2A;
  --gold-soft:     #9c8a3e;
  --cream:         #F7F4EC;
  --cream-warm:    #F4F1E8;
  --ink:           #1D1D1D;
  --hairline-dark: rgba(247, 244, 236, 0.16);
  --hairline-gold: rgba(123, 106, 42, 0.55);
  --hairline-olive: rgba(123, 106, 42, 0.4);

  /* Spacing (Kindsight scale) */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-xxl: 48px;
  --space-sec: 64px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 12px;

  /* Type */
  --font-display:        'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-display-rugged: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1320px;
  --header-h:      88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Account for sticky header when jumping to anchor sections */
section[id] { scroll-margin-top: 72px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--cream);
  color: var(--forest);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--forest-deep);
  border-bottom: 1px solid rgba(154, 143, 58, 0.18);
  transition: height 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.site-header--scrolled { height: 72px; }
.site-header--scrolled .site-header__logo {
  height: 40px;
  transition: height 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.site-header__logo { transition: height 280ms cubic-bezier(0.2, 0.7, 0.2, 1); }

.site-header__inner {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-xl);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  height: 56px;
}

.site-header__logo {
  height: 52px;
  width: auto;
}

.site-nav__list {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  list-style: none;
}

.site-nav__list a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.82;
  padding: var(--space-xs) 0;
  transition: opacity 180ms ease, color 180ms ease;
  position: relative;
}

.site-nav__list a:hover { opacity: 1; color: var(--olive-soft); }
.site-nav__list .site-nav__active {
  opacity: 1;
  color: var(--olive-soft);
}
.site-nav__list .site-nav__active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--olive-soft);
}

.site-header__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  justify-self: end;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
  transition: color 220ms ease;
}

.phone-link__icon {
  color: var(--cream);
  flex-shrink: 0;
}

.phone-link:hover { color: var(--olive-soft); }
.phone-link:hover .phone-link__icon { color: var(--olive-soft); }

/* Olive solid CTA button */
.btn--olive {
  background: var(--olive);
  color: #fff;
  border: 1px solid var(--olive);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
}
.btn--olive:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  color: #fff;
}

.btn--header {
  font-size: 12px;
  padding: 11px 20px;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease,
              color 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

.btn--primary {
  background: rgba(184, 150, 90, 0.06);
  color: var(--cream);
  border: 1px solid var(--hairline-gold);
  border-radius: 999px;
}
.btn--primary:hover {
  background: rgba(184, 150, 90, 0.16);
  color: #fff;
  border-color: var(--gold);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.btn__arrow {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  transition: transform 220ms ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  background: var(--forest);
  color: var(--cream);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
}

/* Subtle radial vignette to give depth to the dark panel. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 35%, rgba(36, 74, 59, 0.55), transparent 55%),
    linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 35%, var(--forest) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + var(--space-sec)) var(--space-sec)
           var(--space-sec) var(--space-sec);
  display: flex;
  align-items: center;
}

.hero__text {
  max-width: 620px;
  padding-left: clamp(0px, 4vw, 56px);
}

/* Eyebrow — small uppercase label with a gold rule */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--space-lg);
}
.eyebrow__rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* Headline — editorial serif, with olive accent on second line */
.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: var(--cream);
  margin-bottom: var(--space-lg);
}

.hero__headline--accent {
  display: block;
  color: var(--olive-soft);
  font-weight: 400;
}

/* Sub-headline */
.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(247, 244, 236, 0.82);
  max-width: 540px;
  margin-bottom: var(--space-xl);
}

.hero__sub--accent {
  color: var(--olive-soft);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

/* Solid olive CALL NOW button */
.btn--call {
  background: var(--olive);
  color: #fff;
  border: 1px solid var(--olive);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius-md);
  gap: 10px;
}
.btn--call:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}
.btn__icon { flex-shrink: 0; }

/* Outlined Emergency CTA */
.btn--ghost-emergency {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 244, 236, 0.42);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius-md);
}
.btn--ghost-emergency:hover {
  background: rgba(247, 244, 236, 0.08);
  border-color: var(--cream);
}

/* Trust line — small olive-dash divider then licensing copy */
.trust-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(245, 239, 213, 0.6);
  margin-top: var(--space-lg);
}

.divider {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.trust-line__dot {
  color: var(--gold);
  opacity: 0.8;
  font-size: 16px;
}

/* =========================================================
   Hero media (raccoon image)
   ========================================================= */

.hero__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}

/* Soft gradient bridge between text panel and image for cohesion */
.hero__media::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 180px;
  background: linear-gradient(90deg,
    var(--forest) 0%,
    rgba(27, 59, 47, 0.6) 40%,
    rgba(27, 59, 47, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Bottom-edge fade to anchor the image in the page */
.hero__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(180deg,
    rgba(14, 15, 10, 0) 0%,
    rgba(14, 15, 10, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__caption {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 3;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245, 239, 213, 0.78);
  background: rgba(14, 15, 10, 0.35);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(2px);
}

/* =========================================================
   Trust strip — 7 credentials below hero
   ========================================================= */

.trust-strip {
  background: var(--forest-deep);
  color: var(--cream);
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-top: 1px solid rgba(154, 143, 58, 0.18);
  border-bottom: 1px solid rgba(154, 143, 58, 0.18);
}

.trust-strip__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item__icon {
  color: var(--olive-soft);
  flex-shrink: 0;
}

.trust-item__label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(247, 244, 236, 0.85);
  letter-spacing: 0.01em;
}

@media (max-width: 1200px) {
  .trust-strip__inner {
    grid-template-columns: repeat(4, 1fr);
    row-gap: var(--space-lg);
  }
}
@media (max-width: 720px) {
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-md);
  }
}

/* =========================================================
   About section
   ========================================================= */

.about {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(56px, 6.5vw, 88px) 0 clamp(48px, 5.5vw, 72px);
  position: relative;
}

/* Slim gold hairline bridging from the dark hero into the cream */
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.about__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: stretch;
}

.about__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 62ch;
}

.about__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--forest-deep);
  box-shadow:
    0 1px 0 rgba(184, 150, 90, 0.18) inset,
    0 24px 60px -28px rgba(14, 15, 10, 0.45);
  aspect-ratio: 3 / 4;
  align-self: stretch;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}

/* Subtle bottom vignette to seat the caption */
.about__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 35%;
  background: linear-gradient(180deg,
    rgba(14, 15, 10, 0) 0%,
    rgba(14, 15, 10, 0.55) 100%);
  pointer-events: none;
}

.about__caption {
  position: absolute;
  z-index: 2;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(245, 239, 213, 0.92);
}

.eyebrow--dark {
  color: var(--gold);
  margin-bottom: var(--space-lg);
}
.eyebrow--dark .eyebrow__rule { background: var(--gold); }

.about__headline {
  font-family: var(--font-display-rugged);
  font-weight: 600;
  font-size: clamp(46px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 35, "WONK" 0;
}

.about__headline .serif-italic {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}

.about__body {
  margin-top: var(--space-xl);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(14, 15, 10, 0.82);
  max-width: 60ch;
}

.about__body p + p { margin-top: var(--space-md); }

/* Credentials strip */
.credentials {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(184, 150, 90, 0.32);
}

.credentials__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  padding-left: var(--space-md);
}

.credentials__item + .credentials__item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-md));
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(184, 150, 90, 0.32);
}

.credentials__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.credentials__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  color: var(--forest);
}

@media (max-width: 980px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .about__media {
    aspect-ratio: 4 / 5;
    order: 2;
  }
  .about__image {
    object-position: 50% 5%;
  }
  .about__caption {
    display: none;
  }
  .about__copy {
    order: 1;
  }
  .credentials {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-xl);
  }
  .credentials__item:nth-child(3) { padding-left: var(--space-md); }
  .credentials__item:nth-child(3)::before {
    content: "";
    position: absolute;
    left: calc(-1 * var(--space-md));
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgba(184, 150, 90, 0.32);
  }
}

@media (max-width: 560px) {
  .credentials {
    grid-template-columns: 1fr;
    row-gap: var(--space-lg);
  }
  .credentials__item { padding-left: 0; }
  .credentials__item::before,
  .credentials__item + .credentials__item::before,
  .credentials__item:nth-child(3)::before { display: none !important; }
  .credentials__item + .credentials__item {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(184, 150, 90, 0.32);
  }
}

/* =========================================================
   Signs of Activity
   ========================================================= */

.signs {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(56px, 6.5vw, 88px) 0 clamp(56px, 6.5vw, 96px);
  border-top: 1px solid rgba(184, 150, 90, 0.32);
}

.signs__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.signs__header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(36px, 4.5vw, 56px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.28);
}

.signs__headline {
  font-family: var(--font-display-rugged);
  font-weight: 600;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  color: var(--forest);
  margin-top: var(--space-xl);
  font-variation-settings: "opsz" 144, "SOFT" 35;
}
.signs__headline .serif-italic {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.signs__sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(14, 15, 10, 0.72);
  max-width: 46ch;
  text-wrap: pretty;
}

.signs-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}

.sign-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.sign-card__media {
  position: relative;
  margin: 0 0 var(--space-lg) 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--forest-deep);
}
.sign-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.sign-card__title {
  font-family: var(--font-display-rugged);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.008em;
  color: var(--forest);
  margin-bottom: var(--space-sm);
  font-variation-settings: "opsz" 96, "SOFT" 40;
}

.sign-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(14, 15, 10, 0.72);
}

.signs__cta {
  margin-top: clamp(36px, 4.5vw, 56px);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(184, 150, 90, 0.28);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.4;
  color: rgba(14, 15, 10, 0.72);
}
.signs__cta a {
  font-style: italic;
  color: var(--forest);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}
.signs__cta a:hover { color: var(--gold); border-color: var(--forest); }

@media (max-width: 980px) {
  .signs__header {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .signs-grid { grid-template-columns: 1fr; }
  .sign-card__media { aspect-ratio: 4 / 3; }
}

/* =========================================================
   Services section
   ========================================================= */

.services {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(56px, 6.5vw, 88px) 0 clamp(56px, 6.5vw, 96px);
  border-top: 1px solid rgba(184, 150, 90, 0.32);
}

.services__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.services__header {
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.services__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--forest);
}

.services__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3.5vw, 44px);
}


.services-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: inherit;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform 280ms ease, box-shadow 280ms ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.service-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--forest);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(18px, 2vw, 26px);
  position: relative;
}

.service-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.008em;
  color: var(--forest);
  margin-bottom: var(--space-sm);
}

.service-card__preview {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(29, 29, 29, 0.72);
  margin-bottom: var(--space-md);
  flex: 1;
}

.service-card__arrow {
  display: inline-block;
  font-size: 18px;
  color: var(--olive);
  align-self: flex-start;
  transition: transform 220ms ease, color 220ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 42, 31, 0.08);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card:hover .service-card__arrow { transform: translateX(4px); color: var(--olive-deep); }

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   WildWise Watch System feature card
   ========================================================= */

.watch-card {
  background: var(--cream);
  border: 1px solid var(--hairline-olive);
  border-radius: var(--radius-md);
  padding: clamp(24px, 2.6vw, 36px);
  position: relative;
}

.watch-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.watch-card__badge {
  display: inline-block;
  background: var(--olive-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 3px;
}

.watch-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  color: var(--forest);
}

.watch-card__subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--olive);
  margin-bottom: var(--space-md);
}

.watch-card__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(29, 29, 29, 0.78);
  margin-bottom: var(--space-lg);
}

.watch-card__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  margin-bottom: var(--space-lg);
}

.watch-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.watch-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}
.watch-card__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--olive);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='m6 12 4 4 8-8'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Phone mockup */
.watch-card__phone {
  width: 160px;
  aspect-ratio: 9 / 18;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 12px 30px -10px rgba(15, 42, 31, 0.35);
  flex-shrink: 0;
}
.watch-card__phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.watch-card__phone-header {
  padding: 10px 8px 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}
.watch-card__phone-brand {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--forest);
}
.watch-card__phone-section { padding: 8px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.watch-card__phone-label {
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--olive-deep);
}
.watch-card__phone-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(15, 42, 31, 0.4), rgba(111, 133, 53, 0.3)),
    var(--forest);
  border-radius: 4px;
}
.watch-card__phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 6px;
  color: var(--ink);
}
.watch-card__phone-row > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.watch-card__phone-mini-label {
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(29, 29, 29, 0.5);
  text-transform: uppercase;
}
.watch-card__phone-mini-value {
  font-size: 6px;
  font-weight: 700;
  color: var(--ink);
}
.watch-card__phone-tag {
  background: var(--olive);
  color: #fff;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
}
.watch-card__phone-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.watch-card__phone-photos > div {
  aspect-ratio: 1;
  background: rgba(15, 42, 31, 0.6);
  border-radius: 3px;
}

.watch-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

@media (max-width: 720px) {
  .watch-card__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .watch-card__phone { width: 140px; }
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card { min-height: 200px; }
}

/* =========================================================
   Our Process — 4-step horizontal flow
   ========================================================= */

.process {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid rgba(154, 143, 58, 0.18);
}

.process__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.process__header {
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.process__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  color: var(--forest);
  letter-spacing: -0.012em;
}

.process-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(8px, 1vw, 16px);
}

.process-step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
}

.process-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(15, 42, 31, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: var(--space-md);
  background: #fff;
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  position: absolute;
  top: 0;
  right: calc(50% - 36px);
}

.process-step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--forest);
  margin-bottom: var(--space-xs);
}

.process-step__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(29, 29, 29, 0.7);
  max-width: 180px;
}

.process-step__arrow {
  flex-shrink: 0;
  align-self: center;
  font-size: 20px;
  color: rgba(15, 42, 31, 0.3);
  margin-top: 20px;
}

@media (max-width: 820px) {
  .process-list {
    flex-wrap: wrap;
    row-gap: var(--space-xl);
  }
  .process-step { flex: 0 0 calc(50% - 8px); }
  .process-step__arrow { display: none; }
}
@media (max-width: 480px) {
  .process-step { flex: 0 0 100%; }
}

/* =========================================================
   Recent Exclusions / Work gallery
   ========================================================= */

.work {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(56px, 6.5vw, 88px) 0 clamp(56px, 6.5vw, 96px);
  border-top: 1px solid rgba(184, 150, 90, 0.32);
}

.work__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.work__header {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.28);
}

.work__headline {
  font-family: var(--font-display-rugged);
  font-weight: 600;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  color: var(--forest);
  margin-top: var(--space-xl);
  font-variation-settings: "opsz" 144, "SOFT" 35;
}
.work__headline .serif-italic {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.work__sub {
  margin-top: var(--space-lg);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(14, 15, 10, 0.72);
  max-width: 52ch;
  text-wrap: pretty;
}

.work-pair {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid rgba(184, 150, 90, 0.28);
}
.work-pair:first-of-type { border-top: 0; padding-top: 0; }
.work-pair:last-of-type { padding-bottom: 0; }

/* Alternate: even pairs have meta on the left */
.work-pair:nth-of-type(even) .work-pair__images { order: 2; }
.work-pair:nth-of-type(even) .work-pair__meta   { order: 1; }

.work-pair__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.4vw, 20px);
}

.work-pair__images--triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.work-photo--during img {
  object-position: 50% 78%;
}

.work-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--forest-deep);
}
.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
}

/* Captions kept in DOM for screen readers, visually hidden */
.work-photo figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.work-pair__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 44ch;
}
.work-pair__title {
  font-family: var(--font-display-rugged);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--forest);
  font-variation-settings: "opsz" 96, "SOFT" 40;
}
.work-pair__loc {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.work-pair__desc {
  margin-top: var(--space-md);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(14, 15, 10, 0.74);
}

@media (max-width: 980px) {
  .work-pair {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .work-pair:nth-of-type(even) .work-pair__images { order: 1; }
  .work-pair:nth-of-type(even) .work-pair__meta   { order: 2; }
}

@media (max-width: 600px) {
  .work-pair__images { gap: 8px; }
  /* On phones, triple pairs become: hero before image full-width on top,
     during + after side-by-side below (preserves narrative, photos stay readable) */
  .work-pair__images--triple { grid-template-columns: 1fr 1fr; }
  .work-pair__images--triple > *:first-child { grid-column: 1 / -1; }
}

/* =========================================================
   Reviews (Elfsight Google reviews widget)
   ========================================================= */

.reviews {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(56px, 6.5vw, 88px) 0 clamp(56px, 6.5vw, 96px);
  border-top: 1px solid rgba(184, 150, 90, 0.32);
}

.reviews__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.reviews__header {
  max-width: 720px;
  margin-bottom: clamp(36px, 4.5vw, 56px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.28);
}

.reviews__headline {
  font-family: var(--font-display-rugged);
  font-weight: 600;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  color: var(--forest);
  margin-top: var(--space-lg);
  font-variation-settings: "opsz" 144, "SOFT" 35;
}
.reviews__headline .serif-italic {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.reviews__sub {
  margin-top: var(--space-md);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(14, 15, 10, 0.7);
  max-width: 50ch;
}

/* The widget itself is styled by Elfsight; we just give it a contained,
   centered home that matches the rest of the page width. */
.reviews__widget {
  min-height: 240px;
}

/* =========================================================
   Homepage Watch Program teaser
   ========================================================= */

.watch-teaser {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(48px, 6vw, 88px) 0;
  border-top: 1px solid rgba(123, 106, 42, 0.18);
}

.watch-teaser__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.watch-teaser__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 380px;
  background: var(--forest);
}
.watch-teaser__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.watch-teaser__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 13, 0.0) 60%, rgba(6, 17, 13, 0.35) 100%);
}

.watch-teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow--olive {
  color: var(--olive);
  margin-bottom: var(--space-md);
}
.eyebrow--olive .eyebrow__rule { background: var(--olive); }

.watch-teaser__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--forest);
  margin-bottom: var(--space-md);
}

.watch-teaser__subhead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.3;
  color: var(--olive);
  margin-bottom: var(--space-lg);
}

.watch-teaser__body {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.78);
  margin-bottom: var(--space-lg);
  max-width: 56ch;
}

.watch-teaser__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: var(--space-xl);
}
.watch-teaser__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}
.watch-teaser__list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
}

.watch-teaser__footnote {
  margin-top: var(--space-lg);
  font-size: 13px;
  font-style: italic;
  color: rgba(29, 29, 29, 0.6);
  max-width: 52ch;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .watch-teaser__inner { grid-template-columns: 1fr; }
  .watch-teaser__media { min-height: 280px; aspect-ratio: 4 / 3; }
  .watch-teaser__list { grid-template-columns: 1fr; }
}

.eyebrow--gold {
  color: var(--gold);
  margin-bottom: var(--space-lg);
}
.eyebrow--gold .eyebrow__rule { background: var(--gold); }

/* Olive outlined button — for use on dark backgrounds */
.btn--olive-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--olive-soft);
  padding: 14px 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.btn--olive-outline:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

@media (max-width: 820px) {
  .watch-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(56px, 6.5vw, 88px) 0 clamp(56px, 6.5vw, 96px);
}

.faq__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.faq__header { margin-bottom: clamp(32px, 4vw, 56px); }

.faq__headline {
  font-family: var(--font-display-rugged);
  font-weight: 600;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-top: var(--space-lg);
  font-variation-settings: "opsz" 144, "SOFT" 35;
}
.faq__headline .serif-italic {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.faq-list {
  border-top: 1px solid rgba(184, 150, 90, 0.32);
}

.faq-item {
  border-bottom: 1px solid rgba(184, 150, 90, 0.32);
}

.faq-item__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.3;
  color: var(--forest);
  transition: color 200ms ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { content: ""; }
.faq-item__q:hover { color: var(--forest-soft); }

.faq-item__icon {
  position: relative;
  width: 24px; height: 24px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 240ms ease;
}
.faq-item__icon::before {
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  transform: translateY(-50%);
}
.faq-item__icon::after {
  top: 0; left: 50%;
  width: 1.5px; height: 100%;
  transform: translateX(-50%);
}
.faq-item[open] .faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  padding: 0 0 var(--space-lg) 0;
  max-width: 64ch;
}
.faq-item__a p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(14, 15, 10, 0.72);
}

/* =========================================================
   Final CTA — "Wildlife Problems Don't Wait. Neither Do We."
   ========================================================= */

.final-cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 17, 13, 0.85), rgba(6, 17, 13, 0.92)),
    var(--forest-deep);
  color: var(--cream);
  padding: clamp(48px, 6vw, 88px) 0;
  overflow: hidden;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(15, 42, 31, 0.6), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(15, 42, 31, 0.5), transparent 55%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.final-cta__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.014em;
  color: var(--cream);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.final-cta__accent {
  display: block;
  color: var(--olive-soft);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.btn--final {
  flex-direction: row;
  padding: 16px 24px;
  text-align: left;
  border-radius: var(--radius-sm);
}

.final-cta__btn-primary {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.final-cta__btn-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.78;
  margin-top: 3px;
}

.btn--ghost-final {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247, 244, 236, 0.42);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: left;
}
.btn--ghost-final:hover {
  background: rgba(247, 244, 236, 0.08);
  border-color: var(--cream);
}

.final-cta__pillars {
  background: rgba(247, 244, 236, 0.03);
  border: 1px solid rgba(154, 143, 58, 0.32);
  border-radius: var(--radius-md);
  padding: clamp(24px, 2.6vw, 36px);
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.pillar-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
}
.pillar-list svg {
  color: var(--olive-soft);
  flex-shrink: 0;
}

.final-cta__tag {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(154, 143, 58, 0.32);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--olive-soft);
  text-align: center;
}

@media (max-width: 820px) {
  .final-cta__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   Schedule (Jobber work-request embed)
   ========================================================= */

.schedule {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(72px, 8vw, 112px) 0 clamp(72px, 8vw, 112px);
  border-top: 1px solid rgba(184, 150, 90, 0.32);
}

.schedule__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 56px);
}

.schedule__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.schedule__headline {
  font-family: var(--font-display-rugged);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 35;
}

.schedule__sub {
  margin-top: var(--space-md);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(14, 15, 10, 0.7);
  text-wrap: balance;
}

/* Just give the Jobber form room to breathe; do not restyle it */
.schedule__form-wrap {
  width: 100%;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--forest-deep);
  color: rgba(247, 244, 236, 0.72);
  padding: clamp(48px, 6vw, 80px) 0 clamp(20px, 2vw, 32px);
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.1fr 2.5fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(123, 106, 42, 0.22);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.site-footer__logo { height: 52px; width: auto; }
.site-footer__tagline {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(247, 244, 236, 0.6);
  max-width: 36ch;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.site-footer__col a { transition: color 200ms ease; color: rgba(247, 244, 236, 0.7); }
.site-footer__col a:hover { color: var(--olive-soft); }
.site-footer__col li {
  font-size: 13px;
  line-height: 1.55;
}
.site-footer__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.site-footer__credentials {
  grid-column: 1 / -1;
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid rgba(123, 106, 42, 0.22);
}
.site-footer__credentials ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.site-footer__credentials li {
  font-size: 12.5px;
  color: rgba(247, 244, 236, 0.62);
}
.site-footer__credentials li::before {
  content: "•";
  margin-right: 12px;
  color: var(--olive-soft);
}

.site-footer__base {
  margin-top: clamp(20px, 2.5vw, 32px);
  padding-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-size: 12.5px;
  color: rgba(247, 244, 236, 0.5);
}
.site-footer__motto {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--olive-soft);
  font-size: 13px;
}

.site-footer__social {
  list-style: none;
  display: flex;
  gap: 14px;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 236, 0.22);
  color: rgba(247, 244, 236, 0.7);
  transition: color 200ms ease, border-color 200ms ease;
}
.site-footer__social a:hover {
  color: var(--olive-soft);
  border-color: var(--olive-soft);
}

@media (max-width: 980px) {
  .site-footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-footer__columns { grid-template-columns: 1fr 1fr; row-gap: var(--space-xl); }
}
@media (max-width: 480px) {
  .site-footer__columns { grid-template-columns: 1fr; row-gap: var(--space-lg); }
  .site-footer__base { flex-direction: column; text-align: center; }
}

/* =========================================================
   Watch Program page — Hero
   ========================================================= */

.wp-hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--cream);
  padding: clamp(120px, 14vw, 200px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  min-height: 540px;
}

.wp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 13, 0.65) 0%, rgba(6, 17, 13, 0.85) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(15, 36, 28, 0.85), rgba(6, 17, 13, 1) 70%),
    linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 60%, var(--forest-deep) 100%);
}
.wp-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 60%, rgba(15, 36, 28, 0.5), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(15, 36, 28, 0.4), transparent 40%);
}

.wp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
  max-width: 900px;
}

.wp-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-bottom: var(--space-lg);
}

.wp-hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--cream);
  margin-bottom: var(--space-lg);
}
.wp-hero__accent {
  display: block;
  color: var(--olive-soft);
}

.wp-hero__body {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(247, 244, 236, 0.78);
  max-width: 64ch;
  margin-bottom: var(--space-xl);
}

.wp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* =========================================================
   Watch Program page — Why Watch Exists
   ========================================================= */

.wp-why {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(56px, 7vw, 96px) 0;
}

.wp-why__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.wp-why__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--forest);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.wp-why__body {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.75);
}

.wp-why__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.wp-why-card { display: flex; flex-direction: column; }

.wp-why-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--forest);
  margin-bottom: var(--space-md);
}
.wp-why-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.wp-why-card__caption {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(29, 29, 29, 0.8);
}

@media (max-width: 980px) {
  .wp-why__inner { grid-template-columns: 1fr; }
  .wp-why__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .wp-why__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Watch Program — What We Monitor (dark forest strip)
   ========================================================= */

.wp-monitor {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(40px, 5vw, 64px) 0;
  position: relative;
}
.wp-monitor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(15, 42, 31, 0.6), transparent 60%);
  pointer-events: none;
}

.wp-monitor__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.wp-monitor__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-soft);
  text-align: center;
  margin-bottom: clamp(28px, 3.5vw, 44px);
  padding-bottom: var(--space-md);
  position: relative;
}
.wp-monitor__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60%;
  max-width: 800px;
  height: 1px;
  background: rgba(123, 106, 42, 0.32);
}

.wp-monitor__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  align-items: start;
}

.wp-monitor__grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.78);
  line-height: 1.3;
}
.wp-monitor__grid svg {
  color: var(--olive-soft);
}

@media (max-width: 1100px) {
  .wp-monitor__grid { grid-template-columns: repeat(5, 1fr); row-gap: var(--space-lg); }
}
@media (max-width: 600px) {
  .wp-monitor__grid { grid-template-columns: repeat(3, 1fr); row-gap: var(--space-md); }
}

/* =========================================================
   Watch Program — Pricing tiers
   ========================================================= */

.wp-pricing {
  background: var(--cream);
  padding: clamp(56px, 7vw, 96px) 0;
}

.wp-pricing__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.wp-pricing__header {
  text-align: center;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}

.wp-pricing__header .eyebrow {
  justify-content: center;
}

.wp-pricing__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.014em;
  color: var(--forest);
  margin-top: var(--space-md);
}

.tier-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  align-items: stretch;
}

.tier {
  display: flex;
  flex-direction: column;
  background: var(--cream-warm);
  border: 1px solid rgba(15, 36, 28, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.tier__header {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(20px, 2.2vw, 28px);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.tier__icon { color: var(--olive-soft); flex-shrink: 0; }

.tier__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.tier__subtitle {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-top: 4px;
}

.tier__body {
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tier__price {
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.tier__price-amount {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.012em;
}
.tier__price-period {
  font-size: 14px;
  font-weight: 500;
  color: rgba(29, 29, 29, 0.6);
  letter-spacing: 0.04em;
}

.tier__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-xl);
  flex: 1;
}
.tier__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
}
.tier__features li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--olive);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='m6 12 4 4 8-8'/></svg>");
  background-size: 11px 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.tier__cta {
  align-self: stretch;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
}

.btn--forest {
  background: var(--forest);
  color: #fff;
  border: 1px solid var(--forest);
}
.btn--forest:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: #fff;
}

/* Most popular */
.tier--featured {
  border-color: var(--olive);
  box-shadow: 0 12px 36px -16px rgba(123, 106, 42, 0.4);
}
.tier--featured .tier__header {
  background: var(--olive);
}
.tier--featured .tier__icon { color: var(--cream); }
.tier--featured .tier__subtitle { color: rgba(247, 244, 236, 0.85); }

.tier__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--olive-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 3px;
  z-index: 2;
}

.wp-pricing__footnote {
  margin-top: clamp(28px, 3vw, 40px);
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: rgba(29, 29, 29, 0.6);
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .tier--featured { order: -1; }
}

/* =========================================================
   Watch Program — Second Homes section
   ========================================================= */

.wp-second-home {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(40px, 5vw, 72px) 0;
}

.wp-second-home__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.wp-second-home__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--forest);
}
.wp-second-home__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.wp-second-home__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.014em;
  color: var(--forest);
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.wp-second-home__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(29, 29, 29, 0.78);
  margin-bottom: var(--space-lg);
}

.wp-second-home__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: var(--space-xl);
}
.wp-second-home__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(29, 29, 29, 0.8);
}
.wp-second-home__features svg { color: var(--olive); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .wp-second-home__inner { grid-template-columns: 1fr; }
  .wp-second-home__features { grid-template-columns: 1fr; }
}

/* =========================================================
   Watch Program — Inspection Report section
   ========================================================= */

.wp-report {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(40px, 5vw, 72px) 0;
}

.wp-report__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.wp-report__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.014em;
  color: var(--forest);
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.wp-report__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(29, 29, 29, 0.78);
}

/* The "paper" inspection report graphic */
.wp-report__doc {
  position: relative;
  perspective: 1200px;
}
.wp-report__page {
  background: #fff;
  border: 1px solid rgba(15, 36, 28, 0.08);
  border-radius: 6px;
  padding: clamp(18px, 2.2vw, 28px);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 18px 40px -20px rgba(15, 36, 28, 0.25);
  transform: rotate(-1.2deg);
  max-width: 460px;
  margin-left: auto;
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink);
}

.wp-report__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 36, 28, 0.12);
  margin-bottom: 14px;
}
.wp-report__logo { height: 22px; width: auto; }
.wp-report__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--forest);
  letter-spacing: -0.005em;
}

.wp-report__meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.wp-report__meta div { display: flex; flex-direction: column; gap: 2px; }
.wp-report__meta dt {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.5);
}
.wp-report__meta dd {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
}

.wp-report__section { margin-top: 14px; }
.wp-report__section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(15, 36, 28, 0.08);
}

.wp-report__summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}
.wp-report__summary > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wp-report__summary-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.55);
}
.wp-report__summary-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.wp-report__pill {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 3px;
}

.wp-report__areas {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wp-report__areas li {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 2px 0;
}
.wp-report__status {
  font-weight: 600;
  color: var(--olive-deep);
  letter-spacing: 0.02em;
}

.wp-report__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.wp-report__photos > div {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(15, 36, 28, 0.7), rgba(123, 106, 42, 0.4)), var(--forest);
  border-radius: 3px;
}

@media (max-width: 900px) {
  .wp-report__inner { grid-template-columns: 1fr; }
  .wp-report__page { margin-left: 0; max-width: 100%; }
}

/* =========================================================
   Watch Program — Final CTA
   ========================================================= */

.wp-final-cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 17, 13, 0.85), rgba(6, 17, 13, 0.94)),
    var(--forest-deep);
  color: var(--cream);
  padding: clamp(48px, 6vw, 88px) 0;
  overflow: hidden;
}
.wp-final-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(15, 36, 28, 0.6), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(15, 36, 28, 0.5), transparent 55%);
  pointer-events: none;
}

.wp-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.wp-final-cta__icon { color: var(--olive-soft); }

.wp-final-cta__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.wp-final-cta__accent { color: var(--olive-soft); }

.wp-final-cta__body {
  margin-top: var(--space-sm);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(247, 244, 236, 0.78);
}

.wp-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .wp-final-cta__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .wp-final-cta__actions { justify-content: center; }
}

/* =========================================================
   Utility classes carried forward from existing site
   ========================================================= */

.darken-12 { filter: brightness(0.88) saturate(0.95); }
.darken-15 { filter: brightness(0.85) saturate(0.95); }

.fade-left,
.fade-right {
  opacity: 0;
  transform: translateX(0);
  animation: fadeIn 900ms cubic-bezier(0.2, 0.7, 0.2, 1) 200ms forwards;
}
.fade-right { transform: translateX(-24px); }
.fade-left  { transform: translateX(24px); }

@keyframes fadeIn {
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-left, .fade-right {
    opacity: 1;
    transform: none;
    animation: none;
  }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .site-header__inner { grid-template-columns: auto 1fr; }
  .site-header__actions { gap: var(--space-md); }
  .hero__content { padding: calc(var(--header-h) + var(--space-xxl))
                           var(--space-xl) var(--space-xxl); }
  .hero__text { padding-left: 0; }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; }

  .site-header__inner { padding: 0 var(--space-lg); }
  .phone-link { display: none; }
  .site-header__logo { height: 44px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    order: 2;
    padding: var(--space-xxl) var(--space-lg) var(--space-sec);
  }

  .hero__media {
    order: 1;
    aspect-ratio: 16 / 10;
    margin-top: var(--header-h);
  }

  .hero__media::before {
    width: 100%;
    height: 80px;
    top: auto; bottom: 0;
    background: linear-gradient(180deg,
      rgba(27, 59, 47, 0) 0%,
      var(--forest) 100%);
  }

  .hero__sub { font-size: 17px; }
  .hero__caption { display: none; }
}

@media (max-width: 480px) {
  .site-header__inner { padding: 0 var(--space-md); }
  .hero__content { padding: var(--space-xl) var(--space-md) var(--space-xxl); }
  .btn--lg { padding: 14px 22px; font-size: 14px; width: 100%; justify-content: center; }
  .hero__actions { width: 100%; }
}
