:root {
  --forest: #1e3b2f;
  --forest-deep: #14281f;
  --pine: #2d5741;
  --moss: #6f8f6a;
  --amber: #d99a3d;
  --amber-deep: #b97d24;
  --cream: #f7f3ea;
  --cream-dark: #efe8d9;
  --ink: #24312a;
  --ink-soft: #4d5c53;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(20, 40, 31, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4, .display {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  color: var(--forest);
}

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

.white { color: var(--white) !important; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--amber);
  color: var(--forest-deep);
  box-shadow: 0 10px 25px rgba(217, 154, 61, 0.35);
}
.btn-primary:hover { background: #e3a94f; }
.btn-outline-light {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline-dark:hover { background: var(--forest); color: var(--cream); }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20, 40, 31, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo span { color: var(--amber); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links > a {
  color: rgba(247, 243, 234, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links > a:hover { color: var(--amber); }
.nav-links > a.active { color: var(--amber); }
.nav-links .btn { padding: 10px 22px; font-size: 14px; }

/* Dropdown menus */
.nav-item { position: relative; }
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(247, 243, 234, 0.85);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  transition: color 0.2s;
}
.nav-drop-toggle:hover,
.nav-item:hover .nav-drop-toggle,
.nav-drop-toggle.active { color: var(--amber); }
.nav-drop-toggle .chev { width: 13px; height: 13px; transition: transform 0.2s; }
.nav-item:hover .chev,
.nav-item.open .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 232px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(20, 40, 31, 0.22);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 120;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}
.dropdown a:hover { background: var(--cream-dark); color: var(--forest); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(20, 40, 31, 0.97);
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  padding: 8px 24px 18px;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-menu a {
  display: block;
  padding: 13px 4px;
  color: rgba(247, 243, 234, 0.9);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid rgba(247, 243, 234, 0.08);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--amber); }
.mobile-group { padding: 6px 0; border-bottom: 1px solid rgba(247, 243, 234, 0.08); }
.mobile-group-label {
  display: block;
  padding: 12px 4px 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.mobile-group a { padding-left: 4px; border-bottom: none; font-size: 16px; color: rgba(247,243,234,0.82); }

@media (max-width: 940px) {
  .nav-links > a:not(.btn),
  .nav-links .nav-item { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu.open { display: block; }
  .nav { padding: 14px 20px; }
  .nav .logo { font-size: 18px; white-space: nowrap; }
  .nav-links { gap: 14px; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background:
          linear-gradient(180deg, rgba(20,40,31,0.35) 0%, rgba(20,40,31,0.15) 10%, rgba(20,40,31,0.82) 100%),
          url("../images/jakira-goat-hunt.webp") left bottom 40% / cover no-repeat;
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 24px 350px;
  color: var(--cream);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 600;
  max-width: 15ch;
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero p {
  max-width: 560px;
  font-size: 19px;
  color: rgba(247,243,234,0.92);
  margin-bottom: 34px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero .eyebrow { color: var(--amber); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 12.5px;
  color: rgba(247,243,234,0.65);
  font-style: italic;
}

/* ---------- Interior page hero ---------- */
.page-hero {
  position: relative;
  padding: 150px 0 82px;
  color: var(--cream);
  background-color: var(--forest-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero .eyebrow { color: var(--amber); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  max-width: 20ch;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.page-hero-sub {
  max-width: 640px;
  font-size: 18.5px;
  color: rgba(247,243,234,0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.breadcrumb { font-size: 13.5px; color: rgba(247,243,234,0.7); margin-bottom: 18px; }
.breadcrumb a { color: rgba(247,243,234,0.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.55; }

.ph-cabin   { background-image: linear-gradient(rgba(20,40,31,0.55), rgba(20,40,31,0.78)), url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=70"); }
.ph-fishing { background-image: linear-gradient(rgba(20,40,31,0.5), rgba(20,40,31,0.8)), url("../images/wheelchair-1.webp"); background-position: center 30%; }
.ph-boat    { background-image: linear-gradient(rgba(20,40,31,0.5), rgba(20,40,31,0.78)), url("../images/wheelchair-2.webp"); }
.ph-plan    { background-image: linear-gradient(rgba(20,40,31,0.5), rgba(20,40,31,0.8)), url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1800&q=70"); }
.ph-stories { background-image: linear-gradient(rgba(20,40,31,0.5), rgba(20,40,31,0.82)), url("../images/jakira-goat-hunt.webp"); background-position: center 35%; }
.ph-about   { background-image: linear-gradient(rgba(20,40,31,0.45), rgba(20,40,31,0.82)), url("../images/jakira-with-lawrence.webp"); background-position: center 22%; }
.ph-partners{ background-image: linear-gradient(rgba(20,40,31,0.55), rgba(20,40,31,0.82)), url("../images/jakira-goat-hunt-2.webp"); background-position: center 30%; }
.ph-donate  { background-image: linear-gradient(rgba(20,40,31,0.6), rgba(20,40,31,0.85)), url("../images/jakira-goat-hunt-2.webp"); background-position: center 30%; }
.ph-contact { background-image: linear-gradient(rgba(20,40,31,0.55), rgba(20,40,31,0.8)), url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=70"); }
.ph-newsletter { background-image: linear-gradient(rgba(20,40,31,0.55), rgba(20,40,31,0.8)), url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1800&q=70"); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Welcome */
.welcome-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.welcome-grid h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 20px; }
.welcome-grid p { color: var(--ink-soft); margin-bottom: 18px; }
.welcome-grid p strong { color: var(--forest); }
.welcome-photo { position: relative; }
.welcome-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(20,40,31,0.82);
  color: var(--cream);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
@media (max-width: 860px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Mission banner */
.mission {
  background:
          linear-gradient(rgba(20,40,31,0.78), rgba(20,40,31,0.78)),
          url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=70") center / cover no-repeat fixed;
  text-align: center;
  color: var(--cream);
}
.mission .display {
  color: var(--white);
  font-size: clamp(28px, 4.4vw, 50px);
  font-weight: 500;
  font-style: italic;
  max-width: 20ch;
  margin: 0 auto 26px;
}
.mission p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(247,243,234,0.9);
  font-size: 18px;
}
.mission .eyebrow { color: var(--amber); }
@media (max-width: 1024px) {
  .mission { background-attachment: scroll; }
}

/* Problem / Solution + generic cards */
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 38px;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 26px; margin-bottom: 14px; }
.card p { color: var(--ink-soft); }
.card .chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.chip-barrier { background: #f3e3d3; color: #96591c; }
.chip-answer { background: #dfe9dd; color: var(--pine); }
@media (max-width: 860px) {
  .split-cards { grid-template-columns: 1fr; }
}

/* Origin story */
.origin { background: var(--forest-deep); color: var(--cream); }
.origin-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.origin img { border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.origin h2 { color: var(--white); font-size: clamp(30px, 4vw, 44px); margin-bottom: 20px; }
.origin p { color: rgba(247,243,234,0.85); margin-bottom: 18px; }
.origin .eyebrow { color: var(--amber); }
.origin blockquote {
  border-left: 3px solid var(--amber);
  padding-left: 20px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  margin-top: 26px;
}
.origin blockquote cite {
  display: block;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 14px;
  color: rgba(247,243,234,0.6);
  margin-top: 10px;
}
@media (max-width: 860px) {
  .origin-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Features */
.features { background: var(--cream-dark); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 8px 24px rgba(20,40,31,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--forest);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature .icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 21px; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: 15.5px; }
.feature .more {
  display: inline-block;
  margin-top: 16px;
  color: var(--amber-deep);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
}
.feature .more:hover { color: var(--forest); }
a.feature { text-decoration: none; color: inherit; display: block; }
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}
.gallery-grid figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(20,40,31,0.12);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 14px;
  font-size: 13.5px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(20,40,31,0.85));
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 1; }
}

/* Season / split feature image rows */
.season { background: var(--white); }
.season-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.season-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.season h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 18px; }
.season p { color: var(--ink-soft); margin-bottom: 22px; }
.season-grid .eyebrow { color: var(--amber-deep); }
.season-grid.reverse > div:first-child { order: 2; }
.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.season-badge svg { width: 20px; height: 20px; color: var(--amber); }
@media (max-width: 860px) {
  .season-grid { grid-template-columns: 1fr; gap: 40px; }
  .season-grid.reverse > div:first-child { order: 0; }
}

/* Values */
.values { background: var(--cream-dark); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value {
  border-top: 4px solid var(--amber);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 34px 30px;
  box-shadow: 0 8px 24px rgba(20,40,31,0.07);
}
.value h3 { font-size: 21px; margin-bottom: 10px; }
.value p { color: var(--ink-soft); font-size: 15.5px; }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Prose / article content ---------- */
.prose-section { padding: 88px 0; }
.prose { max-width: 780px; }
.prose.center { margin: 0 auto; }
.prose > .eyebrow { margin-bottom: 12px; }
.prose h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 18px; }
.prose h3 { font-size: 22px; margin: 36px 0 12px; }
.prose p { color: var(--ink-soft); margin-bottom: 18px; }
.prose p.lead { font-size: 20px; color: var(--ink); }
.prose a { color: var(--amber-deep); font-weight: 600; }
.check-list, .plain-list { list-style: none; margin: 4px 0 24px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
  color: var(--ink-soft);
}
.check-list li strong { color: var(--forest); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--amber);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--forest-deep);
  border-bottom: 2px solid var(--forest-deep);
  transform: rotate(-45deg);
}

/* Callout box */
.callout {
  background: var(--cream-dark);
  border-left: 4px solid var(--amber);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 30px 0;
  color: var(--ink-soft);
}
.callout strong { color: var(--forest); }

/* Template / notice banner (for placeholder pages) */
.notice {
  background: #fbf1dd;
  border: 1px dashed var(--amber-deep);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 14.5px;
  color: #7a5312;
}
.notice strong { color: #5f400d; }

/* ---------- Story cards ---------- */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20,40,31,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.story-card img { width: 100%; height: 230px; object-fit: cover; }
.story-card .body { padding: 26px 28px 30px; }
.story-card h3 { font-size: 21px; margin-bottom: 10px; }
.story-card p { color: var(--ink-soft); font-size: 15.5px; }
.story-card .more { color: var(--amber-deep); font-weight: 600; font-size: 14.5px; margin-top: 14px; display: inline-block; }
@media (max-width: 760px) { .story-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 18px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 26px; }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-line .ci {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--forest);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-line .ci svg { width: 20px; height: 20px; }
.contact-line .label { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-deep); }
.contact-line a, .contact-line span.val { color: var(--forest); font-weight: 600; font-size: 17px; text-decoration: none; }
.contact-line a:hover { color: var(--amber-deep); }
.card-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 36px;
  box-shadow: var(--shadow);
}
.card-form h3 { font-size: 23px; margin-bottom: 20px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Generic form fields */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 14px; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid #d8d2c2;
  border-radius: 10px;
  padding: 12px 14px;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(217, 154, 61, 0.22);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.card-form .btn, .newsletter-card .btn { width: 100%; text-align: center; border: none; }
.btn:disabled { opacity: 0.6; cursor: wait; transform: none; }
.form-status { margin-top: 14px; font-size: 15px; text-align: center; display: none; }
.form-status.success { display: block; color: var(--pine); font-weight: 600; }
.form-status.error { display: block; color: #a4432c; font-weight: 600; }

/* Newsletter */
.newsletter-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.newsletter-copy h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; }
.newsletter-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.newsletter-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow);
}
.newsletter-card h3 { font-size: 22px; margin-bottom: 6px; }
.newsletter-card .sub { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
@media (max-width: 860px) { .newsletter-wrap { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Donate section ---------- */
.donate {
  background:
          linear-gradient(rgba(20,40,31,0.87), rgba(20,40,31,0.87)),
          url("../images/jakira-goat-hunt-2.webp") center 30% / cover no-repeat;
  text-align: center;
  color: var(--cream);
  padding: 120px 0;
}
.donate h2 { color: var(--white); font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 22px; }
.donate p {
  max-width: 700px;
  margin: 0 auto 18px;
  color: rgba(247,243,234,0.9);
  font-size: 18px;
}
.donate .eyebrow { color: var(--amber); }
.donate-actions { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.donate small { display: block; margin-top: 22px; color: rgba(247,243,234,0.6); font-size: 13.5px; }

/* Impact / stat-ish row */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.impact {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 28px;
  box-shadow: 0 8px 24px rgba(20,40,31,0.07);
}
.impact .big { font-family: "Fraunces", serif; font-size: 40px; color: var(--forest); line-height: 1; margin-bottom: 12px; }
.impact .big span { color: var(--amber-deep); }
.impact h3 { font-size: 19px; margin-bottom: 8px; }
.impact p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 760px) { .impact-grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { background: var(--forest); color: var(--cream); text-align: center; padding: 84px 0; }
.cta-band .eyebrow { color: var(--amber); }
.cta-band h2 { color: var(--white); font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-band p { max-width: 640px; margin: 0 auto 30px; color: rgba(247,243,234,0.9); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Booking modal ---------- */
.booking-modal {
  margin: auto;
  border: none;
  border-radius: var(--radius);
  padding: 0;
  width: min(560px, calc(100vw - 40px));
  max-height: calc(100vh - 60px);
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.booking-modal::backdrop {
  background: rgba(20, 40, 31, 0.65);
  backdrop-filter: blur(4px);
}
.booking-inner { padding: 38px 36px 34px; }
.booking-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.booking-head h3 { font-size: 26px; }
.booking-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 26px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
}
.booking-close:hover { background: var(--cream-dark); color: var(--forest); }
.booking-intro { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 18px; }
.booking-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  background: var(--cream-dark);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 15px;
}
.booking-contact a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.booking-contact a:hover { color: var(--amber-deep); }
.booking-contact svg { width: 17px; height: 17px; color: var(--amber-deep); flex-shrink: 0; }
.booking-form .field { margin-bottom: 18px; }
.booking-form label { display: block; font-size: 14px; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
.booking-form input, .booking-form textarea {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid #d8d2c2;
  border-radius: 10px;
  padding: 12px 14px;
}
.booking-form input:focus, .booking-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(217, 154, 61, 0.22);
}
.booking-form textarea { min-height: 96px; resize: vertical; }
.booking-form .btn { width: 100%; text-align: center; border: none; }

/* ---------- Footer ---------- */
footer {
  background: var(--forest-deep);
  color: rgba(247,243,234,0.7);
  padding: 60px 0 34px;
  font-size: 14.5px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(247,243,234,0.14);
  margin-bottom: 24px;
}
footer .logo { font-size: 24px; }
.footer-note { max-width: 340px; margin: 12px 0 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact a { color: rgba(247,243,234,0.8); text-decoration: none; }
.footer-contact a:hover { color: var(--amber); }
.footer-col h4 { color: var(--cream); font-family: "Fraunces", serif; font-size: 16px; margin-bottom: 12px; font-weight: 600; }
.footer-col a { color: rgba(247,243,234,0.72); text-decoration: none; display: block; padding: 5px 0; font-size: 14.5px; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 860px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-cols { grid-template-columns: 1fr; } }

/* Legacy simple footer links (kept for safety) */
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(247,243,234,0.14);
  margin-bottom: 28px;
}
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: rgba(247,243,234,0.75); text-decoration: none; }
.footer-links a:hover { color: var(--amber); }
