/* ── SHARED STYLES — Okim's Food & Farms ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --forest: #163020;
  --forest-mid: #254d35;
  --forest-light: #3a7d55;
  --sage: #7db892;
  --sage-light: #b2d4bc;
  --amber: #bf8a2e;
  --amber-light: #e0b560;
  --amber-pale: #f5e4b8;
  --ivory: #f9f6f0;
  --ivory-dark: #ede8de;
  --stone: #e2ddd5;
  --charcoal: #1e1e1e;
  --body-text: #3d3d3a;
  --muted: #7a776e;
  --white: #ffffff;

  --shadow-sm: 0 2px 12px rgba(22,48,32,.08);
  --shadow-md: 0 8px 32px rgba(22,48,32,.12);
  --shadow-lg: 0 20px 60px rgba(22,48,32,.16);
  --r: 10px;
  --r-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--ivory);
  color: var(--body-text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─ NAV ─ */
.site-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  background: rgba(249,246,240,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(191,138,46,.14);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }

.nav-brand {
  display: flex; align-items: center; gap: 11px; text-decoration: none;
}
.nav-brand-mark {
  width: 38px; height: 38px; background: var(--forest);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 17px; flex-shrink: 0;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; line-height: 1.1;
  color: var(--forest);
}
.nav-brand-name span { color: var(--amber); }
.nav-brand-sub {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-family: 'Outfit', sans-serif; font-weight: 500;
}

.nav-menu {
  display: flex; align-items: center; gap: .25rem; list-style: none;
}
.nav-menu a {
  text-decoration: none; color: var(--body-text);
  font-size: .875rem; font-weight: 500;
  padding: .45rem .85rem; border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--ivory-dark); color: var(--forest);
}
.nav-menu .nav-btn {
  background: var(--forest); color: var(--white) !important;
  padding: .45rem 1.1rem; font-weight: 600;
}
.nav-menu .nav-btn:hover { background: var(--forest-mid) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--forest); border-radius: 2px; transition: .3s;
}

/* ─ FOOTER ─ */
.site-footer {
  background: var(--forest);
  padding: 4rem 6% 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: .6rem;
}
.footer-about-name span { color: var(--amber-light); }
.footer-about-text {
  font-size: .84rem; color: rgba(255,255,255,.45);
  line-height: 1.75; max-width: 280px;
}
.footer-col-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: .9rem;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col-links a {
  font-size: .84rem; color: rgba(255,255,255,.5);
  text-decoration: none; transition: color .2s;
}
.footer-col-links a:hover { color: var(--amber-light); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.25);
}

/* ─ WHATSAPP FLOAT ─ */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: waPulse 2.5s infinite;
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,.7); }
}

/* ─ SHARED UTILITIES ─ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 6%; }
.page-pt { padding-top: 68px; }

.tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.tag-green { background: rgba(58,125,85,.12); color: var(--forest-light); }
.tag-amber { background: rgba(191,138,46,.12); color: var(--amber); }

.section-kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: .65rem;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--forest); line-height: 1.15;
  margin-bottom: .9rem;
}
.section-heading em { font-style: italic; color: var(--forest-light); }
.section-sub {
  font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 520px;
}

.btn {
  display: inline-block; text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: .875rem; font-weight: 600;
  padding: .75rem 1.75rem; border-radius: 8px;
  border: none; cursor: pointer; transition: .2s;
}
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--forest-mid); transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: var(--amber-light); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--white); }
.btn-ghost-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ─ REVEAL ─ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─ PAGE HERO BANNER ─ */
.page-banner {
  background: var(--forest);
  padding: 5.5rem 6% 4rem;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0; opacity: .04;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-banner-kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber-light);
  margin-bottom: .65rem;
}
.page-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700;
  color: var(--white); line-height: 1.1; max-width: 700px;
}
.page-banner-title em { color: var(--amber-light); font-style: italic; }
.page-banner-sub {
  font-size: 1rem; color: rgba(255,255,255,.6);
  max-width: 560px; margin-top: .85rem; line-height: 1.75;
}
.breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber-light); }
.breadcrumb span { color: var(--amber-light); }

/* ─ RESPONSIVE ─ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .nav-menu { display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 68px; left: 0; width: 100%;
    background: var(--ivory); padding: 1.5rem 6%; gap: .4rem;
    border-bottom: 1px solid var(--stone);
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
}
