@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');

:root {
  --cream: #F5F2ED;
  --cream-dark: #E8E2D8;
  --ink: #1A1A18;
  --forest: #2D4A3E;
  --forest-mid: #3D6B5A;
  --sage: #8B9E89;
  --sage-light: #C8D5C4;
  --white: #FAFAF8;
  --black: #0E0E0C;

  --color-primary: #2D4A3E;
  --color-accent: #8B9E89;
  --color-dark: #1A1A18;
  --color-light: #F5F2ED;
  --color-cream: #E8E2D8;
  --color-sage-light: #C8D5C4;

  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Archivo', sans-serif;

  --radius-card: 0;
  --clip-card: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);

  --transition-base: 0.3s ease;
  --shadow-card: 0 4px 24px rgba(26,26,24,0.08);
  --shadow-deep: 0 16px 64px rgba(26,26,24,0.16);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.on-dark {
  color: rgba(245,242,237,0.85);
}
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4,
.on-dark h5 {
  color: #FAFAF8;
}
.on-dark p {
  color: rgba(245,242,237,0.72);
}
.on-dark a:not(.btn) {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  box-sizing: border-box;
}

.container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ─── TYPOGRAPHY ─── */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(42px, 7vw, 96px); }
h2 { font-size: clamp(32px, 5vw, 60px); }
h3 { font-size: clamp(22px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2.5vw, 26px); }

p {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
}

.italic-accent {
  font-style: italic;
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
  overflow: hidden;
  position: relative;
}

.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--forest {
  background: var(--forest);
  color: var(--cream);
}
.btn--forest:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
}

.btn--cream {
  background: var(--cream);
  color: var(--ink);
}
.btn--cream:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 20px 48px;
  font-size: 15px;
}

.btn.is-loading {
  pointer-events: none;
}

/* ─── SPINNER ─── */

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(245,242,237,0.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

.spinner--dark {
  border-color: rgba(26,26,24,0.2);
  border-top-color: var(--ink);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── CUT-CORNER CARDS (C6) ─── */

.card-cut {
  clip-path: var(--clip-card);
  background: var(--white);
  padding: 32px 28px;
  position: relative;
}

.card-cut--dark {
  background: var(--ink);
  color: var(--cream);
}

.card-cut--forest {
  background: var(--forest);
  color: var(--cream);
}

.card-cut--cream {
  background: var(--cream-dark);
}

/* ─── WAVE DIVIDERS (S3) ─── */

.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── NAVIGATION (V4 — Frosted, logo + one CTA) ─── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(245,242,237,0.1);
}

.nav--scrolled {
  background: rgba(245,242,237,0.92);
  box-shadow: 0 2px 20px rgba(26,26,24,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--black);
  text-decoration: none;
}

.nav__cta {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid rgba(245,242,237,0.5);
  transition: all var(--transition-base);
}

.nav--scrolled .nav__cta {
  color: var(--ink);
  border-color: var(--ink);
}

.nav__cta:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.nav--scrolled .nav__cta:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ─── HERO (Variant B — Full Bleed Immersive) ─── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,14,12,0.88) 0%,
    rgba(14,14,12,0.5) 45%,
    rgba(14,14,12,0.2) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 48px) clamp(60px, 8vw, 100px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 24px;
  animation: fade-up 0.8s ease forwards;
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-light);
  animation: pulse-ring 2s ease infinite;
}

.hero__title {
  color: #FAFAF8;
  max-width: 700px;
  margin-bottom: 12px;
  animation: fade-up 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero__title .italic-accent {
  font-style: italic;
  color: var(--sage-light);
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(245,242,237,0.72);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fade-up 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fade-up 0.8s ease 0.45s forwards;
  opacity: 0;
}

.hero__price-hint {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(245,242,237,0.55);
  letter-spacing: 0.05em;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: clamp(20px, 5vw, 48px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.45);
  font-family: var(--font-body);
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(245,242,237,0.3);
}

/* ─── ADVERTORIAL BANNER ─── */

.advertorial-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(26,26,24,0.1);
  padding: 8px 0;
  text-align: center;
}

.advertorial-bar p {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.55);
  font-weight: 500;
  line-height: 1.4;
}

/* ─── MARQUEE STRIP ─── */

.marquee-strip {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-strip__track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
}

.marquee-strip__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ─── PRODUCT SECTION ─── */

.product {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream);
}

.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.product__gallery {
  position: relative;
}

.product__main-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  background: var(--cream-dark);
  display: block;
  clip-path: var(--clip-card);
}

.product__thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.product__thumb {
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--cream-dark);
  cursor: pointer;
  clip-path: var(--clip-card);
  border: 2px solid transparent;
  transition: border-color var(--transition-base);
  width: 100%;
  display: block;
}

.product__thumb:hover,
.product__thumb.active {
  border-color: var(--forest);
}

.product__info {
  position: sticky;
  top: 100px;
}

.product__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 20px;
  clip-path: var(--clip-card);
}

.product__collection {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.product__title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.05;
}

.product__desc {
  font-size: 16px;
  color: rgba(26,26,24,0.7);
  margin-bottom: 28px;
  line-height: 1.75;
}

.product__price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--cream-dark);
  clip-path: var(--clip-card);
}

.product__price {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.product__price-label {
  font-size: 13px;
  color: rgba(26,26,24,0.5);
  font-weight: 500;
}

.product__cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 15px;
  padding: 18px 36px;
}

.product__trust-micro {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.product__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(26,26,24,0.55);
  font-family: var(--font-body);
}

.product__trust-item svg {
  flex-shrink: 0;
}

/* ─── SECOND CHANCE NOTICE ─── */

.second-chance {
  padding: clamp(40px, 6vw, 70px) 0;
  background: var(--ink);
}

.second-chance__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.second-chance__icon {
  width: 64px;
  height: 64px;
  background: var(--forest);
  clip-path: var(--clip-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.second-chance__title {
  color: var(--cream);
  margin-bottom: 12px;
  font-size: clamp(20px, 3vw, 32px);
}

.second-chance__text {
  color: rgba(245,242,237,0.68);
  font-size: 15px;
  line-height: 1.75;
}

.second-chance__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.second-chance__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,242,237,0.72);
  font-family: var(--font-body);
}

.second-chance__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sage-light);
}

/* ─── TECHNOLOGY / INGREDIENTS SECTION ─── */

.technology {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream);
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 56px);
  color: var(--ink);
  margin-bottom: 20px;
}

.section-title .italic-accent {
  font-style: italic;
  color: var(--forest);
}

.on-dark .section-title .italic-accent {
  color: var(--sage-light);
}

.section-intro {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(26,26,24,0.65);
  max-width: 600px;
  margin-bottom: clamp(40px, 6vw, 64px);
  line-height: 1.75;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tech-card {
  clip-path: var(--clip-card);
  background: var(--cream-dark);
  padding: 36px 28px;
  transition: transform var(--transition-base);
}

.tech-card:hover {
  transform: translateY(-4px);
}

.tech-card__icon {
  width: 48px;
  height: 48px;
  background: var(--forest);
  clip-path: var(--clip-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tech-card__icon svg {
  color: var(--cream);
}

.tech-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}

.tech-card__text {
  font-size: 14px;
  color: rgba(26,26,24,0.65);
  line-height: 1.7;
}

.tech-visual {
  margin-top: clamp(50px, 7vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.tech-visual__img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: var(--cream-dark);
  clip-path: var(--clip-card);
  display: block;
}

.tech-visual__content h3 {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--ink);
  margin-bottom: 20px;
}

.tech-visual__content p {
  font-size: 15px;
  color: rgba(26,26,24,0.65);
  margin-bottom: 16px;
  line-height: 1.75;
}

.tech-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.tech-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(26,26,24,0.7);
}

.tech-spec-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--forest);
}

/* ─── HOW IT WORKS ─── */

.howitworks {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--forest);
  position: relative;
}

.howitworks .section-label {
  color: var(--sage-light);
}

.howitworks .section-title {
  color: var(--cream);
}

.howitworks .section-intro {
  color: rgba(245,242,237,0.65);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  position: relative;
}

.step-card {
  position: relative;
  z-index: 1;
  clip-path: var(--clip-card);
  background: rgba(245,242,237,0.07);
  padding: 40px 28px 32px;
  transition: background var(--transition-base), transform var(--transition-base);
}

.step-card:hover {
  background: rgba(245,242,237,0.12);
  transform: translateY(-4px);
}

.step-card__num {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(200,213,196,0.18);
  line-height: 1;
  margin-bottom: 16px;
  position: absolute;
  top: 16px;
  right: 24px;
}

.step-card__icon {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  clip-path: var(--clip-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card__icon svg {
  color: var(--forest);
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-card__text {
  font-size: 14px;
  color: rgba(245,242,237,0.65);
  line-height: 1.7;
}

/* ─── BENEFITS ─── */

.benefits {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream);
}

.benefits__layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.benefits__sticky {
  position: sticky;
  top: 100px;
}

.benefits__sticky h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--ink);
  margin-bottom: 20px;
}

.benefits__sticky p {
  font-size: 15px;
  color: rgba(26,26,24,0.62);
  line-height: 1.75;
  margin-bottom: 28px;
}

.benefits__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  background: var(--cream-dark);
  clip-path: var(--clip-card);
  display: block;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 24px 24px 20px;
  clip-path: var(--clip-card);
  background: var(--cream-dark);
  transition: transform var(--transition-base), background var(--transition-base);
}

.benefit-item:hover {
  transform: translateX(6px);
  background: var(--sage-light);
}

.benefit-item__icon {
  width: 52px;
  height: 52px;
  background: var(--ink);
  clip-path: var(--clip-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item__icon svg {
  color: var(--cream);
}

.benefit-item__title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}

.benefit-item__text {
  font-size: 13px;
  color: rgba(26,26,24,0.62);
  line-height: 1.65;
}

/* ─── STATS STRIP (N4 — horizontal) ─── */

.stats-strip {
  background: var(--ink);
  padding: clamp(40px, 5vw, 60px) 0;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.stats-strip__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(25% - 1px),
    rgba(245,242,237,0.06) calc(25% - 1px),
    rgba(245,242,237,0.06) 25%
  );
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: 24px 20px;
  position: relative;
  z-index: 1;
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.stat-item__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 8px;
  display: block;
  font-weight: 500;
}

/* ─── DELIVERY ─── */

.delivery {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream-dark);
}

.delivery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: clamp(40px, 5vw, 60px);
}

.delivery-card {
  clip-path: var(--clip-card);
  background: var(--white);
  padding: 32px 24px;
  transition: transform var(--transition-base);
}

.delivery-card:hover {
  transform: translateY(-4px);
}

.delivery-card__icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  clip-path: var(--clip-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.delivery-card__icon svg {
  color: var(--cream);
}

.delivery-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}

.delivery-card__text {
  font-size: 13px;
  color: rgba(26,26,24,0.6);
  line-height: 1.65;
}

/* ─── FAQ ─── */

.faq {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq__item {
  background: var(--cream-dark);
  clip-path: var(--clip-card);
  overflow: hidden;
  transition: clip-path var(--transition-base);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  user-select: none;
  transition: background var(--transition-base);
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question:hover {
  background: var(--sage-light);
}

.faq__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.faq__item.faq--open .faq__arrow {
  transform: rotate(45deg);
}

.faq__item.faq--open .faq__question {
  background: var(--sage-light);
  color: var(--forest);
}

.faq__answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 14px;
  color: rgba(26,26,24,0.68);
  line-height: 1.75;
}

.faq__item.faq--open .faq__answer {
  display: block;
}

/* ─── EMAIL SUBSCRIBE ─── */

.subscribe {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.subscribe::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(200,213,196,0.06);
  pointer-events: none;
}

.subscribe__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.subscribe__title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--cream);
  margin-bottom: 16px;
}

.subscribe__subtitle {
  font-size: 16px;
  color: rgba(245,242,237,0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}

.subscribe__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.subscribe__input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(245,242,237,0.1);
  border: 1px solid rgba(245,242,237,0.2);
  border-right: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.subscribe__input::placeholder {
  color: rgba(245,242,237,0.4);
}

.subscribe__input:focus {
  background: rgba(245,242,237,0.15);
  border-color: var(--sage-light);
}

.subscribe__btn {
  padding: 16px 28px;
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}

.subscribe__btn:hover {
  background: var(--sage-light);
}

.subscribe__note {
  font-size: 12px;
  color: rgba(245,242,237,0.4);
  margin-top: 16px;
  font-style: italic;
}

.subscribe__success {
  display: none;
  font-size: 16px;
  color: var(--sage-light);
  font-family: var(--font-display);
  padding: 20px;
}

/* ─── SUPPORT / CONTACT ─── */

.support {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream);
}

.support__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.support__info h2 {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--ink);
  margin-bottom: 16px;
}

.support__info p {
  font-size: 15px;
  color: rgba(26,26,24,0.65);
  margin-bottom: 32px;
  line-height: 1.75;
}

.support__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support__contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(26,26,24,0.7);
  text-decoration: none;
  transition: color var(--transition-base);
}

.support__contact-item:hover {
  color: var(--forest);
}

.support__contact-icon {
  width: 40px;
  height: 40px;
  background: var(--cream-dark);
  clip-path: var(--clip-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-base);
}

.support__contact-item:hover .support__contact-icon {
  background: var(--sage-light);
}

.support__contact-icon svg {
  color: var(--forest);
}

.support__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── FORM ELEMENTS ─── */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(26,26,24,0.55);
  font-family: var(--font-body);
}

.form-input {
  padding: 14px 18px;
  background: var(--cream-dark);
  border: 1.5px solid transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-base), background var(--transition-base);
  clip-path: var(--clip-card);
}

.form-input:focus {
  border-color: var(--forest);
  background: var(--white);
}

.form-input.error {
  border-color: #c0392b;
}

.form-error {
  font-size: 12px;
  color: #c0392b;
  font-style: italic;
  display: none;
}

.form-error.visible {
  display: block;
}

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

/* ─── FOOTER ─── */

.footer {
  background: var(--black);
  padding: clamp(60px, 8vw, 100px) 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: clamp(40px, 5vw, 60px);
}

.footer__brand {
  color: var(--cream);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(245,242,237,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contact-list li {
  font-size: 13px;
  color: rgba(245,242,237,0.5);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer__contact-list a {
  color: rgba(245,242,237,0.5);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer__contact-list a:hover {
  color: var(--sage-light);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(245,242,237,0.45);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer__links a:hover {
  color: var(--sage-light);
}

.footer__bottom {
  border-top: 1px solid rgba(245,242,237,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: rgba(245,242,237,0.28);
}

.footer__legal-note {
  font-size: 11px;
  color: rgba(245,242,237,0.22);
  max-width: 500px;
  text-align: right;
  line-height: 1.5;
}

/* ─── COOKIE BANNER ─── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 24px clamp(20px, 5vw, 48px);
  background: var(--ink);
  border-top: 1px solid rgba(245,242,237,0.08);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner__text p {
  font-size: 13px;
  color: rgba(245,242,237,0.65);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--sage-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base);
}

.cookie-btn--accept {
  background: var(--forest);
  color: var(--cream);
}
.cookie-btn--accept:hover { background: var(--forest-mid); }

.cookie-btn--reject {
  background: transparent;
  color: rgba(245,242,237,0.55);
  border: 1px solid rgba(245,242,237,0.2);
}
.cookie-btn--reject:hover {
  color: var(--cream);
  border-color: rgba(245,242,237,0.5);
}

.cookie-btn--config {
  background: transparent;
  color: rgba(245,242,237,0.4);
  font-size: 11px;
  text-decoration: underline;
  padding: 10px 8px;
}

.cookie-config-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(245,242,237,0.08);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-config-panel.open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245,242,237,0.06);
}

.cookie-toggle-label {
  font-size: 13px;
  color: rgba(245,242,237,0.65);
}

.cookie-toggle-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--cream);
  margin-bottom: 2px;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle__track {
  position: absolute;
  inset: 0;
  background: rgba(245,242,237,0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: var(--forest);
}

.cookie-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-base);
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle__track {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-config-save {
  margin-top: 16px;
  padding: 10px 24px;
  background: var(--sage);
  color: var(--cream);
  border: none;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-base);
}
.cookie-config-save:hover { background: var(--forest); }

/* ─── MODAL ─── */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,14,12,0.7);
  z-index: 8000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--cream);
  clip-path: var(--clip-card);
  padding: clamp(32px, 4vw, 56px);
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: fade-up 0.4s ease forwards;
}

.modal-box__icon {
  width: 56px;
  height: 56px;
  background: var(--forest);
  clip-path: var(--clip-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-box__icon svg {
  color: var(--cream);
}

.modal-box__title {
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 12px;
}

.modal-box__text {
  font-size: 15px;
  color: rgba(26,26,24,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal-box__close {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-base);
}
.modal-box__close:hover { background: var(--forest); }

/* ─── ANIMATIONS ─── */

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

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* ─── SCROLL REVEAL ─── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */

.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.stagger-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.stagger-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.stagger-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.stagger-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.stagger-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.stagger-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* ─── CHECKOUT PAGE STYLES ─── */

.checkout-page {
  background: var(--cream);
  min-height: 100vh;
  padding-top: 80px;
}

.checkout-header {
  background: var(--black);
  padding: 20px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-header__logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  text-decoration: none;
}

.checkout-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 60px) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.checkout-summary {
  clip-path: var(--clip-card);
  background: var(--ink);
  padding: 32px 28px;
  color: var(--cream);
  position: sticky;
  top: 100px;
}

.checkout-summary__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 20px;
  gap: 12px;
}

.checkout-summary__toggle-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.55);
  font-family: var(--font-body);
}

.checkout-summary__product {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245,242,237,0.08);
  margin-bottom: 20px;
}

.checkout-summary__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: rgba(245,242,237,0.05);
  clip-path: var(--clip-card);
  flex-shrink: 0;
}

.checkout-summary__product-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 4px;
}

.checkout-summary__product-sub {
  font-size: 12px;
  color: rgba(245,242,237,0.45);
}

.checkout-summary__line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(245,242,237,0.6);
  margin-bottom: 10px;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(245,242,237,0.12);
  padding-top: 16px;
  margin-top: 8px;
}

.checkout-summary__total-label {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(245,242,237,0.7);
  letter-spacing: 0.05em;
}

.checkout-summary__total-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.checkout-seller-block {
  margin-top: 24px;
  padding: 20px;
  background: rgba(245,242,237,0.05);
  clip-path: var(--clip-card);
}

.checkout-seller-block__label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.checkout-seller-block p {
  font-size: 12px;
  color: rgba(245,242,237,0.5);
  line-height: 1.65;
}

.checkout-seller-block a {
  color: var(--sage-light);
}

.checkout-order-terms {
  margin-top: 16px;
  padding: 16px;
  background: rgba(200,213,196,0.07);
  clip-path: var(--clip-card);
}

.checkout-order-terms p {
  font-size: 12px;
  color: rgba(245,242,237,0.45);
  line-height: 1.65;
}

.checkout-form-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.checkout-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-input {
  padding: 14px 18px;
  background: var(--cream-dark);
  border: 1.5px solid transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-base), background var(--transition-base);
  clip-path: var(--clip-card);
  width: 100%;
  -webkit-appearance: none;
}

.checkout-input:focus {
  border-color: var(--forest);
  background: var(--white);
}

.checkout-input.error,
.checkout-input.error-input {
  border-color: #c0392b;
}

.checkout-input.valid-input {
  border-color: var(--forest-mid);
}

select.checkout-input {
  cursor: pointer;
}

.checkout-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(26,26,24,0.65);
}

.checkout-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--forest);
}

.cod-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--cream-dark);
  clip-path: var(--clip-card);
}

.cod-badge svg {
  color: var(--forest);
  flex-shrink: 0;
}

.cod-badge__text {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.cod-badge__sub {
  font-size: 12px;
  color: rgba(26,26,24,0.55);
}

.checkout-submit {
  width: 100%;
  padding: 18px 36px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
  clip-path: var(--clip-card);
}

.checkout-submit:hover:not(:disabled) {
  background: var(--forest);
  transform: translateY(-2px);
}

.checkout-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkout-legal-note {
  font-size: 12px;
  color: rgba(26,26,24,0.45);
  line-height: 1.6;
  margin-top: 8px;
}

.checkout-legal-note a {
  color: var(--forest);
  text-decoration: underline;
}

/* ─── LEGAL PAGES ─── */

.legal-page {
  padding-top: 100px;
  padding-bottom: clamp(60px, 8vw, 100px);
  min-height: 80vh;
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink);
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  font-size: 13px;
  color: rgba(26,26,24,0.45);
  margin-bottom: 40px;
  display: block;
}

.legal-page h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--ink);
  margin: 36px 0 12px;
}

.legal-page h3 {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink);
  margin: 24px 0 8px;
}

.legal-page p {
  font-size: 15px;
  color: rgba(26,26,24,0.7);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-page li {
  font-size: 15px;
  color: rgba(26,26,24,0.7);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--forest);
  text-decoration: underline;
}

/* ─── PHOTO PLACEHOLDER ─── */

.photo-placeholder {
  background: linear-gradient(135deg, #ff6eb4, #ff3d9a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}

.photo-placeholder__icon { font-size: 32px; }
.photo-placeholder__label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  padding: 0 16px;
}

/* ─── RESPONSIVE ─── */

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

  .product__info {
    position: static;
  }

  .product__thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-visual {
    grid-template-columns: 1fr;
  }

  .benefits__layout {
    grid-template-columns: 1fr;
  }

  .benefits__sticky {
    position: static;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .support__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .second-chance__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .checkout-main {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .footer__legal-note {
    text-align: left;
  }

  .subscribe__form {
    flex-direction: column;
  }

  .subscribe__input {
    border-right: 1px solid rgba(245,242,237,0.2);
  }

  .cookie-banner__inner {
    flex-direction: column;
  }

  .delivery__grid {
    grid-template-columns: 1fr;
  }
}

/* Progressive-enhancement safety (injected by builder): scroll-reveal blocks stay VISIBLE
   unless JS confirms it can animate them by adding .js-anim to <html>. Guarantees a
   truncated page or a failed script can never leave content permanently hidden. */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-left,
html:not(.js-anim) .reveal-right,
html:not(.js-anim) .reveal-scale,
html:not(.js-anim) .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}
