/* ============================================================
   Bella Alma Ranch — design system
   Warm off-whites · deep soil browns · muted sage · dusty gold
   ============================================================ */

:root {
  /* Surfaces */
  --paper:       #F3EDDF;   /* warm off-white, base */
  --paper-soft:  #FAF6EC;   /* lighter cards / forms */
  --paper-deep:  #E8DEC9;   /* deeper band / placeholders */
  --soil:        #281F16;   /* deep soil brown — near-black text & dark sections */
  --soil-2:      #3C2F22;
  --bark:        #6E5A43;   /* muted brown, secondary text */
  --bark-soft:   #8C775D;

  /* Accents (shared chroma/lightness, hue varied) */
  --sage:        #7E8C68;
  --sage-deep:   #5E6B4A;
  --gold:        #BE9A57;
  --gold-deep:   #9F7E3B;
  --clay:        #B07551;

  /* Active accent (overridable via Tweaks) */
  --accent:      var(--gold);
  --accent-deep: var(--gold-deep);

  --line:        rgba(40, 31, 22, 0.14);
  --line-soft:   rgba(40, 31, 22, 0.08);

  /* Type */
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* Headline-font tweak swaps */
body[data-headline="zilla"]     { --serif: "Zilla Slab", Georgia, serif; }
body[data-headline="newsreader"]{ --serif: "Newsreader", Georgia, serif; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--soil);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

/* ---------- shared layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(72px, 11vw, 152px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--soil-2);
}

/* striped photo placeholder */
.ph {
  position: relative;
  background-color: var(--paper-deep);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(40, 31, 22, 0.045) 0 14px,
    transparent 14px 28px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  text-align: center;
  padding: 12px 18px;
  border: 1px dashed rgba(40, 31, 22, 0.22);
  border-radius: 4px;
  background: rgba(250, 246, 236, 0.5);
  max-width: 80%;
}

/* image-slot baseline */
image-slot {
  --is-bg: var(--paper-deep);
  --is-fg: var(--bark);
  background: var(--paper-deep);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav[data-solid="true"] {
  background: rgba(243, 237, 223, 0.86);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 30px; height: 30px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: relative;
  flex: none;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--soil);
}
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bark);
  margin-top: 4px;
}
.nav[data-overhero="true"]:not([data-solid="true"]) .brand-name { color: var(--paper-soft); }
.nav[data-overhero="true"]:not([data-solid="true"]) .brand-sub  { color: rgba(250,246,236,0.78); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--soil-2);
  position: relative;
  padding-block: 4px;
}
.nav[data-overhero="true"]:not([data-solid="true"]) .nav-links a { color: rgba(250,246,236,0.9); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 11px 22px;
  border-radius: 2px;
  border: 1.5px solid var(--soil);
  background: var(--soil);
  color: var(--paper-soft);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  display: inline-block;
}
.btn:hover { background: transparent; color: var(--soil); transform: translateY(-1px); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: var(--soil); }
.btn-accent:hover { background: transparent; color: var(--soil); }
.btn-ghost { background: transparent; color: var(--soil); }
.nav[data-overhero="true"]:not([data-solid="true"]) .nav .btn-ghost { color: var(--paper-soft); border-color: var(--paper-soft); }

.nav-cta { border-color: var(--accent); background: var(--accent); color: var(--soil); }
.nav-cta:hover { background: transparent; }
.nav[data-overhero="true"]:not([data-solid="true"]) .nav-cta {
  background: rgba(250,246,236,0.12);
  border-color: rgba(250,246,236,0.6);
  color: var(--paper-soft);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.nav[data-overhero="true"]:not([data-solid="true"]) .nav-cta:hover { background: rgba(250,246,236,0.22); }

.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media image-slot,
.hero-media .ph {
  width: 100%; height: 100%;
  background-color: #2f2519;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 246, 230, 0.03) 0 16px,
    transparent 16px 32px
  );
}
.hero-media .ph-label {
  color: rgba(250, 246, 236, 0.72);
  border-color: rgba(250, 246, 236, 0.28);
  background: rgba(40, 31, 22, 0.35);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(20,15,10,0.72) 0%, rgba(20,15,10,0.18) 42%, rgba(20,15,10,0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(70px, 12vh, 130px);
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.hero-content > * { pointer-events: auto; }

.hero .eyebrow { color: var(--accent); }
.hero .eyebrow::before { background: var(--accent); }

.hero h1 {
  color: var(--paper-soft);
  font-size: clamp(48px, 8.2vw, 124px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 22px;
  max-width: 16ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  color: rgba(250, 246, 236, 0.92);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
  max-width: 52ch;
  margin-top: 26px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  margin-top: clamp(46px, 8vh, 88px);
  flex-wrap: wrap;
}
.hero-meta .stat-num { color: var(--paper-soft); }
.hero-meta .stat-label { color: rgba(250, 246, 236, 0.7); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(rgba(250,246,236,0.6), transparent);
  animation: cuepulse 2.4s ease-in-out infinite;
}
@keyframes cuepulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* hero layout variants */
body[data-hero="centered"] .hero-content { justify-content: center; align-items: center; text-align: center; padding-bottom: 0; }
body[data-hero="centered"] .hero h1 { max-width: 18ch; }
body[data-hero="centered"] .hero .eyebrow { justify-content: center; }
body[data-hero="centered"] .hero .eyebrow::before { display: none; }
body[data-hero="centered"] .hero-sub { margin-inline: auto; }
body[data-hero="centered"] .hero-actions { justify-content: center; }
body[data-hero="centered"] .hero-meta { justify-content: center; }

body[data-hero="split"] .hero { background: var(--paper); }
body[data-hero="split"] .hero-media { left: 50%; }
body[data-hero="split"] .hero-scrim { display: none; }
body[data-hero="split"] .hero-content {
  justify-content: center;
  max-width: var(--maxw);
  padding-bottom: 0;
}
body[data-hero="split"] .hero-inner { max-width: 46%; }
body[data-hero="split"] .hero h1 { color: var(--soil); text-shadow: none; }
body[data-hero="split"] .hero h1 em { color: var(--accent-deep); }
body[data-hero="split"] .hero-sub { color: var(--bark); }
body[data-hero="split"] .hero .eyebrow { color: var(--accent-deep); }
body[data-hero="split"] .hero-meta .stat-num { color: var(--soil); }
body[data-hero="split"] .hero-meta .stat-label { color: var(--bark); }
body[data-hero="split"] .scroll-cue { color: var(--bark); }
body[data-hero="split"] .scroll-cue::after { background: linear-gradient(var(--bark), transparent); }

.stat-num {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-copy h2 {
  font-size: clamp(32px, 4.4vw, 58px);
  margin-top: 20px;
  max-width: 14ch;
}
.about-copy .lede { margin-top: 28px; }
.about-copy .body-stack { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; color: var(--bark); font-size: 17px; }
.about-copy .body-stack strong { color: var(--soil-2); font-weight: 600; }
.about-media {
  position: relative;
}
.about-media image-slot, .about-media .ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
}
.about-media .tag {
  position: absolute;
  left: -22px;
  bottom: 34px;
  background: var(--soil);
  color: var(--paper-soft);
  padding: 18px 24px;
  border-radius: 3px;
  max-width: 230px;
  box-shadow: 0 24px 50px rgba(40,31,22,0.28);
}
.about-media .tag .t-num { font-family: var(--serif); font-size: 38px; line-height: 1; color: var(--accent); }
.about-media .tag .t-txt { font-size: 13px; line-height: 1.4; margin-top: 8px; color: rgba(250,246,236,0.82); }

/* ============================================================
   THE CROP
   ============================================================ */
.crop { background: var(--soil); color: var(--paper-soft); }
.crop .eyebrow { color: var(--accent); }
.crop .eyebrow::before { background: var(--accent); }
.crop-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,80px); align-items: end; }
.crop-head h2 { color: var(--paper-soft); font-size: clamp(32px, 4.4vw, 58px); margin-top: 20px; max-width: 13ch; }
.crop-head p { color: rgba(250,246,236,0.72); font-size: 18px; line-height: 1.6; }

.crop-grid {
  margin-top: clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(250,246,236,0.14);
  border: 1px solid rgba(250,246,236,0.14);
}
.crop-cell {
  background: var(--soil);
  padding: 34px 30px 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 250px;
  transition: background 0.4s ease;
}
.crop-cell:hover { background: var(--soil-2); }
.crop-glyph { width: 34px; height: 34px; color: var(--accent); }
.crop-glyph svg { width: 100%; height: 100%; display: block; }
.crop-cell h3 { color: var(--paper-soft); font-size: 22px; font-weight: 500; }
.crop-cell .c-stat { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--accent); letter-spacing: -0.02em; }
.crop-cell p { color: rgba(250,246,236,0.66); font-size: 14.5px; line-height: 1.55; margin-top: auto; }

/* varieties */
.varieties { margin-top: 1px; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(250,246,236,0.14); border: 1px solid rgba(250,246,236,0.14); border-top: 0; }
.variety { background: var(--soil); padding: 32px 30px; display: flex; flex-direction: column; gap: 10px; }
.variety .v-tag { font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.variety h4 { font-family: var(--serif); font-size: 25px; font-weight: 500; color: var(--paper-soft); }
.variety p { font-size: 14.5px; line-height: 1.55; color: rgba(250,246,236,0.66); }

/* crop layout variant: list */
body[data-crop="list"] .crop-grid { grid-template-columns: 1fr; }
body[data-crop="list"] .crop-cell { flex-direction: row; align-items: flex-start; gap: 28px; min-height: 0; padding: 28px 30px; }
body[data-crop="list"] .crop-cell .crop-glyph { flex: none; }
body[data-crop="list"] .crop-cell p { margin-top: 6px; max-width: 60ch; }
body[data-crop="list"] .crop-cell .c-stat { margin-left: auto; }

/* ============================================================
   THE PLAN — timeline
   ============================================================ */
.plan { background: var(--paper); }
.plan-head { max-width: 760px; }
.plan-head h2 { font-size: clamp(32px, 4.4vw, 58px); margin-top: 20px; }
.plan-head .lede { margin-top: 24px; }

/* vertical (default) */
.timeline { margin-top: clamp(50px, 7vw, 84px); position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 119px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--accent), var(--line));
}
.phase {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 56px;
  padding-block: 26px;
  position: relative;
}
.phase + .phase { border-top: 1px solid var(--line-soft); }
.phase-rail { text-align: right; position: relative; }
.phase-rail .p-time { font-family: ui-monospace, Menlo, monospace; font-size: 12px; letter-spacing: 0.08em; color: var(--bark); }
.phase::after {
  content: "";
  position: absolute;
  left: 112px; top: 36px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 2.5px solid var(--accent);
  z-index: 1;
}
.phase[data-done="true"]::after { background: var(--accent); }
.phase-body { max-width: 760px; }
.phase-num { font-family: ui-monospace, Menlo, monospace; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-deep); font-weight: 600; }
.phase-body h3 { font-family: var(--serif); font-size: clamp(23px, 2.4vw, 31px); font-weight: 500; margin-top: 8px; }
.phase-body p { color: var(--bark); font-size: 16.5px; margin-top: 12px; max-width: 62ch; }
.phase-milestone {
  margin-top: 16px;
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
  color: var(--soil-2);
  background: var(--paper-deep);
  padding: 9px 15px;
  border-radius: 2px;
}
.phase-milestone .pm-label { font-family: ui-monospace, Menlo, monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); }
.phase-involve { margin-top: 14px; font-size: 13px; color: var(--bark-soft); letter-spacing: 0.02em; }
.phase-involve b { color: var(--soil-2); font-weight: 600; }

/* horizontal variant */
body[data-plan="horizontal"] .timeline::before { display: none; }
body[data-plan="horizontal"] .timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
body[data-plan="horizontal"] .phase {
  display: block;
  grid-template-columns: none;
  gap: 0;
  background: var(--paper-soft);
  padding: 30px 26px 34px;
  border-top: 0;
}
body[data-plan="horizontal"] .phase::after { left: 26px; top: auto; bottom: 100%; margin-bottom: -8px; }
body[data-plan="horizontal"] .phase-rail { text-align: left; margin-bottom: 18px; }
body[data-plan="horizontal"] .phase-body h3 { font-size: 21px; }
body[data-plan="horizontal"] .phase-body p { font-size: 14px; }
body[data-plan="horizontal"] .phase-milestone { display: none; }

/* cards variant */
body[data-plan="cards"] .timeline::before { display: none; }
body[data-plan="cards"] .timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
body[data-plan="cards"] .phase {
  display: block;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 28px 32px;
  border-top: 3px solid var(--accent);
}
body[data-plan="cards"] .phase::after { display: none; }
body[data-plan="cards"] .phase-rail { text-align: left; margin-bottom: 14px; }
body[data-plan="cards"] .phase-milestone { margin-top: 16px; }

/* ============================================================
   THE LAND
   ============================================================ */
.land { background: var(--paper-deep); }
.land-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px,5vw,80px); align-items: center; }
.land-copy h2 { font-size: clamp(32px, 4.4vw, 58px); margin-top: 20px; }
.land-coord { margin-top: 30px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.land-coord .row { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.land-coord .row dt { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark); font-weight: 500; }
.land-coord .row dd { margin: 0; font-family: var(--serif); font-size: 19px; color: var(--soil); }
.land-note { margin-top: 26px; color: var(--bark); font-size: 16px; max-width: 48ch; }

.land-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 100%; min-height: 440px; }
.land-gallery image-slot, .land-gallery .ph { width: 100%; height: 100%; border-radius: 3px; min-height: 130px; }
.land-gallery .g-wide { grid-column: 1 / -1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--soil); color: var(--paper-soft); position: relative; overflow: hidden; }
.contact .wrap { position: relative; z-index: 2; }
.contact-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.contact .eyebrow { color: var(--accent); }
.contact .eyebrow::before { background: var(--accent); }
.contact h2 { color: var(--paper-soft); font-size: clamp(34px, 5vw, 66px); margin-top: 20px; max-width: 12ch; }
.contact h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.contact-sub { color: rgba(250,246,236,0.72); font-size: 18px; line-height: 1.6; margin-top: 24px; max-width: 44ch; }
.contact-mail { margin-top: 26px; font-family: var(--serif); font-size: 22px; color: var(--paper-soft); display: inline-flex; gap: 12px; align-items: center; }
.contact-mail:hover { color: var(--accent); }

.signup {
  background: rgba(250,246,236,0.05);
  border: 1px solid rgba(250,246,236,0.16);
  border-radius: 5px;
  padding: clamp(28px, 3.5vw, 44px);
}
.signup h3 { color: var(--paper-soft); font-size: 23px; font-weight: 500; }
.signup p { color: rgba(250,246,236,0.6); font-size: 14.5px; margin-top: 8px; }
.field { margin-top: 20px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,236,0.6); margin-bottom: 8px; font-weight: 500; }
.field input, .field select {
  width: 100%;
  background: rgba(250,246,236,0.06);
  border: 1px solid rgba(250,246,236,0.2);
  border-radius: 3px;
  padding: 13px 15px;
  color: var(--paper-soft);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.field input::placeholder { color: rgba(250,246,236,0.35); }
.field input:focus, .field select:focus { border-color: var(--accent); background: rgba(250,246,236,0.1); }
.field select option { color: #281f16; }
.signup .btn { width: 100%; margin-top: 24px; padding-block: 14px; }
.signup-fine { margin-top: 16px; font-size: 12px; color: rgba(250,246,236,0.45); line-height: 1.5; text-align: center; }
.signup-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.signup.done .signup-form { display: none; }
.signup.done .signup-success { display: block; }
.signup-success .check { width: 46px; height: 46px; border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--accent); font-size: 22px; }
.signup-success h3 { margin-bottom: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--soil); color: rgba(250,246,236,0.6); border-top: 1px solid rgba(250,246,236,0.12); }
.footer .wrap { padding-block: 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer .brand-name { color: var(--paper-soft); font-size: 16px; }
.footer .brand-sub { color: rgba(250,246,236,0.5); }
.footer-meta { font-size: 13px; letter-spacing: 0.04em; display: flex; gap: 28px; flex-wrap: wrap; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--rd, 0ms);
}
.reveal.in { opacity: 1; transform: none; }
body[data-motion="off"] .reveal { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .about-grid, .crop-head, .land-grid, .contact-grid { grid-template-columns: 1fr; }
  .crop-grid { grid-template-columns: repeat(2, 1fr); }
  .varieties { grid-template-columns: 1fr; }
  body[data-hero="split"] .hero-media { left: 0; opacity: 0.18; }
  body[data-hero="split"] .hero-inner { max-width: 100%; }
  body[data-hero="split"] .hero h1 { color: var(--soil); }
  body[data-plan="horizontal"] .timeline { grid-template-columns: 1fr; }
  .about-media .tag { left: 14px; }
  .land-gallery { min-height: 360px; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .crop-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 7px; }
  .phase { grid-template-columns: 1fr; gap: 0; padding-left: 34px; }
  .phase-rail { text-align: left; margin-bottom: 10px; }
  .phase::after { left: 0; top: 30px; }
  .hero-meta { gap: 28px; }
  .footer .wrap { flex-direction: column; align-items: flex-start; }
}
