/* ── Tokens ─────────────────────────────────────────── */
:root {
  --ink:        #1a1a1a;
  --paper:      #fdf8f0;      /* warm cream */
  --paper-2:    #f4ead8;      /* deeper cream for alternating sections */
  --earth-900:  #2a1a0f;      /* deep red-brown, like wet Ugandan soil */
  --earth-700:  #4a2d1a;
  --earth-50:   #f8efe1;
  --gold:       #c98a2a;      /* warm maize/amber accent */
  --gold-soft:  #e8b85a;
  --leaf:       #5a6b3a;      /* muted olive */
  --rule:       rgba(42,26,15,.12);
  --shadow:     0 18px 50px -25px rgba(42,26,15,.45);

  --font-serif: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max:        72rem;
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ── Type ───────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--earth-900);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1.05; font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem);   line-height: 1.1; }
h3 { font-size: 1.4rem; line-height: 1.25; }
p  { margin: 0 0 1em; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.eyebrow.centered { text-align: center; }
.eyebrow.light    { color: var(--gold-soft); }

.centered { text-align: center; }
.subhead {
  max-width: 38rem;
  margin: 1rem auto 0;
  color: rgba(26,26,26,.7);
  font-size: 1.05rem;
}
.subhead.light { color: rgba(253,248,240,.7); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: rgba(253,248,240,.9);
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s;
}
.text-link:hover { color: var(--earth-900); }

/* ── Layout ─────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.two-col {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 800px) {
  .two-col           { grid-template-columns: 1fr 1fr; }
  .two-col.reverse > :first-child { order: 2; }
}

/* ── Nav ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--gutter);
  background: rgba(253,248,240,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--earth-900);
}
.nav-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--earth-900);
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: clamp(0.6rem, 2vw, 1.6rem);
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a {
  color: rgba(26,26,26,.7);
  transition: color .2s;
}
.nav-links a:hover { color: var(--earth-900); }
.nav-links a.is-active:not(.nav-cta) {
  color: var(--earth-900);
  box-shadow: inset 0 -2px 0 var(--gold);
}
.nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--earth-900);
  color: var(--paper) !important;
}
.nav-cta:hover { background: var(--earth-700); }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(85vh, 760px);
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--earth-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(105%);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,8,2,.2) 0%, rgba(26,8,2,.55) 50%, rgba(26,8,2,.85) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  color: var(--paper);
}
.hero-inner h1 { color: var(--paper); }
.hero-inner .eyebrow { color: var(--gold-soft); }
.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.btn-primary {
  background: var(--gold);
  color: var(--earth-900);
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost {
  border: 1px solid rgba(253,248,240,.45);
  color: var(--paper);
}
.btn-ghost:hover { background: rgba(253,248,240,.1); border-color: var(--paper); }
.btn:active { transform: translateY(1px); }

/* ── About ──────────────────────────────────────────── */
.about { background: var(--paper); }
.about figure { margin: 0; }
.about img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.about figcaption {
  font-size: 0.85rem;
  color: rgba(26,26,26,.55);
  margin-top: 0.8rem;
  font-style: italic;
}

/* ── Produce / cards ────────────────────────────────── */
.produce { background: var(--earth-50); }
.cards {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px -20px rgba(42,26,15,.3);
  border: 1px solid var(--rule);
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -25px rgba(42,26,15,.45);
}
.card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.card-body { padding: 1.25rem 1.35rem 1.5rem; }
.card h3 { margin-bottom: 0.45rem; }
.card p { font-size: 0.95rem; color: rgba(26,26,26,.75); margin: 0; }

/* ── Mission ────────────────────────────────────────── */
.mission { background: var(--paper); }
.mission figure { margin: 0; }
.mission img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.promise {
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid var(--rule);
}
.promise h3 { color: var(--earth-900); margin-bottom: 0.5rem; }
.promise p  { margin: 0; color: rgba(26,26,26,.78); }

/* ── Gallery ────────────────────────────────────────── */
.gallery { background: var(--paper-2); }
.gallery-grid {
  margin-top: 2.75rem;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 11rem;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 9rem; }
  .gallery-item.span-2 { grid-column: span 2; }
  .gallery-item.row-2  { grid-row: span 1; }
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 4px;
  padding: 0;
  cursor: zoom-in;
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.row-2  { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── Watch (videos) ─────────────────────────────────── */
.watch {
  background: var(--earth-900);
  color: var(--paper);
}
.watch h2 { color: var(--paper); }
.videos {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .videos { grid-template-columns: 1fr 1fr; }
}
.video { margin: 0; }
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  cursor: pointer;
  outline: 0;
}
.video-frame:focus-visible {
  box-shadow: 0 0 0 3px var(--gold);
}
.video-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .2s;
}
.video-frame:hover img { transform: scale(1.03); }
.video-frame .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: transform .2s;
}
.video-frame:hover .play { transform: scale(1.08); }
.video-frame iframe {
  width: 100%; height: 100%;
  border: 0;
}
.video figcaption {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: rgba(253,248,240,.7);
}
.video figcaption strong { color: var(--paper); font-weight: 600; }

/* ── Contact ────────────────────────────────────────── */
.contact { background: var(--paper); }
.links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.links a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem 1.25rem;
  background: var(--earth-50);
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: background .2s, transform .15s;
}
.links a:hover { background: var(--paper-2); transform: translateX(2px); }
.link-label  { font-weight: 600; color: var(--earth-900); }
.link-handle { font-family: var(--font-serif); color: rgba(26,26,26,.7); }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--earth-900);
  color: rgba(253,248,240,.7);
  padding: 2.8rem 0;
}
.footer-inner {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 2fr; align-items: end; }
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--paper);
  margin: 0 0 0.2rem;
}
.footer-sub {
  font-size: 0.85rem;
  margin: 0;
}
.footer-meta {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(253,248,240,.85);
}

/* ── Lightbox ───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,10,5,.92);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  z-index: 100;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: min(96vw, 1400px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox-caption {
  color: var(--paper);
  font-size: 0.9rem;
  margin: 1rem 0 0;
  text-align: center;
  max-width: 40rem;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--paper);
  line-height: 1;
  padding: 0.25rem 0.65rem;
}

/* ── Contact page ───────────────────────────────────── */
.page-contact { background: var(--paper-2); }

.contact-main {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter) 4rem;
}

.contact-hero {
  padding-bottom: 2rem;
}
.contact-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.contact-lede {
  color: rgba(26,26,26,.72);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
  max-width: 36rem;
}

.contact-form-wrap {
  margin-top: 1.5rem;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(1.4rem, 3.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 14px 38px -28px rgba(42,26,15,.4);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--earth-900);
}
.field .req { color: #b91c1c; }
.field .opt { color: rgba(26,26,26,.45); font-weight: 400; }
.field input,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.65rem 0.85rem;
  background: var(--paper);
  border: 1px solid #d6c9b3;
  border-radius: 10px;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 7.5rem; }
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,138,42,.18);
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.btn-submit {
  align-self: flex-start;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  transition: background .2s, transform .15s, opacity .2s;
}
.btn-submit:hover  { background: #b07921; }
.btn-submit:active { transform: translateY(1px); }
.btn-submit:disabled { opacity: 0.6; cursor: progress; }
@media (min-width: 540px) { .btn-submit { padding-inline: 1.7rem; } }

.contact-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 18px;
  padding: clamp(1.4rem, 3.5vw, 2rem);
  color: #064e3b;
}
.contact-success h2 {
  color: #064e3b;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.contact-success p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(6,78,59,.8);
}
.contact-success .text-link { color: #047857; }
.contact-success .text-link:hover { color: #064e3b; }

.contact-share {
  margin-top: 2.5rem;
}
.share-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(1.4rem, 3.5vw, 2.25rem);
}
.share-card h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.share-lede {
  color: rgba(26,26,26,.65);
  margin: 0 0 1.4rem;
  font-size: 0.92rem;
}
.share-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.share-links a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.95rem 1.05rem;
  background: var(--earth-50);
  border: 1px solid var(--rule);
  border-radius: 10px;
  transition: background .15s, transform .12s;
}
.share-links a:hover { background: var(--paper-2); transform: translateX(2px); }

/* ── A11y ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .video-frame img, .gallery-item img, .play, .links a { transition: none !important; }
}
