:root {
  --bg: #f7f2e6;
  --bg-soft: #fffaf6;
  --panel: rgba(255, 252, 245, 0.92);
  --panel-strong: #fffaf6;
  --text: #102018;
  --muted: #526156;
  --green: #083824;
  --green-2: #215c3a;
  --gold: #d6ad2a;
  --sand: #d8c78a;
  --line: rgba(16, 32, 24, 0.1);
  --shadow: 0 18px 44px rgba(16, 32, 24, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fffaf7 0%, #f7f2e6 100%);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section--tight {
  padding-top: 0;
}

.section-heading {
  max-width: 560px;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2,
.hero h1,
.cta-panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  max-width: 12ch;
}

.cta-panel h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.lead,
.section-heading p,
.prose p,
.product-card p,
.hero-card__content p,
.cta-panel p,
.site-footer p,
.steps span {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.86);
  border-bottom: 1px solid rgba(16, 32, 24, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 0.96rem;
  letter-spacing: 0.1em;
}

.brand-text span {
  font-size: 0.8rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fef8ea !important;
  box-shadow: 0 12px 24px rgba(0, 56, 32, 0.16);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 32, 24, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 99px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding-top: 56px;
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.lead {
  font-size: 1.1rem;
  max-width: 58ch;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--green);
  color: #fff8ea;
  box-shadow: 0 12px 24px rgba(0, 56, 32, 0.14);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 56, 32, 0.12);
  color: var(--green);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-badges span {
  position: relative;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 56, 32, 0.12);
  background: rgba(255, 252, 244, 0.62);
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-card {
  background: var(--panel);
  border: 1px solid rgba(0, 56, 32, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(214, 173, 42, 0.15), transparent 70%);
}

.hero-card__top {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(214, 173, 42, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(8, 56, 36, 0.03), rgba(255, 255, 255, 0.14));
  margin-bottom: 18px;
}

.hero-logo {
  width: min(72%, 280px);
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 56, 32, 0.1));
}

.hero-card__content {
  display: grid;
  gap: 10px;
}

.card-kicker,
.product-tag,
.strip-label {
  margin: 0;
  color: var(--green-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-card h2,
.product-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-stats div,
.product-card,
.market-pill,
.strip,
.cta-panel,
.steps li {
  background: var(--panel);
  border: 1px solid rgba(0, 56, 32, 0.08);
  border-radius: var(--radius-sm);
}

.hero-stats div {
  padding: 16px 14px;
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
  color: var(--green);
  word-break: break-word;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--muted);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
}

.strip strong {
  display: block;
  font-size: 1rem;
}

.split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.prose {
  display: grid;
  gap: 16px;
  font-size: 1.03rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-category {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.product-category__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 2px;
}

.product-category__head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
}

.product-card {
  padding: 22px;
  min-height: 180px;
}

.product-card h3,
.product-card h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}

.product-card h3 {
  font-size: 2rem;
}

.product-card h4 {
  font-size: 1.5rem;
  color: var(--green);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.steps li {
  padding: 20px 20px 20px 44px;
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(0, 56, 32, 0.1);
  background: var(--panel);
}

.steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 16px;
  top: 18px;
  width: 20px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.steps {
  counter-reset: step;
}

.steps strong {
  display: block;
  margin-bottom: 6px;
}

.market-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.market-pill {
  padding: 16px 20px;
  font-weight: 600;
  color: var(--green);
  box-shadow: 0 8px 18px rgba(16, 32, 24, 0.05);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding-left: 44px;
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(0, 56, 32, 0.1);
  background: var(--panel);
  color: var(--text);
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(253, 199, 2, 0.14);
}

.section--cta {
  padding-top: 24px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.contact-card {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.contact-card h3 {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.contact-list li {
  padding-left: 24px;
  position: relative;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.contact-card .button {
  justify-self: start;
}

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(16, 32, 24, 0.08);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.footer-shell strong {
  letter-spacing: 0.08em;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.backdrop {
  position: fixed;
  inset: auto;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.backdrop--one {
  width: 260px;
  height: 260px;
  top: 10%;
  right: -80px;
  background: rgba(214, 173, 42, 0.12);
}

.backdrop--two {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: -100px;
  background: rgba(8, 56, 36, 0.06);
}

/* ── Language switcher ───────────────────────────── */

.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-shrink: 0;
}

.lang-btn {
  padding: 6px 11px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(8, 56, 36, 0.14);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.04em;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.lang-btn:hover {
  border-color: var(--green-2);
  color: var(--green);
}

.lang-btn.active {
  background: var(--green);
  color: #fff8ea;
  border-color: var(--green);
}

/* ── Product card photos ─────────────────────────── */

.product-card__photo {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(255,255,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 75%, rgba(0,0,0,0.14) 0%, transparent 55%);
}

/* ── Product photo themes ────────────────────────── */

.product-photo--walnuts {
  background: linear-gradient(135deg, #4A2C0A 0%, #8B5E22 45%, #6A4318 100%);
}
.product-photo--almonds {
  background: linear-gradient(135deg, #9A7428 0%, #D4AA5A 45%, #B88C38 100%);
}
.product-photo--kernels {
  background: linear-gradient(135deg, #5A3614 0%, #9B6630 45%, #7A4E22 100%);
}
.product-photo--cumin {
  background: linear-gradient(135deg, #6A2E0E 0%, #B8622A 45%, #8A4420 100%);
}
.product-photo--pumpkin {
  background: linear-gradient(135deg, #1E4A1A 0%, #3E7A34 45%, #2C5E26 100%);
}
.product-photo--driedfruit {
  background: linear-gradient(135deg, #7A2E10 0%, #C45828 45%, #9A3E1C 100%);
}
.product-photo--reddates {
  background: linear-gradient(135deg, #6A0000 0%, #B02020 45%, #880E0E 100%);
}
.product-photo--raisins {
  background: linear-gradient(135deg, #3C1050 0%, #7A3090 45%, #562070 100%);
}
.product-photo--mixednuts {
  background: linear-gradient(135deg, #6A5010 0%, #C4940C 45%, #9A7418 100%);
}

/* ── Gallery section ─────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  cursor: default;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(16, 32, 24, 0.14);
}

.gallery-card__shine {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.22) 0%, transparent 52%),
    radial-gradient(ellipse at 72% 78%, rgba(0,0,0,0.18) 0%, transparent 52%);
  pointer-events: none;
}

.gallery-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 18px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.62), transparent);
}

.gallery-card__overlay span {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .split--reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card--wide {
    grid-column: span 2;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .nav-shell {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 8px 0 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-nav.is-open {
    display: flex;
    padding: 10px 0 18px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .hero-stats,
  .strip,
  .product-grid,
  .product-grid--compact {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .product-card--wide {
    grid-column: auto;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lang-btn {
    padding: 5px 8px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
