
:root {
  --bg: #f7f4ed;
  --bg-soft: #fbf9f4;
  --text: #213126;
  --muted: #667064;
  --line: rgba(33,49,38,.12);
  --forest: #496b31;
  --forest-deep: #29462d;
  --sage: #7f9274;
  --cream: #ebe4d1;
  --blush: #b04d71;
  --berry: #8a2e58;
  --navy: #27436e;
  --shadow: 0 18px 55px rgba(28,35,25,.12);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8f5ee 0%, #f5f1e8 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-tight { padding: 58px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--forest); font-weight: 700; }
.h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.08; margin: 10px 0 18px; }
.lead { font-size: 1.08rem; color: #415043; max-width: 62ch; }
.button, .button-secondary, .button-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 20px; border-radius: 999px; font-weight: 700; transition: .25s ease;
}
.button { background: var(--forest); color: #fff; box-shadow: 0 10px 25px rgba(73,107,49,.25); }
.button:hover { background: var(--forest-deep); transform: translateY(-1px); }
.button-secondary { background: #fff; color: var(--forest-deep); border: 1px solid var(--line); }
.button-secondary:hover { background: #f7faf5; }
.button-ghost { border: 1px solid rgba(255,255,255,.3); color: #fff; }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.header {
  position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(14px);
  background: rgba(248,245,238,.82); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 16px; }
.brand img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: #314034; font-weight: 600; }
.nav a.active, .nav a:hover { color: var(--forest); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.menu-toggle { display:none; background:none; border:none; font-size:1.6rem; }
.hero {
  position: relative; overflow: clip; padding: 34px 0 26px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; }
.hero-copy { padding: 32px 0; }
.hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 5.5vw, 5.7rem); line-height: .96; margin: 14px 0 18px;
}
.hero-copy p { font-size: 1.1rem; color: #425043; max-width: 58ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 32px; }
.stat {
  background: rgba(255,255,255,.66); border: 1px solid rgba(33,49,38,.08); border-radius: 20px; padding: 18px;
  box-shadow: var(--shadow);
}
.stat strong { display:block; font-size:1.55rem; color: var(--forest-deep); }
.stat span { color: #556357; font-size:.95rem; }
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62)); border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow); border-radius: 30px; overflow: hidden;
}
.hero-card img { width: 100%; aspect-ratio: 4 / 4.5; object-fit: cover; }
.floating-badge {
  position:absolute; right:-10px; bottom:28px; background:#fff; padding:14px 16px; border-radius:18px; box-shadow: var(--shadow); max-width: 250px;
}
.floating-badge strong { display:block; color: var(--forest-deep); margin-bottom: 6px; }
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items:center; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.card h3 { margin: 8px 0 10px; font-size: 1.35rem; }
.card p { margin:0; color:#4c5a4e; }
.split-media { position: relative; }
.split-media img.main { border-radius: 28px; box-shadow: var(--shadow); width:100%; aspect-ratio: 4 / 4.2; object-fit: cover; }
.split-media .mini {
  position:absolute; left:-18px; bottom:-18px; width:38%; border-radius:22px; overflow:hidden; border:8px solid rgba(248,245,238,.95); box-shadow: var(--shadow);
}
.products-showcase { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card { background:#fff; border:1px solid var(--line); border-radius:26px; overflow:hidden; box-shadow: var(--shadow); }
.product-card .visual { padding: 18px; background: linear-gradient(180deg,#f9f6ef,#f2ece1); }
.product-card .visual img { border-radius:20px; aspect-ratio: 4 / 5; object-fit: cover; width:100%; }
.product-card .copy { padding: 22px; }
.product-meta { display:flex; gap:8px; flex-wrap:wrap; margin: 14px 0 0; }
.pill { display:inline-flex; padding:7px 12px; border-radius:999px; background:#f4f7f1; color:var(--forest-deep); font-size:.85rem; font-weight:600; }
.pill.navy { background:#edf2fb; color:var(--navy); }
.pill.berry { background:#f9edf3; color:var(--berry); }
.impact-band {
  background: linear-gradient(135deg, #29462d 0%, #43622c 45%, #7c2f5d 100%); color:#fff; border-radius: 30px; padding: 32px; box-shadow: var(--shadow);
}
.impact-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items:center; }
.metrics { display:grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.metric { background: rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.16); border-radius: 22px; padding:18px; }
.metric strong { display:block; font-size:1.7rem; margin-bottom:6px; }
.timeline { display:grid; gap: 18px; }
.step { display:grid; grid-template-columns: auto 1fr; gap:16px; align-items:flex-start; }
.step-number {
  width:44px; height:44px; border-radius:50%; background: var(--forest); color:#fff; display:grid; place-items:center; font-weight:800; margin-top:4px;
}
.gallery-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.gallery-grid img { width:100%; height:100%; object-fit:cover; border-radius: 24px; box-shadow: var(--shadow); }
.gallery-side { display:grid; gap: 18px; }
.team-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
.team-card { background:#fff; border-radius:24px; overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow); }
.team-card img { width:100%; aspect-ratio: 4 / 5; object-fit: cover; }
.team-card .copy { padding:20px; }
.role { color: var(--forest); font-size:.85rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.cta-panel {
  background: linear-gradient(180deg, #fff 0%, #f4efe5 100%); border:1px solid var(--line); border-radius: 30px; padding: 34px; box-shadow: var(--shadow);
}
.donation-options { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; margin-top:22px; }
.option { padding:24px; border-radius:22px; background:#fff; border:1px solid var(--line); }
.option h4 { margin: 10px 0 8px; }
.option p { margin:0; color:#566357; }
.contact-layout { display:grid; grid-template-columns: .95fr 1.05fr; gap: 24px; }
.contact-card, .form-card { background:#fff; border-radius: 28px; border:1px solid var(--line); padding: 28px; box-shadow: var(--shadow); }
.contact-list { display:grid; gap:14px; margin-top:18px; }
.contact-item { padding:16px 18px; background:#f7f4ed; border-radius:18px; }
label { display:block; font-weight:700; margin-bottom:8px; }
input, textarea, select {
  width:100%; padding: 14px 16px; border-radius:16px; border:1px solid rgba(33,49,38,.14); background:#faf8f2; font:inherit; color:var(--text);
}
textarea { min-height: 140px; resize: vertical; }
.form-grid { display:grid; gap: 16px; }
.footer { padding: 28px 0 50px; color:#59695b; }
.footer-top { display:grid; grid-template-columns: 1.25fr .75fr .75fr; gap:24px; padding: 30px 0; border-top:1px solid var(--line); }
.footer-brand img { height:46px; width:auto; margin-bottom:12px; }
.footer h4 { margin: 0 0 10px; color: var(--text); }
.footer a { display:block; margin:6px 0; }
.page-hero { padding: 44px 0 20px; }
.page-hero-box {
  background: linear-gradient(120deg, rgba(41,70,45,.94), rgba(73,107,49,.9) 48%, rgba(127,146,116,.86)); color:#fff; border-radius: 34px; padding: 42px; position: relative; overflow:hidden; box-shadow: var(--shadow);
}
.page-hero-box h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height:1; margin: 12px 0 14px; }
.page-hero-box p { max-width: 64ch; color: rgba(255,255,255,.88); }
.breadcrumbs { font-size: .92rem; color: rgba(255,255,255,.78); }
.story-points { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top:24px; }
.story-point { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius:22px; padding:18px; }
.quote-box { padding: 28px; border-left: 4px solid var(--forest); background:#f7f4ed; border-radius: 0 24px 24px 0; color:#374637; }
.notice { font-size: .92rem; color:#6b776d; }
@media (max-width: 1080px) {
  .hero-grid, .grid-2, .impact-grid, .contact-layout, .footer-top, .gallery-grid { grid-template-columns: 1fr; }
  .products-showcase, .team-grid, .donation-options, .story-points { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nav, .nav-cta { display:none; }
  .menu-toggle { display:block; }
  .header.open .nav {
    display:flex; position:absolute; left:16px; right:16px; top:78px; background:#fbf8f2; border:1px solid var(--line); border-radius:24px; padding:18px; flex-direction:column; align-items:flex-start; box-shadow: var(--shadow);
  }
  .header.open .nav-cta { display:flex; position:absolute; left:16px; right:16px; top:330px; background:#fbf8f2; border:1px solid var(--line); border-top:none; border-radius: 0 0 24px 24px; padding: 0 18px 18px; box-shadow: var(--shadow); }
  .hero-copy h1 { font-size: clamp(2.35rem, 12vw, 4rem); }
  .stat-row, .metrics, .products-showcase, .grid-3, .team-grid, .donation-options, .story-points { grid-template-columns: 1fr; }
  .floating-badge { position:static; margin-top:16px; max-width:none; }
  .split-media .mini { position:static; width:60%; margin:-18px 0 0 auto; }
  .page-hero-box, .impact-band, .cta-panel { padding: 28px; }
}


.price-panel { background: linear-gradient(135deg, #163a22 0%, #21452a 55%, #315030 100%); color:#f6f3e9; border-radius: 28px; padding: 34px; box-shadow: var(--shadow); }
.price-panel .eyebrow, .price-panel .h2 { color:#f6f3e9; }
.product-list-box { margin-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.product-line { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.product-line p { margin: 10px 0 0; color: rgba(255,255,255,.92); font-size: 1.02rem; }
.line-head { display:flex; justify-content:space-between; gap:20px; align-items:flex-start; }
.line-head h4 { margin:0; font-size:1.35rem; color:#fff; }
.line-head span { font-size:1.9rem; font-weight:800; color:#f6dfb4; line-height:1; }
.team-card-detailed .copy p { color:#455448; line-height:1.75; }
.contact-list-clean .contact-item { background:#f6f7ef; }
.contact-buttons-stack { display:grid; gap:14px; align-content:start; }
.buyer-card { display:flex; flex-direction:column; justify-content:center; }
@media (max-width: 760px) {
  .line-head { flex-direction:column; }
}
