/* ============================================================
   [COMPANY NAME] — Export Website Stylesheet
   Design system: editorial cream + deep forest green + saffron
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --green-deep: #173D2B;
  --green-leaf: #4F7D42;
  --saffron: #D99028;
  --cream: #F7F4EC;
  --sand: #E9E2D3;
  --charcoal: #1C241F;
  --white: #FFFFFF;

  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1220px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-pad: clamp(72px, 10vw, 140px);

  --shadow-soft: 0 10px 40px rgba(23, 61, 43, 0.08);
  --border: 1px solid rgba(28, 36, 31, 0.12);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 108px; }

/* Keep in-page anchor targets clear of the fixed header */
section[id], [id].section { scroll-margin-top: 108px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle grain texture over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
ul, ol { padding: 0; margin: 0; }
figure { margin: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); position: relative; }

/* ---------- Typography ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
.h2 em { font-style: italic; color: var(--green-leaf); }
.h2--light { color: var(--cream); }
.h2--light em { color: var(--saffron); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-leaf);
  margin: 0 0 1.2em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--saffron);
  flex: none;
}
.eyebrow--light { color: rgba(247, 244, 236, 0.75); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head__sub { font-size: 1.1rem; color: rgba(28, 36, 31, 0.72); }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  z-index: 200;
  background: var(--green-deep);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.btn--lg { padding: 17px 36px; font-size: 1rem; }

.btn--primary {
  background: var(--green-deep);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--green-leaf);
  box-shadow: 0 12px 30px rgba(23, 61, 43, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--green-deep);
  border-color: rgba(23, 61, 43, 0.35);
}
.btn--outline:hover {
  background: var(--green-deep);
  color: var(--cream);
}

.btn--saffron {
  background: var(--saffron);
  color: var(--green-deep);
}
.btn--saffron:hover { background: #e6a441; box-shadow: 0 12px 30px rgba(0,0,0,0.25); }

.btn--whatsapp {
  background: var(--green-leaf);
  color: var(--white);
  margin-top: 8px;
}
.btn--whatsapp:hover { background: var(--green-deep); }

.link-arrow {
  font-weight: 700;
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--saffron);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.link-arrow:hover { color: var(--saffron); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 18px;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(28, 36, 31, 0.08);
  padding-block: 12px;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1400px; /* widen the menubar so all links fit on one row */
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  flex: none;
}
.nav__logo-mark { color: var(--saffron); display: inline-flex; }
.nav__logo-img { height: 78px; width: auto; display: block; }

.nav__list {
  display: flex;
  gap: clamp(10px, 1.4vw, 22px);
  list-style: none;
}
.nav__link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  position: relative;
  padding-block: 6px;
  white-space: nowrap; /* keep each link on one line */
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.nav__menu { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 26px); }
.nav__cta { padding: 11px 22px; font-size: 0.86rem; white-space: nowrap; flex: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  z-index: 120;
}
.nav__toggle-bar {
  width: 26px; height: 2px;
  background: var(--green-deep);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

/* Mobile menu */
@media (max-width: 1080px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    background: var(--green-deep);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 92px var(--gutter) 48px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav__menu.is-open { transform: translateX(0); visibility: visible; }
  .nav__list { flex-direction: column; gap: 18px; width: 100%; }
  .nav__link {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
  }
  /* When the menu is open, the nav must NOT apply backdrop-filter: a filtered
     ancestor becomes the containing block for its position:fixed children,
     which would trap the full-screen overlay inside the ~140px header. */
  .nav.menu-open,
  .nav.menu-open.is-scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .nav.menu-open .nav__toggle-bar { background: var(--cream); }
  .nav.menu-open .nav__toggle-bar:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav.menu-open .nav__toggle-bar:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .nav__cta { background: var(--saffron); color: var(--green-deep); }
}

/* ---------- Solid nav (pages with a dark hero, e.g. products.html) ---------- */
.nav--solid {
  background: rgba(247, 244, 236, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(28, 36, 31, 0.08);
}

/* ---------- Nav dropdown (Products submenu) ---------- */
.nav__item--has-sub { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: 5px; }
.nav__caret { transition: transform 0.3s var(--ease-out); flex: none; }
.nav__item--has-sub:hover .nav__caret,
.nav__item--has-sub:focus-within .nav__caret { transform: rotate(180deg); }
.nav__submenu {
  position: absolute;
  top: 100%; left: -14px;
  margin-top: 10px;
  min-width: 232px;
  list-style: none;
  background: var(--white);
  border: var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 44px -20px rgba(23, 61, 43, 0.4);
  padding: 8px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
  z-index: 130;
}
.nav__submenu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 14px; }
.nav__item--has-sub:hover .nav__submenu,
.nav__item--has-sub:focus-within .nav__submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav__submenu a:hover { background: var(--sand); color: var(--green-deep); }

@media (max-width: 1080px) {
  /* Submenu is a collapsible accordion inside the mobile overlay — collapsed by
     default so the menu stays short and Contact + the CTA are above the fold.
     Tapping "Products" toggles .is-expanded (see main.js). */
  .nav__item--has-sub { display: flex; flex-direction: column; }
  .nav__submenu {
    position: static;
    visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none;
    margin: 0; min-width: 0;
    max-height: 0; opacity: 0; overflow: hidden;
    padding: 0 0 0 6px; gap: 12px;
    transition: max-height 0.4s var(--ease-out), opacity 0.3s, padding 0.3s;
  }
  .nav__item--has-sub.is-expanded .nav__submenu {
    max-height: 440px; opacity: 1; padding: 14px 0 4px 6px;
  }
  .nav__submenu::before { display: none; }
  .nav__submenu a { color: rgba(247, 244, 236, 0.82); font-size: 1.05rem; padding: 2px 0; }
  .nav__submenu a:hover { background: transparent; color: var(--saffron); }
  /* Show the caret as the accordion affordance and rotate it when open */
  .nav__caret { display: inline-block; transition: transform 0.3s var(--ease-out); }
  .nav__item--has-sub.is-expanded .nav__caret { transform: rotate(180deg); }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand); /* graceful fallback if the image fails */
  box-shadow: var(--shadow-soft);
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--a { width: 34%; height: 68%; right: 6%; top: 14%; }
.hero__img--b { width: 22%; height: 42%; right: 33%; top: 8%; opacity: 0.95; }
.hero__img--c { width: 18%; height: 34%; right: 28%; bottom: 6%; opacity: 0.9; }
.hero__wash {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--cream) 45%, rgba(247, 244, 236, 0.88) 60%, rgba(247, 244, 236, 0.15) 82%);
}

/* Pin the hero copy to the LEFT (it's a flex child of .hero, so override
   the auto-centering that .container applies) and keep it clear of the images. */
.hero__content { position: relative; text-align: left; margin-inline: 0 auto; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 5.6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 0.4em;
  color: var(--green-deep);
  max-width: 560px;
}
.hero__content .eyebrow, .hero__actions, .hero__trust { max-width: 560px; }
.hero__title em { font-style: italic; color: var(--green-leaf); }
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 500px;
  color: rgba(28, 36, 31, 0.78);
  margin-bottom: 2em;
}
.hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 2.4em; }
.hero__trust { font-size: 0.9rem; color: rgba(28, 36, 31, 0.65); }
.hero__trust strong { color: var(--green-deep); }

.hero__badge {
  position: absolute;
  right: clamp(20px, 7%, 110px);
  bottom: clamp(90px, 14%, 160px);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: var(--border);
  border-radius: 999px;
  padding: 12px 22px 12px 16px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--green-deep);
  box-shadow: var(--shadow-soft);
}
.hero__badge svg { color: var(--saffron); flex: none; }
.hero__badge strong { font-size: 0.85rem; }

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 36, 31, 0.6);
}
.hero__scroll-line {
  width: 52px; height: 1px;
  background: rgba(28, 36, 31, 0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--saffron);
  transform: translateX(-100%);
  animation: scroll-line 2.2s var(--ease-out) infinite;
}
@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Desktop: nudge the hero copy in from the far-left gutter so it doesn't hug
   the page edge (keeps it clear of the image collage on the right). */
@media (min-width: 921px) {
  .hero__content { margin-left: clamp(24px, 5vw, 96px); }
}

@media (max-width: 920px) {
  /* Mobile hero: a clean mango photo banner on top, crisp copy below it.
     Pixel-based so the absolute image + cream wash line up predictably. */
  .hero { flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 336px 0 72px; }
  .hero__img--a {
    width: 88%; height: 240px;
    left: 0; right: 0; top: 84px; margin-inline: auto;
    opacity: 1; border-radius: var(--radius-lg);
  }
  .hero__img--b, .hero__img--c { display: none; }
  /* Transparent over the banner, then solid cream under the copy. */
  .hero__wash { background: linear-gradient(180deg, rgba(247,244,236,0) 0px, rgba(247,244,236,0) 300px, var(--cream) 336px); }
  .hero__badge { position: static; margin-top: 30px; display: inline-flex; align-self: flex-start; }
}

/* ---------- Small phones: right-size hero + buttons ---------- */
@media (max-width: 600px) {
  .nav__logo-img { height: 54px; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }
  .btn--lg { padding: 14px 24px; font-size: 0.92rem; }
  .hero {
    min-height: auto;
    padding: 268px 0 56px;
  }
  .hero__img--a { width: 92%; height: 192px; top: 72px; }
  .hero__wash { background: linear-gradient(180deg, rgba(247,244,236,0) 0px, rgba(247,244,236,0) 236px, var(--cream) 272px); }
  .hero__title { font-size: clamp(2.1rem, 8.5vw, 2.9rem); margin-bottom: 0.5em; }
  .hero__sub { font-size: 1rem; margin-bottom: 1.6em; }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.8em;
  }
  .hero__badge {
    margin-top: 26px;
    padding: 10px 16px 10px 14px;
    font-size: 0.72rem;
  }
  .hero__badge svg { width: 18px; height: 18px; }
  /* Scroll cue overlaps content on small screens — hide it */
  .hero__scroll { display: none; }
}

/* ---------- Trust strip ---------- */
.trust {
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--white);
  padding-block: 30px;
}
.trust__inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-deep);
  transition: transform 0.3s var(--ease-out), color 0.3s;
}
.trust__item svg { color: var(--saffron); flex: none; }
.trust__item:hover { transform: translateY(-3px); color: var(--green-leaf); }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  background: var(--sand);
}
.about__stats {
  position: absolute;
  right: -18px;
  bottom: 30px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: grid;
  gap: 20px;
  box-shadow: 0 20px 50px rgba(23, 61, 43, 0.3);
  max-width: 260px;
}
.about__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--saffron);
}
.about__stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}
.about__copy p { color: rgba(28, 36, 31, 0.8); }
.about__copy .btn { margin-top: 12px; }

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__stats { right: 12px; bottom: -24px; }
  .about__copy { margin-top: 48px; }
}

/* ---------- Products ---------- */
.products { background: var(--sand); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
}
.pcard {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  aspect-ratio: 4 / 5;
  background: var(--green-deep); /* fallback if image fails */
  isolation: isolate;
}
.pcard__media { position: absolute; inset: 0; z-index: -1; }
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,61,43,0.05) 30%, rgba(23,61,43,0.82) 100%);
  transition: background 0.4s;
  z-index: 0;
}
.pcard:hover::after {
  background: linear-gradient(180deg, rgba(23,61,43,0.35) 0%, rgba(23,61,43,0.92) 100%);
}
.pcard__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: clamp(20px, 3vw, 30px);
}
.pcard__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
}
.pcard__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 500;
  margin: 8px 0 6px;
}
.pcard__desc {
  font-size: 0.9rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.45s, max-height 0.45s var(--ease-out);
  margin-bottom: 0;
}
.pcard:hover .pcard__desc, .pcard:focus-visible .pcard__desc {
  opacity: 0.92;
  max-height: 120px;
  margin-bottom: 12px;
}
.pcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
}
.pcard__cta svg { transition: transform 0.35s var(--ease-out); }
.pcard:hover .pcard__cta svg { transform: translateX(6px); }

.products__foot { text-align: center; margin-top: clamp(36px, 5vw, 56px); }

@media (max-width: 980px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .products__grid { grid-template-columns: 1fr; }
  .pcard { aspect-ratio: 4 / 4.4; }
  .pcard__desc { opacity: 0.92; max-height: 120px; margin-bottom: 12px; } /* always visible on touch */
}

/* ---------- Seasonality carousel ---------- */
.season { overflow: hidden; }
.season__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.season__nav { display: flex; gap: 10px; }
.season__btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(23, 61, 43, 0.3);
  background: transparent;
  color: var(--green-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
}
.season__btn:hover { background: var(--green-deep); color: var(--cream); }
.season__btn:disabled { opacity: 0.3; cursor: default; }
.season__btn:disabled:hover { background: transparent; color: var(--green-deep); }

.season__track-wrap { padding-inline: var(--gutter); }
.season__track {
  display: flex;
  gap: clamp(16px, 2vw, 26px);
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--sand) transparent;
  max-width: calc(var(--container) - 2 * var(--gutter));
  margin-inline: auto;
}
.scard {
  flex: 0 0 clamp(250px, 26vw, 320px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.scard__media { aspect-ratio: 5 / 4; overflow: hidden; background: var(--sand); }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.scard:hover .scard__media img { transform: scale(1.05); }
.scard__body { padding: 22px 22px 26px; }
.scard__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 0 0 4px; }
.scard__season {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}
.scard__desc { font-size: 0.9rem; color: rgba(28, 36, 31, 0.72); }

/* ---------- Quality ---------- */
.quality { background: var(--white); }
.qsteps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: clamp(48px, 7vw, 80px);
}
/* the saffron "journey line" — the signature motif */
.qsteps::before {
  content: "";
  position: absolute;
  top: 24px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron) 12%, var(--saffron) 88%, transparent);
  z-index: 0;
}
.qstep { position: relative; text-align: left; }
.qstep__num {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--saffron);
  color: var(--green-deep);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.qstep__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin: 0 0 6px; }
.qstep p { font-size: 0.9rem; color: rgba(28, 36, 31, 0.72); }

@media (max-width: 900px) {
  .qsteps { grid-template-columns: 1fr 1fr; }
  .qsteps::before { display: none; }
}
@media (max-width: 520px) { .qsteps { grid-template-columns: 1fr; } }

.quality__card {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  max-width: 780px;
}
.quality__card-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin: 0 0 20px; }
.quality__list { list-style: none; display: grid; gap: 12px; margin-bottom: 24px; }
.quality__list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-weight: 600;
}
.quality__list li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  flex: none;
  transform: translateY(-1px);
}
.quality__disclaimer {
  font-size: 0.8rem;
  color: rgba(28, 36, 31, 0.6);
  border-top: var(--border);
  padding-top: 16px;
  margin: 0;
}

/* ---------- Certifications: text + bordered logo grid ---------- */
.certs {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.certs__intro {
  padding: clamp(30px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.certs__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--green-deep);
}
.certs__text { color: rgba(28, 36, 31, 0.72); margin: 0 0 28px; max-width: 42ch; }
.certs__cta { align-self: flex-start; }
.certs__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: var(--border);
}
.certcell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px) 14px;
  min-height: 150px;
  box-shadow: inset -1px -1px 0 rgba(28, 36, 31, 0.1);
}
.certcell img { height: 56px; width: auto; max-width: 112px; object-fit: contain; }
.certcell span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.certcell--note span {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(28, 36, 31, 0.55);
}
.certs__disclaimer { max-width: 780px; margin-top: 24px; }
@media (max-width: 860px) {
  .certs { grid-template-columns: 1fr; }
  .certs__grid { border-left: 0; border-top: var(--border); }
}
@media (max-width: 520px) {
  .certs__grid { grid-template-columns: repeat(2, 1fr); }
  .certcell { min-height: 128px; }
}

/* ---------- Export process ---------- */
.steps {
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 880px;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(20px, 4vw, 48px);
  padding-block: clamp(26px, 4vw, 40px);
  border-bottom: 1px solid rgba(28, 36, 31, 0.12);
  position: relative;
}
.step:first-child { border-top: 1px solid rgba(28, 36, 31, 0.12); }
.step::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--saffron);
  transition: width 0.9s var(--ease-out) 0.2s;
}
.step.is-visible::before { width: 100%; }
.step__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-style: italic;
  color: var(--green-leaf);
  line-height: 1;
}
.step__title { font-size: 1.25rem; font-weight: 800; margin: 4px 0 8px; }
.step p { color: rgba(28, 36, 31, 0.75); margin: 0; max-width: 560px; }
.process__cta { margin-top: clamp(40px, 6vw, 60px); }

@media (max-width: 560px) { .step { grid-template-columns: 64px 1fr; } }

/* ---------- Global reach ---------- */
.global {
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
}
.global__lines { position: absolute; inset: 0; opacity: 0.9; }
.global__lines svg { width: 100%; height: 100%; }
.route {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
/* Routes draw in, hold, then retract — looping back and forth continuously */
.global.is-visible .route { animation: draw-route 6s var(--ease-out) infinite alternate; }
.global.is-visible .route:nth-child(2) { animation-delay: 0.4s; }
.global.is-visible .route:nth-child(3) { animation-delay: 0.8s; }
.global.is-visible .route:nth-child(4) { animation-delay: 1.2s; }
@keyframes draw-route {
  0%   { stroke-dashoffset: 1200; }
  55%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}
/* Destination dots gently pulse while routes are live */
.global__lines circle { transform-box: fill-box; transform-origin: center; }
.global.is-visible .global__dot { animation: dot-pulse 2.8s var(--ease-out) infinite; }
.global.is-visible .global__dot:nth-child(3) { animation-delay: 0.5s; }
.global.is-visible .global__dot:nth-child(4) { animation-delay: 1s; }
.global.is-visible .global__dot:nth-child(5) { animation-delay: 1.5s; }
@keyframes dot-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.5); }
}

.global__content { position: relative; max-width: 680px; }
.global__copy { font-size: 1.15rem; color: rgba(247, 244, 236, 0.85); }
.global__facts {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 28px 0 36px;
  border-left: 2px solid var(--saffron);
  padding-left: 22px;
}
.global__facts strong { color: var(--saffron); }

/* ---------- Bento why-partner ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.bento__cell {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.bento__cell:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(217, 144, 40, 0.5);
}
.bento__cell--wide { grid-column: span 2; }
.bento__cell--accent { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.bento__cell h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.bento__cell p { font-size: 0.94rem; color: rgba(28, 36, 31, 0.72); margin: 0; }
.bento__cell--accent p { color: rgba(247, 244, 236, 0.82); }

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__cell--wide { grid-column: span 2; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell--wide { grid-column: span 1; }
}

/* ---------- Gallery ---------- */
.gallery { background: var(--sand); }
.gallery__overlay-text { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.gallery__grid {
  columns: 3;
  column-gap: clamp(14px, 2vw, 24px);
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: clamp(14px, 2vw, 24px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.gallery__item img {
  width: 100%;
  transition: transform 0.7s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.045); }

@media (max-width: 860px) { .gallery__grid { columns: 2; } }
@media (max-width: 520px) { .gallery__grid { columns: 1; } }

/* ---------- FAQ ---------- */
.faq__inner {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.faq__list { display: grid; gap: 0; }
.faq__item {
  border-bottom: 1px solid rgba(28, 36, 31, 0.14);
}
.faq__item:first-child { border-top: 1px solid rgba(28, 36, 31, 0.14); }
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.25s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--green-leaf); }
.faq__icon {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: var(--saffron);
  translate: -50% -50%;
  transition: rotate 0.35s var(--ease-out);
}
.faq__icon::after { rotate: 90deg; }
.faq__item[open] .faq__icon::after { rotate: 0deg; }
.faq__a { overflow: hidden; }
.faq__a p {
  padding: 0 40px 24px 4px;
  margin: 0;
  color: rgba(28, 36, 31, 0.75);
}

@media (max-width: 820px) { .faq__inner { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact__details {
  margin: 30px 0 22px;
  display: grid;
  gap: 16px;
}
.contact__details div { display: grid; gap: 2px; }
.contact__details dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-leaf);
}
.contact__details dd { margin: 0; font-weight: 600; }
.contact__details a { text-decoration: none; border-bottom: 1px solid rgba(217, 144, 40, 0.5); }

.contact__map { margin-top: 30px; border-radius: var(--radius); overflow: hidden; border: var(--border); }
.contact__map-placeholder {
  background: var(--sand);
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(28, 36, 31, 0.6);
  padding: 24px;
}

.contact__form-wrap {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 46px);
  box-shadow: var(--shadow-soft);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form__field { margin-bottom: 18px; display: grid; gap: 7px; }
.form__field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.form__field label span { color: var(--saffron); }
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(28, 36, 31, 0.18);
  border-radius: 10px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--green-leaf);
  box-shadow: 0 0 0 3px rgba(79, 125, 66, 0.15);
}
.form__field input.is-invalid,
.form__field select.is-invalid,
.form__field textarea.is-invalid { border-color: #b3402e; }

/* Honeypot — visually removed but present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 6px 0 24px;
  font-size: 0.88rem;
}
.form__consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green-deep); }
.form__submit { width: 100%; justify-content: center; border: 0; }
.form__status { min-height: 24px; margin: 14px 0 0; font-weight: 700; font-size: 0.92rem; }
.form__status.is-success { color: var(--green-leaf); }
.form__status.is-error { color: #b3402e; }
.form__privacy { font-size: 0.78rem; color: rgba(28, 36, 31, 0.55); margin: 10px 0 0; }

@media (max-width: 920px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  /* Deeper forest tone than --green-deep so the footer steps down visually
     from the (green-deep) CTA band above it instead of merging into one slab. */
  background: linear-gradient(180deg, #102C1E 0%, #0B1F15 100%);
  color: rgba(247, 244, 236, 0.85);
  padding-top: clamp(72px, 9vw, 116px);
}
/* Elegant centred saffron divider between the CTA band and the footer. */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), 88%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 144, 40, 0.6) 22%, rgba(217, 144, 40, 0.6) 78%, transparent);
}
/* A small saffron marker centred on the divider for a considered, branded seam. */
.footer::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: var(--saffron);
  border-radius: 1px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 3fr;
  gap: clamp(30px, 5vw, 60px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0 0 4px;
}
.footer__logo-img {
  height: 126px;
  width: auto;
  display: block;
  margin: 0 0 14px;
}
.footer__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 18px;
}
.footer__statement { font-size: 0.92rem; max-width: 320px; }
.footer__social { list-style: none; display: flex; gap: 14px; margin-top: 22px; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 236, 0.25);
  color: var(--cream);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.footer__social a:hover { background: var(--saffron); border-color: var(--saffron); color: var(--green-deep); transform: translateY(-3px); }
.footer__col h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; display: grid; gap: 10px; font-size: 0.92rem; }
.footer__col a { text-decoration: none; opacity: 0.85; transition: opacity 0.25s, color 0.25s; }
.footer__col a:hover { opacity: 1; color: var(--saffron); }
.footer__bottom {
  border-top: 1px solid rgba(247, 244, 236, 0.14);
  padding-block: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer__bottom p { margin: 0; }
.footer__legal { list-style: none; display: flex; gap: 22px; }
.footer__legal a { text-decoration: none; opacity: 0.75; }
.footer__legal a:hover { opacity: 1; color: var(--saffron); }

@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 0;
  background: var(--green-deep);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s var(--ease-out), background 0.3s;
  box-shadow: 0 10px 26px rgba(23, 61, 43, 0.3);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--saffron); color: var(--green-deep); }

/* ---------- Custom cursor (large screens only) ---------- */
.cursor { display: none; }
@media (min-width: 1100px) and (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 34px; height: 34px;
    border: 1px solid rgba(217, 144, 40, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.3s;
    opacity: 0;
  }
  body.cursor-active .cursor { opacity: 1; }
  .cursor.is-hover {
    width: 56px; height: 56px;
    background: rgba(217, 144, 40, 0.12);
  }
}

/* ---------- Reveal animations ----------
   Reveal styles only apply when JS adds the `js` class to <html>.
   With JavaScript disabled, all content is fully visible. */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll-line::after { animation: none; }
  .route { stroke-dashoffset: 0; }
}

/* ---------- Export technical guide ---------- */
.guide { background: var(--cream); }
.guide__grid { max-width: 880px; }
.guide__item .faq__a p { padding: 0 40px 14px 4px; }
.guide__item .faq__a p:last-child { padding-bottom: 24px; }
.guide__item strong { color: var(--green-deep); }
.guide__disclaimer { max-width: 880px; margin-top: 34px; border-top: var(--border); padding-top: 18px; }

/* =====================================================================
   PRODUCTS PAGE (products.html)
   ===================================================================== */
.pagehead {
  padding-top: calc(var(--section-pad) * 0.7 + 60px);
  padding-bottom: calc(var(--section-pad) * 0.6);
  background: var(--green-deep);
  color: var(--cream);
}
.pagehead .eyebrow { color: var(--saffron); }
.pagehead .h2 { color: var(--cream); max-width: 14ch; }
.pagehead .h2 em { color: var(--saffron); }
.pagehead__sub {
  max-width: 62ch;
  margin-top: 18px;
  color: rgba(247, 244, 236, 0.82);
  font-size: 1.05rem;
}
.prodnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.prodnav__chip {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid rgba(247, 244, 236, 0.3);
  border-radius: 999px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.prodnav__chip:hover { background: var(--saffron); border-color: var(--saffron); color: var(--green-deep); }

.pcat { background: var(--cream); }
.pcat--alt { background: var(--sand); }
.pcat__head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 52px); }
.pcat__sub { margin-top: 12px; color: rgba(28, 36, 31, 0.72); font-size: 1.02rem; }

.prod__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.prod {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.prod:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -28px rgba(23, 61, 43, 0.45); }
.prod__media { position: relative; background: var(--sand); overflow: hidden; }
.prod__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.prod:hover .prod__media img { transform: scale(1.06); }
.prod__body { padding: clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; }
.prod__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; }
.prod__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin: 0; color: var(--green-deep); }
.prod__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-leaf);
}
.prod__desc { margin: 10px 0 16px; font-size: 0.92rem; color: rgba(28, 36, 31, 0.78); line-height: 1.55; }
.prod__specs { display: grid; gap: 0; margin: 0 0 18px; border-top: var(--border); }
.prod__specs > div {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: var(--border);
  font-size: 0.85rem;
}
.prod__specs dt { margin: 0; font-weight: 700; color: var(--green-deep); }
.prod__specs dd { margin: 0; color: rgba(28, 36, 31, 0.8); }
.prod .link-arrow { margin-top: auto; }

/* Private label feature block */
.privatelabel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.privatelabel__media { position: relative; min-height: 320px; }
.privatelabel__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.privatelabel__body { padding: clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px) 0; }
.privatelabel__list { list-style: none; margin: 18px 0 26px; display: grid; gap: 10px; }
.privatelabel__list li { display: flex; gap: 12px; align-items: baseline; font-size: 0.95rem; }
.privatelabel__list li::before {
  content: "";
  width: 7px; height: 7px; flex: none;
  border-radius: 50%;
  background: var(--saffron);
  transform: translateY(-1px);
}

/* Products page bottom CTA */
.pcta { background: var(--green-deep); color: var(--cream); text-align: center; }
.pcta__inner { max-width: 720px; margin-inline: auto; }
.pcta .h2 { color: var(--cream); }
.pcta__inner p { margin: 16px auto 0; max-width: 56ch; color: rgba(247, 244, 236, 0.82); }
.pcta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }

@media (max-width: 900px) {
  .prod__grid { grid-template-columns: 1fr; }
  .privatelabel { grid-template-columns: 1fr; }
  .privatelabel__media { min-height: 240px; }
  .privatelabel__body { padding: 0 clamp(20px, 5vw, 36px) clamp(28px, 6vw, 40px); }
}
@media (max-width: 520px) {
  .prod { grid-template-columns: 1fr; }
  .prod__media { height: 180px; }
}
