:root {
  --white: #ffffff;
  --bg: #f8faf6;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #18311a;
  --muted: #58705a;
  --line: rgba(45, 96, 43, 0.13);
  --green-dark: #244a22;
  --green: #3f6f2d;
  --green-soft: #719a52;
  --green-light: #dfe9d7;
  --cream: #f4efe4;
  --gold-soft: #ded3b7;
  --red-soft: #a55b66;
  --shadow: 0 20px 60px rgba(24, 49, 26, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 100%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin: 0 auto; }

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(113, 154, 82, 0.12), transparent 20%),
    radial-gradient(circle at 90% 10%, rgba(165, 91, 102, 0.08), transparent 18%),
    radial-gradient(circle at 80% 80%, rgba(63, 111, 45, 0.08), transparent 20%);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.brand-top, .brand-bottom {
  display: block;
  line-height: 1;
}
.brand-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green-dark);
}
.brand-bottom {
  margin-top: 4px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--green-dark);
  border-radius: 999px;
}

.hero {
  padding: 42px 0 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}
.hero-copy h1,
.section-heading h2,
.distribution-copy h2,
.packaging-copy h2,
.trust-card h2,
.cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  margin: 14px 0 18px;
}
.eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(63, 111, 45, 0.12), rgba(222, 211, 183, 0.28));
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.hero-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 680px;
}
.hero-badges,
.routes-list,
.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges {
  margin: 24px 0;
}
.hero-badges span,
.routes-list span,
.cta-tags span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-dark);
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(36, 74, 34, 0.06);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 18px 40px rgba(36, 74, 34, 0.24);
}
.btn-secondary {
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.9);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-main {
  inset: 70px 0 0 90px;
}
.hero-card-small {
  width: 240px;
  height: 220px;
}
.hero-card-small.top { top: 0; left: 0; }
.hero-card-small.bottom { bottom: 34px; right: 24px; }
.hero-seal {
  position: absolute;
  right: 10px;
  top: 26px;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 10px solid rgba(255,255,255,0.95);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.hero-seal img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.intro-strip {
  padding: 10px 0 20px;
}
.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.intro-strip article,
.product-card,
.variety-card,
.routes-card,
.trust-card,
.fact-card,
.cta-box,
.packaging-copy,
.packaging-media {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.intro-strip article {
  border-radius: 24px;
  padding: 22px;
}
.intro-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1rem;
}
.intro-strip p, p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.section { padding: 84px 0; }
.section-highlight {
  background: linear-gradient(180deg, rgba(223, 233, 215, 0.55), rgba(255,255,255,0));
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-heading h2,
.distribution-copy h2,
.packaging-copy h2,
.trust-card h2,
.cta-box h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  margin: 16px 0 14px;
}
.section-heading p { font-size: 1.03rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  border-radius: 28px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: auto -30px -30px auto;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(113,154,82,0.15), transparent 70%);
}
.product-icon {
  font-size: 2rem;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-light), #fff);
  margin-bottom: 18px;
}
.product-card h3 { margin: 0 0 10px; font-size: 1.2rem; }

.variety-layout { display: grid; gap: 26px; }
.variety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.variety-card {
  border-radius: 32px;
  padding: 34px;
}
.variety-card.green {
  background: linear-gradient(145deg, rgba(223,233,215,0.9), #fff);
}
.variety-card.red {
  background: linear-gradient(145deg, rgba(245,233,236,0.95), #fff);
}
.variety-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.variety-card h3 {
  margin: 0 0 8px;
  font-size: 2rem;
  color: var(--green-dark);
}
.variety-card p { font-size: 1.08rem; }

.distribution-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}
.routes-card {
  border-radius: 30px;
  padding: 28px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(223,233,215,0.56));
}
.routes-card h3 {
  margin: 0 0 20px;
  font-size: 1.25rem;
  color: var(--green-dark);
}
.transport-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 700;
  color: var(--green-dark);
}

.section-dark-card {
  background: linear-gradient(180deg, rgba(36,74,34,0.03), rgba(255,255,255,0));
}
.packaging-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}
.packaging-media,
.packaging-copy {
  border-radius: 34px;
  overflow: hidden;
}
.packaging-media img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}
.packaging-copy { padding: 34px; }
.packaging-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.packaging-list article {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(223,233,215,0.62), rgba(255,255,255,0.95));
  border: 1px solid var(--line);
}
.packaging-list strong { color: var(--green-dark); }

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}
.trust-card,
.fact-card { border-radius: 34px; padding: 34px; }
.trust-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.trust-card li {
  margin-bottom: 14px;
  line-height: 1.7;
}
.fact-card {
  display: grid;
  gap: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(223,233,215,0.68));
}
.fact-bubble {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
}
.fact-bubble strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.gallery-section { padding-top: 70px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.8);
  min-height: 300px;
}
.gallery-item.large { grid-column: span 2; min-height: 420px; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.cta-box {
  border-radius: 36px;
  padding: 42px;
  background: linear-gradient(145deg, rgba(36,74,34,0.97), rgba(63,111,45,0.92));
  color: #fff;
}
.cta-box .eyebrow {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.cta-box p { color: rgba(255,255,255,0.82); max-width: 840px; }
.cta-tags { margin-top: 24px; }
.cta-tags span {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
}

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
}
.footer-brand strong,
.footer-brand span {
  display: block;
}
.footer-brand span,
.site-footer p { color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 1024px) {
  .hero-grid,
  .distribution-wrap,
  .packaging-layout,
  .trust-grid { grid-template-columns: 1fr; }

  .product-grid,
  .intro-strip-grid,
  .variety-grid,
  .gallery-grid,
  .packaging-list { grid-template-columns: repeat(2, 1fr); }

  .hero-visual {
    min-height: 560px;
    max-width: 720px;
    margin: 0 auto;
  }
  .hero-card-main { inset: 70px 40px 0 60px; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-copy h1 { font-size: clamp(2.6rem, 11vw, 4rem); }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .product-grid,
  .intro-strip-grid,
  .variety-grid,
  .gallery-grid,
  .packaging-list { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; min-height: 300px; }
  .hero-visual {
    min-height: 420px;
  }
  .hero-card-main { inset: 56px 10px 0 16px; }
  .hero-card-small { width: 150px; height: 130px; }
  .hero-seal { width: 92px; height: 92px; right: 6px; top: 14px; border-width: 6px; }
  .section-heading h2,
  .distribution-copy h2,
  .packaging-copy h2,
  .trust-card h2,
  .cta-box h2 { font-size: 2.4rem; }
  .trust-card, .fact-card, .packaging-copy, .cta-box { padding: 24px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
