:root {
  --ink: #101820;
  --muted: #52606d;
  --paper: #fffdf8;
  --panel: #ffffff;
  --line: #d8d2c4;
  --accent: #174f3f;
  --accent-2: #b9852b;
  --accent-3: #0c2d26;
  --soft: #f3ecdc;
  --danger: #7a1f1f;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(16, 24, 32, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a { color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.nav-links a.active { color: var(--accent); }
a:hover { color: var(--accent-3); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.15rem;
}
.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav-links a.cta-small {
  color: white;
  background: var(--accent);
  padding: 9px 13px;
  border-radius: 999px;
}

.hero {
  background:
    radial-gradient(circle at 15% 10%, rgba(185, 133, 43, .16), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f7f0df 50%, #e8dcc4 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px 62px;
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 42px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid var(--accent-2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-3);
  background: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  line-height: 0.95;
  margin: 18px 0 20px;
  letter-spacing: -0.06em;
}
.lead {
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  max-width: 760px;
  color: #24323d;
}
.hero-card {
  background: var(--panel);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-card h2 {
  margin-top: 0;
  font-size: 1.4rem;
}
.stat-list {
  display: grid;
  gap: 16px;
}
.stat {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  text-decoration: none;
  display: block;
}
.stat strong {
  display: block;
  font-size: 1.65rem;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.stat span { color: var(--muted); font-weight: 700; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 22px;
}
.section.tight { padding-top: 32px; }
.section-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0 0 18px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.issue-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
}
.issue-card h2,
.content-card h2 {
  font-size: 1.55rem;
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.035em;
}
.issue-card p { margin: 0 0 18px; color: #263441; }
.read-more { font-weight: 900; }
.banner {
  background: var(--accent-3);
  color: white;
  border-radius: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.banner h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -0.05em; line-height: 1; }
.banner p { margin: 0; color: #e5f3ee; max-width: 750px; }
.button, button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--accent-2);
  color: #111;
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  min-height: 46px;
}
.button.secondary { background: var(--soft); color: var(--accent-3); border: 1px solid var(--line); }
.button:hover { filter: brightness(.96); color: #111; }

.page-hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 62px 22px 44px;
}
.page-hero h1 { font-size: clamp(2.4rem, 4.5vw, 4.8rem); }
.page-hero .lead { font-size: 1.25rem; }
.content {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 22px;
}
.content-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 18px;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.05);
}
.content-card ul { padding-left: 22px; }
.content-card li { margin-bottom: 8px; }
.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.fact-box {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.fact-box strong { display: block; font-size: 1.35rem; color: var(--accent); }
.note {
  font-size: .94rem;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-field.full { grid-column: 1 / -1; }
label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #b8b09e;
  border-radius: 12px;
  background: white;
  font: inherit;
}
textarea { min-height: 96px; resize: vertical; }
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}
.error-box {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #d9aaaa;
  background: #fff1f1;
  color: var(--danger);
  border-radius: 12px;
  font-weight: 700;
}
.success-box {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #b6d7c8;
  background: #eefaf4;
  color: #174f3f;
  border-radius: 12px;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #111813;
  color: #f6f1e7;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 22px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-inner a { color: #f6f1e7; }
.footer-paid { font-weight: 900; border: 1px solid #f6f1e7; padding: 8px 12px; border-radius: 10px; }

@media (max-width: 850px) {
  .hero-inner, .grid, .banner, .fact-row { grid-template-columns: 1fr; }
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
}


.check span { font-weight: 800; }
.check input { width: auto; margin-right: 8px; }
code { background: var(--soft); border: 1px solid var(--line); border-radius: 6px; padding: 2px 5px; }


.hero-side {
  display: grid;
  gap: 18px;
}
.hero-photo,
.photo-tile,
.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: min(42vw, 430px);
  min-height: 300px;
  object-fit: cover;
  object-position: center 38%;
}

.about-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 22px;
  display: grid;
  grid-template-columns: minmax(160px, .55fr) minmax(320px, 1.1fr) minmax(160px, .55fr);
  gap: 18px;
  align-items: start;
}
.about-column {
  display: grid;
  gap: 18px;
}
.about-main {
  position: sticky;
  top: 92px;
}
.about-photo img,
.photo-tile img {
  display: block;
  width: 100%;
  height: 265px;
  object-fit: cover;
}
.about-column .about-photo.tall img { height: 360px; }
.about-column .about-photo.short img { height: 230px; }
.about-bio {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: #263441;
}

@media (max-width: 1000px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-main {
    position: static;
    order: -1;
  }
  .about-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-column .about-photo.tall img,
  .about-column .about-photo.short img,
  .about-photo img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .about-column {
    grid-template-columns: 1fr;
  }
  .hero-photo img,
  .about-photo img,
  .about-column .about-photo.tall img,
  .about-column .about-photo.short img {
    height: 250px;
    min-height: 0;
  }
}


/* v7 about-page sizing fix: keep photos tiled and keep bio visible above the fold. */
.about-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 22px 52px;
  display: grid;
  grid-template-columns: 220px minmax(360px, 1fr) 220px;
  gap: 22px;
  align-items: start;
}
.about-main {
  position: static;
  grid-column: 2;
  grid-row: 1;
}
.about-main .content-card {
  margin: 0;
}
.about-bio {
  font-size: clamp(1.15rem, 1.55vw, 1.32rem);
  line-height: 1.65;
  color: #263441;
}
.about-column {
  display: grid;
  gap: 16px;
  max-width: 220px;
}
.about-column:first-of-type {
  grid-column: 1;
  grid-row: 1;
}
.about-column:last-of-type {
  grid-column: 3;
  grid-row: 1;
}
.about-photo {
  width: 100%;
  max-width: 220px;
}
.about-photo img,
.about-column .about-photo.tall img,
.about-column .about-photo.short img {
  display: block;
  width: 100%;
  height: 160px !important;
  min-height: 0 !important;
  max-height: 160px !important;
  object-fit: cover;
}
.about-column .about-photo.tall img {
  height: 190px !important;
  max-height: 190px !important;
}
.about-photo img[src*="strawberries"] { object-position: center 44%; }
.about-photo img[src*="family-chicken"] { object-position: center 42%; }
.about-photo img[src*="hiking"] { object-position: center 45%; }
.about-photo img[src*="boat"] { object-position: center 35%; }
.about-photo img[src*="cafe"] { object-position: center 42%; }

@media (max-width: 980px) {
  .about-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
  .about-main,
  .about-column:first-of-type,
  .about-column:last-of-type {
    grid-column: 1;
    grid-row: auto;
  }
  .about-main { order: -1; }
  .about-column {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-column:last-of-type {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about-photo { max-width: none; }
  .about-photo img,
  .about-column .about-photo.tall img,
  .about-column .about-photo.short img {
    height: 170px !important;
    max-height: 170px !important;
  }
}

@media (max-width: 620px) {
  .about-layout { padding: 28px 16px 42px; }
  .about-column,
  .about-column:last-of-type {
    grid-template-columns: 1fr;
  }
  .about-photo img,
  .about-column .about-photo.tall img,
  .about-column .about-photo.short img {
    height: 180px !important;
    max-height: 180px !important;
  }
}
