/* =========================================================
   Front Range Food Forests — Earthy & Organic theme
   Palette: forest green, terracotta, sage, warm cream, soil
   ========================================================= */

:root {
  --forest:   #2f4a36;
  --forest-2: #3c5c44;
  --sage:     #8a9a5b;
  --sage-soft:#aab884;
  --terra:    #c66b3d;
  --terra-dk: #a9542c;
  --gold:     #d9a441;
  --cream:    #f5f0e4;
  --cream-2:  #efe8d6;
  --soil:     #4a3a2c;
  --ink:      #2a2620;
  --muted:    #6b6253;
  --white:    #fffdf8;

  --maxw: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -12px rgba(47, 74, 54, 0.22);
  --shadow-sm: 0 6px 20px -6px rgba(47, 74, 54, 0.18);
  --shadow-lg: 0 30px 70px -20px rgba(36, 58, 42, 0.35);
  --ring: 0 0 0 3px rgba(138,154,91,.28);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--sage-soft); color: var(--forest); }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; color: var(--forest); letter-spacing: -.015em; }

a { color: var(--terra-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible { outline: 3px solid var(--sage); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { transition: transform .2s ease; }
.btn-primary {
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dk) 100%);
  color: var(--white); box-shadow: 0 10px 24px -8px rgba(169,84,44,.6);
}
.btn-primary:hover { color: var(--white); box-shadow: 0 16px 30px -10px rgba(169,84,44,.7); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--white); border-color: rgba(255,255,255,.6); backdrop-filter: blur(2px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); color: var(--white); }
.btn-block { display: flex; width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 240, 228, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(245, 240, 228, 0.96);
  box-shadow: 0 6px 24px -12px rgba(47,74,54,.4);
  border-bottom-color: rgba(74, 58, 44, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--forest); font-family: var(--serif); }
.brand:hover { text-decoration: none; }
.brand-mark {
  color: var(--forest); display: grid; place-items: center;
  width: 38px; height: 38px;
}
.brand-text { font-size: 1.32rem; font-weight: 700; letter-spacing: -.02em; white-space: nowrap; }
.brand-light { color: var(--sage); font-weight: 500; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: var(--forest); font-weight: 600; font-size: .96rem; position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--terra); border-radius: 2px; transition: right .25s ease;
}
.site-nav a:not(.nav-cta):hover { color: var(--terra-dk); text-decoration: none; }
.site-nav a:not(.nav-cta):hover::after,
.site-nav a.active::after { right: 0; }
.nav-cta { background: var(--forest); color: var(--cream) !important; padding: 10px 20px; border-radius: 999px; transition: background .2s, transform .2s; }
.nav-cta:hover { background: var(--forest-2); transform: translateY(-1px); text-decoration: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--forest); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(1000px 620px at 78% -12%, rgba(138,154,91,.18), transparent 58%),
    linear-gradient(155deg, #16281b 0%, #23402b 52%, #2f4d34 100%);
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-scene { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(15,26,17,.9) 0%, rgba(15,26,17,.62) 38%, rgba(15,26,17,.22) 70%, rgba(15,26,17,.05) 100%),
    linear-gradient(0deg, rgba(15,26,17,.55) 0%, rgba(15,26,17,0) 34%);
}

.hero-content { position: relative; z-index: 3; padding: 40px 24px; max-width: 780px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 800;
  color: var(--terra); margin: 0 0 16px;
}
.eyebrow-hero {
  color: var(--sage-soft); display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(170,184,132,.35);
  padding: 8px 16px; border-radius: 999px;
}
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 6.4vw, 4.6rem); margin: 0 0 22px; font-weight: 600; }
.h1-accent {
  background: linear-gradient(120deg, #e9d9a8, var(--sage-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 500;
}
.hero-sub { font-size: clamp(1.08rem, 2.2vw, 1.3rem); color: rgba(255,253,248,.92); max-width: 600px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 10px; margin-top: 30px; font-size: .96rem; color: rgba(255,253,248,.82); flex-wrap: wrap; }
.hero-proof svg { color: var(--sage-soft); flex: none; }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(255,253,248,.5); border-radius: 14px; display: grid; justify-items: center; padding-top: 8px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: rgba(255,253,248,.8); animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: .3; } }

/* ---------- Trust strip ---------- */
.trust { background: var(--forest); color: var(--cream); position: relative; z-index: 4; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 30px 24px; }
.trust-item { text-align: center; padding: 6px 14px; }
.trust-item + .trust-item { border-left: 1px solid rgba(245,240,228,.14); }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.55rem; color: var(--sage-soft); margin-bottom: 2px; }
.trust-item span { font-size: .88rem; color: rgba(245,240,228,.82); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--cream-2); }
.center { text-align: center; }
.eyebrow.center { color: var(--terra); }
.section-title { font-size: clamp(2rem, 4.2vw, 3rem); margin: 8px 0 18px; }
.section-title.center { margin-left: auto; margin-right: auto; max-width: 760px; }
.section-lead { font-size: 1.14rem; color: var(--muted); max-width: 680px; }
.section-lead.center { margin: 0 auto 46px; }

/* ---------- SEO intro band ---------- */
.section-intro { padding: 60px 0; background: var(--cream); border-bottom: 1px solid rgba(74,58,44,.07); }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.intro-copy { font-size: 1.16rem; color: var(--soil); text-align: center; margin: 0 auto; max-width: 780px; line-height: 1.8; }
.intro-copy strong { color: var(--forest); font-weight: 700; }

/* ---------- Mission band ---------- */
.mission {
  position: relative; overflow: hidden; text-align: center; color: var(--cream);
  padding: 90px 0;
  background:
    radial-gradient(800px 360px at 50% -10%, rgba(138,154,91,.32), transparent 60%),
    linear-gradient(160deg, #243a2a 0%, #2f4a36 55%, #3f5d3a 100%);
}
.mission-leaf { color: var(--sage-soft); display: flex; justify-content: center; margin-bottom: 6px; opacity: .9; }
.mission-eyebrow { color: var(--sage-soft); }
.mission-statement {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.05rem); line-height: 1.4; color: var(--white);
  max-width: 820px; margin: 0 auto 34px;
}
.mission-values {
  list-style: none; padding: 0; margin: 0;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 40px;
  color: rgba(245,240,228,.9); font-size: 1.02rem;
}
.mission-values li { display: flex; align-items: center; gap: 8px; }
.mission-values span { font-family: var(--serif); color: var(--sage-soft); font-weight: 700; font-style: italic; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 16px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 38px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(74,58,44,.06);
  transition: transform .22s ease, box-shadow .22s ease; position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sage), var(--terra)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, #fff, var(--cream-2));
  color: var(--forest); margin-bottom: 22px; box-shadow: inset 0 0 0 1px rgba(138,154,91,.3), var(--shadow-sm);
}
.card h3 { font-size: 1.35rem; margin: 0 0 10px; }
.card p { margin: 0; color: var(--muted); }

/* ---------- Process steps ---------- */
.steps { list-style: none; padding: 0; margin: 16px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ""; position: absolute; top: 52px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--sage-soft) 0 8px, transparent 8px 16px); z-index: 0; }
.step { background: var(--white); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); position: relative; z-index: 1; transition: transform .2s ease; }
.step:hover { transform: translateY(-4px); }
.step-num {
  display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terra), var(--terra-dk)); color: var(--white);
  font-family: var(--serif); font-weight: 700; font-size: 1.3rem;
  margin-bottom: 18px; box-shadow: 0 8px 18px -6px rgba(169,84,44,.6);
}
.step h3 { font-size: 1.18rem; margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- Portfolio gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 10px; }
.shot {
  position: relative; margin: 0; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; align-items: flex-end;
  background-size: cover; background-position: center; isolation: isolate;
}
.shot::before { /* subtle leaf texture overlay */
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .5;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.14), transparent 40%), radial-gradient(circle at 80% 70%, rgba(0,0,0,.18), transparent 45%);
  transition: transform .5s ease;
}
.shot::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(transparent 35%, rgba(28,46,32,.86)); transition: opacity .3s ease; }
.shot:hover { box-shadow: var(--shadow); }
.shot:hover::before { transform: scale(1.08); }
.shot-chip {
  position: absolute; top: 14px; left: 14px; z-index: 4;
  background: rgba(255,253,248,.92); color: var(--forest); font-weight: 700; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .08em; padding: 6px 12px; border-radius: 999px;
}
.shot figcaption {
  position: relative; z-index: 3; width: 100%; color: var(--white);
  padding: 20px; display: flex; flex-direction: column; gap: 2px;
  transform: translateY(8px); transition: transform .3s ease;
}
.shot:hover figcaption { transform: translateY(0); }
.shot-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.shot-loc { font-size: .9rem; color: rgba(255,253,248,.82); }
/* Real project photos — add more by dropping files in assets/ and adding .shot-N rules */
.gallery-featured { grid-template-columns: 1fr 1fr; gap: 24px; }
.shot-1 { background-image: url('../assets/project-raised-beds.jpg'); }
.shot-2 { background-image: url('../assets/project-trellis-garden.jpg'); }

.gallery-hint { font-size: .9rem; color: var(--muted); text-align: center; margin-top: 26px; opacity: .85; }
.gallery-hint code { background: var(--cream-2); padding: 2px 6px; border-radius: 6px; font-size: .85em; }

/* ---------- Agritourism ---------- */
.agritourism { background:
    radial-gradient(900px 400px at 90% 10%, rgba(138,154,91,.12), transparent 60%), var(--cream); }
.agri-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 52px; align-items: start; }
.agri-aside { display: flex; flex-direction: column; gap: 26px; }
.agri-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 1050 / 1400; }
.agri-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.agri-list { list-style: none; padding: 0; margin: 8px 0 30px; }
.agri-list li { padding: 14px 0 14px 38px; position: relative; border-bottom: 1px solid rgba(74,58,44,.08); color: var(--muted); }
.agri-list li::before {
  content: ""; position: absolute; left: 0; top: 14px; width: 22px; height: 22px; background-repeat: no-repeat; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238a9a5b' d='M5 21c0-9 6-14.5 15-15.5C19 14 13.5 20 5 21z'/%3E%3Cpath fill='none' stroke='%233c5c44' stroke-width='1.2' d='M18 7C12.5 10 8.5 14.5 6.5 19.5'/%3E%3C/svg%3E");
}
.agri-list strong { color: var(--forest); }

.agri-card {
  background: linear-gradient(160deg, var(--forest), #243a2a); color: var(--cream);
  border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.agri-card::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(138,154,91,.4), transparent 70%); }
.agri-card h3 { color: var(--white); margin: 0 0 12px; font-size: 1.5rem; position: relative; }
.agri-card p { color: rgba(245,240,228,.9); position: relative; }
.check-list { list-style: none; padding: 0; margin: 18px 0; position: relative; }
.check-list li { padding: 9px 0 9px 34px; position: relative; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 22px; height: 22px; background-repeat: no-repeat; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='rgba(170,184,132,0.25)'/%3E%3Cpath fill='none' stroke='%23aab884' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m7 12 3.2 3.2L17 8.5'/%3E%3C/svg%3E");
}
.agri-card-note { font-size: .9rem; color: rgba(245,240,228,.7); margin-top: 18px; position: relative; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.about-media { position: relative; max-width: 420px; margin-inline: auto; width: 100%; }
.about-photo {
  aspect-ratio: 593 / 746; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
  position: relative; border: 6px solid var(--white);
}
.about-illo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-badge {
  position: absolute; right: -18px; bottom: 30px; background: var(--white);
  border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 16px 22px; text-align: center;
  border-left: 4px solid var(--terra);
}
.about-badge strong { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--forest); line-height: 1; }
.about-badge span { font-size: .82rem; color: var(--muted); }
.about-text p { color: var(--muted); margin: 0 0 16px; font-size: 1.06rem; }
.about-sign { font-family: var(--serif); color: var(--forest) !important; font-style: italic; font-size: 1.15rem; }
.cred-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 22px 0 0; }
.cred-list li { background: var(--cream); border: 1px solid rgba(138,154,91,.35); color: var(--forest); font-weight: 600; font-size: .85rem; padding: 8px 16px; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 26px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,58,44,.06); margin-bottom: 14px; overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 26px; font-family: var(--serif);
  font-size: 1.14rem; font-weight: 600; color: var(--forest);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--sans); font-size: 1.6rem; color: var(--terra);
  line-height: 1; transition: transform .25s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 26px 24px; }
.faq-a p { margin: 0; color: var(--muted); }

/* ---------- Contact ---------- */
.section-contact { background:
    linear-gradient(180deg, var(--cream-2), #e8dfc9); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: start; }
.contact-or { text-align: center; color: var(--muted); margin: 20px 0; font-size: .88rem; text-transform: uppercase; letter-spacing: .12em; display: flex; align-items: center; gap: 14px; }
.contact-or::before, .contact-or::after { content: ""; height: 1px; background: rgba(74,58,44,.18); flex: 1; }
.contact-list { list-style: none; padding: 0; margin: 8px 0 0; }
.contact-list li { display: flex; align-items: center; gap: 14px; padding: 11px 0; font-size: 1.05rem; }
.contact-list .ci { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--forest); box-shadow: var(--shadow-sm); }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; color: var(--forest); margin-bottom: 7px; font-size: .92rem; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px; border: 1.5px solid rgba(74,58,44,.18);
  font-family: var(--sans); font-size: 1rem; background: var(--cream); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: var(--ring); background: var(--white);
}
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 14px 0 0; min-height: 1.2em; font-size: .92rem; }
.form-status.ok { color: var(--forest); font-weight: 700; }
.form-status.err { color: var(--terra-dk); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, #3a2d22, var(--soil)); color: var(--cream); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr; gap: 40px; align-items: start; padding-bottom: 44px; }
.footer-logo { display: flex; align-items: center; gap: 11px; }
.footer-logo .brand-mark { color: var(--sage-soft); }
.footer-brand .brand-text { color: var(--cream); font-size: 1.3rem; font-family: var(--serif); font-weight: 700; }
.footer-brand > p { color: rgba(245,240,228,.7); margin: 14px 0 18px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(245,240,228,.1); color: var(--cream); transition: background .2s, transform .2s, color .2s; }
.footer-social a:hover { background: var(--sage); color: var(--forest); transform: translateY(-3px); }
.footer-nav-title { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--sage-soft); margin-bottom: 16px; }
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { color: rgba(245,240,228,.85); font-weight: 600; font-size: .96rem; width: fit-content; }
.footer-nav a:hover { color: var(--sage-soft); text-decoration: none; }
.footer-meta p { color: rgba(245,240,228,.75); margin: 0 0 18px; line-height: 1.7; }
.footer-cta { padding: 12px 22px; font-size: .95rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 22px; padding-bottom: 28px; border-top: 1px solid rgba(245,240,228,.12); flex-wrap: wrap; }
.footer-bottom p { margin: 0; color: rgba(245,240,228,.6); font-size: .88rem; }
.to-top { display: inline-flex; align-items: center; gap: 6px; color: rgba(245,240,228,.8); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.to-top:hover { color: var(--sage-soft); text-decoration: none; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .cards, .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-item:nth-child(3) { border-left: 0; }
  .agri-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media { max-width: 360px; }
  .agri-aside { max-width: 460px; margin-inline: auto; }
  .about-badge { right: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Collapse nav to a menu before the links get cramped */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px 0; box-shadow: var(--shadow); display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px 24px; border-bottom: 1px solid rgba(74,58,44,.06); }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 10px 24px; text-align: center; }
}

@media (max-width: 600px) {
  .cards, .steps, .gallery { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero { min-height: 88vh; }
  .hero-content { padding: 40px 24px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
}
