:root {
  --cherry: #8f0f28;
  --cherry-dark: #5d0719;
  --cherry-soft: #f8eef0;
  --blush: #fff7f8;
  --leaf: #315b3c;
  --gold: #b68a3b;
  --ink: #231f20;
  --muted: #6f6467;
  --line: #ead7dc;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(95, 7, 25, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(143,15,40,.10), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #fff9fa 42%, #fff 100%);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234,215,220,.76);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--cherry-dark);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cherry), #c4143d);
  position: relative;
  box-shadow: 0 10px 22px rgba(143,15,40,.2);
}
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: .94;
  bottom: 10px;
}
.logo-mark::before { left: 10px; }
.logo-mark::after { right: 10px; }

.nav-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  font-weight: 700;
  color: #3d3336;
  font-size: .95rem;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cherry); }
.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cherry);
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 900;
  background: #fff;
}

.hero {
  padding: clamp(62px, 9vw, 120px) 0 clamp(46px, 6vw, 86px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cherry);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}
h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 0 0 18px;
  color: var(--cherry-dark);
}
h1 {
  font-size: clamp(2.65rem, 7.2vw, 6.6rem);
  max-width: 920px;
}
h2 { font-size: clamp(2rem, 4.3vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 28px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cherry), var(--cherry-dark));
  box-shadow: 0 16px 30px rgba(143,15,40,.24);
}
.btn-secondary {
  color: var(--cherry);
  background: #fff;
  border-color: var(--line);
}
.btn-text {
  color: var(--cherry);
  font-weight: 900;
}

.hero-art {
  min-height: 560px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(49,91,60,.72), rgba(143,15,40,.12)),
    radial-gradient(circle at 30% 30%, #f3c0ca 0 5%, transparent 6%),
    linear-gradient(160deg, #f6eef0, #fff);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 26px;
  z-index: 1;
}
.cherry-cluster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.cherry-card {
  width: min(78%, 420px);
  aspect-ratio: 1 / 1.03;
  background:
    radial-gradient(circle at 34% 40%, #d51a47 0 20%, transparent 21%),
    radial-gradient(circle at 64% 47%, #a80f2f 0 23%, transparent 24%),
    radial-gradient(circle at 47% 68%, #7c0820 0 25%, transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,.32), rgba(255,255,255,.10));
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 36px 80px rgba(61,5,19,.28);
  backdrop-filter: blur(4px);
  position: relative;
}
.cherry-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 120px;
  left: 33%;
  top: 11%;
  border-top: 8px solid rgba(49,91,60,.8);
  border-radius: 50% 60% 0 0;
  transform: rotate(-21deg);
}
.cherry-card::after {
  content: "British Columbia Orchards";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--cherry-dark);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(61,5,19,.12);
}
.stat-strip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  z-index: 4;
}
.stat {
  padding: 16px 12px;
  text-align: center;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(61,5,19,.10);
}
.stat strong { display: block; color: var(--cherry); font-size: 1.05rem; line-height: 1.15; }
.stat span { display: block; color: var(--muted); font-size: .8rem; margin-top: 4px; }

.section {
  padding: clamp(58px, 8vw, 108px) 0;
}
.section-tight { padding: clamp(42px, 6vw, 74px) 0; }
.section-header {
  max-width: 780px;
  margin-bottom: 36px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-kicker {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: .12em;
  font-size: .76rem;
  margin-bottom: 12px;
}

.intro-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.intro-panel .quote {
  color: var(--cherry-dark);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 15px 40px rgba(95,7,25,.06);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--cherry), #bd1740);
  font-weight: 900;
}
.card p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.feature-box {
  background: linear-gradient(140deg, var(--cherry-dark), var(--cherry));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.feature-box::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -120px;
  bottom: -160px;
  background: rgba(255,255,255,.10);
}
.feature-box h2,
.feature-box h3 { color: #fff; }
.feature-box p { color: rgba(255,255,255,.82); }
.soft-box {
  background: var(--cherry-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.month-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.month-card strong { color: var(--cherry); font-size: 1.4rem; display: block; }
.month-card span { color: var(--muted); }

.buyer-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}
.buyer-band h2 { color: #fff; }
.buyer-band p { color: rgba(255,255,255,.74); }
.buyer-list {
  display: grid;
  gap: 12px;
}
.buyer-list div {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  font-weight: 800;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.benefit-list li {
  list-style: none;
  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.benefit-list li strong { color: var(--cherry-dark); }

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 12px 30px rgba(95,7,25,.05);
}
summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--cherry-dark);
}
details p { margin: 14px 0 0; color: var(--muted); }

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--cherry), var(--cherry-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(46px, 7vw, 86px) 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  top: -250px;
  left: -120px;
  background: rgba(255,255,255,.12);
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.78); margin: 0 auto; max-width: 720px; }
.final-cta .btn-secondary { background: rgba(255,255,255,.96); }

.page-hero {
  padding: clamp(70px, 10vw, 132px) 0 clamp(46px, 7vw, 88px);
  text-align: center;
}
.page-hero h1 { margin-left: auto; margin-right: auto; }
.page-hero .lead { margin-left: auto; margin-right: auto; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.who-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(95,7,25,.05);
  font-weight: 900;
  color: var(--cherry-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 18px 40px rgba(95,7,25,.06);
}
.email-line {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
  color: var(--cherry);
  word-break: break-word;
}
.social-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.social-large a {
  padding: 16px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 900;
  color: var(--cherry);
  background: var(--blush);
}

.site-footer {
  margin-top: 70px;
  padding: 44px 0;
  background: #170f11;
  color: rgba(255,255,255,.76);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
}
.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}
.footer-links a,
.footer-social a { color: rgba(255,255,255,.85); }
.footer-note { margin: 8px 0 0; font-size: .92rem; color: rgba(255,255,255,.52); }

.prototype-note {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: .78rem;
  color: var(--muted);
  box-shadow: 0 12px 32px rgba(95,7,25,.10);
}

@media (max-width: 980px) {
  .nav { flex-wrap: wrap; padding: 14px 0; }
  .nav-links { order: 3; width: 100%; justify-content: center; }
  .social-links { display: none; }
  .hero-grid,
  .intro-panel,
  .split,
  .buyer-band,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 450px; }
  .card-grid, .who-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links, .footer-social { justify-content: center; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, var(--max)); }
  .nav-links { gap: 12px; font-size: .9rem; }
  .hero { padding-top: 42px; }
  .hero-art { min-height: 380px; border-radius: 24px; }
  .stat-strip { grid-template-columns: 1fr; position: relative; left: auto; right: auto; bottom: auto; padding: 22px; margin-top: -70px; }
  .cherry-card { width: 82%; }
  .card-grid, .who-grid, .timeline, .social-large { grid-template-columns: 1fr; }
  .intro-panel, .buyer-band, .feature-box, .soft-box, .final-cta { border-radius: 24px; }
  .prototype-note { display: none; }
}
