/* ==========================================
   ATP Fresh — Pure Oils Landing Page
   ========================================== */

:root {
  --green: #1b3022;
  --gold: #c5a059;
  --cream: #f5f2ea;
  --white: #ffffff;
  --text: #1b3022;
  --text-muted: #5c6b5f;
  --shadow: 0 4px 20px rgba(27, 48, 34, 0.07);
  --shadow-lg: 0 10px 36px rgba(27, 48, 34, 0.1);
  --radius: 14px;
  --transition: 0.3s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', system-ui, sans-serif;

  /* Fluid scale: ~360px (6") → ~3840px (32" 4K) */
  --gutter: clamp(12px, 1.8vw + 8px, 64px);
  --container-max: min(100%, 1680px);
  --section-pad-y: clamp(36px, 4vw + 20px, 112px);
  --font-body: clamp(13px, 0.78rem + 0.22vw, 17px);
  --font-small: clamp(11px, 0.68rem + 0.12vw, 14px);
  --font-h2: clamp(1.65rem, 1.05rem + 2vw, 3.75rem);
  --font-h3: clamp(1rem, 0.88rem + 0.45vw, 1.4rem);
  --font-section-title: clamp(1.45rem, 1rem + 1.6vw, 2.75rem);
  --nav-height: clamp(60px, 4.2vw + 36px, 92px);
  --touch-min: 44px;
  --card-min: clamp(160px, 18vw, 240px);
  --hero-copy-max: min(100%, clamp(300px, 40vw, 620px));
  --space-xs: clamp(6px, 0.5vw, 10px);
  --space-sm: clamp(10px, 0.9vw, 16px);
  --space-md: clamp(16px, 1.5vw, 28px);
  --space-lg: clamp(24px, 2.5vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
}

/* â”€â”€ Announcement Bar â”€â”€ */
.announce-bar {
  background: var(--green);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  padding: 10px 0;
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.announce-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.announce-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.announce-item:first-child {
  padding-left: 0;
}

.announce-item:last-child {
  border-right: none;
}

.announce-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.announce-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.announce-socials {
  display: flex;
  gap: 10px;
}

.announce-socials a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.announce-socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
}

/* Full-screen hero landing */
.hero-landing {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-bg-slider,
.hero-bg-static {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slider-track,
.hero-bg-static {
  width: 100%;
  height: 100%;
}

.hero-bg-static {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 72% center;
}

.hero-bg-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.hero-bg-slider .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-bg-slider .hero-slide img,
.hero-bg-slider .hero-slide .hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focal, 72% 42%);
  display: block;
  filter: brightness(1.1) contrast(1.05) saturate(1.06);
  background: #e8e0d2;
}

.hero-bg-slider .hero-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-brand .nav-logo-img,
.nav-brand picture {
  height: clamp(48px, 6vw, 80px);
  width: auto;
  max-width: min(42vw, 180px);
  object-fit: contain;
  display: block;
}

.hero-bg-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right,
      rgba(245, 242, 234, 0.52) 0%,
      rgba(245, 242, 234, 0.22) 34%,
      rgba(245, 242, 234, 0.06) 58%,
      transparent 100%);
}

.hero-bg-slider .hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vw, 32px);
  transform: translateX(-50%);
  z-index: 2;
  margin-top: 0;
}

/* Navbar — merged with hero */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: env(safe-area-inset-top, 0px);
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

#navbar.scrolled {
  background: rgba(245, 242, 234, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(27, 48, 34, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  position: relative;
}

.nav-inner nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: clamp(48px, 6vw, 80px);
  width: auto;
  max-width: min(42vw, 180px);
  object-fit: contain;
}

.nav-brand-text h1 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

.nav-brand-text span {
  font-size: 11px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  padding: 8px 14px;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  transform: scaleX(1);
  background: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-cart,
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cart:hover,
.btn-call:hover {
  background: #142a1c;
  transform: translateY(-1px);
}

.btn-cart svg,
.btn-call svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}

/* â”€â”€ Buttons â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: #142a1c;
  border-color: #142a1c;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: rgba(27, 48, 34, 0.35);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  padding: 12px 24px;
}

.btn-gold:hover {
  background: #a66f08;
  border-color: #a66f08;
}

/* Hero */
#hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 100px 0 56px;
  position: relative;
  z-index: 2;
}

#hero>.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 520px);
  align-items: center;
  width: 100%;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(27, 48, 34, 0.22);
  transition: background var(--transition), transform var(--transition);
}

.hero-slider-dot.is-active {
  background: var(--green);
  transform: scale(1.15);
}

.hero-slider-dot:hover {
  background: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8px 0;
  max-width: var(--hero-copy-max);
  text-align: left;
}

.hero-slide-contents {
  position: relative;
  width: 100%;
}

.hero-slide-content-block {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.hero-slide-content-block.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

/* Staggered text reveal within slide transitions */
.hero-slide-content-block h2,
.hero-slide-content-block p,
.hero-slide-content-block .hero-cta,
.hero-slide-content-block .hero-trust,
.hero-slide-content-block .hero-info-bar {
  opacity: 0;
  transform: translateY(14px);
  will-change: opacity, transform;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide-content-block.is-active h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.hero-slide-content-block.is-active p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-slide-content-block.is-active .hero-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-slide-content-block.is-active .hero-trust {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-slide-content-block.is-active .hero-info-bar {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-content h2 {
  font-family: var(--font-serif);
  font-size: var(--font-h2);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: clamp(18px, 2.5vw, 26px);
  letter-spacing: -0.02em;
  color: var(--slide-title-color, var(--green));
  text-shadow: 0 1px 12px rgba(27, 48, 34, 0.05);
}

.hero-title-line,
.hero-title-accent {
  color: var(--slide-accent-color, var(--gold));
}

.hero-content p {
  font-size: var(--font-body);
  color: var(--slide-body-color, var(--text-muted));
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-cta .btn-primary {
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.01em;
  background: var(--slide-accent-color, var(--green));
  border-color: var(--slide-accent-color, var(--green));
  color: var(--white);
}

.hero-cta .btn-primary:hover {
  background: var(--slide-title-color, var(--green));
  border-color: var(--slide-title-color, var(--green));
  color: var(--white);
}

.hero-slide-content-block--light .hero-cta .btn-primary:hover {
  color: var(--green);
  /* clear dark text on white button hover */
}

.hero-cta .btn-outline {
  padding: 14px 26px;
  font-size: 14px;
  color: var(--slide-title-color, var(--green));
  background: var(--white);
  border-color: var(--slide-title-color, rgba(27, 48, 34, 0.35));
}

.hero-cta .btn-outline:hover {
  background: var(--slide-title-color, var(--green));
  color: var(--white);
  border-color: var(--slide-title-color, var(--green));
}

.hero-slide-content-block--light .hero-cta .btn-outline {
  background: rgba(255, 255, 255, 0.1);
}

.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-bottom: 14px;
}

.hero-trust--secondary {
  margin-top: 14px;
  margin-bottom: 0;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--slide-body-color, var(--text-muted));
  max-width: 128px;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.hero-trust-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(27, 48, 34, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  background: transparent;
}

.hero-trust-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

/* Hero store panels (Amazon & Flipkart side-by-side) */
.hero-store-panel {
  margin-top: 24px;
  margin-bottom: 28px;
}

.hero-store-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slide-body-color, var(--text-muted));
  margin-bottom: 12px;
}

.hero-store-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-store-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.hero-store-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.hero-store-link img {
  height: clamp(28px, 3.2vw, 36px);
  width: auto;
  display: block;
}

/* Hero info bar — sizes & cooking */
.hero-info-bar {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-info-bar-inner {
  display: flex;
  align-items: center;
  background: #0a2318;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 4px 18px rgba(10, 35, 24, 0.22);
}

.hero-info-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0 8px;
}

.hero-info-divider {
  flex-shrink: 0;
  width: 1px;
  height: 32px;
  background: var(--gold);
  opacity: 0.75;
}

.hero-info-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.hero-info-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-info-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(9px, 0.65vw + 0.28rem, 11px);
  line-height: 1.35;
  min-width: 0;
}

.hero-info-label {
  font-weight: 400;
}

.hero-info-value {
  font-weight: 600;
  color: var(--white);
}

/* Features Bar */
#features {
  background-color: var(--green);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: var(--section-pad-y) 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#features .container {
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: 48px;
}

.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.features-title {
  font-family: var(--font-serif);
  font-size: var(--font-section-title);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-top: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 0;
}

.feature-item {
  text-align: center;
  padding: 0 28px;
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold);
}

.feature-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 230px;
  margin: 0 auto;
}

/* Products */
#products {
  padding: var(--section-pad-y) 0;
  background-color: var(--cream);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.section-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Prevent decorative SVGs from rendering as huge black shapes */
.section-label svg,
.features-label svg {
  display: none;
}

.feature-icon svg,
.process-icon svg,
.hero-trust-icon svg {
  fill: none;
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--font-section-title);
  font-weight: 700;
  text-align: center;
  color: var(--green);
  margin-bottom: 0;
}

.products-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.products-intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--card-min)), 1fr));
  gap: clamp(12px, 1.4vw, 24px);
  max-width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

.product-card {
  perspective: 1000px;
  min-height: clamp(280px, 24vw, 360px);
  cursor: pointer;
  border-radius: clamp(16px, 1.5vw, 20px);
  animation: productFadeIn 0.6s ease var(--delay, 0s) both;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.product-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.45);
}

@keyframes productFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: inherit;
}

.product-card.is-flipped .product-card-inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {

  .product-card:hover .product-card-inner,
  .product-card:focus-within .product-card-inner {
    transform: rotateY(180deg);
  }
}

.product-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  border: 1px solid rgba(27, 48, 34, 0.07);
  background: var(--white);
  box-shadow: 0 6px 28px rgba(27, 48, 34, 0.06);
  text-align: center;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.product-card-front {
  display: flex;
  flex-direction: column;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.product-card:hover .product-card-face {
  box-shadow: 0 18px 48px rgba(27, 48, 34, 0.12);
  border-color: rgba(197, 160, 89, 0.35);
}

.product-card-back {
  -webkit-transform: rotateY(180deg) translateZ(1px);
  transform: rotateY(180deg) translateZ(1px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: clamp(16px, 3vw, 24px) clamp(14px, 2.5vw, 20px);
  background: linear-gradient(160deg, var(--green) 0%, #2a4a35 100%);
  color: var(--white);
  border-color: rgba(197, 160, 89, 0.25);
  overflow: hidden;
}

.product-card-back-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  gap: 10px;
  text-align: center;
}

.product-card-back-head {
  flex-shrink: 0;
  width: 100%;
}

.product-card-back-head .product-badge {
  margin-bottom: 8px;
}

.product-card-back-head h3 {
  margin: 0 0 4px;
}

.product-card-img {
  height: clamp(120px, 10vw, 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px 10px;
  background: linear-gradient(180deg, #faf8f4 0%, #f3ede3 100%);
  position: relative;
}

.product-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: rgba(27, 48, 34, 0.06);
}

.product-card-img img {
  max-height: clamp(96px, 8.5vw, 150px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(27, 48, 34, 0.12));
  transition: transform var(--transition);
  pointer-events: none;
}

.product-card:hover .product-card-front .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 10px 16px;
}

.product-card-back h3 {
  font-family: var(--font-serif);
  font-size: clamp(14px, 2.5vw, 17px);
  font-weight: 600;
  color: var(--gold);
  margin: 8px 0 6px;
  line-height: 1.3;
  word-break: break-word;
}

.product-card-back .product-badge--cold {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.product-card-back .product-badge--wood {
  background: rgba(197, 160, 89, 0.25);
  color: var(--gold);
}

.product-card-back .product-badge--rotary {
  background: rgba(156, 92, 22, 0.28);
  color: #f5dcc4;
}

.product-back-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}

.product-benefits {
  list-style: none;
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 4px;
}

.product-benefits li {
  font-size: clamp(9px, 0.75vw, 11px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  word-break: break-word;
}

.product-benefits li:last-child {
  border-bottom: none;
}

.product-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.product-flip-hint {
  display: block;
  font-size: clamp(8px, 0.65vw, 10px);
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  margin-top: 8px;
  opacity: 0.7;
}

.product-card-back .product-flip-hint,
.product-flip-hint--back {
  color: rgba(255, 255, 255, 0.55);
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 10px;
  width: 100%;
}

.product-badge {
  display: inline-block;
  font-size: clamp(7px, 0.55vw, 9px);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.product-badge--cold {
  background: rgba(27, 48, 34, 0.08);
  color: var(--green);
}

.product-badge--wood {
  background: rgba(197, 160, 89, 0.18);
  color: #8b5e14;
}

.product-badge--rotary {
  background: rgba(156, 92, 22, 0.14);
  color: #7a4510;
}

.product-card-front h3 {
  font-family: var(--font-serif);
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
}

.product-desc {
  font-size: clamp(9px, 0.7vw, 11px);
  color: var(--text-muted);
  line-height: 1.45;
}

.products-cta {
  text-align: center;
  margin-top: 48px;
}

.products-cta .btn-primary {
  padding: 15px 36px;
}

/* Journey — Aureole-style split layout + card slider */
#promise {
  padding: var(--section-pad-y) 0;
  background-color: #f3ecdf;
  position: relative;
  overflow: hidden;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(220px, 28%) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.journey-intro {
  max-width: 360px;
}

.journey-kicker {
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.25rem);
  font-weight: 500;
  color: var(--green);
  margin: 0 0 4px;
  line-height: 1.2;
}

.journey-heading {
  margin: 0 0 clamp(18px, 2.5vw, 24px);
  line-height: 1.05;
}

.journey-heading-line {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 1.2rem + 2vw, 3rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.journey-highlight {
  position: relative;
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.35rem + 2.4vw, 3.35rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-top: 2px;
  padding: 0 6px;
}

.journey-highlight::after {
  content: '';
  position: absolute;
  inset: -6px -10px -4px -8px;
  border: 2.5px solid #c0392b;
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.journey-copy {
  font-size: clamp(0.92rem, 0.82rem + 0.35vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 clamp(24px, 3vw, 32px);
  max-width: 320px;
}

.journey-buy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.journey-buy:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.journey-slider {
  min-width: 0;
}

.journey-slider-viewport {
  overflow: hidden;
  margin: 0 -4px;
  padding: 4px;
}

.journey-slider-track {
  display: flex;
  gap: clamp(18px, 2vw, 24px);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.journey-card {
  position: relative;
  flex: 0 0 clamp(260px, 24vw, 340px);
  aspect-ratio: 4 / 5;
  border-radius: clamp(20px, 2vw, 28px);
  overflow: hidden;
  background: #ddd5c8;
  box-shadow: 0 14px 36px rgba(27, 48, 34, 0.14);
}

.journey-card-media {
  position: absolute;
  inset: 0;
}

.journey-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.journey-card[data-index="0"] .journey-card-media img {
  object-position: 72% center;
}

.journey-card[data-index="1"] .journey-card-media img {
  object-position: 55% center;
}

.journey-card[data-index="2"] .journey-card-media img {
  object-position: 38% center;
}

.journey-card-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #e8dfd0 0%, #d4c8b5 100%);
}

.journey-card-fallback .process-icon-img {
  width: 72%;
  height: auto;
  object-fit: contain;
}

.journey-card-foot {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2vw, 24px);
  background: linear-gradient(to top,
      rgba(18, 28, 20, 0.88) 0%,
      rgba(18, 28, 20, 0.45) 42%,
      transparent 68%);
  pointer-events: none;
}

.journey-card-foot h3 {
  margin: 0;
  padding-right: 44px;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.85rem + 0.45vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.journey-card-plus {
  position: absolute;
  right: clamp(16px, 1.6vw, 20px);
  bottom: clamp(16px, 1.6vw, 20px);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--green);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.journey-card-plus:hover {
  transform: scale(1.06);
  background: var(--gold);
  color: var(--white);
}

.journey-card.is-open .journey-card-plus {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}

.journey-card.is-open .journey-card-foot {
  opacity: 0;
  visibility: hidden;
}

.journey-card-detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(18, 28, 20, 0.92);
}

.journey-card-detail p {
  margin: 0;
  font-size: clamp(0.88rem, 0.75rem + 0.3vw, 1rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

.journey-card-detail[hidden] {
  display: none;
}

.journey-slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(18px, 2.5vw, 24px);
}

.journey-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(27, 48, 34, 0.25);
  background: transparent;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}

.journey-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.journey-nav-btn:hover:not(:disabled) {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.journey-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Legacy process icon helpers (journey + elsewhere) */
.process-icon {
  width: clamp(64px, 7.5vw, 76px);
  height: clamp(64px, 7.5vw, 76px);
  margin: 0;
  border: 1px solid rgba(27, 48, 34, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 249, 0.88));
  box-shadow: 0 4px 14px rgba(27, 48, 34, 0.06);
  transition: border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.process-icon--image {
  width: clamp(108px, 10.5vw, 128px);
  height: clamp(108px, 10.5vw, 128px);
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-step:hover .process-icon {
  border-color: rgba(197, 160, 89, 0.55);
  color: var(--green);
  box-shadow: 0 8px 22px rgba(27, 48, 34, 0.1);
  transform: translateY(-2px);
}

.process-step:hover .process-icon--image {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-4px) scale(1.04);
}

.process-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(27, 48, 34, 0.16));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.process-step:hover .process-icon-img {
  filter: drop-shadow(0 12px 20px rgba(27, 48, 34, 0.22));
}

.process-icon svg {
  width: clamp(28px, 3.2vw, 32px);
  height: clamp(28px, 3.2vw, 32px);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h4 {
  font-size: clamp(11.5px, 1.05vw, 13px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 8px;
  min-height: 38px;
  letter-spacing: 0.01em;
}

.process-step p {
  font-size: clamp(10.5px, 0.95vw, 11.5px);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 136px;
  margin: 0 auto;
}

.process-connector {
  flex-shrink: 0;
  width: clamp(14px, 2vw, 28px);
  height: 1px;
  margin-top: calc(24px + 10px + clamp(60px, 7vw, 72px) / 2);
  background: rgba(197, 160, 89, 0.28);
  align-self: flex-start;
}

/* —— Testimonials —— */
#testimonials {
  padding: var(--section-pad-y) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.testimonials-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.testimonials-orb--1 {
  width: clamp(200px, 30vw, 420px);
  height: clamp(200px, 30vw, 420px);
  top: -8%;
  left: -6%;
  background: rgba(197, 160, 89, 0.22);
}

.testimonials-orb--2 {
  width: clamp(180px, 28vw, 380px);
  height: clamp(180px, 28vw, 380px);
  bottom: -10%;
  right: -4%;
  background: rgba(27, 48, 34, 0.12);
}

.testimonials-container {
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}

.testimonials-eyebrow {
  font-size: var(--font-small);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.testimonials-title {
  font-family: var(--font-serif);
  font-size: var(--font-section-title);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 12px;
}

.testimonials-sub {
  font-size: var(--font-body);
  color: var(--text-muted);
  line-height: 1.7;
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: clamp(32px, 5vw, 52px);
}

.testimonial-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: clamp(14px, 2vw, 18px) clamp(20px, 3vw, 32px);
  background: var(--white);
  border: 1px solid rgba(27, 48, 34, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: clamp(110px, 22vw, 150px);
}

.testimonial-stat strong {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.testimonial-stat span {
  font-size: var(--font-small);
  color: var(--text-muted);
  text-align: center;
}

/* Shared testimonial tokens */
.testimonial-card--gold {
  --card-accent: #a88442;
}

.testimonial-card--sage {
  --card-accent: #2d6b4f;
}

.testimonial-card--forest {
  --card-accent: #1b3022;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.testimonial-product {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 50px;
  background: rgba(27, 48, 34, 0.06);
  color: var(--green);
  white-space: nowrap;
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: #2d6b4f;
  background: rgba(45, 107, 79, 0.1);
  padding: 2px 7px;
  border-radius: 50px;
}

.testimonial-verified svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

/* Filter chips */
.testimonials-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.testimonial-filter {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: var(--font-small);
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid rgba(27, 48, 34, 0.1);
  transition: var(--transition);
  cursor: pointer;
}

.testimonial-filter:hover {
  border-color: var(--gold);
  color: var(--green);
}

.testimonial-filter.is-active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* Story loop — one review at a time */
.story-loop {
  max-width: min(820px, 100%);
  margin: 0 auto clamp(24px, 4vw, 32px);
  outline: none;
}

.story-loop-frame {
  position: relative;
  padding: clamp(6px, 1vw, 10px);
}

.story-loop-accent {
  position: absolute;
  width: clamp(48px, 8vw, 72px);
  height: clamp(48px, 8vw, 72px);
  border: 2px solid rgba(197, 160, 89, 0.35);
  pointer-events: none;
  z-index: 2;
}

.story-loop-accent--tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-radius: 18px 0 0 0;
}

.story-loop-accent--br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-radius: 0 0 18px 0;
}

.story-loop-viewport {
  position: relative;
  min-height: clamp(300px, 42vw, 380px);
  border-radius: 22px;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.story-loop-viewport:active {
  cursor: grabbing;
}

.story-loop-track {
  display: flex;
  min-height: inherit;
  transition: transform 0.72s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.story-loop-track.no-transition,
.story-loop-track.is-dragging {
  transition: none;
}

.story-loop-slide {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: inherit;
}

.story-loop-slide .story-card-inner {
  opacity: 0.88;
  transform: translateY(10px);
  transition:
    opacity 0.55s cubic-bezier(0.25, 0.8, 0.25, 1) 0.12s,
    transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1) 0.12s;
}

.story-loop-slide.is-active .story-card-inner {
  opacity: 1;
  transform: translateY(0);
}

.story-card-inner {
  --story-accent: var(--green);
  --story-glow: rgba(27, 48, 34, 0.08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  min-height: inherit;
  padding: clamp(28px, 4.5vw, 44px);
  background: linear-gradient(145deg, var(--white) 0%, #faf8f4 55%, var(--story-glow) 100%);
  border: 1px solid rgba(27, 48, 34, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 56px rgba(27, 48, 34, 0.1);
  position: relative;
  overflow: hidden;
}

.story-card--gold {
  --story-accent: #a88442;
  --story-glow: rgba(197, 160, 89, 0.1);
}

.story-card--sage {
  --story-accent: #2d6b4f;
  --story-glow: rgba(45, 107, 79, 0.08);
}

.story-card--forest {
  --story-accent: #1b3022;
  --story-glow: rgba(27, 48, 34, 0.06);
}

.story-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--story-accent), var(--gold));
}

.story-quote-deco {
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 6rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
}

.story-card-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.story-card-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.story-card-content .testimonial-stars {
  margin-bottom: 14px;
}

.story-card-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 18px;
}

.story-product-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(27, 48, 34, 0.06);
  color: var(--green);
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.story-card-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: clamp(16px, 2.5vw, 22px);
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(27, 48, 34, 0.08);
  box-shadow: var(--shadow);
  min-width: clamp(130px, 20vw, 170px);
  position: relative;
  z-index: 1;
}

.story-avatar-ring {
  width: clamp(72px, 12vw, 88px);
  height: clamp(72px, 12vw, 88px);
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--story-accent), var(--gold));
  margin-bottom: 6px;
}

.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.story-author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
}

.story-author-city {
  font-size: var(--font-small);
  color: var(--text-muted);
}

.story-card-profile .testimonial-verified {
  margin-top: 4px;
}

.story-loop-controls {
  margin-top: clamp(18px, 3vw, 24px);
}

.story-loop-progress {
  height: 3px;
  background: rgba(27, 48, 34, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.story-loop-progress-bar {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 4px;
}

@keyframes storyProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.story-loop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 16px);
  flex-wrap: wrap;
}

.story-loop-counter {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
  min-width: 64px;
  text-align: center;
}

.story-loop-dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 200px;
}

.story-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 48, 34, 0.2);
  padding: 0;
  transition: var(--transition);
}

.story-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--green);
}

.story-loop-arrow {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(27, 48, 34, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.story-loop-arrow:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.story-loop-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.testimonials-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 20px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(27, 48, 34, 0.08);
}

.review-modal-card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 clamp(16px, 2vw, 20px);
}

.review-modal-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(27, 48, 34, 0.08);
}

.review-modal-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--card-accent), var(--gold));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

.testimonial-author-meta {
  font-size: var(--font-small);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

/* View all button */
.testimonials-actions {
  text-align: center;
  margin-top: clamp(8px, 2vw, 16px);
}

.btn-reviews-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--green);
  transition: var(--transition);
  cursor: pointer;
}

.btn-reviews-all:hover {
  background: transparent;
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-reviews-all-count {
  background: var(--gold);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  min-width: 24px;
  text-align: center;
}

.btn-reviews-all svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right, 0px));
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
  background: #1ebe57;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
  }
}

/* Reviews modal */
.reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  visibility: hidden;
  pointer-events: none;
}

.reviews-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.reviews-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 48, 34, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.reviews-modal.is-open .reviews-modal-backdrop {
  opacity: 1;
}

.reviews-modal-panel {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(27, 48, 34, 0.2);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.reviews-modal.is-open .reviews-modal-panel {
  transform: translateY(0);
}

.reviews-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(27, 48, 34, 0.08);
  flex-shrink: 0;
}

.reviews-modal-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.reviews-modal-header h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--green);
}

.reviews-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(27, 48, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  transition: var(--transition);
}

.reviews-modal-close:hover {
  background: var(--green);
  color: var(--white);
}

.reviews-modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.reviews-modal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 24px 16px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(27, 48, 34, 0.06);
}

.reviews-modal-grid {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 16px;
  -webkit-overflow-scrolling: touch;
}

.review-modal-card {
  --card-accent: var(--green);
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(27, 48, 34, 0.08);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.review-modal-card:hover {
  border-color: rgba(197, 160, 89, 0.35);
  transform: translateY(-3px);
}

.review-modal-card blockquote {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin: 12px 0 14px;
}

.review-modal-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 48, 34, 0.08);
}

.review-modal-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--card-accent), var(--gold));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-modal-card .testimonial-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.review-modal-card .testimonial-author-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* Contact */
#contact {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: var(--section-pad-y) 0;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(248, 243, 233, 0.92) 0%,
      rgba(248, 243, 233, 0.78) 38%,
      rgba(248, 243, 233, 0.78) 62%,
      rgba(248, 243, 233, 0.92) 100%);
  pointer-events: none;
  z-index: 0;
}

#contact.contact-theme-dark::before {
  background: linear-gradient(90deg,
      rgba(15, 34, 24, 0.9) 0%,
      rgba(15, 34, 24, 0.72) 38%,
      rgba(15, 34, 24, 0.72) 62%,
      rgba(15, 34, 24, 0.9) 100%);
}

#contact.contact-theme-light {
  --c-heading: #1b3022;
  --c-body: #1f3227;
  --c-muted: #3d5245;
  --c-accent: #9a7428;
  --c-icon-bg: #1b3022;
  --c-icon-fg: #ffffff;
  --c-icon-border: transparent;
  --c-field-bg: #ffffff;
  --c-field-border: rgba(27, 48, 34, 0.16);
  --c-field-text: #1b3022;
  --c-field-placeholder: rgba(92, 107, 95, 0.65);
  --c-btn-bg: #1b3022;
  --c-btn-text: #ffffff;
  background-color: #f8f3e9;
  color: var(--c-body);
}

#contact.contact-theme-dark {
  --c-heading: #f5f2ea;
  --c-body: rgba(245, 242, 234, 0.92);
  --c-muted: rgba(245, 242, 234, 0.55);
  --c-accent: #c5a059;
  --c-icon-bg: rgba(15, 34, 24, 0.55);
  --c-icon-fg: #c5a059;
  --c-icon-border: #c5a059;
  --c-field-bg: #15281c;
  --c-field-border: rgba(197, 160, 89, 0.4);
  --c-field-text: #f5f2ea;
  --c-field-placeholder: rgba(245, 242, 234, 0.45);
  --c-btn-bg: linear-gradient(90deg, #a88442 0%, #d4b06a 50%, #c5a059 100%);
  --c-btn-text: #1b3022;
  background-color: #0f2218;
  color: var(--c-body);
}

.contact-wrap {
  position: relative;
  z-index: 1;
}

.contact-top-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 10px;
}

.contact-top-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.contact-top-text {
  color: var(--c-accent);
}

.contact-top-leaf svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--c-accent);
  stroke-width: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
}

.contact-info,
.contact-form-panel {
  min-width: 0;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: var(--font-section-title);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--c-heading);
}

.contact-intro {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
  color: var(--c-body);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon {
  border: 1.5px solid var(--c-icon-border);
  background: var(--c-icon-bg);
  color: var(--c-icon-fg);
}

.contact-theme-light .contact-item-icon {
  box-shadow: 0 4px 14px rgba(27, 48, 34, 0.15);
}

.contact-theme-dark .contact-item-icon {
  box-shadow: none;
}

.contact-item-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
}

.contact-item h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--c-heading);
}

.contact-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item h3 a:hover {
  color: var(--c-accent);
}

.contact-item p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--c-heading);
}

.contact-item p a {
  color: inherit;
  transition: color var(--transition);
}

.contact-item p a:hover {
  color: var(--c-accent);
}

.contact-item>div>span {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
}

.contact-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  min-height: 100%;
}

.contact-divider-line {
  flex: 1;
  width: 1px;
  min-height: 80px;
}

.contact-theme-light .contact-divider-line {
  background: rgba(184, 142, 47, 0.35);
}

.contact-theme-dark .contact-divider-line {
  background: rgba(197, 160, 89, 0.35);
}

.contact-divider-leaf svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--c-accent);
  stroke-width: 1.5;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-flash {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 14px;
  border: 1px solid transparent;
}

.contact-flash--success {
  background: rgba(45, 107, 79, 0.12);
  color: #1b3022;
  border-color: rgba(45, 107, 79, 0.25);
}

.contact-flash--error {
  background: rgba(180, 60, 50, 0.1);
  color: #6b2e28;
  border-color: rgba(180, 60, 50, 0.25);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--c-field-border);
  background-color: var(--c-field-bg);
  color: var(--c-field-text);
}

.contact-theme-dark .contact-form input,
.contact-theme-dark .contact-form select,
.contact-theme-dark .contact-form textarea {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--c-field-placeholder);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-theme-light .contact-form select {
  color: var(--c-field-placeholder);
  background-color: var(--c-field-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231b3022' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}

.contact-theme-dark .contact-form select {
  color: var(--c-field-placeholder);
  background-color: var(--c-field-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c5a059' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}

.contact-form select:valid {
  color: var(--c-field-text);
}

.contact-theme-dark .contact-form select option {
  background: #15281c;
  color: #f5f2ea;
}

.contact-theme-light .contact-form select option {
  background: #fff;
  color: #1b3022;
}

.contact-theme-light .contact-form input:focus,
.contact-theme-light .contact-form select:focus,
.contact-theme-light .contact-form textarea:focus {
  border-color: rgba(27, 48, 34, 0.35);
  box-shadow: 0 0 0 2px rgba(27, 48, 34, 0.06);
}

.contact-theme-dark .contact-form input:focus,
.contact-theme-dark .contact-form select:focus,
.contact-theme-dark .contact-form textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  width: 100%;
  padding: 15px 24px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-submit {
  background: var(--c-btn-bg);
  color: var(--c-btn-text);
}

.contact-theme-light .contact-submit:hover {
  transform: translateY(-1px);
  background: #152a1c;
  box-shadow: 0 8px 24px rgba(27, 48, 34, 0.18);
}

.contact-theme-dark .contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
}

.contact-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  margin-top: 4px;
  color: var(--c-muted);
}

.contact-privacy svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Certifications bar — Infinite scrolling marquee */
#certifications {
  background: #f8f3e9;
  padding: clamp(28px, 4vw, 44px) 0 clamp(20px, 3vw, 32px);
  overflow: hidden;
}

.cert-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%);
}

.cert-marquee-track {
  display: flex;
  width: max-content;
  animation: certMarquee 35s linear infinite;
}

.cert-marquee:hover .cert-marquee-track {
  animation-play-state: paused;
}

@keyframes certMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cert-marquee-group {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.cert-marquee-dot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 3vw, 40px);
  font-size: clamp(16px, 1.4vw, 22px);
  color: var(--gold);
  opacity: 0.55;
  user-select: none;
}

.cert-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 12px);
  padding: clamp(10px, 1.2vw, 16px) clamp(14px, 1.8vw, 24px);
  background: #faf7f0;
  border: 1px solid rgba(27, 48, 34, 0.08);
  border-radius: clamp(10px, 1vw, 14px);
  box-shadow: 0 2px 10px rgba(27, 48, 34, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.cert-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(27, 48, 34, 0.08);
}

.cert-item--zed {
  justify-content: center;
}

.cert-item--stores {
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cert-badge {
  flex-shrink: 0;
  width: clamp(40px, 3.5vw, 52px);
  height: clamp(40px, 3.5vw, 52px);
}

.cert-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cert-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.cert-text strong,
.cert-code {
  font-size: clamp(10px, 0.7vw + 0.35rem, 12.5px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.25;
}

.cert-desc {
  font-size: clamp(9px, 0.55vw + 0.3rem, 11px);
  color: var(--text-muted);
  line-height: 1.35;
}

.cert-zed {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.cert-zed-main {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1a7a3c;
}

.cert-zed-sub {
  font-size: clamp(9px, 0.6vw + 0.3rem, 11px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #1a7a3c;
  margin-top: 2px;
}

.cert-stores-label {
  font-size: clamp(9px, 0.55vw + 0.3rem, 10.5px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.cert-stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 16px);
}

.cert-store {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition), transform var(--transition);
}

.cert-store:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

.cert-store img {
  display: block;
  height: clamp(22px, 2.2vw, 30px);
  width: auto;
}

.cert-store--amazon img {
  height: clamp(20px, 2vw, 28px);
}

@media (prefers-reduced-motion: reduce) {
  .cert-marquee-track {
    animation-play-state: paused;
  }
}

/* Footer */
#footer {
  background-color: #f8f3e9;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  color: #2a3d30;
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

.footer-wrap {
  position: relative;
  z-index: 1;
  padding-top: clamp(24px, 3vw, 36px);
}

.footer-notice {
  margin-top: clamp(20px, 2.5vw, 28px);
  margin-bottom: clamp(4px, 0.5vw, 8px);
}

.footer-notice-inner {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: clamp(8px, 1vw, 12px) 0;
}

.footer-notice-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  min-width: 0;
  padding: 0 clamp(8px, 1vw, 14px);
}

.footer-notice-divider {
  flex-shrink: 0;
  width: 1px;
  height: clamp(44px, 4.5vw, 56px);
  background: rgba(27, 48, 34, 0.18);
}

.footer-notice-icon {
  flex-shrink: 0;
  width: clamp(36px, 3.5vw, 44px);
  height: clamp(36px, 3.5vw, 44px);
  color: var(--green);
}

.footer-notice-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-notice-icon--img {
  width: clamp(48px, 4.5vw, 60px);
  height: clamp(48px, 4.5vw, 60px);
}

.footer-notice-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}

.footer-notice-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.footer-notice-text strong {
  font-size: clamp(13px, 0.85vw + 0.45rem, 15px);
  font-weight: 700;
  color: #1b3022;
  line-height: 1.35;
}

.footer-notice-text span {
  font-size: clamp(12px, 0.75vw + 0.4rem, 14px);
  color: #2a3d30;
  line-height: 1.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr 0.95fr 0.95fr 1.2fr;
  gap: 0;
  padding: 36px 0 28px;
  border-top: 1px solid rgba(27, 48, 34, 0.1);
  border-bottom: 1px solid rgba(27, 48, 34, 0.1);
}

.footer-brand,
.footer-col {
  padding: 0 22px;
}

.footer-brand {
  padding-left: 0;
}

.footer-col {
  border-left: 1px solid rgba(27, 48, 34, 0.1);
}

.footer-logo-link-img {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: clamp(60px, 8vw, 84px);
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo {
  position: relative;
  margin-bottom: 4px;
}

.footer-leaf {
  position: absolute;
  top: -10px;
  left: 88px;
  color: var(--gold);
  display: inline-flex;
}

.footer-leaf svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

.footer-tagline {
  font-size: 13px;
  color: #8a6b2e;
  margin-bottom: 10px;
}

.footer-about {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
  color: #2a3d30;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social-link:hover {
  background: var(--gold);
  color: var(--green);
  border-color: rgba(27, 48, 34, 0.12);
  transform: translateY(-2px);
}

.footer-social-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
  display: block;
  flex-shrink: 0;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #1b3022;
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 16px;
  font-weight: 500;
  color: #2a3d30;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--green);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #2a3d30;
}

.footer-contact li a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  stroke: currentColor;
  fill: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 20px;
  font-size: 14px;
  font-weight: 500;
  color: #2a3d30;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-powered-link {
  color: var(--green);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-powered-link:hover {
  color: var(--gold);
}

/* —— Responsive: 6" phones → 32" monitors —— */

/* Large desktops & monitors (24"–32") */
@media (min-width: 1024px) {
  .reviews-modal {
    align-items: center;
    padding: 24px;
  }

  .reviews-modal-panel {
    border-radius: 24px;
    max-height: 85vh;
    transform: translateY(24px) scale(0.96);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  }

  .reviews-modal.is-open .reviews-modal-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (min-width: 1440px) {
  :root {
    --container-max: min(100%, 1680px);
    --gutter: clamp(28px, 2.4vw, 56px);
    --hero-copy-max: min(100%, clamp(440px, 34vw, 640px));
    --card-min: clamp(180px, 12vw, 220px);
  }

  .nav-brand img {
    height: clamp(64px, 4vw, 84px);
  }

  .nav-brand-text h1 {
    font-size: clamp(20px, 1.2vw, 24px);
  }

  .nav-links a {
    font-size: clamp(13px, 0.85vw, 15px);
    padding: 8px clamp(14px, 1vw, 20px);
  }

  .hero-content {
    max-width: var(--hero-copy-max);
  }

  .hero-trust-item {
    font-size: clamp(10.5px, 0.75vw, 12px);
    max-width: 150px;
  }

  .feature-icon,
  .process-icon {
    width: clamp(68px, 5vw, 80px);
    height: clamp(68px, 5vw, 80px);
  }

  .process-icon--image {
    width: clamp(82px, 6.5vw, 100px);
    height: clamp(82px, 6.5vw, 100px);
  }

  .footer-grid {
    padding: clamp(36px, 3vw, 52px) 0 clamp(28px, 2vw, 40px);
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  }
}

@media (min-width: 1920px) {
  :root {
    --container-max: min(100%, 1760px);
    --section-pad-y: clamp(64px, 5vw, 120px);
    --font-body: clamp(15px, 0.7vw, 18px);
  }

  .hero-landing {
    background-position: 68% center;
  }

  .features-grid {
    gap: clamp(0px, 2vw, 32px);
  }

  .products-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    max-width: 100%;
  }

  .contact-grid {
    gap: clamp(36px, 3vw, 56px);
  }
}

@media (min-width: 2560px) {
  :root {
    --container-max: min(100%, 1920px);
    --gutter: clamp(40px, 2.2vw, 80px);
    --hero-copy-max: min(100%, 680px);
  }

  body {
    font-size: clamp(15px, 0.65vw, 18px);
  }

  .hero-content {
    max-width: var(--hero-copy-max);
  }

  .products-grid {
    max-width: 100%;
  }

  .reviews-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Ultra-wide / ~32" 4K (scaled or native) */
@media (min-width: 3200px) {
  :root {
    --container-max: min(100%, 2040px);
    --gutter: clamp(48px, 2vw, 96px);
    --font-h2: clamp(2.4rem, 1.2rem + 1.4vw, 4rem);
    --font-section-title: clamp(2rem, 1rem + 1.1vw, 3rem);
  }
}

/* Tablet landscape & small laptops */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 0;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(27, 48, 34, 0.1);
    padding-top: 20px;
    margin-top: 4px;
  }
}

/* Tablet — adaptive product columns (avoid forcing 7 skinny cards) */
@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    max-width: 100%;
    gap: 14px;
  }

  .product-card {
    min-height: 300px;
  }

  .product-benefits {
    max-width: 100%;
  }

  .product-card-img {
    height: clamp(130px, 22vw, 170px);
  }

  .product-card-img img {
    max-height: clamp(110px, 20vw, 150px);
  }
}

/* Tablet portrait */
@media (max-width: 1024px) {
  .nav-inner nav {
    position: static;
    transform: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
    padding: calc(var(--nav-height) + 16px) var(--gutter) 40px;
    padding-top: max(calc(var(--nav-height) + 16px), env(safe-area-inset-top, 0px) + 80px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    max-width: 360px;
  }

  .nav-links a {
    display: block;
    font-size: clamp(16px, 4vw, 20px);
    padding: 14px 20px;
    min-height: 44px;
  }

  .nav-links a::after {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .btn-cart,
  .btn-call {
    display: none;
  }

  .hero-landing {
    background-position: 78% center;
    background-size: cover;
  }

  #hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 24px) 0 48px;
  }

  .hero-info-bar-inner {
    border-radius: 18px;
    padding: 10px 12px;
  }

  .hero-info-item {
    padding: 0 6px;
  }

  .hero-info-text {
    font-size: clamp(8.5px, 2.2vw, 10.5px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    max-width: min(520px, 100%);
  }

  .hero-bg-slider .hero-slide img,
  .hero-bg-slider .hero-slide .hero-slide-img {
    object-position: var(--hero-focal-tablet, 78% 40%);
  }

  .hero-bg-shade {
    background: linear-gradient(165deg,
        rgba(245, 242, 234, 0.72) 0%,
        rgba(245, 242, 234, 0.42) 42%,
        rgba(245, 242, 234, 0.12) 68%,
        transparent 100%);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-trust-item {
    max-width: none;
    flex: 1 1 calc(50% - 8px);
  }

  #features {
    padding: var(--section-pad-y) 0;
  }

  #products {
    padding: var(--section-pad-y) 0;
  }

  #testimonials {
    padding: var(--section-pad-y) 0;
  }

  #promise {
    padding: var(--section-pad-y) 0;
  }

  .journey-layout {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }

  .journey-intro {
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }

  .journey-copy {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .feature-item:nth-child(2)::after {
    display: none;
  }

  .feature-item {
    padding: 0 20px;
  }

  .story-card-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-card-profile {
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
  }

  .cert-marquee-track {
    animation-duration: 25s;
  }

  .footer-notice-inner {
    flex-wrap: wrap;
    gap: 16px 0;
    justify-content: center;
  }

  .footer-notice-divider {
    display: none;
  }

  .footer-notice-item {
    flex: 1 1 calc(50% - 12px);
    padding: 0 12px;
  }

  .footer-notice-item:last-child {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-notice-item:last-child .footer-notice-text {
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
    padding-bottom: 24px;
  }

  .footer-brand,
  .footer-col {
    padding: 0 16px;
    border-left: none;
  }

  .footer-col:last-child {
    grid-column: auto;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(27, 48, 34, 0.1);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #contact::before {
    background: rgba(248, 243, 233, 0.9);
  }

  #contact.contact-theme-dark::before {
    background: rgba(15, 34, 24, 0.88);
  }

  .contact-divider {
    flex-direction: row;
    min-height: auto;
    padding: 0;
  }

  .contact-divider-line {
    flex: 1;
    width: auto;
    height: 1px;
    min-height: 0;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Large phones & small tablets (~6"–7") */
@media (max-width: 768px) {
  .nav-inner {
    padding: clamp(14px, 3vw, 18px) 0;
  }

  .nav-brand img {
    height: clamp(56px, 15vw, 68px);
  }

  .nav-brand-text h1 {
    font-size: clamp(16px, 4.5vw, 18px);
  }

  .nav-brand-text span {
    font-size: var(--font-small);
  }

  .hero-landing {
    background-position: 60% top;
    background-size: cover;
  }

  #hero {
    padding: calc(var(--nav-height) + 16px) 0 40px;
  }

  .hero-bg-slider .hero-slide img,
  .hero-bg-slider .hero-slide .hero-slide-img {
    object-position: var(--hero-focal-mobile, 86% 36%);
  }

  .hero-bg-shade {
    background: linear-gradient(180deg,
        rgba(245, 242, 234, 0.82) 0%,
        rgba(245, 242, 234, 0.55) 38%,
        rgba(245, 242, 234, 0.18) 62%,
        rgba(245, 242, 234, 0.08) 100%);
  }

  .hero-info-bar-inner {
    flex-direction: column;
    gap: 10px;
    border-radius: 16px;
    padding: 12px 14px;
  }

  .hero-info-divider {
    width: 65%;
    height: 1px;
  }

  .hero-info-item {
    width: 100%;
    padding: 0 2px;
  }

  .hero-info-text {
    font-size: 10px;
  }

  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(245, 242, 234, 0.55) 0%,
        rgba(245, 242, 234, 0.82) 55%,
        rgba(245, 242, 234, 0.92) 100%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-landing:has(.hero-bg-slider) #hero::before {
    display: none;
  }

  #hero .container {
    position: relative;
    z-index: 1;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 28px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 14px;
  }

  .hero-trust-item {
    flex: 1 1 100%;
    max-width: 100%;
    font-size: var(--font-small);
  }

  .features-header,
  .products-header,
  .testimonials-header {
    margin-bottom: clamp(24px, 5vw, 32px);
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow-x: visible;
    scroll-snap-type: none;
    max-width: 100%;
    margin: 0 auto;
    gap: 12px;
    padding-bottom: 0;
  }

  .product-card {
    scroll-snap-align: unset;
    min-height: clamp(300px, 68vw, 380px);
  }

  .product-card.is-flipped {
    min-height: clamp(320px, 76vw, 400px);
  }

  .product-card-img {
    height: clamp(120px, 32vw, 160px);
    padding: 14px 12px 10px;
  }

  .product-card-img img {
    max-height: clamp(100px, 28vw, 140px);
  }

  .product-card-body {
    padding: 14px 12px 18px;
  }

  .product-card-front h3 {
    font-size: clamp(14px, 3.6vw, 16px);
  }

  .product-desc {
    font-size: 11px;
  }

  .products-cta {
    margin-top: 32px;
  }

  .products-cta .btn-primary {
    width: 100%;
    max-width: min(360px, 100%);
  }

  .journey-card {
    flex-basis: clamp(240px, 68vw, 300px);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }

  .feature-item::after {
    display: none;
  }

  .story-loop-nav {
    flex-direction: column;
    gap: 12px;
  }

  .story-loop-dots {
    max-width: 100%;
  }

  .story-card-content blockquote {
    font-size: clamp(0.98rem, 4.2vw, 1.15rem);
  }

  .testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .testimonial-stat {
    min-width: 0;
    padding: 12px 10px;
  }

  .testimonial-stat strong {
    font-size: 1.2rem;
  }

  .testimonials-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .testimonials-filters::-webkit-scrollbar {
    display: none;
  }

  .testimonial-filter {
    flex-shrink: 0;
  }

  .reviews-modal-panel {
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-notice-inner {
    flex-direction: column;
    gap: 14px;
    padding: 8px 0;
  }

  .footer-notice-item {
    flex: 1 1 100%;
    width: 100%;
    padding: 0;
  }

  .footer-notice-item:last-child {
    text-align: left;
  }

  .footer-notice-item:last-child .footer-notice-text {
    align-items: flex-start;
  }

  .footer-notice-divider {
    display: block;
    width: 70%;
    height: 1px;
  }

  .cert-marquee-track {
    animation-duration: 20s;
  }

  .footer-col {
    border-left: none;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 14px 0 max(18px, env(safe-area-inset-bottom, 0px));
  }

  #contact {
    padding: var(--section-pad-y) 0;
  }

  .contact-intro {
    max-width: 100%;
  }

  .contact-submit {
    padding: 14px 20px;
    min-height: 48px;
  }
}

/* Compact phones (~6" screens, 360px) */
@media (max-width: 480px) {
  .nav-brand-text span {
    display: none;
  }

  .feature-icon {
    width: clamp(56px, 16vw, 68px);
    height: clamp(56px, 16vw, 68px);
  }

  .journey-icon {
    width: clamp(108px, 28vw, 132px);
    height: clamp(108px, 28vw, 132px);
  }

  .journey-icon.process-icon--image {
    width: clamp(120px, 30vw, 150px);
    height: clamp(120px, 30vw, 150px);
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item-icon {
    width: 40px;
    height: 40px;
  }

  .contact-item-icon svg {
    width: 16px;
    height: 16px;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .testimonials-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .testimonial-stat {
    padding: 10px 8px;
  }

  .testimonial-stat strong {
    font-size: 1.1rem;
  }

  .testimonial-stat span {
    font-size: 9px;
    line-height: 1.3;
  }

  .btn {
    padding: 12px 22px;
    font-size: var(--font-small);
    min-height: 44px;
  }
}

/* Extra-small phones (320px) */
@media (max-width: 360px) {
  :root {
    --gutter: 12px;
  }

  .nav-brand img {
    height: 48px;
  }

  .nav-brand-text h1 {
    font-size: 15px;
  }

  .hero-trust-icon {
    width: 36px;
    height: 36px;
  }

  .hero-trust-icon svg {
    width: 15px;
    height: 15px;
  }

  .product-card-body {
    padding: 16px 12px 20px;
  }

  .product-card-front h3 {
    font-size: 15px;
  }
}

/* Landscape on short viewports (phones rotated) */
@media (max-height: 500px) and (orientation: landscape) {
  .product-card {
    min-height: 300px;
  }

  .product-card-img {
    height: 100px;
    padding: 10px;
  }

  .product-card-img img {
    max-height: 88px;
  }

  .product-card-body {
    padding: 10px 12px 14px;
  }

  .hero-landing,
  #hero {
    min-height: auto;
  }

  #hero {
    padding: calc(var(--nav-height) + 12px) 0 28px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 4px;
    padding: 60px 24px 24px;
  }

  .nav-links li {
    width: auto;
    max-width: none;
  }

  .nav-links a {
    font-size: 14px;
    padding: 10px 14px;
  }
}

/* Mobile / tablet — tap to flip */
@media (hover: none),
(max-width: 1024px) {
  .product-card:hover {
    transform: none;
  }

  .product-card:hover .product-card-inner,
  .product-card:focus-within .product-card-inner {
    transform: none;
  }

  .product-card.is-flipped .product-card-inner {
    transform: rotateY(180deg);
  }

  .product-card:hover .product-card-face {
    box-shadow: 0 6px 28px rgba(27, 48, 34, 0.06);
    border-color: rgba(27, 48, 34, 0.07);
  }

  .product-card.is-flipped .product-card-face {
    box-shadow: 0 18px 48px rgba(27, 48, 34, 0.12);
    border-color: rgba(197, 160, 89, 0.35);
  }

  .product-card-back {
    justify-content: stretch;
    padding: 18px 14px 14px;
  }

  .product-card-back-inner {
    justify-content: space-between;
    gap: 8px;
  }

  .product-benefits {
    max-width: 100%;
    padding: 0 6px;
  }

  .product-benefits li {
    font-size: 12px;
    line-height: 1.5;
    padding: 7px 0 7px 20px;
  }

  .product-card-back h3 {
    font-size: clamp(15px, 4vw, 17px);
  }

  .btn,
  .hamburger,
  .nav-links a {
    -webkit-tap-highlight-color: transparent;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .product-card:hover .product-card-inner,
  .product-card:focus-within .product-card-inner {
    transform: none;
  }

  .product-card.is-flipped .product-card-front {
    visibility: hidden;
  }

  .product-card.is-flipped .product-card-back {
    -webkit-transform: none;
    transform: none;
    position: relative;
    inset: auto;
  }

  .product-card.is-flipped .product-card-inner {
    transform: none;
    display: flex;
    flex-direction: column;
  }

  .product-card.is-flipped .product-card-face {
    position: relative;
    inset: auto;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }

  .story-loop-track {
    transition: none !important;
  }

  .story-loop-slide .story-card-inner {
    transition: none !important;
  }

  .story-loop-progress-bar {
    animation: none !important;
    transform: scaleX(1) !important;
  }

  .reviews-modal-panel {
    transition: none;
  }

  .reviews-modal-backdrop {
    transition: none;
  }
}

/* ==========================================
   Scroll-Reveal Animation System
   ========================================== */

/* Base hidden state for all reveal elements */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s);
}

/* Variant: Fade Up (default) */
[data-reveal="fade-up"] {
  transform: translateY(40px);
}

/* Variant: Fade Down */
[data-reveal="fade-down"] {
  transform: translateY(-40px);
}

/* Variant: Fade In (just opacity) */
[data-reveal="fade-in"] {
  transform: none;
}

/* Variant: Slide from Left */
[data-reveal="slide-left"] {
  transform: translateX(-60px);
}

/* Variant: Slide from Right */
[data-reveal="slide-right"] {
  transform: translateX(60px);
}

/* Variant: Scale Up */
[data-reveal="scale-up"] {
  transform: scale(0.88);
}

/* Variant: Blur In */
[data-reveal="blur-in"] {
  filter: blur(8px);
  transform: translateY(20px);
}

/* Variant: Rotate In */
[data-reveal="rotate-in"] {
  transform: perspective(800px) rotateY(8deg) translateX(30px);
}

/* Revealed state — applied by JS */
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Stagger children — each child gets increasing delay */
[data-reveal-stagger]>* {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-stagger].is-revealed>* {
  opacity: 1;
  transform: none;
}

/* Stagger delay via nth-child (up to 12) */
[data-reveal-stagger].is-revealed> :nth-child(1) {
  transition-delay: 0.05s;
}

[data-reveal-stagger].is-revealed> :nth-child(2) {
  transition-delay: 0.12s;
}

[data-reveal-stagger].is-revealed> :nth-child(3) {
  transition-delay: 0.19s;
}

[data-reveal-stagger].is-revealed> :nth-child(4) {
  transition-delay: 0.26s;
}

[data-reveal-stagger].is-revealed> :nth-child(5) {
  transition-delay: 0.33s;
}

[data-reveal-stagger].is-revealed> :nth-child(6) {
  transition-delay: 0.40s;
}

[data-reveal-stagger].is-revealed> :nth-child(7) {
  transition-delay: 0.47s;
}

[data-reveal-stagger].is-revealed> :nth-child(8) {
  transition-delay: 0.54s;
}

[data-reveal-stagger].is-revealed> :nth-child(9) {
  transition-delay: 0.61s;
}

[data-reveal-stagger].is-revealed> :nth-child(10) {
  transition-delay: 0.68s;
}

[data-reveal-stagger].is-revealed> :nth-child(11) {
  transition-delay: 0.75s;
}

[data-reveal-stagger].is-revealed> :nth-child(12) {
  transition-delay: 0.82s;
}

/* Floating accent pulse for decorative elements */
@keyframes revealFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes revealPulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
  }

  50% {
    box-shadow: 0 0 24px 4px rgba(197, 160, 89, 0.15);
  }
}

/* Subtle parallax shimmer on section backgrounds */
@keyframes revealShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Counter / number grow animation */
[data-reveal-counter].is-revealed {
  animation: revealCounterPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealCounterPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  60% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Underline draw animation for headings */
.reveal-underline {
  position: relative;
  display: inline-block;
}

.reveal-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

[data-reveal].is-revealed .reveal-underline::after,
.is-revealed .reveal-underline::after {
  transform: scaleX(1);
}

/* Accessibility: Disable all reveal animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

  [data-reveal],
  [data-reveal-stagger]>* {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ── SEO / a11y heading ── */
.hero-site-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-desc--mobile {
  display: none;
}

.product-card h3 a {
  color: inherit;
}

.journey-card-media picture,
.journey-card-media .journey-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── Product detail page (removed) — keep care pages ── */
.product-page {
  background: var(--cream);
}

.product-main {
  padding: calc(var(--nav-height) + 28px) 0 72px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: var(--font-small);
  color: var(--text-muted);
  margin-bottom: 28px;
}

.product-breadcrumb a {
  color: var(--green);
  font-weight: 500;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0;
}

@media (max-width: 768px) {
  .hero-desc--desktop {
    display: none;
  }

  .hero-desc--mobile {
    display: block;
  }

  .hero-cta-secondary {
    display: none;
  }

  .hero-trust--highlights .hero-trust-item:nth-child(n+3) {
    display: none;
  }

  .hero-store-panel {
    margin-top: 8px;
  }

  .hero-info-bar {
    margin-top: 12px;
  }

  .hero-slide-content-block h2 {
    font-size: clamp(1.55rem, 6.5vw, 2.2rem);
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero-desc--mobile {
    font-size: 0.95rem;
    margin-bottom: 16px;
    max-width: 34ch;
  }
}

@media (max-width: 480px) {
  .hero-trust--highlights {
    gap: 6px;
  }

  .hero-store-label {
    font-size: 11px;
  }
}

/* ── Customer care / legal pages ── */
.care-article {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(22px, 3vw, 40px);
  box-shadow: var(--shadow);
  max-width: 820px;
}

.care-article h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  color: var(--green);
  margin-bottom: 12px;
}

.care-intro {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 60ch;
}

.care-sections {
  display: grid;
  gap: 22px;
}

.care-block h2 {
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 6px;
}

.care-block p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================================
   Fluid responsive edge-cases — phones (~6") to 32" monitors
   ========================================================= */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.btn,
.btn-call,
.contact-submit,
.hero-cta .btn,
.product-flip-hint,
.journey-nav-btn,
.story-loop-arrow,
.hamburger {
  min-height: var(--touch-min);
}

.btn,
.btn-call,
.contact-submit {
  min-width: var(--touch-min);
  padding-inline: clamp(16px, 2vw, 28px);
}

/* Mid-range laptops / small desktops */
@media (min-width: 1025px) and (max-width: 1439px) {
  :root {
    --card-min: 170px;
    --hero-copy-max: min(100%, clamp(340px, 36vw, 520px));
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr));
  }

  .journey-layout {
    gap: clamp(20px, 3vw, 40px);
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr) 1.1fr;
  }
}

/* Narrow phones (~6", 360–430px) */
@media (max-width: 430px) {
  :root {
    --gutter: clamp(12px, 4vw, 16px);
    --section-pad-y: clamp(32px, 8vw, 48px);
    --hero-copy-max: 100%;
    --card-min: 140px;
    --nav-height: 58px;
  }

  .hero-bg-slider .hero-slide img,
  .hero-bg-slider .hero-slide .hero-slide-img {
    object-position: var(--hero-focal-mobile, 88% 32%);
  }

  .hero-landing {
    min-height: 100svh;
  }

  #hero {
    display: flex;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 8px;
    max-width: min(100%, 34ch);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-card,
  .product-card.is-flipped {
    min-height: 320px;
  }

  .hero-slider-dots {
    bottom: 12px;
  }

  .hero-store-logos {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-store-link img {
    max-height: 28px;
    width: auto;
  }

  .journey-layout {
    grid-template-columns: 1fr;
  }

  .journey-card {
    flex-basis: min(100%, 280px);
  }

  .testimonials-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-stat {
    width: 100%;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .footer-notice-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }

  .care-article {
    padding: 18px 16px;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  :root {
    --gutter: 10px;
    --font-body: 13px;
    --font-h2: clamp(1.4rem, 7vw, 1.75rem);
  }

  .nav-brand img {
    height: 44px;
    max-width: 120px;
  }

  .btn-call {
    padding: 8px 12px;
    font-size: 12px;
  }

  .btn-call span,
  .btn-call {
    white-space: nowrap;
  }
}

/* Short landscape phones / foldables */
@media (max-height: 480px) and (orientation: landscape) {
  .hero-landing,
  #hero {
    min-height: auto;
  }

  #hero {
    padding: calc(var(--nav-height) + 8px) 0 20px;
  }

  .hero-trust--highlights,
  .hero-info-bar {
    display: none;
  }

  .hero-cta {
    margin-bottom: 12px;
  }

  .nav-links {
    padding-top: calc(var(--nav-height) + 8px);
    overflow-y: auto;
  }
}

/* Tablet portrait refinements */
@media (min-width: 600px) and (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial-stat {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 120px;
  }
}

/* Prevent overflow from marquee / long lines */
.cert-marquee,
.announce-bar,
.hero-landing,
#products,
#contact,
#footer {
  max-width: 100vw;
  overflow-x: hidden;
}

.cert-marquee {
  overflow-x: hidden;
}

.product-desc,
.feature-item p,
.contact-intro,
.journey-copy {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Sticky header safe area */
#navbar {
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.whatsapp-float {
  width: clamp(48px, 8vw, 60px);
  height: clamp(48px, 8vw, 60px);
}

/* Form fields: full-width, avoid zoom-jump on iOS */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  font-size: max(16px, var(--font-body));
}

/* Care / legal pages */
@media (min-width: 1200px) {
  .care-article {
    max-width: min(820px, 70vw);
  }
}