:root {
  --earth: #0f110a;
  --moss: #1e3a12;
  --leaf: #3d6b32;
  --sage: #6fa05f;
  --cream: #f4efe4;
  --wheat: #e6d5b0;
  --clay: #c07840;
  --bark: #4a2e1a;
  --gold: #d4a843;
  --deep: #080c05;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* body base: Tailwind classes on <body> */

/* ── CURSOR ── (above modals e.g. .p-lightbox z-index 10020) ── */
#cur {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10100;
  width: 12px;
  height: 12px;
  background: var(--leaf);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s, opacity .2s ease;
  mix-blend-mode: normal;
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

#cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10099;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--leaf);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .25s, opacity .2s ease;
  mix-blend-mode: normal;
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

body:has(a:hover) #cur,
body:has(button:hover) #cur {
  width: 26px;
  height: 26px;
  background: var(--clay);
}

body:has(a:hover) #cur-ring,
body:has(button:hover) #cur-ring {
  width: 54px;
  height: 54px;
  border-color: var(--clay);
}

/* ── GRAIN ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  opacity: .03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── GOOGLE TRANSLATE (hidden native UI; custom modal controls language) ── */
#google_translate_element {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}

.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
#\:1\.container,
#goog-gt-vt,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  max-height: 0 !important;
  pointer-events: none !important;
}

body {
  top: 0 !important;
}

html,
html body,
body.skiptranslate,
html.skiptranslate,
html[style*="top"],
body[style*="top"] {
  top: 0 !important;
  margin-top: 0 !important;
}

.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget-icon {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

.lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(61, 107, 50, 0.24);
  background: #e7efe3;
  color: #2b4231;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  min-height: 2.6rem;
  padding: 0.55rem 0.65rem;
  transition: transform 0.16s ease, background 0.16s ease;
}

.lang-opt:hover {
  transform: translateY(-1px);
  background: #dbe8d5;
}

.lang-opt.is-active {
  background: linear-gradient(145deg, #2a5d34 0%, #3d7a44 100%);
  color: #f4efe4;
  border-color: rgba(30, 58, 18, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 2px rgba(61, 107, 50, 0.22);
  position: relative;
  padding-right: 1.45rem;
}

.lang-opt.is-active::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0.42rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.62rem;
  opacity: 0.95;
}

.lang-opt.is-active::after {
  content: 'Current';
  position: absolute;
  left: 0.4rem;
  top: -0.55rem;
  font-size: 0.58rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  color: #204827;
  background: #e8f3e3;
  border: 1px solid rgba(32, 72, 39, 0.22);
  border-radius: 999px;
  padding: 0.08rem 0.34rem;
}

.lang-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(61, 107, 50, 0.28);
  background: #edf4e9;
  color: #275333;
  border-radius: 0.55rem;
  padding: 0.5rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.lang-more-btn:hover {
  background: #dfeede;
}

.lang-more-select {
  width: 100%;
  min-height: 2.35rem;
  border: 1px solid rgba(61, 107, 50, 0.3);
  border-radius: 0.5rem;
  background: #fff;
  color: #21422a;
  padding: 0.45rem 0.6rem;
  font-size: 0.85rem;
}

.lang-more-apply {
  min-height: 2.35rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  background: #2f6b34;
  color: #f4efe4;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.lang-more-apply:hover {
  background: #3b7f42;
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.nav-links a.nav-translate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
}

.nav-links a.nav-translate-icon i {
  font-size: 1.35rem;
}

#langModalPanel {
  border-color: rgba(61, 107, 50, 0.24) !important;
  background: #f4efe4 !important;
}

#langModalPanel #langModalTitle {
  color: #244c2a !important;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--wheat);
}

::-webkit-scrollbar-thumb {
  background: var(--leaf);
}

/* ── PAGE SYSTEM ── */
.page {
  display: none;
}

.page.active {
  display: block;
  overflow-x: hidden;
}

/* Home: stack above fixed first-viewport hero background.
   Keep z-index below #site-footer so the fixed hero layer (inside #page-home) does not paint over the global footer. */
#page-home {
  position: relative;
  z-index: 1;
}

/* Dark page canvas on Home so mobile overscroll / rubber-band and any sub-pixel
   gaps don’t flash Tailwind body cream behind dark sections. */
#page-home.active {
  background-color: #0c1810;
}

body:has(#page-home.active),
html:has(#page-home.active) {
  background-color: #0c1810;
}

/* Global footer sits after #page-* in index.html; must stack above #page-home (z-index:1) or fixed hero BG covers it on Home */
#site-footer {
  position: relative;
  /* z-index: 3; */
}

/* Hero first viewport: full-bleed photo + dark forest tint + subtle grid (matches hero-slider art direction) */
.hero-viewport-fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #0f1f16;
}

.hero-slider-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  display: block;
  z-index: 0;
  transform: translateZ(0);
  filter: saturate(0.92) contrast(1.05) brightness(0.55);
}

.hero-slider-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 80% at 50% 35%, rgba(45, 78, 52, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 120% 90% at 50% 100%, rgba(6, 14, 10, 0.65) 0%, transparent 45%),
    linear-gradient(165deg, rgba(18, 42, 28, 0.5) 0%, rgba(8, 22, 14, 0.88) 48%, rgba(5, 12, 8, 0.94) 100%);
}

.hero-slider-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(244, 239, 228, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mix-blend-mode: soft-light;
}

/* Opaque bands so scrolled sections hide the fixed pattern */
#page-home > section:not(#hero):not(.bg-earth):not(.bg-moss):not(.home-mission-band):not(.home-features-section):not(.home-about-intro) {
  background-color: var(--cream);
}

/* ── NAV ── */
/* nav layout: use Tailwind classes on <nav> */
nav.scrolled {
  background: rgba(244, 239, 228, .93);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(15, 17, 10, .08);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--moss);
  letter-spacing: -.03em;
  cursor: none;
}

.logo span {
  color: var(--clay);
}

/* Wordmark image (components/header.html) */
.logo.logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo.logo-img img {
  display: block;
  height: 2.85rem;
  width: auto;
  max-width: min(240px, 48vw);
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo.logo-img img {
    height: 3.25rem;
    max-width: min(280px, 38vw);
  }
}

@media (min-width: 1024px) {
  .logo.logo-img img {
    height: 4.5rem;
    max-width: 300px;
  }
}

/* Footer brand image */
.logo-footer img {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-footer img {
    height: 2.65rem;
    max-width: 250px;
  }
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  -webkit-font-smoothing: antialiased;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--leaf);
  transition: width .3s;
}

.nav-links a:hover::after,
.nav-links a.al::after {
  width: 100%;
}

.nav-cta {
  background: var(--moss) !important;
  color: var(--cream) !important;
  padding: .55rem 1.5rem;
  border-radius: 2rem;
  transition: background .3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--leaf) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--earth);
  transition: all .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 1305;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.35rem;
  padding: 8.25rem 1.25rem 2.5rem;
  border-radius: 0 !important;
  opacity: 1;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu__close {
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(31, 53, 26, 0.16);
  border-radius: .65rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--earth);
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  cursor: none;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 7.2vw, 2rem);
  font-weight: 700;
  color: #21442a;
  text-decoration: none;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open #navbar .hamburger {
  opacity: 0;
  pointer-events: none;
}

/* ── Scroll to top (progress ring + %) ── */
.scroll-top-btn {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 970;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--moss) 0%, var(--leaf) 58%, var(--sage) 100%);
  color: var(--cream);
  cursor: none;
  display: block;
  isolation: isolate;
  box-shadow: 0 6px 20px rgba(10, 24, 12, .45), 0 0 0 1px rgba(111, 160, 95, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease, box-shadow .25s ease, background .25s ease;
}

.chat-float-btn {
  position: fixed;
  left: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 980;
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #1a4f3f 0%, #165f49 100%);
  color: #f3fbf6;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(8, 24, 15, 0.36), 0 0 0 1px rgba(147, 202, 173, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.chat-float-btn i {
  font-size: 1.5rem;
  line-height: 1;
}

.chat-float-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, #21634e 0%, #1b6f56 100%);
  box-shadow: 0 12px 30px rgba(8, 24, 15, 0.42), 0 0 0 1px rgba(170, 223, 196, 0.26);
}

.chat-float-btn:focus-visible {
  outline: 2px solid #8fd1ae;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .chat-float-btn {
    left: 0.7rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
    gap: 0.4rem;
    padding: 0.48rem 0.72rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 5px 16px rgba(8, 24, 15, 0.3), 0 0 0 1px rgba(147, 202, 173, 0.2);
  }

  .chat-float-btn i {
    font-size: 1.12rem;
  }

  .scroll-top-btn {
    right: 0.7rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
    width: 3.15rem;
    height: 3.15rem;
    box-shadow: 0 5px 16px rgba(10, 24, 12, 0.38), 0 0 0 1px rgba(111, 160, 95, 0.24);
  }

  .scroll-top-pct {
    font-size: 0.76rem;
  }
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: linear-gradient(145deg, #274a1a 0%, var(--moss) 52%, var(--leaf) 100%);
  box-shadow: 0 8px 24px rgba(14, 31, 15, .5), 0 0 0 1px rgba(111, 160, 95, .36);
}

.scroll-top-btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.scroll-top-svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scroll-top-ring {
  stroke: var(--cream);
  transition: stroke-dashoffset .12s ease-out;
}

.scroll-top-pct {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.02em;
  pointer-events: none;
}

@media (min-width: 768px) {
  .chat-float-btn {
    left: 1.35rem;
    bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
    font-size: 0.9rem;
    padding: 0.78rem 1.15rem;
  }

  .scroll-top-btn {
    right: 1.35rem;
    bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
    width: 3.85rem;
    height: 3.85rem;
  }

  .scroll-top-pct {
    font-size: .90rem;
  }
}

/* ── BUTTONS ── */
.btn-p {
  background: var(--leaf);
  color: #fff;
  padding: .85rem 2.2rem;
  border-radius: 3rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: background .3s, transform .2s;
}

.btn-p:hover {
  background: var(--sage);
  transform: translateY(-2px);
}

.btn-o {
  background: transparent;
  color: var(--cream);
  padding: .85rem 2.2rem;
  border-radius: 3rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(244, 239, 228, .3);
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: border-color .3s, color .3s, transform .2s;
}

.btn-o:hover {
  border-color: var(--sage);
  color: var(--sage);
  transform: translateY(-2px);
}

/* ══════════════════════════════════
   HERO + ANIMATED BACKGROUND LAYERS
   ══════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Light showcase hero (reference layout) — full viewport + vertically centered stack */
#hero.hero--showcase {
  background: transparent;
  color: var(--earth);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
  padding-top: calc(4.75rem + env(safe-area-inset-top, 0px));
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
}

#hero.hero--showcase > .hero-inner.hero-inner-showcase {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 2.5rem;
  gap: 0;
}

#hero.hero--showcase .bg-glow,
#hero.hero--showcase .bg-particles,
#hero.hero--showcase .bg-grid,
#hero.hero--showcase .bg-rings,
#hero.hero--showcase .bg-vignette,
#hero.hero--showcase .bg-sweep,
#hero.hero--showcase .leaf-shape {
  display: none;
}

/* Showcase hero reads on dark forest photo behind transparent #hero */
#hero.hero--showcase .hero-mega-line {
  color: #f4f1e8;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(0, 0, 0, 0.2);
}

#hero.hero--showcase .hero-product-img {
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
}

/* Home hero: header lives in #site-header (sibling of #page-home), so use :has — white links at top before scrolled bar */
body:has(#page-home.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta) {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

body:has(#page-home.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta)::after {
  background: #fff;
}

body:has(#page-home.active) #navbar:not(.scrolled) .hamburger span {
  background: #fff;
}

body:has(#page-home.active) #navbar:not(.scrolled) .logo.logo-img img,
body:has(#page-about.active) #navbar:not(.scrolled) .logo.logo-img img,
body:has(#page-products.active) #navbar:not(.scrolled) .logo.logo-img img,
body:has(#page-e-catalogue.active) #navbar:not(.scrolled) .logo.logo-img img,
body:has(#page-product-details.active) #navbar:not(.scrolled) .logo.logo-img img,
body:has(#page-export.active) #navbar:not(.scrolled) .logo.logo-img img,
body:has(#page-blog.active) #navbar:not(.scrolled) .logo.logo-img img,
body:has(#page-blog-details.active) #navbar:not(.scrolled) .logo.logo-img img,
body:has(#page-contact.active) #navbar:not(.scrolled) .logo.logo-img img {
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.45));
}

/* Subpages (About/Products/Blog/Contact): keep top nav readable on dark hero backgrounds */
body:has(#page-about.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta),
body:has(#page-products.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta),
body:has(#page-e-catalogue.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta),
body:has(#page-product-details.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta),
body:has(#page-export.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta),
body:has(#page-blog.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta),
body:has(#page-blog-details.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta),
body:has(#page-contact.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta) {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body:has(#page-about.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta)::after,
body:has(#page-products.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta)::after,
body:has(#page-e-catalogue.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta)::after,
body:has(#page-product-details.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta)::after,
body:has(#page-export.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta)::after,
body:has(#page-blog.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta)::after,
body:has(#page-blog-details.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta)::after,
body:has(#page-contact.active) #navbar:not(.scrolled) .nav-links a:not(.nav-cta)::after {
  background: #fff;
}

body:has(#page-about.active) #navbar:not(.scrolled) .hamburger span,
body:has(#page-products.active) #navbar:not(.scrolled) .hamburger span,
body:has(#page-e-catalogue.active) #navbar:not(.scrolled) .hamburger span,
body:has(#page-product-details.active) #navbar:not(.scrolled) .hamburger span,
body:has(#page-export.active) #navbar:not(.scrolled) .hamburger span,
body:has(#page-blog.active) #navbar:not(.scrolled) .hamburger span,
body:has(#page-blog-details.active) #navbar:not(.scrolled) .hamburger span,
body:has(#page-contact.active) #navbar:not(.scrolled) .hamburger span {
  background: #fff;
}

.hero-inner-showcase {
  position: relative;
  z-index: 10;
}

.hero-showcase-col {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  justify-self: center;
  padding-top: 0;
  touch-action: pan-y;
}

.hero-slide-motion {
  position: relative;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-mega-line {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 10.5vw, 6.25rem);
  line-height: 0.95;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #142818;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

.hero-product-stage {
  position: relative;
  z-index: 3;
  margin: clamp(-3.25rem, -7vw, -2rem) auto;
  max-width: min(440px, 80vw);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  overflow: visible;
  border-radius: 1rem;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.hero-product-parallax {
  width: 100%;
  max-width: min(440px, 80vw);
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
}

.hero-product-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 40px rgba(40, 35, 28, 0.16));
}

.hero-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0.75rem 0 ;
  flex-wrap: wrap;
}

.hero-nav-btn {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid rgba(244, 239, 228, 0.35);
  background: rgba(18, 32, 24, 0.45);
  color: rgba(244, 239, 228, 0.95);
  cursor: pointer;
  transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-nav-btn:hover {
  border-color: rgba(244, 239, 228, 0.55);
  color: #fff;
  background: rgba(28, 48, 36, 0.65);
  transform: translateY(-1px);
}

.slider-thumbs--hero {
  margin-top: 1rem;
  justify-content: center;
}

#hero.hero--showcase .sthumb {
  min-width: 56px;
  width: 56px;
  height: 56px;
  padding: 0;
  overflow: hidden;
  background: rgba(244, 239, 228, 0.12);
  border-color: rgba(244, 239, 228, 0.2);
  border-radius: 0.75rem;
  transition: border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), background 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

#hero.hero--showcase .sthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#hero.hero--showcase .sthumb.active {
  border-color: rgba(244, 239, 228, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  background: rgba(244, 239, 228, 0.22);
}

#hero.hero--showcase .sthumb:hover {
  border-color: rgba(244, 239, 228, 0.4);
}

/* Layer 1 — Deep radial glow (z-index:1) */
.bg-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 90% 70% at 65% 45%, rgba(61, 107, 50, .28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(192, 120, 64, .18) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 85% 10%, rgba(212, 168, 67, .1) 0%, transparent 50%);
}

/* Layer 2 — Animated SVG leaf particles (z-index:2) */
.bg-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Layer 3 — Grid mesh lines (z-index:3) */
.bg-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: linear-gradient(rgba(61, 107, 50, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 107, 50, .07) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Layer 4 — Floating rings (z-index:4) */
.bg-rings {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(109, 160, 95, .12);
}

#ring1 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation: ringPulse 8s ease-in-out infinite;
}

#ring2 {
  width: 480px;
  height: 480px;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation: ringPulse 8s ease-in-out infinite .8s;
}

#ring3 {
  width: 280px;
  height: 280px;
  top: 20%;
  left: 10%;
  animation: ringFloat 7s ease-in-out infinite;
  border-color: rgba(192, 120, 64, .1);
}

#ring4 {
  width: 160px;
  height: 160px;
  bottom: 15%;
  right: 8%;
  animation: ringFloat 5s ease-in-out infinite 1.5s;
  border-color: rgba(212, 168, 67, .12);
}

#ring5 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 15%;
  animation: ringFloat 4s ease-in-out infinite .5s;
  border-color: rgba(109, 160, 95, .2);
}

/* Layer 5 — Noise vignette (z-index:5) */
.bg-vignette {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(8, 12, 5, .7) 100%);
}

/* Layer 6 — Diagonal light sweep (z-index:6) */
.bg-sweep {
  position: absolute;
  top: -100%;
  left: -60%;
  width: 50%;
  height: 300%;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(212, 168, 67, .03) 50%, transparent 60%);
  animation: sweep 8s linear infinite;
}

@keyframes sweep {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(400%)
  }
}

/* Layer 7 — HERO CONTENT (z-index:10) */
.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  /*padding: 7.25rem 3rem 4rem;*/
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  gap: 4rem;
  align-items: center;
}

/* ── HERO TEXT ── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(61, 107, 50, .18);
  border: 1px solid rgba(61, 107, 50, .35);
  color: var(--sage);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.htag-dot {
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  animation: hpulse 2s infinite;
}

@keyframes hpulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.6)
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--cream);
  overflow: hidden;
}

.hero-title em {
  font-style: italic;
  color: var(--sage);
}

.hero-sub {
  color: rgba(244, 239, 228, .5);
  font-size: .95rem;
  line-height: 1.75;
  margin-top: 1.4rem;
  max-width: 450px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-mini-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 239, 228, .1);
}

.hstat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--sage);
  line-height: 1;
}

.hstat-lbl {
  font-size: .72rem;
  color: rgba(244, 239, 228, .4);
  margin-top: .2rem;
}

/* ══════════════════════════════════
   HERO PRODUCT SLIDER
   ══════════════════════════════════ */
.slider-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Main card */
.slider-main {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  height: 420px;
  background: var(--moss);
  box-shadow: 0 30px 80px rgba(8, 12, 5, .5), 0 0 0 1px rgba(61, 107, 50, .2);
}

.slider-main-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.slide-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  transition: opacity .1s;
  pointer-events: none;
}

.slide-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 5, .85) 0%, transparent 60%);
}

.slide-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--deep);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2rem;
}

.slide-content {
  position: relative;
  z-index: 2;
}

.slide-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .4rem;
}

.slide-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
}

.slide-desc {
  font-size: .8rem;
  color: rgba(244, 239, 228, .55);
  margin-top: .4rem;
  line-height: 1.6;
  max-width: 280px;
}

.slide-eco-pills {
  display: flex;
  gap: .5rem;
  margin-top: .8rem;
  flex-wrap: wrap;
}

.slide-pill {
  font-size: .62rem;
  font-weight: 600;
  background: rgba(61, 107, 50, .3);
  color: var(--sage);
  border: 1px solid rgba(61, 107, 50, .4);
  padding: .25rem .7rem;
  border-radius: 2rem;
}

/* Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-dots {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 239, 228, .25);
  cursor: none;
  transition: all .3s;
}

.sdot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--leaf);
}

.slider-arrows {
  display: flex;
  gap: .6rem;
}

.sarr {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(244, 239, 228, .2);
  background: transparent;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--cream);
  transition: all .3s;
}

.sarr:hover {
  background: var(--leaf);
  border-color: var(--leaf);
}

/* Thumbnail strip */
.slider-thumbs {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.slider-thumbs::-webkit-scrollbar {
  display: none;
}

.sthumb {
  min-width: 72px;
  height: 72px;
  border-radius: 1rem;
  border: 2px solid transparent;
  background: rgba(244, 239, 228, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: none;
  transition: all .3s;
  flex-shrink: 0;
}

.sthumb.active {
  border-color: var(--leaf);
  background: rgba(61, 107, 50, .2);
}

.sthumb:hover {
  border-color: rgba(61, 107, 50, .5);
}

/* Slide enter/exit animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px) scale(.97)
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1)
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0) scale(1)
  }

  to {
    opacity: 0;
    transform: translateX(-60px) scale(.97)
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px) scale(.97)
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1)
  }
}

.slide-in-right {
  animation: slideInRight .5s cubic-bezier(.22, 1, .36, 1) forwards;
}

.slide-in-left {
  animation: slideInLeft .5s cubic-bezier(.22, 1, .36, 1) forwards;
}

.slide-out-left {
  animation: slideOutLeft .4s ease forwards;
}

/* ── HOME: mission band (pinned scroll — image4 + mid–dark forest wash, side art, centered copy) ── */
.home-mission-band {
  position: relative;
  z-index: 12;
  background: #1e2c1f;
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  overflow: visible;
}

.home-mission-band__stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: transparent;
}

.home-mission-band__pin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  /* image4 + slightly stronger veils — a notch darker than mid green */
  background-color: #2a3d30;
  background-image:
    linear-gradient(
      165deg,
      rgba(18, 32, 22, 0.72) 0%,
      rgba(22, 38, 26, 0.66) 42%,
      rgba(16, 30, 22, 0.7) 100%
    ),
    radial-gradient(ellipse 88% 72% at 50% 0%, rgba(4, 10, 6, 0.32), transparent 54%),
    url('../images/mission/image4.webp');
  background-size: cover, cover, cover;
  background-position: center, center, center 38%;
  background-repeat: no-repeat;
}

.home-mission-band__bg {
  position: absolute;
  bottom: 0;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(56vw, 520px);
  max-width: none;
  height: min(88vh, 820px);
  pointer-events: none;
  will-change: transform, opacity;
}

.home-mission-band__bg--left {
  left: max(-2%, -1rem);
  justify-content: flex-end;
  padding-right: 0.25rem;
}

.home-mission-band__bg--right {
  right: max(-2%, -1rem);
  left: auto;
  width: min(44vw, 380px);
  justify-content: flex-start;
  padding-left: 0.25rem;
}

.home-mission-band__bg .home-mission-band__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(86vh, 800px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.42));
}

.home-mission-band__film {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Side depth — a bit stronger than mid green */
  background: linear-gradient(
    90deg,
    rgba(10, 22, 14, 0.5) 0%,
    rgba(10, 22, 14, 0.12) 20%,
    rgba(0, 0, 0, 0) 34%,
    rgba(0, 0, 0, 0) 66%,
    rgba(10, 22, 14, 0.12) 80%,
    rgba(10, 22, 14, 0.5) 100%
  );
}

.home-mission-band__center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(38rem, 90vw);
  margin-inline: auto;
  padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
  will-change: transform, opacity;
  text-align: center;
}

.home-mission-band__main {
  text-align: center;
  border-left: none;
  border-right: none;
  padding-inline: clamp(0.5rem, 2vw, 1rem);
  margin-inline: auto;
}

.mission-band__title {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f110a;
  margin: 0 0 1rem;
}

.mission-band__kicker {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.45;
  color: #2a2c26;
  margin: 0 0 1.35rem;
}

.mission-band__body {
  font-size: 0.94rem;
  line-height: 1.85;
  color: #5a5c56;
  margin: 0 auto 1rem;
  max-width: 34rem;
}

.mission-band__cta {
  margin-top: 1.75rem;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(7.5rem, 18vw, 8.75rem);
  height: clamp(7.5rem, 18vw, 8.75rem);
  border-radius: 50%;
  border: 1.5px solid rgba(15, 17, 10, 0.22);
  background: transparent;
  color: #0f110a;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  gap: 0.15rem;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.mission-band__cta:hover {
  border-color: rgba(61, 107, 50, 0.55);
  background: rgba(61, 107, 50, 0.06);
  color: #1e3a12;
  transform: scale(1.03);
}

.mission-band__cta-icon {
  font-size: 0.65rem;
  line-height: 1;
  opacity: 0.75;
}

/* Mission copy on dark nature BG — cream + sage */
.home-mission-band .mission-band__title {
  color: var(--cream);
}

.home-mission-band .mission-band__kicker {
  color: rgba(200, 228, 188, 0.95);
}

.home-mission-band .mission-band__body {
  color: rgba(244, 239, 228, 0.78);
}

.home-mission-band .mission-band__cta {
  border-color: rgba(244, 239, 228, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.home-mission-band .mission-band__cta:hover {
  border-color: rgba(111, 160, 95, 0.85);
  background: rgba(111, 160, 95, 0.18);
  color: #fff;
  transform: scale(1.03);
}

@media (max-width: 839px) {
  .home-mission-band__stage {
    min-height: 0;
  }

  .home-mission-band__pin {
    min-height: 0;
    padding: clamp(2.75rem, 9vw, 4.5rem) 0;
    overflow: visible;
    background-position: center, center, center 32%;
  }

  .home-mission-band__bg {
    opacity: 0.14;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .home-mission-band__bg--left {
    left: -12%;
    width: min(56vw, 240px);
  }

  .home-mission-band__bg--right {
    right: -10%;
    width: min(40vw, 160px);
  }

  .home-mission-band__film {
    opacity: 0.48;
  }

  .home-mission-band__main {
    padding-inline: 0;
    max-width: 34rem;
  }
}

/* ── MARQUEE ── */
.mq-wrap {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 0.75rem 0;
  background: linear-gradient(180deg, #2a4a1f 0%, var(--moss) 42%, #152a0e 100%);
  border-top: 1px solid rgba(212, 168, 67, 0.32);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 10px 28px rgba(8, 12, 5, 0.14);
}

/* Soft edge fade so the strip feels infinite, not clipped */
.mq-wrap::before,
.mq-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(100px, 11vw);
  z-index: 2;
  pointer-events: none;
}

.mq-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #1e3a12 0%, rgba(30, 58, 18, 0) 100%);
}

.mq-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #1e3a12 0%, rgba(30, 58, 18, 0) 100%);
}

.mq-track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  white-space: nowrap;
  width: max-content;
  animation: mqanim 34s linear infinite;
  padding-block: 0.2rem;
  will-change: transform;
}

.mq-wrap:hover .mq-track {
  animation-play-state: paused;
}

.mq-wrap:hover .mq-item {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

@keyframes mqanim {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.mq-item {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 1rem 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.mq-wrap:hover .mq-item:hover {
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.mq-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.25rem;
  color: var(--gold);
  font-size: 0.52rem;
  line-height: 1;
  opacity: 0.95;
  filter: drop-shadow(0 0 5px rgba(212, 168, 67, 0.4));
}

@media (prefers-reduced-motion: reduce) {
  .mq-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    width: 100%;
    max-width: 52rem;
    margin-inline: auto;
    gap: 0.65rem 1rem;
    padding: 0.35rem 1rem;
    will-change: auto;
  }

  .mq-wrap:hover .mq-track {
    animation-play-state: running;
  }

  .mq-item {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}

/* ── HOME: ABOUT INTRO (“Who we are”) — hero-slider + light type (matches features band) ── */


.home-about-intro::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  /* background-image: url("../images/hero-cane-silhouette.png"); */
  background-size: 76px 80px;
}

.home-about-intro #aboutGrid {
  position: relative;
  z-index: 1;
}

.home-about-intro .slbl {
  color: #e8b89a;
}

.home-about-intro .slbl::before {
  background: rgba(232, 184, 154, 0.75);
}

.home-about-intro .sh.home-about-intro__title {
  color: #f4f1e8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.home-about-intro .sh.home-about-intro__title em {
  color: #b8e0a8;
}

.home-about-intro__copy {
  max-width: 36rem;
}

.home-about-intro__title {
  text-wrap: balance;
}

.home-about-intro__lead {
  max-width: 32rem;
  color: rgba(244, 239, 228, 0.84);
}

.home-about-intro__chips .eco-chip:nth-child(1) {
  background: rgba(212, 237, 218, 0.72);
  color: #1a4d24;
  border-color: rgba(61, 107, 50, 0.22);
}

.home-about-intro__chips .eco-chip:nth-child(2) {
  background: rgba(220, 243, 220, 0.75);
  color: #1e5630;
  border-color: rgba(61, 107, 50, 0.2);
}

.home-about-intro__chips .eco-chip:nth-child(3) {
  background: rgba(255, 243, 205, 0.85);
  color: #6b4a12;
  border-color: rgba(192, 120, 64, 0.28);
}

.home-about-intro__chips .eco-chip:nth-child(4) {
  background: rgba(227, 242, 253, 0.88);
  color: #1a4a6e;
  border-color: rgba(91, 155, 213, 0.25);
}

.about-intro-cta {
  box-shadow: 0 4px 20px rgba(30, 58, 18, 0.22);
}

.about-intro-cta:hover {
  box-shadow: 0 8px 28px rgba(30, 58, 18, 0.28);
}

.home-about-intro__media {
  padding: 0;
}

.about-intro-visual {
  position: relative;
  overflow: visible;
  border-radius: 1.85rem;
  border: 1px solid rgba(111, 160, 95, 0.22);
  box-shadow:
    0 24px 60px rgba(15, 17, 10, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background-color: #142a1c;
}

/* Same forest photo + scrim as home-features CTA; clipped so badge can sit outside */
.about-intro-visual__forest {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 1.85rem;
  background:
    linear-gradient(165deg, rgba(10, 22, 14, 0.55) 0%, rgba(12, 26, 18, 0.5) 42%, rgba(8, 18, 12, 0.72) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 48%),
    url("../images/mission/image4.webp") center 38% / cover no-repeat;
}

.about-intro-visual__forest::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  mix-blend-mode: soft-light;
  background-image: url("../images/hero-cane-silhouette.png");
  background-size: 76px 80px;
}

.about-intro-visual__stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(280px, 42vw);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.5rem) 2.75rem;
}

.about-intro-visual__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: min(520px, 100%);
  height: auto;
  max-height: min(440px, 56vh);
  object-position: center;
  border-radius: clamp(0.85rem, 2.2vw, 1.25rem);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
}

.about-intro-badge {
  position: absolute;
  z-index: 3;
  border-radius: 1.35rem;
  padding: 1.25rem 1.65rem 1.35rem;
  color: var(--cream);
  background: linear-gradient(145deg, #243d1a 0%, var(--moss) 55%, #14280c 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 40px rgba(8, 12, 5, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-intro-badge__year {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--sage);
}

.about-intro-badge__tag {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(244, 239, 228, 0.68);
  max-width: 12rem;
}

@media (min-width: 768px) {
  .about-intro-badge {
    left: -0.5rem;
    bottom: -1.25rem;
    text-align: left;
  }

  .about-intro-visual .about-intro-visual__photo {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
  }

  .about-intro-visual:hover .about-intro-visual__photo {
    transform: scale(1.02);
    box-shadow: 0 22px 56px rgba(15, 17, 10, 0.14);
  }
}

@media (max-width: 767px) {
  .about-intro-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.5rem;
    width: calc(100% - 2rem);
    max-width: 20rem;
    text-align: center;
  }

  .about-intro-badge__tag {
    margin-inline: auto;
  }
}

/* ── SECTION BASICS ── */
.slbl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .9rem;
}

.slbl::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--clay);
}

.sh {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--earth);
}

.sh em {
  font-style: italic;
  color: var(--leaf);
}

.sh.text-cream {
  color: var(--cream) !important;
}

.sh.text-cream em {
  color: var(--sage) !important;
}

/* ── REVEAL ANIMATIONS ── */
/* Scroll UP + slide from right */
.reveal-r {
  opacity: 0;
  transform: translateX(80px) translateY(20px);
}

.reveal-l {
  opacity: 0;
  transform: translateX(-80px) translateY(20px);
}

.reveal-u {
  opacity: 0;
  transform: translateY(60px);
}

.reveal-s {
  opacity: 0;
  transform: scale(.88);
}

/* Mobile: avoid translateX(±80px) on .reveal-* (keeps scroll metrics stable; JS clears GSAP on ≤767px). */
@media (max-width: 767px) {
  .page.active .reveal-r,
  .page.active .reveal-l,
  .page.active .reveal-u,
  .page.active .reveal-s {
    opacity: 1 !important;
    transform: none !important;
  }

  #page-home.active {
    overflow-x: clip;
  }
}

/* ── PRODUCT CARDS ── */
.pcard {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 24px rgba(15, 17, 10, .06);
  transition: transform .4s, box-shadow .4s;
  cursor: none;
}

.pcard:hover {
  transform: translateY(-10px) rotate(.4deg);
  box-shadow: 0 24px 64px rgba(15, 17, 10, .16);
}

/* Products page: same showcase grid as home — subtle hover only (no scrub transform fight) */
#page-products #prodsGrid.showcase-grid .showcase-card {
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#page-products #prodsGrid.showcase-grid .showcase-card:hover {
  transform: translateY(5px);
  box-shadow: 0 18px 48px rgba(15, 17, 10, 0.08);
}

#page-products .products-page-filters-wrap {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#page-products .products-page-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

#page-products .products-page-filters-more {
  display: none;
}

#page-products .products-page-filters .fpill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

#page-products .products-page-filters .fpill i {
  font-size: 0.85rem;
  opacity: 0.92;
}

.pcard-img {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.pcard-body {
  padding: 1.4rem;
}

.ptag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: .35rem;
  display: block;
}

.pname {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--earth);
}

.pdesc {
  font-size: .8rem;
  color: #777;
  margin-top: .35rem;
  line-height: 1.6;
}

.pbadge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--moss);
  color: var(--cream);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 2rem;
}

.eco-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(61, 107, 50, .1);
  color: var(--leaf);
  border: 1px solid rgba(61, 107, 50, .2);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 2rem;
}

/* ── HOME: “Our Products” reference grid (6 items, ribbon labels) ── */
.home-showcase-products {
  background: #f4f3ee;
}

/* Beat #page-home > section { background-color: cream } so dark band + art show */
#page-home > section.home-showcase-products.home-showcase-products--dark {
  background-color: #0c1810;
  background-image:
    linear-gradient(180deg, rgba(14, 28, 18, 0.9) 0%, rgba(10, 22, 14, 0.94) 100%),
    url('../images/mission/hero-slider.webp');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center 42%;
}

.home-showcase-products__head {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  /* Above .showcase-card transforms (GSAP / hover) so copy is never painted under cards */
  position: relative;
  z-index: 5;
  isolation: isolate;
}

.home-showcase-products .home-showcase-products__grid-wrap {
  position: relative;
  z-index: 1;
}

.home-showcase-products__title {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  letter-spacing: -0.02em;
  color: var(--earth);
  margin: 0;
}

.home-showcase-products__sub {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5a5c54;
}

.home-showcase-products__all {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--leaf);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.home-showcase-products__all:hover {
  color: var(--moss);
  border-bottom-color: rgba(61, 107, 50, 0.35);
}

.home-showcase-products--dark .home-showcase-products__title {
  color: #f7f4ea;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.home-showcase-products--dark .home-showcase-products__sub {
  color: rgba(247, 244, 234, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.home-showcase-products--dark .home-showcase-products__all {
  color: #d7efc6;
  /* border-bottom-color: rgba(215, 239, 198, 0.28); */
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.home-showcase-products--dark .home-showcase-products__all:hover {
  color: #efffe2;
  border-bottom-color: rgba(239, 255, 226, 0.5);
}

/* Beat body `text-earth` / any inherited color so heading never matches the forest bg */
#page-home > section.home-showcase-products.home-showcase-products--dark .home-showcase-products__title {
  color: #f7f4ea !important;
}

#page-home > section.home-showcase-products.home-showcase-products--dark .home-showcase-products__sub {
  color: rgba(247, 244, 234, 0.92) !important;
}

#page-home > section.home-showcase-products.home-showcase-products--dark .home-showcase-products__all {
  color: #d7efc6 !important;
}

@media (max-width: 767px) {
  #page-home > section.home-showcase-products.home-showcase-products--dark {
    scroll-margin-top: 5.5rem;
    padding-top: max(3.25rem, env(safe-area-inset-top, 0px) + 2rem);
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(15, 17, 10, 0.09);
    background: transparent;
  }

  .showcase-card:not(:nth-child(3n)) {
    border-right: 1px solid rgba(15, 17, 10, 0.09);
  }

  .showcase-card:nth-child(n + 4) {
    border-top: 1px solid rgba(15, 17, 10, 0.09);
  }
}

.showcase-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.1rem 0.85rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (min-width: 768px) {
  .showcase-card {
    padding: 1.35rem 1.1rem 1.5rem;
  }
}

.showcase-card:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  z-index: 1;
  position: relative;
}

.showcase-card:hover {
  transform: translateY(6px);
}

.showcase-card__media {
  position: relative;
  aspect-ratio: 1;
  max-width: 100%;
  margin: 0 auto;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 10, 0);
  transition: background 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.showcase-card:hover .showcase-card__media::after {
  background: rgba(15, 17, 10, 0.05);
}

.showcase-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  position: relative;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-card:hover .showcase-card__img {
  transform: translateY(-14px) scale(1.03);
}

.showcase-card__media--fallback {
  align-items: center;
  justify-content: center;
}

.showcase-card__emoji {
  font-size: clamp(3rem, 10vw, 4.5rem);
  line-height: 1;
  position: relative;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-card:hover .showcase-card__emoji {
  transform: translateY(-14px) scale(1.06);
}

.showcase-card__label {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-width: 46%;
  padding: 0.55rem 0.65rem 0.6rem 0.75rem;
  background: linear-gradient(135deg, #7aa32e 0%, #5f8222 100%);
  color: #fff;
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  text-align: left;
  box-shadow: -4px -4px 20px rgba(15, 17, 10, 0.12);
}

.showcase-card__l1 {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.95;
  line-height: 1.3;
}

.showcase-card__l2 {
  display: block;
  margin-top: 0.12rem;
  font-size: clamp(0.82rem, 2.1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

/* ── PRODUCT LIGHTBOX (home + products grid) ── */
body.p-lightbox-open {
  overflow: hidden;
}

.p-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.p-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 6, 0.82);
  cursor: none;
}

.p-lightbox__inner {
  position: relative;
  z-index: 1;
  width: min(960px, 94vw);
  flex-shrink: 0;
}

.p-lightbox__frame-wrap {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.p-lightbox__frame {
  flex: 1;
  min-height: 200px;
  max-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
}

.p-lightbox__frame img {
  max-width: 100%;
  max-height: min(64vh, 580px);
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.p-lightbox__emoji {
  font-size: clamp(3.5rem, 14vw, 6rem);
  line-height: 1;
}

.p-lightbox__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  width: 2.85rem;
  height: 2.85rem;
  border: none;
  padding: 0;
  border-radius: 50%;
  background: rgba(15, 17, 10, 0.07);
  color: var(--earth);
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.p-lightbox__close:hover {
  background: rgba(15, 17, 10, 0.12);
  transform: scale(1.06);
}

.p-lightbox__close:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}

/* ── 3R CARDS ── */
.r-card {
  position: relative;
  background: rgba(244, 239, 228, .04);
  border: 1px solid rgba(244, 239, 228, .09);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: background .4s, transform .3s, box-shadow .3s, border-color .35s;
}

.r-card:hover {
  background: rgba(244, 239, 228, .1);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(8, 12, 5, .3);
}

/* 3R Philosophy block — visible hero photo + readable scrim */
.r3phil__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('../images/mission/image2.webp');
  background-size: cover;
  background-position: center 38%;
  opacity: 1;
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
}

.r3phil__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Darker only at top/bottom edges; mid band stays lighter so the product photo reads */
  background:
    linear-gradient(180deg, rgba(10, 22, 12, 0.88) 0%, rgba(10, 22, 12, 0.28) 22%, transparent 42%),
    linear-gradient(0deg, rgba(6, 12, 8, 0.9) 0%, rgba(8, 16, 10, 0.35) 24%, transparent 46%),
    radial-gradient(ellipse 95% 75% at 50% 38%, rgba(12, 28, 16, 0.22) 0%, rgba(8, 14, 10, 0.62) 72%);
}

.r3phil__lead strong {
  font-weight: 600;
}

/* Highlighted phrases (3R section) — readable on dark photo */
.r3hilite {
  display: inline;
  padding: 0.12em 0.45em;
  border-radius: 0.4rem;
  font-weight: 600;
  color: #fafaf4;
  background: rgba(212, 168, 67, 0.28);
  border: 1px solid rgba(212, 168, 67, 0.42);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.r3hilite--mint {
  background: rgba(111, 160, 95, 0.34);
  border-color: rgba(143, 199, 130, 0.48);
  color: #f0faf0;
  font-weight: 700;
}

.r3phil .r-card {
  padding: 1.25rem 1.3rem 1.35rem;
  background: rgba(12, 22, 14, 0.52);
  border-color: rgba(244, 239, 228, 0.14);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .r3phil .r-card {
    padding: 1.35rem 1.4rem 1.45rem;
  }
}

.r3phil .r-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(111, 160, 95, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.r3phil .r-card:hover {
  background: rgba(18, 32, 22, 0.62);
  border-color: rgba(111, 160, 95, 0.28);
}

.r3phil .r-card:hover::before {
  opacity: 1;
}

.r3phil-card__step {
  display: block;
  margin-bottom: 0.55rem;
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: rgba(244, 239, 228, 0.28);
}

.r3phil-card__icon {
  display: flex;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: 0.85rem;
  font-size: 1.05rem;
  line-height: 1;
  color: rgba(244, 239, 228, 0.92);
  background: rgba(61, 107, 50, 0.38);
  border: 1px solid rgba(111, 160, 95, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.r3phil-card__icon i {
  display: block;
  line-height: 1;
}

.r3phil-card__title {
  margin: 0 0 0.35rem;
}

.r3phil-card__text {
  margin: 0;
}

.r3phil-card:nth-child(2) .r3phil-card__icon {
  background: rgba(91, 155, 213, 0.22);
  border-color: rgba(147, 197, 253, 0.28);
}

.r3phil-card:nth-child(3) .r3phil-card__icon {
  background: rgba(212, 168, 67, 0.18);
  border-color: rgba(212, 168, 67, 0.35);
}

/* ── FEATURES (global — also used on contact) ── */
.feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1rem;
  background: #fff;
  margin-bottom: .75rem;
  box-shadow: 0 2px 12px rgba(15, 17, 10, .04);
  transition: transform .3s, box-shadow .3s;
}

.feat:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(15, 17, 10, .1);
}

.ficon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: .75rem;
  background: var(--wheat);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.ftitle {
  font-weight: 700;
  font-size: .92rem;
  color: var(--earth);
}

.fdesc {
  font-size: .8rem;
  color: #888;
  margin-top: .2rem;
  line-height: 1.5;
}

/* ── HOME: “Why stand out” band (hero-slider + scrim; light type on left, soft sage-tinted feature cards) ── */
.home-features-section {
  position: relative;
  overflow: hidden;
  background-color: #0c1810;
  background-image:
    linear-gradient(180deg, rgba(14, 28, 18, 0.9) 0%, rgba(10, 22, 14, 0.94) 100%),
    url("../images/mission/hero-slider.webp");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center 42%;
}

.home-features-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  /* background-image: url("../images/hero-cane-silhouette.png"); */
  background-size: 76px 80px;
}

.home-features-section #featGrid {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

/* Right column: do not use .reveal-r here — opacity:0 hid the whole CTA until scroll (looked like a “missing” image).
   Do not align-self: stretch — #featGrid uses items-center so the CTA card sits vertically centered vs. the tall left column. */
.home-features-section__cta-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-features-section__eyebrow {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8b89a;
  margin: 0 0 0.65rem;
}

.home-features-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f4f1e8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  margin: 0;
}

.home-features-section__title em {
  font-style: italic;
  color: #b8e0a8;
  font-weight: 800;
}

.home-features-section__intro {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(244, 239, 228, 0.82);
  max-width: 34rem;
}

.home-features-section__feat {
  margin-bottom: 0;
  padding: 1.25rem 1.35rem;
  gap: 1.15rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(61, 107, 50, 0.14);
  background: linear-gradient(
    165deg,
    rgba(236, 246, 232, 0.97) 0%,
    rgba(214, 232, 206, 0.96) 55%,
    rgba(198, 222, 188, 0.94) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 10px 36px rgba(30, 58, 18, 0.12);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.home-features-section__feat:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 107, 50, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 18px 44px rgba(30, 58, 18, 0.16);
}

.home-features-section__ficon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  font-size: 1.05rem;
  color: var(--leaf);
  background: linear-gradient(145deg, rgba(111, 160, 95, 0.18) 0%, rgba(61, 107, 50, 0.1) 100%);
  border: 1px solid rgba(61, 107, 50, 0.2);
  box-shadow: 0 4px 14px rgba(61, 107, 50, 0.1);
}

.home-features-section__ficon i {
  display: block;
  line-height: 1;
}

.home-features-section__feat .ftitle {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--earth);
}

.home-features-section__feat .fdesc {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  color: #6b7066;
  line-height: 1.58;
  margin-top: 0.35rem;
}

.home-features-section__cta {
  position: relative;
  overflow: hidden;
  border-radius: 1.85rem;
  min-height: min(26rem, 58vh);
  padding: 0;
  text-align: center;
  background-color: #142a1c;
  border: 1px solid rgba(111, 160, 95, 0.22);
  box-shadow:
    0 24px 60px rgba(15, 17, 10, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-features-section__cta-bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.04);
}

/* Toned scrim so image4 stays visible while type stays readable */
.home-features-section__cta-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(165deg, rgba(10, 22, 14, 0.55) 0%, rgba(12, 26, 18, 0.5) 42%, rgba(8, 18, 12, 0.72) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 48%);
}

.home-features-section__cta-glow {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 95%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 160, 95, 0.28) 0%, transparent 68%);
  pointer-events: none;
  z-index: 2;
}

.home-features-section__cta-body {
  position: relative;
  z-index: 3;
  padding: clamp(2rem, 4.5vw, 2.75rem) clamp(1.5rem, 3.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 26rem;
  margin: 0 auto;
}

.home-features-section__cta-icon {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.65rem;
  color: rgba(244, 239, 228, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.home-features-section__cta-kicker {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.55);
  margin: 0 0 0.5rem;
}

.home-features-section__cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--cream);
  margin: 0;
  line-height: 1.2;
}

.home-features-section__cta-lead {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(244, 239, 228, 0.78);
}

.home-features-section__cta-points {
  list-style: none;
  width: 100%;
  margin: 1.15rem 0 0;
  padding: 0;
  text-align: left;
}

.home-features-section__cta-points li {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(244, 239, 228, 0.82);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-top: 0.45rem;
}

.home-features-section__cta-points li:first-child {
  margin-top: 0;
}

.home-features-section__cta-points i {
  margin-top: 0.12rem;
  color: var(--sage);
  flex-shrink: 0;
}

.home-features-section__cta-copy {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  margin: 1rem 0 0;
  font-size: 0.84rem;
  line-height: 1.68;
  color: rgba(244, 239, 228, 0.58);
}

.home-features-section__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.home-features-section__cta-btn {
  flex-shrink: 0;
}

.home-features-section__cta-btn--ghost {
  border-color: rgba(244, 239, 228, 0.45);
  color: rgba(244, 239, 228, 0.92);
}

.home-features-section__cta-btn--ghost:hover {
  border-color: rgba(244, 239, 228, 0.75);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

/* ── HOME STATS BAND ── */
.home-stats-band {
  position: relative;
  z-index: 2;
  background: transparent;
}

/* Keep stats band dark (same mood as screenshot 2), overriding generic home cream bands. */
#page-home > section.home-stats-band {
  background-color: #0c1810;
  background-image:
    linear-gradient(180deg, rgba(14, 28, 18, 0.9) 0%, rgba(10, 22, 14, 0.94) 100%),
    url('../images/mission/hero-slider.webp');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center 42%;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-stat-card {
  border-radius: 1.35rem;
  background: var(--wheat);
  padding: 1rem 0.78rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(8, 16, 10, 0.14);
  animation: statsCardIn .44s ease both;
}

.home-stat-card:nth-child(2) { animation-delay: .05s; }
.home-stat-card:nth-child(3) { animation-delay: .1s; }
.home-stat-card:nth-child(4) { animation-delay: .15s; }

.home-stat-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 9.2vw, 3rem);
  line-height: 1;
  color: #2f6b34;
}

.home-stat-card__lbl {
  margin-top: 0.2rem;
  font-size: .84rem;
  line-height: 1.3;
  letter-spacing: .01em;
  color: #505853;
}

@media (min-width: 768px) {
  .home-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .home-stat-card {
    border-radius: 1.65rem;
    padding: 1.5rem 1rem;
  }

  .home-stat-card__num {
    font-size: clamp(2.7rem, 4.3vw, 4rem);
  }

  .home-stat-card__lbl {
    font-size: .95rem;
    line-height: 1.35;
  }
}

@media (hover: hover) {
  .home-stat-card {
    transition: transform .22s ease, box-shadow .22s ease;
  }

  .home-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(8, 16, 10, 0.18);
  }
}

@keyframes statsCardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── PROCESS ── */
.pstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.pstep::after {
  content: '→';
  position: absolute;
  right: -1.5rem;
  top: 1.6rem;
  font-size: 1.3rem;
  color: rgba(244, 239, 228, .2);
}

.pstep:last-child::after {
  display: none;
}

.pcirc {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(244, 239, 228, .08);
  border: 1.5px solid rgba(244, 239, 228, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: .9rem;
  transition: background .3s, transform .3s;
}

.pstep:hover .pcirc {
  background: var(--moss);
  transform: scale(1.1);
}

.ptitle {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
}

.pdsc {
  font-size: .73rem;
  color: rgba(244, 239, 228, .4);
  margin-top: .3rem;
  max-width: 110px;
  line-height: 1.5;
}

/* ── PROCESS: image3 + dark veils (pinned journey / Lenis) ── */
.home-process-scroll {
  width: 100%;
  max-width: none;
  background-color: #141c18;
  background-image:
    linear-gradient(
      165deg,
      rgba(10, 20, 14, 0.86) 0%,
      rgba(12, 24, 16, 0.8) 48%,
      rgba(8, 16, 12, 0.88) 100%
    ),
    radial-gradient(ellipse 88% 60% at 50% 12%, rgba(0, 0, 0, 0.32), transparent 55%),
    url('../images/mission/image3.webp');
  /* Full-bleed photo edge-to-edge; veils still cover full width */
  background-size: cover, cover, cover;
  background-position: center, center, center center;
  background-repeat: no-repeat;
}

.home-process-scroll::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  background-size: 220px;
  mix-blend-mode: soft-light;
}

.home-process-scroll__stage {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .home-process-scroll__stage {
    min-height: min(100vh, 900px);
    min-height: min(100dvh, 900px);
  }
}

.home-process-scroll__pin {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-process-scroll__head {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.home-process-scroll__kicker {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.92);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.home-process-scroll__kicker::before,
.home-process-scroll__kicker::after {
  content: '';
  width: min(36px, 8vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.55), transparent);
}

.home-process-scroll__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.05rem, 4.2vw, 3.35rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #f7f4ec;
  margin: 0;
  text-wrap: balance;
}

.home-process-scroll__title em {
  font-style: italic;
  color: #9bc88a;
  font-weight: 800;
  text-shadow: 0 0 40px rgba(111, 160, 95, 0.35);
}

.home-process-scroll__lede {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  max-width: 36rem;
  margin: 1.15rem auto 0;
  font-size: 0.94rem;
  line-height: 1.72;
  color: rgba(232, 238, 230, 0.78);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.home-process-scroll .pstep::after {
  color: rgba(180, 200, 172, 0.35);
  transition: color 0.35s ease;
}

@media (min-width: 1024px) {
  .home-process-scroll .pstep::after {
    right: -0.85rem;
  }
}

.home-process-scroll .pcirc {
  width: 58px;
  height: 58px;
  font-size: 1.12rem;
  color: #f0f6ec;
  border-color: rgba(168, 198, 158, 0.35);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 28px rgba(0, 0, 0, 0.22);
}

.home-process-scroll .pcirc i {
  display: block;
  line-height: 1;
  opacity: 0.96;
}

.home-process-scroll .pstep:hover .pcirc {
  background: rgba(61, 107, 50, 0.45);
  color: #fff;
  border-color: rgba(155, 200, 138, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 10px 32px rgba(0, 0, 0, 0.28);
}

.home-process-scroll .ptitle {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #eef3ea;
}

.home-process-scroll .pdsc {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(218, 228, 212, 0.78);
  max-width: 118px;
}

/* ── CTA BANNER ── */
.cta-ban {
  background-color: #1b3022;
  background-image:
    linear-gradient(165deg, rgba(18, 36, 26, 0.9) 0%, rgba(14, 30, 20, 0.82) 40%, rgba(8, 20, 12, 0.92) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, transparent 42%),
    url('../images/mission/image4.webp');
  background-size: auto, auto, cover;
  background-position: 0 0, 0 0, center 35%;
  background-repeat: no-repeat;
  border-radius: 2rem;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(111, 160, 95, 0.22);
  box-shadow:
    0 24px 60px rgba(15, 17, 10, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-ban::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 65% 55% at 50% 0%, rgba(111, 160, 95, 0.18), transparent 58%);
}

.cta-ban h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.cta-ban p {
  color: rgba(244, 239, 228, .6);
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

.cta-ban__lead {
  max-width: 34rem;
  margin-inline: auto;
  font-size: .98rem;
  color: rgba(244, 239, 228, .82) !important;
}

.cta-ban__copy {
  max-width: 40rem;
  margin-inline: auto;
  font-size: .9rem;
  line-height: 1.72;
}

/* ── SUBPAGE HERO (About, Products, Blog, Contact) ── */
.subpage-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 5.5vw, 3.75rem);
  background-color: #1b3022;
  background-image:
    linear-gradient(165deg, rgba(18, 36, 26, 0.92) 0%, rgba(14, 30, 20, 0.84) 42%, rgba(8, 20, 12, 0.94) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.24) 0%, transparent 50%),
    url('../images/mission/image4.webp');
  background-size: auto, auto, cover;
  background-position: 0 0, 0 0, center 38%;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(111, 160, 95, 0.14);
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 72% 58% at 22% 18%, rgba(255, 255, 255, 0.045), transparent 52%);
}

.subpage-hero .shell {
  position: relative;
  z-index: 1;
}

.subpage-hero .slbl,
.subpage-hero .slbl.text-clay,
.subpage-hero .slbl.text-wheat {
  color: rgba(244, 239, 228, 0.58) !important;
}

.subpage-hero .slbl::before {
  background: rgba(244, 239, 228, 0.38);
}

.subpage-hero__in {
  will-change: opacity, transform;
}

@media (max-width: 991px) {
  .subpage-hero .shell {
    text-align: center;
  }

  .subpage-hero .slbl {
    justify-content: center;
  }

  .subpage-hero h1 {
    margin-inline: auto;
  }

  .subpage-hero p {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .subpage-hero__in {
    will-change: auto;
  }
}

/* ── E-CATALOGUE PAGE ── */
#page-e-catalogue > section:not(.subpage-hero) {
  background-color: #0c1810;
  background-image:
    linear-gradient(180deg, rgba(14, 28, 18, 0.9) 0%, rgba(10, 22, 14, 0.94) 100%),
    url('../images/mission/hero-slider.webp');
  background-size: cover, cover;
  background-position: center, center 42%;
  background-repeat: no-repeat, no-repeat;
}

.ecat-page .shell {
  max-width: 480px;
  margin-left: 0;
  margin-right: auto;
}

.ecat-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(111, 160, 95, 0.22);
  background: rgba(244, 239, 228, 0.97);
  box-shadow: 0 12px 32px rgba(8, 16, 10, 0.16);
}

.ecat-card__media {
  border-bottom: 1px solid rgba(15, 17, 10, 0.08);
}

.ecat-card__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.ecat-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding: 0.75rem;
}

.ecat-card__actions--tight {
  margin-top: 0;
}

.ecat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0.45rem;
  padding: 0.68rem 0.75rem;
  border: 1px solid transparent;
}

.ecat-btn--view,
.ecat-btn--download {
  background: #1f5848;
  color: #f4efe4;
}

.ecat-btn--view:hover,
.ecat-btn--download:hover {
  background: #236353;
}

@media (min-width: 700px) {
  .ecat-card__actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.85rem;
  }
}

@media (max-width: 699px) {
  .ecat-page .shell {
    max-width: 74vw;
    margin-left: 0;
    margin-right: auto;
  }

  .ecat-card__media img {
    max-height: 380px;
  }
}

/* ── FORM ── */
.fg {
  margin-bottom: 1.2rem;
}

.fl {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: .45rem;
}

.fi {
  width: 100%;
  padding: .85rem 1.2rem;
  border: 1.5px solid var(--wheat);
  border-radius: .75rem;
  background: #fff;
  color: var(--earth);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}

.fi:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(61, 107, 50, .1);
}

textarea.fi {
  resize: vertical;
  min-height: 120px;
}

/* ── BLOG ── */
.bcard {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(111, 160, 95, 0.26);
  background: linear-gradient(165deg, rgba(247, 251, 244, 0.98) 0%, rgba(229, 240, 222, 0.94) 100%);
  box-shadow: 0 10px 28px rgba(10, 18, 11, 0.18);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
  cursor: none;
}

.bcard:hover {
  transform: translateY(-7px);
  border-color: rgba(111, 160, 95, 0.42);
  box-shadow: 0 16px 38px rgba(8, 16, 9, 0.24);
}

.bimg {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #152417;
}

.bimg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 10, 0.02) 0%, rgba(8, 18, 10, 0.34) 100%);
  pointer-events: none;
}

.bimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform 0.45s ease;
}

.bcard:hover .bimg img {
  transform: scale(1.06);
}

.bimg--feature {
  height: 320px;
}

.bimg--side {
  height: 160px;
}

.bcard-body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.bcard-body--feature {
  padding: 1.45rem 1.45rem 1.55rem;
}

.bmeta {
  font-size: .72rem;
  color: #3e6744;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}

.btitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1.28;
  color: var(--earth);
}

.btitle--feature {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.2;
}

.bexc {
  font-size: .84rem;
  color: #425348;
  margin-top: .55rem;
  line-height: 1.6;
}

.bread {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .79rem;
  font-weight: 800;
  color: #2d5f33;
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 95, 51, 0.24);
  transition: color .22s ease, border-color .22s ease;
}

.bread:hover {
  color: #1f4f27;
  border-bottom-color: rgba(31, 79, 39, 0.55);
}

/* ── FILTER PILLS ── */
.fpill {
  padding: .48rem 1.3rem;
  border-radius: 2rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 1.5px solid var(--wheat);
  background: transparent;
  color: #999;
  cursor: none;
  transition: all .3s;
}

.fpill.active,
.fpill:hover {
  background: var(--moss);
  color: var(--cream);
  border-color: var(--moss);
}

/* ── TIMELINE ── */
.tl-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--wheat);
}

.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--leaf);
  min-width: 76px;
}

.tl-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.tl-content p {
  font-size: .83rem;
  color: #777;
  margin-top: .35rem;
  line-height: 1.6;
}

.tl-item--last {
  border-bottom: none;
}

/* ── ABOUT: green visual language (match home theme, keep copy readable) ── */
#page-about {
  background: transparent;
}

#page-about > section:not(.subpage-hero) {
  background-color: #0c1810;
  background-image:
    linear-gradient(180deg, rgba(14, 28, 18, 0.9) 0%, rgba(10, 22, 14, 0.94) 100%),
    url('../images/mission/hero-slider.webp');
  background-size: cover, cover;
  background-position: center, center 42%;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}

/* Products page: one fixed background image after hero */
#page-products > section:not(.subpage-hero) {
  background-color: #0c1810;
  background-image:
    linear-gradient(180deg, rgba(14, 28, 18, 0.9) 0%, rgba(10, 22, 14, 0.94) 100%),
    url('../images/mission/hero-slider.webp');
  background-size: cover, cover;
  background-position: center, center 42%;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}

#page-product-details,
#page-export,
#page-blog,
#page-blog-details,
#page-contact {
  background: transparent;
}

#page-product-details > section:not(.subpage-hero),
#page-export > section:not(.subpage-hero),
#page-blog > section:not(.subpage-hero),
#page-blog-details > section:not(.subpage-hero),
#page-contact > section:not(.subpage-hero) {
  background-color: #0c1810;
  background-image:
    linear-gradient(180deg, rgba(14, 28, 18, 0.9) 0%, rgba(10, 22, 14, 0.94) 100%),
    url('../images/mission/hero-slider.webp');
  background-size: cover, cover;
  background-position: center, center 42%;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}

#page-product-details > section:not(.subpage-hero) .sh,
#page-blog-details > section:not(.subpage-hero) .sh {
  color: var(--cream);
}

#page-product-details > section:not(.subpage-hero) .sh em,
#page-blog-details > section:not(.subpage-hero) .sh em {
  color: var(--sage);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.product-detail-main {
  border: 1px solid rgba(165, 205, 144, 0.24);
  border-radius: 1rem;
  background: linear-gradient(168deg, rgba(237, 247, 232, 0.95) 0%, rgba(220, 237, 208, 0.92) 100%);
  box-shadow: 0 14px 32px rgba(6, 18, 9, 0.22);
  overflow: hidden;
}

.product-detail-image-wrap {
  background: #d9e7d2;
  padding: 1rem;
}

.product-detail-image-wrap img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  border-radius: .8rem;
  background: #cfe1c4;
}

.product-detail-copy {
  padding: 1rem 1rem 1.15rem;
}

.product-detail-title {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 800;
  color: #203423;
}

.product-detail-stock {
  margin-top: .45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #284b2f;
  display: inline-flex;
  gap: .45rem;
  align-items: center;
}

.product-detail-desc {
  margin-top: .85rem;
  font-size: .98rem;
  line-height: 1.85;
  color: #345039;
}

.product-detail-sidebar {
  border: 1px solid rgba(165, 205, 144, 0.24);
  border-radius: 1rem;
  background: linear-gradient(168deg, rgba(236, 247, 229, 0.95) 0%, rgba(217, 236, 204, 0.92) 100%);
  box-shadow: 0 12px 28px rgba(6, 18, 9, 0.2);
  padding: 1.15rem 1rem;
  align-self: start;
}

.product-detail-side-title {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #203423;
}

.product-detail-cat-list {
  list-style: none;
  margin: .7rem 0 0;
  padding: 0;
}

.product-detail-cat-item {
  border-bottom: 1px solid rgba(32, 52, 35, 0.12);
  padding: .82rem 0;
  color: #4a5d4e;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: none;
}

.product-detail-cat-item i {
  color: #6f8c6b;
  font-size: .86rem;
}

.product-detail-cat-item.is-active {
  color: #203423;
  font-weight: 800;
}

@media (min-width: 960px) {
  .product-detail-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, .85fr);
    gap: 1.15rem;
  }
}

#page-export > section:not(.subpage-hero) .sh {
  color: var(--cream);
}

#page-export > section:not(.subpage-hero) .sh em {
  color: var(--sage);
}

.export-map {
  position: relative;
  min-height: clamp(260px, 46vw, 420px);
  border-radius: 1.2rem;
  border: 1px solid rgba(143, 183, 121, 0.24);
  background:
    radial-gradient(circle at 18% 20%, rgba(111, 160, 95, 0.26) 0%, rgba(111, 160, 95, 0) 38%),
    radial-gradient(circle at 82% 78%, rgba(61, 107, 50, 0.24) 0%, rgba(61, 107, 50, 0) 42%),
    linear-gradient(165deg, rgba(13, 29, 19, 0.9) 0%, rgba(12, 24, 16, 0.8) 100%);
  box-shadow: inset 0 0 0 1px rgba(166, 209, 143, 0.1), 0 16px 40px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.export-map .leaflet-control-zoom {
  border: 1px solid rgba(111, 160, 95, 0.32);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.export-map .leaflet-control-zoom a {
  background: rgba(228, 241, 220, 0.95);
  color: #1f3d24;
  border-bottom-color: rgba(111, 160, 95, 0.3);
}

.export-map-marker {
  background: transparent;
  border: 0;
}

.export-map-marker i {
  color: #3f8b45;
  font-size: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.export-map .leaflet-popup-content-wrapper {
  border-radius: .7rem;
  background: rgba(233, 246, 226, 0.95);
  color: #1e3b23;
}

.export-map .leaflet-popup-tip {
  background: rgba(233, 246, 226, 0.95);
}

.export-map .export-map-tooltip {
  background: rgba(232, 246, 223, 0.96);
  border: 1px solid rgba(111, 160, 95, 0.36);
  color: #1f3d24;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: .55rem;
  padding: .18rem .32rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.export-map .export-map-tooltip::before {
  border-top-color: rgba(232, 246, 223, 0.96);
}

.export-country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.export-country-card {
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: .35rem .2rem .25rem;
  text-align: center;
  box-shadow: none;
  transition: transform .2s ease;
}

.export-country-card:hover {
  transform: translateY(-2px);
}

.export-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.export-flag img {
  width: 4.5rem;
  height: 3.15rem;
  object-fit: cover;
  border-radius: .2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.export-country-name {
  margin-top: .52rem;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.96);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .export-country-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.05rem;
  }
}

.export-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}

.export-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(166, 209, 143, 0.22);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

@media (min-width: 768px) {
  .export-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Inquiry page readability and premium form cards */
#page-contact > section:not(.subpage-hero) .sh {
  color: var(--cream);
}

#page-contact > section:not(.subpage-hero) .sh em {
  color: var(--sage);
}

#page-contact #contGrid .fl {
  color: rgba(244, 239, 228, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
}

#page-contact #contGrid .fi {
  border: 1px solid rgba(153, 197, 131, 0.35);
  background: linear-gradient(160deg, rgba(232, 245, 225, 0.96) 0%, rgba(214, 234, 201, 0.93) 100%);
  color: #173019;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 26px rgba(7, 20, 10, 0.2);
}

/* intl-tel-input refined styles */
.iti { width: 100%; display: block; }
.iti__country-list {
  background-color: #fdfaf3 !important; /* Brighter cream for contrast */
  color: var(--earth) !important;
  border: 1px solid rgba(61, 107, 50, 0.2) !important;
  border-radius: 14px !important;
  margin-top: 5px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(61, 107, 50, 0.05) !important;
  padding: 0 !important;
  width: 100% !important;
  min-width: 280px !important;
  max-height: 280px !important;
  z-index: 1000 !important;
  overflow-x: hidden !important;
}

.iti__search-input {
  width: 100% !important;
  border: none !important;
  border-bottom: 1px solid rgba(61, 107, 50, 0.1) !important;
  padding: 12px 16px !important;
  font-family: inherit !important;
  font-size: 0.9rem !important;
  background: transparent !important;
  outline: none !important;
  color: #173019 !important;
  border-radius: 14px 14px 0 0 !important;
}

.iti__search-input::placeholder {
  color: rgba(23, 48, 25, 0.45) !important;
}

.iti__country {
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  transition: background 0.2s ease;
}

.iti__country:hover, .iti__country.iti__highlight {
  background-color: rgba(61, 107, 50, 0.06) !important;
}

.iti__flag-box { margin-right: 12px !important; flex-shrink: 0; }
.iti__country-name {
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: #173019 !important;
}

.iti__dial-code {
  font-size: 0.82rem !important;
  color: rgba(23, 48, 25, 0.5) !important;
}

.iti__selected-dial-code { 
  color: #173019 !important; 
  font-weight: 600 !important; 
  font-size: 0.95rem !important;
  margin-left: 6px !important;
}

/* Invalid state */
#page-contact #contGrid .fi.is-invalid {
  border-color: #f87171 !important;
  background: linear-gradient(160deg, #fff5f5 0%, #fee2e2 100%) !important;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2) !important;
}

#page-contact #contGrid .fi::placeholder {
  color: rgba(27, 57, 30, 0.6);
}

#page-contact #contGrid .fi:focus {
  border-color: rgba(140, 188, 108, 0.95);
  box-shadow: 0 0 0 3px rgba(136, 186, 106, 0.2), 0 10px 28px rgba(0, 0, 0, 0.16);
}

#page-contact #contGrid .feat {
  border: 1px solid rgba(153, 197, 131, 0.34);
  background: linear-gradient(155deg, rgba(235, 246, 228, 0.95) 0%, rgba(217, 235, 203, 0.92) 100%);
  box-shadow: 0 12px 30px rgba(6, 18, 9, 0.22);
}

#page-contact #contGrid .ftitle {
  color: #1a2d1b;
  font-size: 0.95rem;
  font-weight: 800;
}

#page-contact #contGrid .ficon {
  background: linear-gradient(145deg, rgba(111, 160, 95, 0.3) 0%, rgba(61, 107, 50, 0.22) 100%);
  border: 1px solid rgba(61, 107, 50, 0.3);
  color: #2f6b34;
}

#page-contact #contGrid .fdesc {
  color: #345039;
  font-size: 0.82rem;
  line-height: 1.55;
}

#page-contact #contGrid .fdesc a {
  color: inherit;
  text-decoration: none;
}

#page-contact #contGrid .fdesc a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

#page-contact #contGrid .acc-item {
  border-bottom-color: rgba(153, 197, 131, 0.28);
}

#page-contact #contGrid .acc-btn {
  color: #e6f3dc;
  font-weight: 700;
}

#page-contact #contGrid .acc-body {
  color: rgba(215, 233, 204, 0.88);
}

#page-contact #contGrid .acc-icon {
  color: #8fcf6a;
}

#page-contact #contGrid h3 {
  color: #eaf5e2;
}

#page-products > section:not(.subpage-hero) .slbl {
  color: rgba(244, 239, 228, 0.64);
}

#page-products > section:not(.subpage-hero) .slbl::before {
  background: rgba(244, 239, 228, 0.4);
}

#page-products > section:not(.subpage-hero) .sh {
  color: var(--cream);
}

#page-products > section:not(.subpage-hero) .sh em {
  color: var(--sage);
}

#page-products .fpill {
  color: rgba(244, 239, 228, 0.78);
  border-color: rgba(244, 239, 228, 0.28);
}

.products-features {
  background: transparent;
}

.products-features__card {
  border-radius: 1.05rem;
  padding: 1rem 0.85rem 1.05rem;
  text-align: center;
  border: 1px solid rgba(111, 160, 95, 0.24);
  background: linear-gradient(160deg, rgba(242, 250, 238, 0.97) 0%, rgba(222, 239, 215, 0.94) 100%);
  box-shadow: 0 10px 24px rgba(8, 16, 10, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.products-features__card:hover {
  transform: translateY(-5px);
  border-color: rgba(61, 107, 50, 0.34);
  box-shadow: 0 14px 32px rgba(8, 16, 10, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.products-features__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--leaf);
  background: linear-gradient(145deg, rgba(111, 160, 95, 0.2) 0%, rgba(61, 107, 50, 0.12) 100%);
  border: 1px solid rgba(61, 107, 50, 0.2);
}

.products-features__title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--moss);
  letter-spacing: 0.01em;
}

#page-about .about-story-section,
#page-about .about-values-section {
  /* position: relative; */
  overflow: hidden;
  background: transparent;
}

#page-about .about-story-section::before,
#page-about .about-values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 68% 58% at 14% 16%, rgba(111, 160, 95, 0.13), transparent 54%),
    radial-gradient(ellipse 62% 54% at 86% 78%, rgba(61, 107, 50, 0.11), transparent 56%);
}

#page-about .about-story-section .shell,
#page-about .about-values-section .shell {
  position: relative;
  z-index: 1;
}

#page-about .about-story-section .slbl,
#page-about .about-values-section .slbl {
  color: rgba(244, 239, 228, 0.64);
}

#page-about .about-story-section .slbl::before,
#page-about .about-values-section .slbl::before {
  background: rgba(244, 239, 228, 0.4);
}

#page-about .about-story-section .sh,
#page-about .about-values-section .sh {
  color: var(--cream);
}

#page-about .about-story-section .sh em,
#page-about .about-values-section .sh em {
  color: var(--sage);
}

#page-about .about-story-section__copy,
#page-about .about-values-section__copy {
  color: rgba(244, 239, 228, 0.78);
}

#page-about .about-story-section__stat,
#page-about .about-values-section__card {
  border: 1px solid rgba(111, 160, 95, 0.18);
  background: linear-gradient(160deg, rgba(235, 245, 230, 0.95) 0%, rgba(210, 230, 201, 0.92) 100%);
  box-shadow: 0 14px 38px rgba(8, 16, 10, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

#page-about .about-values-section__card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

#page-about .about-values-section__card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 107, 50, 0.3);
  box-shadow: 0 20px 42px rgba(8, 16, 10, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

#page-about .about-values-section__title {
  color: var(--moss);
  letter-spacing: -0.01em;
}

#page-about .about-values-section__icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
  font-size: 1.2rem;
  background: linear-gradient(145deg, rgba(111, 160, 95, 0.2) 0%, rgba(61, 107, 50, 0.1) 100%);
  border: 1px solid rgba(61, 107, 50, 0.22);
  box-shadow: 0 5px 14px rgba(61, 107, 50, 0.16);
}

#page-about .about-story-section__stat-copy,
#page-about .about-values-section__copy {
  color: rgba(30, 58, 18, 0.78);
}

#page-about .about-side-visual {
  background: rgba(225, 238, 217, 0.88);
  border: 1px solid rgba(111, 160, 95, 0.18);
}

#page-about .about-story-quote {
  border: 1px solid rgba(111, 160, 95, 0.24);
  background: linear-gradient(145deg, rgba(28, 62, 25, 0.92) 0%, rgba(36, 78, 30, 0.9) 52%, rgba(24, 56, 21, 0.93) 100%);
  box-shadow: 0 16px 36px rgba(8, 16, 10, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#page-about .about-story-quote__text {
  color: rgba(244, 239, 228, 0.97);
}

#page-about .about-story-quote__by {
  color: rgba(244, 239, 228, 0.68);
}

#page-about .about-certs-section {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding-top: clamp(2.25rem, 4.5vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3rem);
}

#page-about .about-certs-section .shell {
  position: relative;
  z-index: 1;
}

#page-about .about-certs__stack {
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  gap: 1.25rem;
}

#page-about .about-certs__controls {
  max-width: 980px;
  margin: 0 auto 0.9rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
}

#page-about .about-certs__nav-btn {
  border: 1px solid rgba(111, 160, 95, 0.36);
  background: rgba(20, 45, 19, 0.72);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  cursor: none;
}

#page-about .about-certs-section .sh {
  color: #f4f1e8;
}

#page-about .about-certs-section .sh em {
  color: #9fd38c;
  text-shadow: 0 2px 16px rgba(61, 107, 50, 0.28);
}

#page-about .about-certs__panel {
  display: none;
  border-radius: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(111, 160, 95, 0.18);
  background: linear-gradient(165deg, rgba(234, 246, 230, 0.96) 0%, rgba(214, 234, 206, 0.94) 58%, rgba(198, 223, 188, 0.92) 100%);
  box-shadow: 0 14px 38px rgba(8, 16, 10, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#page-about .about-certs__panel.is-active {
  display: block;
}

#page-about .about-certs__panel:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 107, 50, 0.28);
  box-shadow: 0 18px 42px rgba(8, 16, 10, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

#page-about .about-certs__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

#page-about .about-certs__title {
  color: var(--moss);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

#page-about .about-certs__frame {
  width: 100%;
  height: min(66vh, 640px);
  border: 1px solid rgba(61, 107, 50, 0.16);
  border-radius: 0.9rem;
  background: #fff;
}

#page-about .about-certs__btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
}

#page-about .about-certs__btn--ghost {
  color: var(--moss);
  border-color: rgba(30, 58, 18, 0.26);
}

@media (max-width: 768px) {
  #page-about .about-certs__frame {
    height: min(56vh, 520px);
  }
}

.about-milestones {
  position: relative;
  overflow: hidden;
  /* padding: clamp(3.5rem, 9vw, 6rem) 0; */
}

.about-milestones__bg {
  display: none;
}

.about-milestones__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.about-milestones__accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.about-milestones__shell {
  position: relative;
  z-index: 2;
}

.about-milestones .slbl {
  color: rgba(244, 239, 228, 0.62);
}

.about-milestones .slbl::before {
  background: rgba(244, 239, 228, 0.42);
}

.about-milestones .sh {
  color: var(--cream);
}

.about-milestones .sh em {
  color: var(--sage);
}

.about-milestones__track {
  position: relative;
  border-radius: 1.35rem;
  padding: 0.25rem 1.25rem 0.5rem;
  background: linear-gradient(165deg, rgba(234, 246, 230, 0.96) 0%, rgba(214, 234, 206, 0.94) 58%, rgba(198, 223, 188, 0.92) 100%);
  box-shadow:
    0 28px 70px rgba(8, 12, 8, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(61, 107, 50, 0.22);
}

/* Milestone copy: green-forward palette (readable on cream card) */
.about-milestones__track .tl-year {
  color: var(--moss);
}

.about-milestones__track .tl-content h3 {
  color: var(--moss);
}

.about-milestones__track .tl-content p {
  color: rgba(30, 58, 18, 0.88);
}

.about-milestones__rail {
  position: absolute;
  left: 1.35rem;
  top: 1.75rem;
  bottom: 1.75rem;
  width: 3px;
  border-radius: 3px;
  background: rgba(61, 107, 50, 0.12);
  display: none;
}

.about-milestones__rail-fill {
  display: block;
  width: 100%;
  height: 0%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--sage), var(--leaf));
  transform-origin: top center;
}

@media (min-width: 640px) {
  .about-milestones__rail {
    display: block;
  }

  .about-milestones__track {
    padding-left: 2.75rem;
  }

  .about-milestones__step.tl-item {
    padding-left: 0.25rem;
  }
}

/* ── ACCORDION ── */
.acc-item {
  border-bottom: 1px solid var(--wheat);
}

.acc-btn {
  width: 100%;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: none;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--earth);
}

.acc-icon {
  font-size: 1.2rem;
  color: var(--leaf);
  transition: transform .3s;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  font-size: .85rem;
  color: #777;
  line-height: 1.7;
}

.acc-item.open .acc-icon {
  transform: rotate(45deg);
}

.acc-item.open .acc-body {
  max-height: 200px;
  padding-bottom: 1rem;
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 6.25rem 1.5rem 3rem;
  }

  #hero.hero--showcase > .hero-inner.hero-inner-showcase,
  .hero-inner-showcase {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }

  #hero.hero--showcase {
    padding-top: calc(4.25rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  #page-contact #contGrid .grid.grid-cols-2 {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
}

@media (max-width: 991px) {
  #hero.hero--showcase {
    padding-top: calc(4.35rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  }

  #hero.hero--showcase > .hero-inner.hero-inner-showcase {
    padding-inline: 1.2rem;
  }

  #hero.hero--showcase .hero-mega-line {
    font-size: clamp(2.2rem, 10vw, 4rem);
    letter-spacing: .06em;
    line-height: .96;
  }

  #hero.hero--showcase .hero-product-stage {
    margin: clamp(-1.45rem, -4.2vw, -.7rem) auto;
    max-width: min(380px, 72vw);
  }

  #hero.hero--showcase .hero-slider-nav {
    margin: 1rem 0 .15rem;
    gap: .65rem;
  }

  #hero.hero--showcase .hero-nav-btn {
    font-size: .69rem;
    letter-spacing: .1em;
    padding: .5rem .9rem;
  }

  #hero.hero--showcase .slider-thumbs--hero {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    gap: .42rem;
  }

  #hero.hero--showcase .sthumb {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}

@media (max-width: 767px) {
  #hero.hero--showcase {
    padding-top: calc(4.05rem + env(safe-area-inset-top, 0px));
  }

  #hero.hero--showcase > .hero-inner.hero-inner-showcase {
    padding-inline: .9rem !important;
  }

  #hero.hero--showcase .hero-showcase-col {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  #hero.hero--showcase .hero-mega-line {
    font-size: clamp(1.95rem, 11.2vw, 2rem);
    letter-spacing: .035em;
    line-height: .98;
  }

  #hero.hero--showcase .hero-product-stage {
    max-width: min(330px, 80vw);
    margin: clamp(-1.1rem, -4.5vw, -.5rem) auto;
  }

  #hero.hero--showcase .hero-slider-nav {
    gap: .5rem;
  }

  #hero.hero--showcase .hero-nav-btn {
    min-width: 42%;
  }

  #hero.hero--showcase .slider-thumbs--hero {
    display: none;
  }

  #hero.hero--showcase .sthumb {
    width: 52px;
    min-width: 52px;
    height: 46px;
    flex: 0 0 auto;
  }

  #hero.hero--showcase .slider-thumbs--hero::-webkit-scrollbar {
    display: none;
  }
}

/* ══ ANIMATED BG ELEMENTS ══ */
/* Floating leaf shapes at various z-depths */
.leaf-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 50% 0 50% 0;
  opacity: .06;
}

#lf1 {
  width: 180px;
  height: 280px;
  background: var(--leaf);
  top: 5%;
  right: 3%;
  z-index: 4;
  transform: rotate(-20deg);
}

#lf2 {
  width: 100px;
  height: 160px;
  background: var(--clay);
  bottom: 8%;
  left: 5%;
  z-index: 2;
  transform: rotate(30deg);
}

#lf3 {
  width: 60px;
  height: 100px;
  background: var(--gold);
  top: 60%;
  right: 8%;
  z-index: 7;
  transform: rotate(-50deg);
  opacity: .04;
}

#lf4 {
  width: 220px;
  height: 360px;
  background: var(--moss);
  top: -60px;
  left: 40%;
  z-index: 3;
  transform: rotate(15deg);
  opacity: .04;
}

/* Depth layers z-index guide:
   z1 = glow, z2 = particles, z3 = grid, z4 = rings, z5 = vignette, z6 = sweep, z10 = content */

/* Hero ring animations (moved from invalid HTML) */
@keyframes ringPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .6
  }

  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: .3
  }
}

@keyframes ringFloat {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-10px, 15px)
  }
}

/* Layout helpers (pair with Tailwind) */
.shell {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem
}

@media(min-width:768px) {
  .shell {
    padding-left: 3rem;
    padding-right: 3rem
  }
}

.pad-y-section {
  padding-top: 6rem;
  padding-bottom: 6rem
}

.pad-y-section-sm {
  padding-top: 5rem;
  padding-bottom: 5rem
}

.pad-y-tight {
  padding-top: 4rem;
  padding-bottom: 6rem
}

@media (max-width: 991px) {
  .pad-y-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .pad-y-section-sm {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pad-y-tight {
    padding-top: 2.6rem;
    padding-bottom: 3.4rem;
  }
}

@media (max-width: 767px) {
  .pad-y-section {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .pad-y-section-sm {
    padding-top: 2.35rem;
    padding-bottom: 2.35rem;
  }

  .pad-y-tight {
    padding-top: 2.1rem;
    padding-bottom: 2.8rem;
  }

  /* Global small-screen typography tuning */
  .subpage-hero h1 {
    font-size: clamp(1.95rem, 9.2vw, 2.65rem) !important;
    line-height: 1.08;
  }

  .sh {
    font-size: clamp(1.7rem, 8.4vw, 2.25rem);
    line-height: 1.12;
  }

  p,
  .bexc,
  .home-process-scroll__lede,
  .home-features-section__intro,
  .mission-band__body,
  .fdesc {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .slbl {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .home-about-intro__chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.52rem;
    max-width: 16rem;
  }

  .home-about-intro__chips .eco-chip {
    width: fit-content;
    max-width: 100%;
    padding: 0.34rem 0.72rem;
    font-size: 0.66rem;
    line-height: 1.2;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .cta-ban {
    padding: 1.8rem 0.95rem !important;
    border-radius: 1rem;
  }

  .cta-ban h2 {
    line-height: 1.1;
  }

  .cta-ban__lead {
    font-size: .88rem;
    margin-top: .7rem;
  }

  .cta-ban__copy {
    font-size: .82rem;
    line-height: 1.58;
    margin-top: .65rem;
  }

  #page-products .products-page-filters-wrap {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding-right: 0;
  }

  #page-products .products-page-filters {
    flex: 1 1 auto;
    min-width: 0;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.5rem;
    padding: 0.2rem 0;
    scroll-snap-type: x proximity;
    scroll-padding-inline-end: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #page-products .products-page-filters::-webkit-scrollbar {
    display: none;
  }

  #page-products .products-page-filters .fpill {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    justify-content: center;
    padding: 0.52rem 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    scroll-snap-align: start;
  }

  #page-products .products-page-filters-more {
    display: inline-flex;
    align-items: center;
    align-self: center;
    flex: 0 0 auto;
    gap: 0.25rem;
    position: relative;
    top: auto;
    transform: none;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    color: rgba(244, 239, 228, 0.92);
    background: linear-gradient(145deg, var(--moss) 0%, var(--leaf) 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    pointer-events: none;
  }

  #page-products .products-page-filters-more i {
    font-size: 0.55rem;
    opacity: 0.95;
  }
}

.pad-y-hero-pg {
  padding-top: 10rem;
  padding-bottom: 5rem
}

.pad-y-hero-pg-lg {
  padding-top: 10rem;
  padding-bottom: 6rem
}

/* Product cards (JS template) */
.pcard-emoji {
  font-size: 4.5rem;
  position: relative;
  z-index: 1;
}

.pcard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
}

.eco-chip-sm {
  font-size: .62rem;
}

.pcard-inquire {
  font-size: .78rem;
  font-weight: 700;
  color: var(--leaf);
  text-decoration: none;
}

/* ── FOOTER — hero-slider.webp + scrim (matches home fixed hero art) ── */
.ft-light {
  border-top: 1px solid rgba(111, 160, 95, 0.18);
  background: #0c1810;
  color: rgba(255, 255, 255, 0.95);
}
/* 
.ft-light__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background-image:
    linear-gradient(165deg, rgba(10, 22, 14, 0.55) 0%, rgba(12, 26, 18, 0.5) 42%, rgba(8, 18, 12, 0.72) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 48%),
    url("../images/mission/hero-slider.webp");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover;
  background-position: center, center, center 42%;
}

.ft-light__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  mix-blend-mode: soft-light;
  background-image: url("../images/hero-cane-silhouette.png");
  background-size: 80px 86px;
  background-position: 0 0;
} */

.ft-light__surface {
  position: relative;
  max-width: min(100%, 1440px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  /* backdrop-filter: blur(14px); */
  color: rgba(255, 255, 255, 0.95);
}

.ft-light__grid {
  border-bottom-color: rgba(244, 239, 228, 0.12) !important;
}

.ft-light__deco {
  position: absolute;
  top: 6%;
  right: -6%;
  width: min(400px, 58vw);
  height: min(400px, 58vw);
  pointer-events: none;
  z-index: 0;
}

.ft-light__circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(111, 160, 95, 0.2) 0%, rgba(111, 160, 95, 0.08) 52%, transparent 72%);
}

.ft-light__leaf {
  position: absolute;
  top: 24%;
  left: 20%;
  font-size: clamp(2.25rem, 7vw, 3.75rem);
  color: var(--leaf);
  opacity: 0.32;
  filter: drop-shadow(0 8px 24px rgba(61, 107, 50, 0.12));
}

.ft-light__title {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 2.55rem);
  letter-spacing: -0.02em;
  color: #f4f1e8;
  margin: 0;
}

.ft-light__lead {
  color: rgba(255, 255, 255, 0.9);
}

.ft-col__h {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.97);
  margin: 0;
}

.ft-col__body {
  color: rgba(255, 255, 255, 0.88);
}

.ft-contact-list {
  color: rgba(255, 255, 255, 0.92);
}

.ft-light__legal {
  color: rgba(255, 255, 255, 0.8);
}

.ft-light__legal-sub {
  color: rgba(255, 255, 255, 0.72);
}

.ft-contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.ft-contact-list__ico {
  margin-top: 0.1rem;
  font-size: 0.95rem;
  color: var(--leaf);
  opacity: 0.88;
  width: 1.15rem;
  flex-shrink: 0;
  text-align: center;
}

.ft-contact-list__link {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.ft-contact-list__link:hover {
  color: var(--sage);
  border-bottom-color: rgba(111, 160, 95, 0.45);
}

.ft-news__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(244, 239, 228, 0.22);
  padding-bottom: 0.3rem;
  transition: border-color 0.25s ease;
}

.ft-news__row:focus-within {
  border-bottom-color: var(--leaf);
}

.ft-news__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.98);
  padding: 0.4rem 0;
}

.ft-news__input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.ft-news__input:focus {
  outline: none;
}

.ft-news__submit {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.25s ease, transform 0.2s ease;
}

.ft-news__submit:hover {
  background: var(--moss);
  transform: translateX(3px);
}

.ft-bar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.ft-bar-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ft-bar-nav__link i {
  font-size: 0.52rem;
  color: var(--leaf);
  opacity: 0.88;
}

.ft-bar-nav__link:hover {
  color: var(--sage);
}

.ft-bar-nav__link:hover i {
  opacity: 1;
}

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

/* Footer social */
.ft-soc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(244, 239, 228, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .9rem;
  transition: background .3s;
}

.ft-soc:hover {
  background: var(--leaf);
}

.ft-soc--light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(244, 239, 228, 0.92);
}

.ft-soc--light:hover {
  background: var(--leaf);
  color: #fff;
}

/* Decorative blobs (3R, page heroes) */
.blob-tr {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 107, 50, .15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.blob-bl {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 120, 64, .08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.process-side-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 42vw);
  height: 100%;
  background: linear-gradient(to left, rgba(12, 18, 16, 0.4), transparent);
  pointer-events: none;
  z-index: 0;
}

.blob-gold-bl {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, .1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.form-success {
  display: none;
  margin-top: 1rem;
  border-radius: .75rem;
  border: 1px solid rgba(61, 107, 50, .3);
  background: rgba(61, 107, 50, .1);
  padding: 1rem 1.2rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--leaf);
}

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