/* =========================================================
   Big Woods Fish & Game Preserve Home Page
   File: assets/css/bwfgp-home.css
   ========================================================= */


/* =========================================================
   1. Theme Tokens
   ========================================================= */

:root {
  --green-950: #03110c;
  --green-925: #04170f;
  --green-900: #061e13;
  --green-850: #082716;

  --gold: #caa24a;
  --gold-soft: #d7b96a;

  --cream: #f2ebdc;
  --cream-2: #ebe0cb;

  --ink: #191710;
  --muted: #e7e1d2;
  --white: #fffdf6;

  --line: rgba(202, 162, 74, .45);
}


/* =========================================================
   2. Base / Reset
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--green-950);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: .01em;
}

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

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


/* =========================================================
   3. Page Shell
   ========================================================= */

.site {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 5%, rgba(255,255,255,.055), transparent 26rem),
    linear-gradient(180deg, #04120d 0%, #05160f 45%, #03110c 100%);
}


/* =========================================================
   4. Header / Navigation
   ========================================================= */

.nav {
  position: relative;
  z-index: 10000;
  height: 70px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 36px;
  padding: 0 30px;
  overflow: visible;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background:
    linear-gradient(180deg, rgba(3,3,2,.96), rgba(8,8,6,.96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 7px);
}

.brand {
  order: 1;
  width: 124px;
  min-width: 124px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  overflow: visible;
}

.brand img {
  width: 118px;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
}

.nav-links {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 28px;
  min-width: 0;
  width: auto;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0;
  opacity: .93;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,.94);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-links a::before,
.nav-links a::after {
  display: none !important;
  content: none !important;
}

.nav-actions {
  order: 3;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(202, 162, 74, .9);
  background: rgba(255,255,255,.035);
  color: var(--gold);
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform .18s ease, opacity .18s ease;
}

.nav-links .nav-menu-login {
  display: none !important;
}


/* =========================================================
   5. Buttons
   ========================================================= */

.login-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: rgba(5,30,19,.45);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background .18s ease,
    color .18s ease,
    transform .18s ease;
}

.login-btn:hover,
.outline-btn:hover {
  background: var(--gold);
  color: #07170f;
}

.solid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 17px;
  background: var(--green-900);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

/* =========================================================
   6. Hero Section
   ========================================================= */

.hero {
  position: relative;
  min-height: 450px;
  padding: 42px 36px 18px clamp(24px, 8vw, 165px);
  background-color: var(--green-900);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,13,9,.88) 0%, rgba(3,13,9,.62) 38%, rgba(3,13,9,.28) 66%, rgba(3,13,9,.55) 100%),
    linear-gradient(180deg, rgba(3,13,9,.05) 0%, rgba(3,13,9,.38) 72%, rgba(3,13,9,.88) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 35% 12%, rgba(255,255,255,.08), transparent 26rem);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(650px, 1fr) 470px;
  gap: clamp(54px, 5vw, 90px);
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-main {
  min-width: 0;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 8px 0 24px;
}

.hero-title {
  margin: 0;
  max-width: 790px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255,255,255,.94);
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.hero-title-line {
  display: block;
  font-size: clamp(52px, 6.4vw, 86px);
  line-height: .88;
  letter-spacing: .06em;
}

.hero-title-line em {
  color: var(--gold);
  font-style: normal;
  display: inline-block;
  margin-left: .28em;
}

.hero-subtitle {
  display: block;
  color: var(--gold-soft);
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: .95;
  margin-top: 12px;
  letter-spacing: .08em;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 20px;
  font-size: 22px;
  line-height: 1.48;
  color: rgba(255,255,255,.92);
}


/* =========================================================
   7. Hero Carousel
   ========================================================= */

.hero-carousel {
  width: 100%;
  max-width: 1010px;
  margin-top: 22px;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  overflow: hidden;
}

.carousel-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(5,18,14,.72);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .96;
}

.carousel-empty {
  max-width: 1010px;
  border: 1px dashed rgba(202,162,74,.55);
  background: rgba(2,11,8,.72);
  color: rgba(255,255,255,.86);
  padding: 18px;
  font-size: 13px;
  line-height: 1.45;
}


/* =========================================================
   8. Lead Form
   ========================================================= */

.lead-form {
  margin-top: -15px;
  margin-bottom: 15px;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  border: 1px solid rgba(202,162,74,.4);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(0,0,0,.38);
}

.lead-form h2 {
  margin: 0;
  padding: 18px 21px;
  background: var(--green-900);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .09em;
  line-height: 1.1;
  white-space: nowrap;
}

.form-body {
  padding: 16px 20px 20px;
}

.field {
  margin-bottom: 11px;
}

.field label {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #3c3529;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #b5a98f;
  background: #fffdf8;
  color: #17140f;
  height: 32px;
  padding: 7px 9px;
  font: inherit;
  border-radius: 1px;
  outline: none;
}

.field textarea {
  min-height: 74px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  border: 0;
  background: var(--green-900);
  color: white;
  height: 40px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  cursor: pointer;
}

.submit-btn span {
  color: var(--gold-soft);
  padding-left: 6px;
}


/* =========================================================
   9. Feature Bar
   ========================================================= */

.feature-bar {
  background: linear-gradient(180deg, var(--green-900), var(--green-950));
  border-top: 1px solid rgba(202,162,74,.18);
  border-bottom: 1px solid rgba(202,162,74,.18);
  padding: 23px 48px 24px;
}

.features {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.feature {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  border-right: 0;
  padding-right: 0;
}

.feature img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.feature h3 {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 1.18;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .065em;
  font-weight: 900;
}

.feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  color: rgba(255,255,255,.86);
}


/* =========================================================
   10. About Overview
   ========================================================= */

.about {
  background: var(--cream);
  color: var(--ink);
}

.section-kicker {
  color: #7d5d1e;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  margin: 0 0 9px;
}

.about.about-overview-section {
  padding: clamp(54px, 5vw, 76px) 52px;
  background:
    radial-gradient(circle at 8% 12%, rgba(202, 162, 74, .14), transparent 28rem),
    radial-gradient(circle at 92% 72%, rgba(6, 30, 19, .09), transparent 26rem),
    linear-gradient(180deg, #efe6d6 0%, #e7dcc9 100%);
  color: #191710;
  border-top: 1px solid rgba(87, 64, 29, .12);
  border-bottom: 1px solid rgba(87, 64, 29, .16);
}

.about-feature-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.14));
  border: 1px solid rgba(87, 64, 29, .16);
  box-shadow:
    0 22px 56px rgba(43, 32, 17, .10),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.about-feature-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 3vw, 46px);
  background:
    radial-gradient(circle at 86% 12%, rgba(202, 162, 74, .14), transparent 11rem),
    linear-gradient(145deg, #062116 0%, #03110c 100%);
  border-right: 1px solid rgba(202, 162, 74, .24);
}

.about-feature-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 5px;
  background: linear-gradient(180deg, #caa24a, rgba(202, 162, 74, .30));
}

.about-feature-panel .section-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 15px;
  color: #d7b96a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
}

.about-feature-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(37px, 3.2vw, 53px);
  line-height: .95;
  letter-spacing: -.035em;
}

.about-feature-panel p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, .80);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 500;
}

.about-feature-content {
  padding: clamp(34px, 3vw, 46px);
  background:
    radial-gradient(circle at 92% 18%, rgba(202, 162, 74, .11), transparent 16rem),
    linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,.08));
}

.about-feature-content p {
  max-width: 690px;
  margin: 0 0 16px;
  color: #2d281f;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.72;
  font-weight: 500;
}

.about-feature-content .about-feature-lead {
  color: #1f1a13;
  font-size: clamp(17px, 1.16vw, 20px);
  line-height: 1.62;
  font-weight: 650;
}

.about-feature-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 22px;
}

.about-feature-facts div {
  min-height: 88px;
  padding: 17px 16px 15px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.16));
  border: 1px solid rgba(90, 65, 28, .18);
  border-left: 4px solid rgba(154, 108, 36, .78);
  box-shadow: 0 10px 24px rgba(45, 35, 18, .06);
}

.about-feature-facts span {
  display: block;
  margin-bottom: 8px;
  color: #80601f;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-feature-facts strong {
  display: block;
  color: #1c1810;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 950;
  line-height: 1.1;
}

.about-feature-content .solid-btn {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: #052016;
  color: #fff7df;
  box-shadow: 0 12px 28px rgba(4, 21, 14, .15);
  border: 1px solid rgba(5, 32, 22, .88);
}

.about-feature-content .solid-btn:hover {
  background: #0b3423;
  transform: translateY(-1px);
}


/* =========================================================
   11. Preserve Details
   ========================================================= */

.preserve-detail-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 54px 52px 50px;
  background:
    radial-gradient(circle at 76% 18%, rgba(202, 162, 74, .08), transparent 25rem),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, .035), transparent 22rem),
    linear-gradient(180deg, #04170f 0%, #03110c 100%);
  border-top: 1px solid rgba(202, 162, 74, .16);
  border-bottom: 1px solid rgba(202, 162, 74, .12);
  overflow: hidden;
}

.preserve-detail-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.2), transparent 24%, transparent 76%, rgba(0,0,0,.24));
}

.preserve-detail-section::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1180px, calc(100% - 104px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(211, 170, 69, .28),
    transparent
  );
  pointer-events: none;
}

.preserve-detail-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 780px) 280px;
  gap: clamp(54px, 6vw, 96px);
  align-items: center;
}

.preserve-detail-copy {
  max-width: 780px;
}

.preserve-detail-copy .section-kicker {
  color: var(--gold);
  margin-bottom: 14px;
}

.preserve-detail-copy h2,
.managed-waters-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 2.8vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.preserve-detail-copy h2 {
  max-width: 760px;
}

.preserve-detail-copy p:not(.section-kicker) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.72;
}


/* =========================================================
   11A. Preserve Stats
   ========================================================= */

.preserve-detail-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.preserve-detail-stats-stacked {
  width: 280px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.preserve-detail-stat {
  position: relative;
  min-height: 154px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(202, 162, 74, .34);
  background:
    linear-gradient(145deg, rgba(202, 162, 74, .13), rgba(255, 255, 255, .035) 42%, rgba(0, 0, 0, .12)),
    rgba(5, 24, 15, .78);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .045);
}

.preserve-detail-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), rgba(202, 162, 74, .22));
}

.preserve-detail-stat::after {
  content: '';
  position: absolute;
  right: -48px;
  top: -48px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(202, 162, 74, .065);
  pointer-events: none;
}

.preserve-detail-stat strong {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  color: #fff;
  font-size: clamp(40px, 3.5vw, 56px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.045em;
  text-align: center;
}

.preserve-detail-stat span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 190px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.preserve-detail-stats-stacked .preserve-detail-stat {
  width: 280px;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 26px 22px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.preserve-detail-stats-stacked .preserve-detail-stat span {
  max-width: none;
  margin: 0 0 14px;
  text-align: center;
}

.preserve-detail-stats-stacked .preserve-detail-stat strong {
  text-align: center;
  font-size: clamp(54px, 4vw, 70px);
  line-height: .9;
}

.preserve-detail-stats-stacked .preserve-detail-stat small {
  display: none;
}


/* =========================================================
   12. Managed Waters
   ========================================================= */

.managed-waters-section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 20px 0 54px;
  border-top: 1px solid rgba(202, 162, 74, .16);
}

.managed-waters-inner {
  max-width: 900px;
}

.managed-waters-head {
  margin-bottom: 22px;
}

.managed-waters-head h2 {
  max-width: 720px;
  font-size: clamp(27px, 2.25vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.managed-species-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.managed-species-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition:
    border-color .2s ease,
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.managed-species-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(211, 170, 69, .45);
  background: rgba(211, 170, 69, .1);
  color: #fff;
}


/* =========================================================
   13. Experience Section
   ========================================================= */

.experience {
  background:
    radial-gradient(circle at 18% 15%, rgba(202,162,74,.08), transparent 25rem),
    linear-gradient(180deg, var(--green-900), var(--green-950));
  padding: 42px 52px;
}

.experience-grid {
  max-width: 1340px;
  min-height: 230px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
}

.experience .section-kicker {
  color: var(--gold);
}

.experience h2 {
  color: #fff;
  font-size: clamp(28px, 2.3vw, 36px);
  line-height: 1.08;
  margin: 0 0 10px;
  letter-spacing: -.025em;
}

.experience p {
  margin: 0;
  max-width: 330px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.52;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.experience-card {
  position: relative;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(202,162,74,.55);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.10)),
    rgba(0,0,0,.30);
  box-shadow:
    0 16px 34px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.045);
  cursor: pointer;
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 34%, rgba(2,9,7,.26) 100%);
  opacity: .9;
}

.experience-card img {
  position: relative;
  z-index: 1;
  height: 122px;
  width: 100%;
  flex: 0 0 122px;
  object-fit: cover;
  filter: saturate(.88) contrast(.96);
  transition:
    transform .28s ease,
    filter .28s ease;
}

.experience-card strong {
  position: relative;
  z-index: 2;
  min-height: 56px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(2,9,7,.94), rgba(2,9,7,.86));
  text-align: center;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 13px 10px;
}

.experience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215,185,106,.88);
  background:
    linear-gradient(180deg, rgba(202,162,74,.07), rgba(0,0,0,.14)),
    rgba(0,0,0,.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,.32),
    0 0 0 1px rgba(215,185,106,.14),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.experience-card:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1);
}

.experience-card:focus-visible {
  outline: 3px solid rgba(215,185,106,.55);
  outline-offset: 4px;
}


/* =========================================================
   14. Footer
   ========================================================= */

.footer {
  background: #020c08;
  border-top: 1px solid rgba(202, 162, 74, .22);
  color: rgba(255,255,255,.88);
  padding: 30px 52px 22px;
}

.footer-wrap {
  max-width: 1340px;
  margin: 0 auto;
}

.footer-heading {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  line-height: 1.25;
  margin-bottom: 22px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 46px;
  width: 100%;
}

.footer-contact-item {
  min-width: 0;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1.3;
}

.footer-contact-item strong {
  display: block;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-contact-item:hover strong {
  color: var(--gold-soft);
}

.footer-contact-left {
  justify-self: start;
  text-align: left;
}

.footer-contact-center {
  justify-self: center;
  text-align: left;
}

.footer-contact-right {
  justify-self: end;
  text-align: left;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.56);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.footer-bottom a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold-soft);
}

.footer-sep {
  display: inline-block;
  margin: 0 8px;
  color: rgba(255,255,255,.32);
}


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

@media (max-width: 760px) {
  .footer {
    padding: 28px 24px 22px;
  }

  .footer-heading {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-contact-left,
  .footer-contact-center,
  .footer-contact-right {
    justify-self: start;
    text-align: left;
  }

  .footer-contact-item span {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .footer-contact-item strong {
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 22px;
    padding-top: 14px;
    font-size: 12px;
    text-align: left;
  }
}


/* =========================================================
   15. Home Form / Captcha Modal
   ========================================================= */

.form-alert {
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-left-width: 5px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .01em;
}

.form-alert-success {
  background: linear-gradient(180deg, #f3fff6 0%, #d9f8e3 100%);
  color: #075c2b;
  border-color: rgba(25, 164, 75, .38);
  border-left-color: #18a64d;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .75),
    0 8px 18px rgba(7, 92, 43, .12);
}

.form-alert-error {
  background: linear-gradient(180deg, #fff3ed 0%, #f8ded3 100%);
  color: #7a2012;
  border-color: rgba(122, 32, 18, .32);
  border-left-color: #c53a24;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .65),
    0 8px 18px rgba(122, 32, 18, .10);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-location {
  grid-template-columns: minmax(0, 1fr) 66px 92px;
}

.form-row .field {
  min-width: 0;
}

#state {
  text-transform: uppercase;
}

.lead-form .form-body {
  padding: 14px 18px 18px;
}

.lead-form .field {
  margin-bottom: 8px;
}

.lead-form .field label {
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: .05em;
}

.lead-form .field input {
  height: 30px;
  padding: 6px 8px;
  font-size: 13px;
}

.lead-form .submit-btn {
  height: 39px;
  margin-top: 2px;
}

.bw-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}

.captcha-modal.is-open {
  display: flex;
}

.captcha-box {
  width: min(420px, 100%);
  border: 1px solid rgba(211, 170, 69, .5);
  background: #efe7d7;
  color: #15130d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .48);
}

.captcha-box-head {
  padding: 16px 18px;
  background: #03110c;
  color: #fff;
  border-bottom: 1px solid rgba(211, 170, 69, .45);
}

.captcha-box-head strong {
  display: block;
  color: #d7b96a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.captcha-box-head span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, .82);
}

.captcha-box-body {
  padding: 18px;
}

.captcha-question {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 900;
  color: #15130d;
}

.captcha-question strong {
  color: #061e13;
  font-size: 22px;
}

.captcha-box input {
  width: 100%;
  height: 42px;
  border: 1px solid #aa9c7f;
  background: #fffdf8;
  color: #15130d;
  padding: 8px 10px;
  font: inherit;
  outline: none;
}

.captcha-error {
  display: none;
  margin: 10px 0 0;
  color: #7b1d12;
  font-size: 12px;
  font-weight: 800;
}

.captcha-error.is-visible {
  display: block;
}

.captcha-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.captcha-actions button {
  min-height: 40px;
  border: 1px solid rgba(6, 30, 19, .25);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.captcha-cancel {
  background: #fff8e8;
  color: #17140f;
}

.captcha-confirm {
  background: #061e13;
  color: #fff;
}


/* =========================================================
   16. Combined About / Preserve Section
   ========================================================= */

.about.about-preserve-section {
  padding: clamp(58px, 5vw, 86px) 52px;
  background:
    radial-gradient(circle at 10% 12%, rgba(202, 162, 74, .13), transparent 28rem),
    radial-gradient(circle at 92% 74%, rgba(6, 30, 19, .08), transparent 26rem),
    linear-gradient(180deg, #efe6d6 0%, #e7dcc9 100%);
  color: #191710;
  border-top: 1px solid rgba(87, 64, 29, .12);
  border-bottom: 1px solid rgba(87, 64, 29, .16);
}

.about-preserve-section .about-grid,
.about-preserve-section .photo-strip,
.about-preserve-section .about-story-wrap,
.about-preserve-section .about-intro-wrap {
  display: none;
}

.about-preserve-wrap {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.16));
  border: 1px solid rgba(87, 64, 29, .16);
  box-shadow:
    0 24px 58px rgba(43, 32, 17, .11),
    inset 0 1px 0 rgba(255,255,255,.46);
}

.about-preserve-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 3.6vw, 58px);
  background:
    radial-gradient(circle at 88% 15%, rgba(202, 162, 74, .13), transparent 12rem),
    linear-gradient(145deg, #062116 0%, #03110c 100%);
  border-right: 1px solid rgba(202, 162, 74, .24);
}

.about-preserve-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 38px;
  bottom: 38px;
  width: 5px;
  background: linear-gradient(180deg, #caa24a, rgba(202, 162, 74, .28));
}

.about-preserve-panel .section-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #d7b96a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-preserve-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 350px;
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 3.35vw, 58px);
  line-height: .96;
  letter-spacing: -.04em;
}

.about-preserve-panel p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, .78);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}

.about-preserve-content {
  padding: clamp(40px, 3.6vw, 58px);
  background:
    radial-gradient(circle at 92% 18%, rgba(202, 162, 74, .10), transparent 16rem),
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.08));
}

.about-preserve-content p {
  max-width: 760px;
  margin: 0 0 16px;
  color: #2d281f;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.72;
  font-weight: 500;
}

.about-preserve-content .about-feature-lead {
  color: #1f1a13;
  font-size: clamp(18px, 1.18vw, 21px);
  line-height: 1.58;
  font-weight: 800;
}

.about-preserve-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin: 28px 0 22px;
}

.about-preserve-highlights div {
  min-height: 92px;
  padding: 17px 16px 15px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.50), rgba(255,255,255,.18));
  border: 1px solid rgba(90, 65, 28, .18);
  border-left: 4px solid rgba(154, 108, 36, .78);
  box-shadow: 0 10px 24px rgba(45, 35, 18, .06);
}

.about-preserve-highlights span {
  display: block;
  margin-bottom: 8px;
  color: #80601f;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-preserve-highlights strong {
  display: block;
  color: #1c1810;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 950;
  line-height: 1.08;
}

.about-preserve-content .solid-btn {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: #052016;
  color: #fff7df;
  border: 1px solid rgba(5, 32, 22, .88);
  box-shadow: 0 12px 28px rgba(4, 21, 14, .15);
}

.about-preserve-content .solid-btn:hover {
  background: #0b3423;
  transform: translateY(-1px);
}


/* =========================================================
   17. Global Scroll To Top Button
   ========================================================= */

.bw-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 220, 120, .36);
  border-radius: 999px;

  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(180deg, #d7b13f 0%, #b98d24 100%);

  color: #06100b;

  box-shadow:
    0 18px 38px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .32),
    inset 0 -10px 18px rgba(0, 0, 0, .12);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.92);
  pointer-events: none;

  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.bw-scroll-top svg {
  width: 31px;
  height: 31px;
  display: block;
  overflow: visible;
}

.bw-scroll-top svg path {
  fill: none;
  stroke: #06100b;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bw-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.bw-scroll-top:hover {
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.26), transparent 28%),
    linear-gradient(180deg, #e3bd4d 0%, #c99a2d 100%);

  box-shadow:
    0 22px 46px rgba(0, 0, 0, .5),
    inset 0 1px 0 rgba(255, 255, 255, .38),
    inset 0 -10px 18px rgba(0, 0, 0, .13);

  transform: translateY(-3px) scale(1.03);
}

.bw-scroll-top:active {
  transform: translateY(0) scale(.97);
}

.bw-scroll-top:focus-visible {
  outline: 3px solid rgba(211, 170, 69, .38);
  outline-offset: 4px;
}


/* =========================================================
   18. Responsive Header / Mobile Menu
   ========================================================= */

@media (max-width: 1180px) {
  .nav {
    gap: 18px;
    padding: 0 22px;
  }

  .brand {
    width: 116px;
    min-width: 116px;
  }

  .brand img {
    width: 110px;
  }

  .nav-links {
    gap: 18px;
    font-size: 11px;
  }

  .login-btn,
  .outline-btn {
    min-height: 38px;
    padding: 0 15px;
    font-size: 9px;
  }
}

@media (max-width: 980px) {
  .nav {
    height: 66px;
    gap: 10px;
    padding: 0 12px;
  }

  .brand {
    width: 106px;
    min-width: 106px;
    height: 54px;
  }

  .brand img {
    width: 104px;
  }

  .nav-actions {
    margin-left: auto;
    gap: 8px;
  }

  .nav-top-login {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 12px;
    left: auto;
    z-index: 99999;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 400px;
    max-width: calc(100vw - 24px);
    padding: 10px;
    border: 1px solid rgba(202, 162, 74, .34);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background:
      radial-gradient(circle at 85% 0%, rgba(202, 162, 74, .08), transparent 15rem),
      linear-gradient(180deg, rgba(6, 30, 19, .99), rgba(2, 12, 8, .99));
    box-shadow: 0 22px 48px rgba(0, 0, 0, .48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    overflow: visible;
    transition:
      opacity .18s ease,
      visibility .18s ease,
      transform .18s ease;
  }

  .nav.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    height: auto;
    min-height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(202, 162, 74, .22);
    border-radius: 0;
    background: transparent;
    color: #fffaf0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .075em;
    line-height: 1.1;
    text-align: center;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold);
    background: rgba(202, 162, 74, .10);
    border-bottom-color: rgba(202, 162, 74, .22);
  }

  .nav-links .nav-menu-login {
    min-height: 52px;
    margin-top: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(202, 162, 74, .55) !important;
    background:
      linear-gradient(180deg, rgba(202, 162, 74, .16), rgba(202, 162, 74, .08)) !important;
    color: var(--gold-soft) !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
  }

  .nav-links .nav-menu-login:hover {
    background: var(--gold) !important;
    color: #07170f !important;
  }

  .nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .nav {
    height: 62px;
    gap: 8px;
    padding: 0 10px;
  }

  .brand {
    width: 94px;
    min-width: 94px;
    height: 52px;
  }

  .brand img {
    width: 92px;
  }

  .nav-toggle {
    width: 36px;
    height: 34px;
  }

  .nav-toggle span {
    width: 18px;
  }

  .nav-links {
    left: 0;
    right: 0;
    width: 100vw;
    max-width: none;
    padding: 10px 14px 14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .nav-links a {
    min-height: 54px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .nav {
    height: 60px;
    padding: 0 8px;
  }

  .brand {
    width: 86px;
    min-width: 86px;
  }

  .brand img {
    width: 84px;
  }

  .nav-toggle {
    width: 34px;
    height: 32px;
  }

  .nav-links {
    padding: 9px 12px 13px;
  }

  .nav-links a {
    min-height: 50px;
    font-size: 11px;
  }
}


/* =========================================================
   19. Responsive: Tablet / Small Desktop
   ========================================================= */

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 100%;
  }

  .lead-form {
    max-width: 440px;
    margin-top: 0;
    justify-self: start;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
  }

  .feature:nth-child(3) {
    border-right: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .experience p {
    max-width: 680px;
  }

  .preserve-detail-grid {
    grid-template-columns: 1fr;
  }

  .preserve-detail-copy {
    max-width: 820px;
  }

  .preserve-detail-copy h2,
  .preserve-detail-copy p:not(.section-kicker) {
    max-width: 820px;
  }

  .preserve-detail-stats-stacked {
    width: 100%;
    max-width: 620px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preserve-detail-stats-stacked .preserve-detail-stat {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 24px 52px;
  }

  .foot-note {
    text-align: left;
  }

  .footer .outline-btn {
    justify-self: start;
  }
}

@media (max-width: 1120px) {
  .preserve-detail-section {
    padding: 46px 38px 44px;
  }

  .preserve-detail-section::after {
    width: min(1180px, calc(100% - 76px));
  }

  .preserve-detail-grid {
    gap: 34px;
    align-items: start;
  }

  .preserve-detail-copy {
    max-width: 760px;
  }

  .preserve-detail-copy p:not(.section-kicker) {
    max-width: 760px;
  }

  .preserve-detail-stats {
    max-width: 720px;
  }
}

@media (max-width: 980px) {
  .about-feature-wrap,
  .about-preserve-wrap {
    grid-template-columns: 1fr;
  }

  .about-feature-panel,
  .about-preserve-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(202, 162, 74, .22);
  }

  .about-feature-panel h2,
  .about-feature-panel p:not(.section-kicker),
  .about-preserve-panel h2,
  .about-preserve-panel p:not(.section-kicker),
  .about-preserve-content p {
    max-width: 780px;
  }
}


/* =========================================================
   20. Responsive: Mobile
   ========================================================= */

@media (max-width: 800px) {
  .hero,
  .about,
  .experience {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .hero-title-line {
    font-size: 46px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-carousel {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero-cards {
    grid-template-columns: repeat(7, minmax(86px, 1fr));
    min-width: 690px;
    max-width: none;
    overflow: visible;
  }

  .carousel-card {
    aspect-ratio: 1 / 1;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .experience {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .experience-grid {
    gap: 26px;
    min-height: 0;
  }

  .experience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .experience-card {
    min-height: 166px;
  }

  .experience-card img {
    height: 108px;
    flex-basis: 108px;
  }

  .preserve-detail-section {
    padding: 38px 22px 38px;
  }

  .preserve-detail-section::after {
    width: calc(100% - 44px);
  }

  .preserve-detail-grid {
    gap: 28px;
  }

  .preserve-detail-copy h2,
  .managed-waters-head h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.12;
  }

  .preserve-detail-copy p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.58;
  }

  .preserve-detail-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .preserve-detail-stat {
    min-height: 132px;
    padding: 18px;
  }

  .preserve-detail-stat strong {
    font-size: clamp(36px, 9vw, 48px);
  }

  .preserve-detail-stat span {
    font-size: 10px;
    letter-spacing: .115em;
  }

  .managed-waters-section {
    width: min(100% - 32px, 1180px);
    padding: 22px 0 44px;
  }

  .about.about-overview-section,
  .about.about-preserve-section {
    padding: 42px 22px 48px;
  }

  .about-feature-panel,
  .about-feature-content,
  .about-preserve-panel,
  .about-preserve-content {
    padding: 30px 24px;
  }

  .about-feature-panel::before,
  .about-preserve-panel::before {
    top: 28px;
    bottom: 28px;
  }

  .about-feature-panel h2,
  .about-preserve-panel h2 {
    font-size: clamp(36px, 8vw, 46px);
  }

  .about-feature-facts,
  .about-preserve-highlights {
    grid-template-columns: 1fr;
  }

  .about-feature-content p,
  .about-feature-content .about-feature-lead,
  .about-preserve-content p,
  .about-preserve-content .about-feature-lead {
    font-size: 16px;
    line-height: 1.62;
  }

  .footer {
    padding: 22px;
  }

  .footer-heading {
    margin-bottom: 14px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-contact-left,
  .footer-contact-center,
  .footer-contact-right {
    justify-self: stretch;
    text-align: left;
  }

  .footer-bottom {
    text-align: left;
  }

  .contact-line {
    gap: 12px;
    flex-direction: column;
  }
}


/* =========================================================
   21. Responsive: Small Mobile
   ========================================================= */

@media (max-width: 560px) {
  .experience-cards {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 0;
  }

  .experience-card img {
    height: 142px;
    flex-basis: 142px;
  }

  .preserve-detail-stats-stacked {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-title-line {
    font-size: 39px;
  }

  .hero-subtitle {
    font-size: 29px;
  }

  .hero-cards {
    gap: 8px;
  }

  .lead-form h2 {
    white-space: normal;
  }

  .form-row-location {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .preserve-detail-stats {
    grid-template-columns: 1fr;
  }

  .preserve-detail-stat {
    min-height: 118px;
  }

  .managed-species-list span {
    width: 100%;
  }

  .about.about-overview-section,
  .about.about-preserve-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-feature-panel,
  .about-feature-content,
  .about-preserve-panel,
  .about-preserve-content {
    padding: 28px 20px;
  }

  .about-feature-panel h2,
  .about-preserve-panel h2 {
    font-size: 34px;
  }

  .bw-scroll-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .bw-scroll-top svg {
    width: 29px;
    height: 29px;
  }

  .bw-scroll-top svg path {
    stroke-width: 8;
  }
}
/* =========================================================
   22. Mobile Hero Fix
   Keeps hero image short and moves request form below image
   Makes request form full-width on mobile
   ========================================================= */

@media (max-width: 800px) {
  .hero {
    min-height: 0;
    padding: 0;
    background:
      linear-gradient(180deg, #efe6d6 0%, #e7dcc9 100%);
    overflow: hidden;
  }

  .hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 455px;
    object-fit: cover;
    object-position: center top;
  }

  .hero::before {
    inset: 0 0 auto 0;
    height: 455px;
    background:
      linear-gradient(
        90deg,
        rgba(3, 13, 9, .90) 0%,
        rgba(3, 13, 9, .68) 44%,
        rgba(3, 13, 9, .34) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 13, 9, .12) 0%,
        rgba(3, 13, 9, .34) 62%,
        rgba(3, 13, 9, .92) 100%
      );
  }

  .hero::after {
    inset: 0 0 auto 0;
    height: 455px;
    background:
      radial-gradient(circle at 32% 12%, rgba(255, 255, 255, .10), transparent 18rem);
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .hero-main {
    min-height: 455px;
    padding: 42px 22px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .eyebrow {
    margin: 0 0 18px;
    font-size: 11px;
    line-height: 1.2;
  }

  .hero-title {
    max-width: 360px;
  }

  .hero-title-line {
    font-size: clamp(40px, 12vw, 52px);
    line-height: .9;
    letter-spacing: .055em;
  }

  .hero-subtitle {
    font-size: clamp(28px, 8vw, 36px);
    line-height: .95;
    margin-top: 9px;
  }

  .hero-copy {
    max-width: 390px;
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .90);
  }

  .lead-form {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: none;
    margin: 0;
    justify-self: stretch;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(202, 162, 74, .45);
    border-bottom: 1px solid rgba(202, 162, 74, .32);
    background: #efe6d6;
    box-shadow: none;
  }

  .lead-form h2 {
    width: 100%;
    padding: 18px 30px;
    white-space: normal;
  }

  .lead-form .form-body {
    width: 100%;
    padding: 18px 30px 22px;
  }

  .lead-form .field {
    margin-bottom: 10px;
  }

  .lead-form .field label {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .lead-form .field input {
    height: 32px;
    font-size: 13px;
  }

  .form-row-location {
    grid-template-columns: minmax(0, 1fr) 66px 92px;
    gap: 8px;
  }

  .lead-form .submit-btn {
    height: 40px;
    margin-top: 2px;
  }
}

@media (max-width: 560px) {
  .hero-bg-image,
  .hero::before,
  .hero::after {
    height: 430px;
  }

  .hero-main {
    min-height: 430px;
    padding: 38px 20px 28px;
  }

  .lead-form h2 {
    padding: 17px 24px;
    font-size: 12px;
    line-height: 1.2;
  }

  .lead-form .form-body {
    padding: 17px 24px 22px;
  }
}

@media (max-width: 480px) {
  .hero-bg-image,
  .hero::before,
  .hero::after {
    height: 430px;
  }

  .hero-main {
    min-height: 430px;
  }

  .hero-title-line {
    font-size: 39px;
  }

  .hero-subtitle {
    font-size: 29px;
  }

  .form-row-location {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 390px) {
  .lead-form h2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lead-form .form-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}