/* ===================================================
   HomeApples — Premium Apple Export Website
   Color palette derived from orchards & harvest:
   Deep forest green + crisp cream + apple red + warm gold
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
=================================================== */


/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --green-900: #0f2419;
  --green-800: #1e3d2f;
  --green-700: #2d5a40;
  --green-600: #3a7050;
  --green-500: #4a8760;
  --green-100: #e5f0e8;
  --green-50:  #f0f7f2;

  --red-700:   #9b2a2a;
  --red-600:   #b83232;
  --red-400:   #e05555;
  --red-100:   #fdeaea;

  --gold-600:  #b07d28;
  --gold-500:  #c8963c;
  --gold-300:  #e8b96a;
  --gold-100:  #fdf3e0;

  --cream:     #f8f5ef;
  --white:     #ffffff;
  --charcoal:  #1a1a1a;
  --gray-700:  #374151;
  --gray-500:  #6b7280;
  --gray-300:  #d1d5db;
  --gray-100:  #f3f4f6;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.16);
  --shadow-green: 0 8px 32px rgba(30,61,47,0.20);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  /* z-index scale */
  --z-base:    0;
  --z-float:   10;
  --z-sticky:  20;
  --z-nav:     50;
  --z-overlay: 80;
  --z-modal:   100;
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background: var(--green-900); /* prevents white flash at bottom on mobile overscroll */
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── LAYOUT UTILS ───────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px)  { .container { padding-inline: 2.5rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2rem; } }

.section { padding-block: 5rem; }
.section--lg { padding-block: 7rem; }

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
}

.display-xl {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.display-lg {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.display-md {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600;
}

.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-sm { font-size: 0.875rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  padding: 0.35rem 1rem;
  background: var(--green-50);
  border-radius: var(--radius-full);
  border: 1px solid var(--green-100);
  margin-bottom: 1.25rem;
}

.eyebrow--light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition);
  min-height: 48px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30,61,47,0.30);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--green-800);
  border: 2px solid var(--green-800);
}
.btn--outline-dark:hover {
  background: var(--green-800);
  color: var(--white);
}

.btn--red {
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(184,50,50,0.25);
}
.btn--red:hover {
  background: var(--red-700);
  transform: translateY(-2px);
}

.btn--lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }

/* ─── NAVIGATION ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding-block: 1.25rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(15,36,25,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding-block: 0.85rem;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav__logo-text span {
  color: var(--gold-300);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 0.25rem;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  min-height: 32px;
}

.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.lang-btn.active {
  background: var(--white);
  color: var(--green-800);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 2px;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__toggle:hover { background: rgba(255,255,255,0.1); }

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay-only items hidden on desktop */
.nav__ovl-head,
.nav__ovl-foot { display: none; }

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 90;
  }
  .nav__right { display: none; }

  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: linear-gradient(160deg, #091710 0%, var(--green-900) 100%);
    gap: 0;
    padding: 0;
    transform: translateX(105%);
    transition: transform 0.42s cubic-bezier(0.16,1,0.3,1);
    z-index: var(--z-overlay);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__links.open { transform: translateX(0); }

  .nav__ovl-head {
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    border-bottom: 1px solid rgba(248,245,239,0.09);
    min-height: 68px;
    flex-shrink: 0;
  }
  .nav__ovl-head .nav__logo-text { font-size: 1.3rem; }

  .nav__links > li:not(.nav__ovl-head):not(.nav__ovl-foot) {
    border-bottom: 1px solid rgba(248,245,239,0.05);
  }

  .nav__link {
    font-size: 1.65rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    padding: 0.9rem 1.5rem;
    width: 100%;
    color: rgba(248,245,239,0.85);
    display: block;
    border-radius: 0;
    transition: color 0.2s ease, padding-left 0.25s ease;
  }
  .nav__link:hover,
  .nav__link.active {
    color: var(--gold-400, #d4a84b);
    padding-left: 2.25rem;
    background: transparent;
  }

  .nav__ovl-foot {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    margin-top: auto;
    border-top: 1px solid rgba(248,245,239,0.09);
    background: rgba(0,0,0,0.15);
  }
  .nav__ovl-foot .lang-switcher { justify-content: center; background: rgba(248,245,239,0.06); }
  .nav__ovl-foot .lang-btn      { flex: 1; text-align: center; min-height: 44px; }
  .nav__ovl-foot .btn           { width: 100%; justify-content: center; min-height: 52px; font-size: 1rem; }
}

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, var(--green-700) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
}

.page-hero__decor {
  position: absolute;
  right: -5%;
  bottom: -20%;
  width: min(400px, 50vw);
  opacity: 0.06;
  pointer-events: none;
}

/* ─── HOME HERO ──────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 55%, #2a4a35 100%);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

/* Organic background shapes */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,150,60,0.08) 0%, transparent 70%);
  top: -15%;
  right: -10%;
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,135,96,0.12) 0%, transparent 70%);
  bottom: -10%;
  left: -8%;
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem 4rem;
}

.hero__content { max-width: 580px; }

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__title .accent {
  color: var(--gold-300);
  display: block;
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Apple glow disc — the signature element */
.hero__apple-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200,150,60,0.18) 0%, rgba(184,50,50,0.08) 45%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(30px);
}

.hero__apple {
  width: min(420px, 100%);
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__apple { animation: none; }
}

/* ─── STATS STRIP ────────────────────────────────── */
.stats {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-300);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid var(--gray-300);
  text-align: center;
}

.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--gray-300);
}
.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── ABOUT TEASER ───────────────────────────────── */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-teaser__image-wrap {
  position: relative;
}

.about-teaser__img-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.about-teaser__img-fallback {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--green-500) 0%, var(--green-800) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-teaser__img-fallback img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.about-teaser__badge {
  position: absolute;
  bottom: 5%;
  right: -5%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
}

.about-teaser__badge-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.about-teaser__badge-text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-800);
  font-family: var(--font-heading);
}

.about-teaser__badge-text span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.about-teaser__body p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ─── VARIETIES GRID ─────────────────────────────── */
.varieties { background: var(--cream); }

.varieties__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.variety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.variety-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.variety-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.variety-card__thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.variety-card__thumb img {
  width: 70%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  transition: transform var(--transition-slow);
}

.variety-card:hover .variety-card__thumb img {
  transform: scale(1.08) translateY(-4px);
}

.variety-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.variety-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.variety-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.variety-card__tags {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.04em;
}

/* Thumb color themes per variety */
.variety-card--gala     .variety-card__thumb { background: linear-gradient(135deg, #fde8d8 0%, #f9c4a0 100%); }
.variety-card--jonagold .variety-card__thumb { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.variety-card--szampion .variety-card__thumb { background: linear-gradient(135deg, #fee2e2 0%, #fca5a5 100%); }
.variety-card--ligol    .variety-card__thumb { background: linear-gradient(135deg, #ffe4e6 0%, #fda4af 100%); }
.variety-card--idared   .variety-card__thumb { background: linear-gradient(135deg, #fecdd3 0%, #fb7185 80%); }
.variety-card--golden   .variety-card__thumb { background: linear-gradient(135deg, #fef9c3 0%, #fde047 100%); }

/* ─── VARIETIES STACKING CARDS ───────────────────── */

/* Desktop: track clips cards sliding in from below */
.vs__track {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.vs__card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.vs__card--1 { background: var(--cream);  z-index: 1; }
.vs__card--2 { background: #ede8de;       z-index: 2; }
.vs__card--3 { background: var(--cream);  z-index: 3; }
.vs__card--4 { background: #ede8de;       z-index: 4; }
.vs__card--5 { background: var(--cream);  z-index: 5; }
.vs__card--6 { background: #ede8de;       z-index: 6; }

.vs__card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
  width: 100%;
}

.vs__card-inner--rev { flex-direction: row-reverse; }

/* Info side */
.vs__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 480px;
}

.vs__vname {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

.vs__vdesc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.vs__vtags {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-600);
}

.vs__vcta { align-self: flex-start; }

/* Apple circle */
.vs__fig {
  flex-shrink: 0;
  width: clamp(220px, 26vw, 380px);
  height: clamp(220px, 26vw, 380px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.13);
  margin: 0;
}

.vs__fig img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.18));
}

.vs__fig--gala     { background: linear-gradient(135deg,#fde8d8,#f9c4a0); }
.vs__fig--jonagold { background: linear-gradient(135deg,#fef3c7,#fde68a); }
.vs__fig--szampion { background: linear-gradient(135deg,#fee2e2,#fca5a5); }
.vs__fig--ligol    { background: linear-gradient(135deg,#ffe4e6,#fda4af); }
.vs__fig--idared   { background: linear-gradient(135deg,#fecdd3,#fb7185); }
.vs__fig--golden   { background: linear-gradient(135deg,#fef9c3,#fde047); }

/* ── Mobile: CSS sticky stacking (same cover effect as desktop, no GSAP) ── */
@media (max-width: 768px) {
  .vs__track {
    height: auto;
    overflow: visible;
  }

  /* Each card sticks at top:0 and stays there while later cards
     slide up from below and cover it — pure CSS, no scroll blocking.
     inset:auto resets the desktop absolute inset:0; top:0 must come
     AFTER inset:auto so it isn't overridden by the auto shorthand.  */
  .vs__card {
    position: sticky;
    inset: auto;
    top: 0;
    height: 100svh;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 68px; /* clear fixed nav */
  }

  .vs__card-inner,
  .vs__card-inner--rev {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    justify-content: center;
  }

  .vs__info  { align-items: center; max-width: 100%; order: 2; }
  .vs__fig   { order: 1; width: clamp(140px, 48vw, 210px); height: clamp(140px, 48vw, 210px); }
  .vs__vname { font-size: clamp(1.9rem, 9vw, 3rem); }
  .vs__vdesc { font-size: 0.875rem; max-width: 30ch; }
  .vs__vcta  { align-self: center; }
}

/* ─── FEATURES ───────────────────────────────────── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  border-color: var(--green-100);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green-700);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,150,60,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.65;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding-block: 4rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer__brand-text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__list li { margin-bottom: 0.6rem; }

.footer__list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__list a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ─── ABOUT PAGE ─────────────────────────────────── */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story__text p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-600), var(--green-100));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible { opacity: 1; transform: translateX(0); }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background: var(--green-600);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-600);
}

.timeline-item__year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.3rem;
}

.timeline-item__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.timeline-item__text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Values */
.values { background: var(--cream); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.value-card__text {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Region section */
.region {
  background: var(--green-800);
  color: var(--white);
}

.region__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.region__map-embed {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
  line-height: 0;
}

.region__map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.region__content p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

/* ─── OFFER PAGE ─────────────────────────────────── */
.offer-varieties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.offer-card__thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-card__thumb img {
  width: 65%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.15));
  transition: transform var(--transition-slow);
}

.offer-card:hover .offer-card__thumb img {
  transform: scale(1.07) translateY(-3px);
}

.offer-card__body { padding: 1.75rem; }

.offer-card__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.offer-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.offer-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
}

/* color-match thumb themes for offer cards */
.offer-card--gala     .offer-card__thumb { background: linear-gradient(135deg,#fde8d8,#f9c4a0); }
.offer-card--jonagold .offer-card__thumb { background: linear-gradient(135deg,#fef3c7,#fde68a); }
.offer-card--szampion .offer-card__thumb { background: linear-gradient(135deg,#fee2e2,#fca5a5); }
.offer-card--ligol    .offer-card__thumb { background: linear-gradient(135deg,#ffe4e6,#fda4af); }
.offer-card--idared   .offer-card__thumb { background: linear-gradient(135deg,#fecdd3,#fb7185); }
.offer-card--golden   .offer-card__thumb { background: linear-gradient(135deg,#fef9c3,#fde047); }

/* Export process */
.export-process { background: var(--cream); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--green-200,#b8d9c3), var(--green-100));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-step__num {
  width: 56px;
  height: 56px;
  background: var(--green-800);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-green);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.process-step__text {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─── CONTACT PAGE ───────────────────────────────── */
.contact-split__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { }

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-info__item-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-700);
}

.contact-info__item-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.2rem;
}

.contact-info__item-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group:last-of-type { margin-bottom: 1.75rem; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.04em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-300); }

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(74,135,96,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  display: none;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--green-700);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.form-success.show { display: block; }

/* Map embed */
.map-embed {
  margin-top: 5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
}

@media (max-width: 600px) {
  .map-embed { margin-top: 3rem; }
  .map-embed iframe { height: 280px; }
}

/* ─── SCROLL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── TEXT EFFECT SYSTEM ─────────────────────────── */
.te-host { display: inline; }
h1.te-host, h2.te-host, h3.te-host, h4.te-host,
p.te-host, span.te-host, div.te-host { display: block; }

/* blur preset */
.te-item.te-blur {
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.55s ease, filter 0.55s ease;
  will-change: opacity, filter;
}
.te-item.te-blur.te-show { opacity: 1; filter: blur(0); }

/* slide preset */
.te-item.te-slide {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.te-item.te-slide.te-show { opacity: 1; transform: translateY(0); }

/* scale preset — spring bounce */
.te-item.te-scale {
  opacity: 0;
  transform: scale(0.45) translateY(6px);
  transition: opacity 0.5s cubic-bezier(0.34,1.56,0.64,1),
              transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  will-change: opacity, transform;
}
.te-item.te-scale.te-show { opacity: 1; transform: scale(1) translateY(0); }

/* fade preset */
.te-item.te-fade {
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: opacity;
}
.te-item.te-fade.te-show { opacity: 1; }

/* ─── PARTICLES CANVAS ───────────────────────────── */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ─── CURSOR GLOW ────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(74,135,96,0.09) 0%,
    rgba(200,150,60,0.04) 45%,
    transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9;
  will-change: left, top;
  mix-blend-mode: screen;
}

/* ─── DECORATIVE SCROLL-LINE ─────────────────────── */
.anim-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--green-500);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.visible .anim-underline,
.te-show ~ .anim-underline { width: 100%; }
/* trigger via parent becoming visible */
.eyebrow.visible .anim-underline { width: 100%; }

/* ─── HERO INNER z-index fix (above canvas) ──────── */
.hero__inner { position: relative; z-index: 1; }

/* ─── ENHANCED HERO GLOW ─────────────────────────── */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.12); }
}
.hero__apple-glow {
  animation: pulseGlow 4s ease-in-out infinite;
}

/* ─── HERO TITLE accent underline ───────────────── */
.hero__title .accent {
  position: relative;
  display: block;
}
.hero__title .accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
}
.hero__title .accent.te-animated::after { width: 100%; }

/* ─── BLOB MORPH decoration ──────────────────────── */
@keyframes morphBlob {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  33%  { border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%; }
  66%  { border-radius: 30% 70% 40% 60% / 60% 40% 60% 40%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}
.blob-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: morphBlob 10s ease-in-out infinite;
}

/* ─── STAT ITEM number highlight ────────────────── */
.stat-item__number {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── PROCESS STEP hover lift ───────────────────── */
.process-step {
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 1.75rem 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ─── FEATURE CARD icon pulse on hover ───────────── */
.feature-card:hover .feature-card__icon {
  background: var(--green-700);
}
.feature-card:hover .feature-card__icon svg {
  stroke: var(--white);
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* ─── VALUE CARD number shine ───────────────────── */
.value-card__num {
  background: linear-gradient(135deg, var(--green-100) 0%, var(--green-50) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 4rem;
  transition: var(--transition);
}
.value-card:hover .value-card__num {
  background: linear-gradient(135deg, var(--green-200,#b8d9c3) 0%, var(--green-100) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ─── TIMELINE DOT pulse ────────────────────────── */
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,135,96,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(74,135,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,135,96,0); }
}
.timeline-item.visible::before {
  animation: dotPulse 1.5s ease-out 0.3s 1;
}

/* ─── PAGE HERO backdrop waves ───────────────────── */
@keyframes waveShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.page-hero {
  background: linear-gradient(
    -45deg,
    var(--green-900),
    var(--green-800),
    #1e4a30,
    var(--green-700)
  );
  background-size: 400% 400%;
  animation: waveShift 12s ease infinite;
}

/* ─── SECTION HEADING animate-line ──────────────── */
.section-heading-line {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.section-heading-line::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.4s;
}
.visible .section-heading-line::after,
.te-show .section-heading-line::after {
  transform: scaleX(1);
}

/* ─── EYEBROW glow on reveal ─────────────────────── */
@keyframes eyebrowGlow {
  from { box-shadow: 0 0 0 0 rgba(74,135,96,0.3); }
  to   { box-shadow: 0 0 12px 4px rgba(74,135,96,0); }
}
.eyebrow.visible { animation: eyebrowGlow 0.8s ease-out 0.3s 1; }

/* ─── NAV scroll shrink ──────────────────────────── */
.nav.scrolled .nav__logo-icon {
  transform: scale(0.9);
  transition: transform var(--transition);
}

/* ─── PREFERS REDUCED MOTION override ───────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__canvas { display: none; }
  .cursor-glow  { display: none; }
  .hero__apple-glow { animation: none; }
  .page-hero { animation: none; background: var(--green-800); }
  .te-item { transition: none !important; }
  .anim-underline { transition: none; width: 100%; }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* overflow:hidden on a 100svh element creates a false scroll container on iOS —
     clip-path:inset(0) gives identical visual clipping without that side-effect. */
  .hero {
    overflow: visible;
    clip-path: inset(0);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 1.25rem 1.5rem;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    width: 100%;
  }
  .hero__title {
    font-size: clamp(2.1rem, 8.5vw, 3.2rem);
    margin-bottom: 0.85rem;
  }
  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    max-width: 38ch;
  }
  .hero__visual { display: none; }
  .hero__actions { justify-content: center; }
  .about-teaser__grid { grid-template-columns: 1fr; }
  .about-teaser__image-wrap { max-width: 400px; margin-inline: auto; }
  .variety-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-varieties__grid { grid-template-columns: repeat(2, 1fr); }
  .story__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .region__grid { grid-template-columns: 1fr; }
  .contact-split__grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); padding: 1.5rem 1rem; }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--gray-200); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }
}

@media (max-width: 600px) {
  .section { padding-block: 3.5rem; }
  .variety-grid { grid-template-columns: 1fr; }
  .offer-varieties__grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .lang-btn { min-height: 44px; padding: 0.4rem 0.9rem; }
}

/* ─── HERO MOBILE SLIDER ────────────────────────── */

.hero__slider { display: none; } /* desktop: hidden */

@media (max-width: 900px) {
  .hero__slider {
    display: block;
    width: 100%;
    height: 25vh;
    min-height: 150px;
    max-height: 230px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    margin-top: 1.5rem;
    flex-shrink: 0;
    touch-action: pan-y; /* vertical scroll always native; horizontal goes to JS swipe */
    /* layered shadow: depth + outer glow + top edge highlight */
    box-shadow:
      0 32px 72px rgba(0,0,0,0.48),
      0 10px 28px rgba(0,0,0,0.28),
      0 0 0 1px rgba(255,255,255,0.09),
      inset 0 1px 0 rgba(255,255,255,0.14);
  }

  /* Glass-like inner frame overlay */
  .hero__slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.07) 0%,
        transparent 22%,
        transparent 68%,
        rgba(0,0,0,0.26) 100%);
    pointer-events: none;
    z-index: 10;
  }

  .hero__slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero__slide--active { opacity: 1; }

  .hero__slide-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* Per-variety gradient backgrounds */
  .hs--gala     { background: linear-gradient(150deg, #122a1e 0%, #1e4530 55%, #28573c 100%); }
  .hs--jonagold  { background: linear-gradient(150deg, #1e2e10 0%, #2e4518 55%, #385420 100%); }
  .hs--szampion  { background: linear-gradient(150deg, #2e1610 0%, #4a2418 55%, #582c20 100%); }
  .hs--golden    { background: linear-gradient(150deg, #2a2208 0%, #443514 55%, #523f1c 100%); }

  /* Vignette — soft edges around the image */
  .hero__slide-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 85% 75% at 50% 50%, transparent 38%, rgba(0,0,0,0.28) 100%),
      radial-gradient(ellipse 70% 55% at 50% 22%, rgba(255,255,255,0.055) 0%, transparent 55%);
    pointer-events: none;
    z-index: 2;
  }

  .hero__slide-inner img {
    height: 84%;
    width: auto;
    max-width: 64%;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.45));
    user-select: none;
    pointer-events: none;
    position: relative;
    z-index: 1;
  }

  /* Subtle variety name, bottom-right */
  .hero__slide-name {
    position: absolute;
    bottom: 15px;
    right: 18px;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: rgba(255,255,255,0.28);
    font-style: italic;
    letter-spacing: 0.04em;
    pointer-events: none;
    z-index: 11;
  }
}

/* ─── CINEMATIC FOOTER ───────────────────────────── */

/* main needs a stacking context so it covers the fixed footer during scroll */
main {
  position: relative;
  z-index: 1;
  background: var(--white);
}

@keyframes cf-breathe {
  0%   { transform: translate(-50%,-50%) scale(1);    opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(1.18); opacity: 1;   }
}
@keyframes cf-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes cf-heartbeat {
  0%, 100% { transform: scale(1); }
  14%, 42% { transform: scale(1.35); }
  28%      { transform: scale(1); }
}

/* Curtain reveal wrapper — clips the fixed footer to its own bounds */
.cf-wrap {
  position: relative;
  height: 100svh;
  height: 100vh;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* The footer: fixed to viewport bottom, revealed by wrapper scrolling in */
.cf {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  height: 100vh;
  background: var(--green-900);
  color: rgba(248,245,239,0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-body);
  /* overflow intentionally omitted — clip-path on .cf-wrap clips desktop;
     text/filters must not be clipped */
}

/* Aurora glow blob */
.cf__aurora {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72vw;
  height: 52vh;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201,147,62,0.14) 0%,
    rgba(45,90,64,0.22) 45%,
    transparent 70%
  );
  filter: blur(70px);
  animation: cf-breathe 9s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid lines */
.cf__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(248,245,239,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(248,245,239,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  pointer-events: none;
  z-index: 0;
}

/* Giant watermark text */
.cf__giant {
  position: absolute;
  bottom: -1vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(18vw, 24vw, 32vw);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(248,245,239,0.06);
  background: linear-gradient(180deg, rgba(248,245,239,0.1) 0%, transparent 60%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Diagonal marquee strip */
.cf__marquee-band {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: rgba(15,36,25,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(248,245,239,0.07);
  border-bottom: 1px solid rgba(248,245,239,0.07);
  padding-block: 0.85rem;
  transform: rotate(-1.5deg) scaleX(1.08);
  z-index: 2;
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
}

.cf__marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: cf-marquee 38s linear infinite;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.45);
  white-space: nowrap;
}

.cf__marquee-sep { color: var(--gold-500); font-size: 0.6rem; }

/* Centre content */
.cf__main {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding-inline: 2rem;
  padding-top: 7rem;
  padding-bottom: 1.5rem;
  text-align: center;
  gap: 1.6rem;
}

/* Logo */
.cf__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity var(--transition);
}
.cf__logo:hover { opacity: 1; }
.cf__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.cf__logo-text span { color: var(--gold-500); }

/* Heading */
.cf__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--cream);
  text-shadow: 0 0 50px rgba(248,245,239,0.08);
  margin: 0;
  overflow: visible;
}
.cf__heading em {
  font-style: italic;
  display: block;
  background: linear-gradient(135deg, #d4a84b 0%, var(--gold-500) 55%, #e8b96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* no drop-shadow — filter gets clipped at element paint boundary */
  overflow: visible;
  padding-bottom: 0.1em; /* room for descenders like the ? tail */
}

/* CTAs row */
.cf__ctas {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Nav pills row */
.cf__nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Glass pill base */
.cf__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.65rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(248,245,239,0.13);
  background: rgba(248,245,239,0.05);
  color: rgba(248,245,239,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
  letter-spacing: 0.01em;
  line-height: 1;
}
.cf__pill:hover {
  background: rgba(248,245,239,0.1);
  border-color: rgba(201,147,62,0.5);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.32), inset 0 1px 0 rgba(248,245,239,0.1);
}
.cf__pill:focus-visible {
  outline: 2px solid var(--gold-400,#d4a84b);
  outline-offset: 3px;
}

/* Gold filled */
.cf__pill--gold {
  background: var(--gold-500);
  border-color: var(--gold-400,#d4a84b);
  color: var(--green-900);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(201,147,62,0.2);
}
.cf__pill--gold:hover {
  background: #d4a84b;
  border-color: var(--gold-300);
  color: var(--green-900);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201,147,62,0.38);
}

/* Outline green pill */
.cf__pill--outline {
  background: transparent;
  border-color: rgba(248,245,239,0.28);
  color: var(--cream);
}
.cf__pill--outline:hover {
  background: rgba(248,245,239,0.07);
  border-color: rgba(248,245,239,0.48);
}

/* Small pill */
.cf__pill--sm {
  padding: 0.48rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Bottom bar */
.cf__bottom {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 3rem;
  border-top: 1px solid rgba(248,245,239,0.08);
  background: rgba(15,36,25,0.55);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.cf__copy {
  font-size: 0.73rem;
  color: rgba(248,245,239,0.38);
  letter-spacing: 0.06em;
}

.cf__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.5);
}

.cf__heart {
  color: #c0392b;
  animation: cf-heartbeat 2.2s cubic-bezier(0.25,1,0.5,1) infinite;
  display: inline-block;
}

.cf__bottom-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cf__top {
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  flex-shrink: 0;
}
.cf__top svg {
  color: rgba(248,245,239,0.65);
  transition: transform 0.3s ease, color 0.3s ease;
}
.cf__top:hover svg {
  color: var(--cream);
  transform: translateY(-2px);
}

/* ─── CINEMATIC FOOTER — RESPONSIVE ─────────────── */
@media (max-width: 768px) {
  /* Disable the fixed/clip-path trick on mobile */
  .cf-wrap {
    height: auto;
    clip-path: none;
  }
  .cf {
    position: static;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }
  .cf__main { padding-top: 5rem; padding-bottom: 2rem; gap: 1.4rem; }
  .cf__heading { font-size: clamp(2.4rem, 11vw, 4rem); }
  .cf__bottom { padding: 1.1rem 1.25rem; padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); flex-direction: column; align-items: flex-start; }
  .cf__bottom-right { align-self: flex-end; }
}

@media (max-width: 480px) {
  .cf__ctas { flex-direction: column; width: 100%; max-width: 280px; }
  .cf__pill--gold, .cf__pill--outline { width: 100%; justify-content: center; }
  .cf__giant { font-size: 28vw; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cf__aurora      { animation: none; }
  .cf__marquee-track { animation: none; }
  .cf__heart       { animation: none; }
}

/* ─── MOBILE CTA BAR ─────────────────────────────── */
.mob-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,24,16,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(248,245,239,0.1);
  padding: 0.7rem 1rem;
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
  gap: 0.65rem;
  align-items: center;
  z-index: 75;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mob-cta.nav-open { opacity: 0; pointer-events: none; transform: translateY(6px); }

@media (max-width: 768px) {
  .mob-cta { display: flex; }
  main      { padding-bottom: 0; }
  main::after {
    content: '';
    display: block;
    height: 68px;
    background: var(--green-900);
  }
}
@media (max-width: 480px) {
  .stat-item__number { font-size: 2.2rem; }
  .stat-item__label  { font-size: 0.8rem; }
}

.mob-cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: rgba(248,245,239,0.82);
  font-size: 0.875rem;
  font-weight: 600;
  min-height: 48px;
  padding: 0 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(248,245,239,0.18);
  flex: 1;
  background: rgba(248,245,239,0.06);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.mob-cta__phone:hover,
.mob-cta__phone:active {
  background: rgba(248,245,239,0.13);
  color: var(--cream);
}

.mob-cta__btn {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 0 1.25rem;
  transition: background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.mob-cta__btn:hover,
.mob-cta__btn:active { background: var(--green-700); }

/* ═══════════════════════════════════════════════════
   OFFER PAGE — EXPANDED SECTIONS
═══════════════════════════════════════════════════ */

/* Additional variety card colour gradients */
.offer-card--gala-must    .offer-card__thumb { background: linear-gradient(135deg,#fca5a5,#dc2020); }
.offer-card--gala-royal   .offer-card__thumb { background: linear-gradient(135deg,#fed7aa,#f97316); }
.offer-card--gala-schniga .offer-card__thumb { background: linear-gradient(135deg,#fca5a5,#b91c1c); }
.offer-card--gala-schnico .offer-card__thumb { background: linear-gradient(135deg,#f87171,#7f1d1d); }
.offer-card--gloster      .offer-card__thumb { background: linear-gradient(135deg,#fecdd3,#881337); }
.offer-card--golden-rei   .offer-card__thumb { background: linear-gradient(135deg,#fef3c7,#f59e0b); }

/* 4-column variety grid variant */
.offer-varieties__grid--four { grid-template-columns: repeat(4, 1fr); }

/* ─── INTRO SECTION ─── */
.offer-intro { background: var(--white); }

.offer-intro__body {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.offer-intro__text {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.offer-intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offer-intro__stat {
  background: var(--green-50);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--green-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-intro__stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offer-intro__stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.offer-intro__stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ─── VARIETIES NOTE ─── */
.varieties-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green-600);
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.varieties-note strong { color: var(--charcoal); }

/* ─── ECOLOGICAL SECTION ─── */
.offer-eco {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.offer-eco::before {
  content: '';
  position: absolute;
  right: -8%;
  top: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,150,60,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.offer-eco__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.offer-eco__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1rem;
}

.offer-eco__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.offer-eco__text {
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
}

.offer-eco__cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-300);
}

.offer-eco__cert-badge svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-300);
}

.offer-eco__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offer-eco__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.offer-eco__icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-eco__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-300);
}

.offer-eco__item-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.offer-eco__item-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

/* ─── PACKAGING SECTION ─── */
.offer-packaging { background: var(--cream); }

.packaging-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.packaging-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.packaging-col__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--green-100);
}

.packaging-col__head-icon {
  width: 48px;
  height: 48px;
  background: var(--green-800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.packaging-col__head-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.packaging-col__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.2;
}

.packaging-col__sub {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}

.packaging-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.packaging-item:last-child { border-bottom: none; padding-bottom: 0; }

.packaging-item__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--green-600);
  border-radius: 50%;
  margin-top: 0.42rem;
}

.packaging-item__title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.packaging-item__text {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ─── STORAGE / CA·ULO SECTION ─── */
.offer-storage { background: var(--white); }

.offer-storage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.offer-storage__visual {
  background: linear-gradient(145deg, var(--green-900), var(--green-800));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.offer-storage__visual::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,150,60,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-storage__tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,185,106,0.12);
  border: 1px solid rgba(232,185,106,0.25);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.offer-storage__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.offer-storage__stat-box {
  padding: 1.25rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}

.offer-storage__stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.offer-storage__stat-label {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.45;
}

.offer-storage__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-900);
  margin-bottom: 1rem;
}

.offer-storage__text {
  font-size: 0.98rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.offer-storage__points {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.offer-storage__point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.offer-storage__point::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--green-600);
  border-radius: 50%;
  margin-top: 0.42rem;
}

/* ─── B2B COOPERATION SECTION ─── */
.offer-b2b { background: var(--cream); }

.offer-b2b__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.offer-b2b__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-b2b__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offer-b2b__icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.offer-b2b__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green-700);
}

.offer-b2b__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.offer-b2b__text {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─── RESPONSIVE — NEW OFFER ELEMENTS ─── */
@media (max-width: 1100px) {
  .offer-varieties__grid--four { grid-template-columns: repeat(3, 1fr); }
  .offer-eco__grid { gap: 3.5rem; }
}

@media (max-width: 900px) {
  .offer-varieties__grid--four { grid-template-columns: repeat(2, 1fr); }
  .offer-eco__grid             { grid-template-columns: 1fr; gap: 3rem; }
  .packaging-cols              { grid-template-columns: 1fr; }
  .offer-storage__grid         { grid-template-columns: 1fr; gap: 3rem; }
  .offer-b2b__grid             { grid-template-columns: repeat(2, 1fr); }
  .offer-intro__stats          { gap: 1rem; }
}

@media (max-width: 600px) {
  .offer-varieties__grid--four { grid-template-columns: 1fr; }
  .offer-intro__stats          { grid-template-columns: 1fr; }
  .offer-b2b__grid             { grid-template-columns: 1fr; }
  .offer-storage__stats-grid   { grid-template-columns: 1fr 1fr; }
}
