
:root {
  --cream: #f3eedf;
  --paper: #fbf8ef;
  --ink: #193d2c;
  --forest: #123d2a;
  --lime: #c9e06d;
  --gold: #d5a85b;
  --line: rgba(25, 61, 44, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: white;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50% 45% 50% 40%;
  font-family: Georgia, "Times New Roman", serif;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 14px; letter-spacing: .035em; }
.brand small { margin-top: 2px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; opacity: .7; }
nav { display: flex; gap: 32px; font-size: 13px; font-weight: 600; }
nav a { transition: opacity .2s; }
nav a:hover { opacity: .65; }

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  background: var(--forest);
  color: white;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px max(7vw, 48px) 100px;
}
.eyebrow {
  margin-bottom: 22px;
  color: #a5c977;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1 { max-width: 690px; margin-bottom: 28px; font-size: clamp(54px, 6.8vw, 102px); line-height: .96; }
.hero h1 span { display: block; color: var(--lime); }
.lead { max-width: 560px; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.72); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 16px 23px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.button.primary { background: var(--lime); color: var(--forest); }
.button.ghost { border: 1px solid rgba(255,255,255,.35); }
.button.ghost span { margin-left: 10px; }
.hero-visual { position: relative; overflow: hidden; background: #e7d9ae; }
.sun { position: absolute; top: 13%; right: 10%; width: 180px; height: 180px; border-radius: 50%; background: #f5d57b; box-shadow: 0 0 100px #f5d57b; }
.hill { position: absolute; left: -25%; width: 150%; border-radius: 50% 50% 0 0; }
.hill-back { bottom: 23%; height: 48%; background: #9fb86b; transform: rotate(-8deg); }
.hill-front { bottom: -12%; height: 55%; background: #305f3c; transform: rotate(7deg); }
.tree { position: absolute; bottom: 14%; z-index: 3; width: 130px; height: 250px; }
.tree-one { left: 10%; transform: scale(.95); }
.tree-two { left: 42%; bottom: 9%; transform: scale(1.2); }
.tree-three { right: 2%; bottom: 20%; transform: scale(.75); }
.tree i { position: absolute; left: 58px; bottom: 0; width: 12px; height: 135px; background: #503c27; border-radius: 12px; }
.tree b { position: absolute; display: block; width: 115px; height: 115px; background: #174c2f; border-radius: 55% 45% 52% 48%; }
.tree b:nth-child(2) { top: 15px; left: 5px; }
.tree b:nth-child(3) { top: 55px; left: -25px; background: #245f38; }
.tree b:nth-child(4) { top: 65px; left: 40px; background: #2f6c3d; }
.hero-badge {
  position: absolute;
  left: 9%;
  bottom: 8%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 25px;
  background: rgba(251,248,239,.92);
  border-radius: 4px;
  color: var(--ink);
  box-shadow: 0 20px 45px rgba(18,61,42,.18);
}
.hero-badge strong { font-family: Georgia, "Times New Roman", serif; font-size: 45px; color: #b67b2d; }
.hero-badge span { font-size: 11px; font-weight: 700; line-height: 1.45; text-transform: uppercase; letter-spacing: .08em; }
.scroll-note { position: absolute; left: max(7vw, 48px); bottom: 30px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .5; }

.about, .varieties, .purpose, .location, footer { padding: 110px max(7vw, 48px); }
.about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 9vw;
  background: var(--cream);
}
.about h2, .section-heading h2, .purpose h2, .location h2, footer h2 { font-size: clamp(38px, 4.5vw, 66px); line-height: 1.08; }
.about-copy > p { max-width: 700px; font-size: 17px; line-height: 1.85; color: #476151; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line); }
.facts strong, .facts span { display: block; }
.facts strong { font-family: Georgia, "Times New Roman", serif; font-size: 28px; color: #b1792c; }
.facts span { margin-top: 7px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; opacity: .65; }

.varieties { background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 62px; }
.section-heading > div { max-width: 720px; }
.section-heading > p { max-width: 330px; color: #607568; line-height: 1.7; }
.variety-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.variety-card { min-height: 410px; position: relative; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s, transform .25s; }
.variety-card:hover { background: #eef2dc; transform: translateY(-4px); }
.card-number { font-size: 11px; color: #849487; }
.nut-icon, .nut { position: relative; display: block; border-radius: 48% 52% 46% 54%; background: #b97c35; box-shadow: inset -12px -10px 0 rgba(92,47,18,.18); transform: rotate(-12deg); }
.nut-icon { width: 85px; height: 96px; margin: 60px auto 48px; }
.nut-icon i, .nut i { position: absolute; top: -16%; left: 15%; width: 70%; height: 32%; border-radius: 70% 20%; background: #77974a; transform: rotate(-14deg); }
.variety-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 400; }
.variety-card p { color: #627569; font-size: 14px; line-height: 1.7; }

.purpose { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 9vw; background: #dce7b9; }
.purpose-orbit { position: relative; min-height: 430px; border: 1px solid rgba(25,61,44,.25); border-radius: 50%; }
.purpose-orbit:before { content: ""; position: absolute; inset: 14%; border: 1px dashed rgba(25,61,44,.28); border-radius: 50%; }
.nut.big { position: absolute; left: 35%; top: 28%; width: 135px; height: 155px; }
.nut.small { position: absolute; right: 10%; bottom: 10%; width: 72px; height: 82px; transform: rotate(22deg); }
.leaf { position: absolute; top: 5%; left: 5%; width: 125px; height: 64px; border-radius: 100% 0; background: #5b8439; transform: rotate(-25deg); }
.purpose > div:last-child { max-width: 700px; }
.purpose > div:last-child > p:last-child { max-width: 640px; color: #425d4c; font-size: 17px; line-height: 1.85; }

.location { text-align: center; color: white; background: var(--forest); }
.location h2 { margin-bottom: 18px; color: var(--lime); }
.location > p:not(.eyebrow) { color: rgba(255,255,255,.66); }
.location-tags { display: flex; justify-content: center; gap: 9px; flex-wrap: wrap; margin-top: 38px; }
.location-tags span { padding: 10px 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; font-size: 11px; }

footer { padding-bottom: 36px; background: #efeadb; }
.footer-intro { max-width: 750px; }
.footer-intro > p:last-child { max-width: 630px; color: #5d7165; line-height: 1.8; }
.social-links { display: grid; grid-template-columns: 1fr 1fr; margin-top: 65px; border-top: 1px solid var(--line); }
.social-links a { display: flex; justify-content: space-between; padding: 28px 6px; border-bottom: 1px solid var(--line); transition: padding .2s, color .2s; }
.social-links a:first-child { margin-right: 30px; }
.social-links a:hover { padding-left: 12px; color: #a26824; }
.social-links span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.social-links strong { font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 80px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 11px; color: #6f7f74; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 710px; padding-left: 28px; padding-right: 28px; }
  .hero-visual { min-height: 520px; }
  .site-header { width: calc(100% - 56px); }
  .scroll-note { display: none; }
  .about, .purpose { grid-template-columns: 1fr; gap: 55px; }
  .section-heading { display: block; }
  .variety-grid { grid-template-columns: 1fr; }
  .variety-card { min-height: 330px; }
  .nut-icon { margin: 38px auto 34px; }
}

@media (max-width: 600px) {
  .about, .varieties, .purpose, .location, footer { padding: 80px 24px; }
  .hero-copy { padding-top: 130px; }
  .hero h1 { font-size: 52px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .facts { grid-template-columns: 1fr; }
  .purpose-orbit { min-height: 330px; }
  .social-links { grid-template-columns: 1fr; }
  .social-links a:first-child { margin-right: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
