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

:root {
  --color-navy: #0a0f1e;
  --color-navy-mid: #1a2540;
  --color-navy-light: #2d3a5c;
  --color-cobalt: #1e3a8a;
  --color-cobalt-bright: #2563eb;
  --color-gold: #c8b88a;
  --color-gold-light: #ddd0aa;
  --color-cream: #f5f0e8;
  --color-cream-warm: #ede7d9;
  --color-white: #fafaf8;
  --color-text-dark: #0a0f1e;
  --color-text-muted: #4a5568;
  --color-border: rgba(200, 184, 138, 0.25);
  --color-border-dark: rgba(255,255,255,0.12);
  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body: 'Karla', sans-serif;
  --radius-btn: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 2px 0 2px var(--color-gold);
  --max-w: 1200px;
  --nav-height: 72px;
  --advertorial-height: 37px;
  --site-header-height: calc(var(--nav-height) + var(--advertorial-height));
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--color-navy);
  color: var(--color-cream);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--site-header-height);
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

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

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

/* ─── ON-DARK ─── */
.on-dark { color: rgba(245, 240, 232, 0.85); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--color-white); }
.on-dark p { color: rgba(245, 240, 232, 0.72); }
.on-dark a:not(.btn) { color: inherit; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 15, 30, 0.92);
  border-bottom: 1px solid var(--color-border);
}

.nav--scrolled {
  background: rgba(10, 15, 30, 0.97);
  box-shadow: 0 1px 0 var(--color-border);
}

/* ─── ADVERTORIAL BAR ─── */
.advertorial-bar {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: var(--color-navy-mid);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  text-transform: uppercase;
  z-index: 999;
}

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

.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--color-gold); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

/* B3 — Ghost + fill */
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(245, 240, 232, 0.5);
}

.btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn--solid {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn--solid:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.btn--large {
  padding: 18px 48px;
  font-size: 14px;
}

.btn--full { width: 100%; }

.btn.is-loading { opacity: 0.7; cursor: wait; }

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}

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

/* ─── HERO D — ASYMMETRIC DIAGONAL ─── */
.hero {
  min-height: calc(100vh - var(--site-header-height));
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero__left {
  background: var(--color-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vh, 80px) clamp(32px, 6vw, 80px) clamp(80px, 10vh, 120px) clamp(24px, 5vw, 64px);
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.hero__right {
  background: var(--color-navy-mid);
  position: relative;
  overflow: visible;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  animation: fade-up 0.8s ease forwards;
  opacity: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 28px;
  animation: fade-up 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 44px;
  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__scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 56px;
  animation: fade-up 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.4;
}

.hero__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero__product-img {
  width: clamp(280px, 45vw, 560px);
  max-height: 80vh;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: fade-up 0.9s ease 0.2s forwards, float 6s ease-in-out 1.2s infinite;
  opacity: 0;
  filter: drop-shadow(0 40px 80px rgba(37, 99, 235, 0.25));
}

.hero__badge {
  position: absolute;
  background: rgba(26, 37, 64, 0.85);
  border: 1.5px solid var(--color-gold);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  z-index: 10;
  animation: fade-up 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero__badge--tl { top: 18%; left: -40px; }
.hero__badge--br { bottom: 22%; right: -20px; }

.hero__badge-icon {
  width: 36px;
  height: 36px;
  background: var(--color-gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__badge-icon svg { width: 18px; height: 18px; }

.hero__badge-text { font-size: 12px; color: rgba(245, 240, 232, 0.9); font-weight: 500; line-height: 1.4; }
.hero__badge-text strong { display: block; color: var(--color-white); font-size: 13px; }

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

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

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

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

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

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

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

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

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

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

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

/* ─── MARQUEE STRIP ─── */
.marquee-section {
  background: var(--color-navy-mid);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  white-space: nowrap;
}

.marquee-item::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.6;
}

/* ─── STATS STRIP (N4) ─── */
.stats-strip {
  background: var(--color-navy-light);
  padding: 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.stats-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  divide: x;
}

.stats-strip__grid {
  display: flex;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-top: clamp(48px, 7vw, 80px);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  border-right: 1px solid var(--color-border-dark);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

/* ─── PRODUCT SECTION ─── */
.product-section {
  background: var(--color-navy);
  padding: clamp(80px, 10vw, 140px) 0;
}

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

.product-gallery {
  position: relative;
}

.product-carousel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-carousel__viewport {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-carousel__main {
  flex: 1;
  position: relative;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid rgba(10, 15, 30, 0.08);
  box-shadow: 0 8px 32px rgba(10, 15, 30, 0.08);
  overflow: hidden;
  aspect-ratio: 1;
  min-width: 0;
}

.product-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  padding: 24px;
}

.product-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10, 15, 30, 0.1);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(10, 15, 30, 0.06);
}

.product-carousel__btn svg {
  width: 22px;
  height: 22px;
}

.product-carousel__btn:hover {
  background: var(--color-cream);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.product-carousel__btn:active {
  transform: scale(0.97);
}

.product-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
}

.product-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(10, 15, 30, 0.18);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.product-carousel__dot.is-active {
  background: var(--color-gold);
  transform: scale(1.15);
}

.product-carousel__counter {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.7);
  white-space: nowrap;
}

.product-carousel__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) transparent;
}

.product-carousel__thumbs::-webkit-scrollbar {
  height: 4px;
}

.product-carousel__thumbs::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

.product-carousel__thumb {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--color-white);
  padding: 4px;
  cursor: pointer;
  scroll-snap-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.product-carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-carousel__thumb:hover,
.product-carousel__thumb.is-active {
  border-color: var(--color-gold);
  box-shadow: 0 2px 12px rgba(200, 184, 138, 0.35);
}

.product-info__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.product-info__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.product-info__desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.85;
  margin-bottom: 36px;
}

.product-info__price {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 12px;
}

.product-info__price-note {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.product-info__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.product-feature__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.product-feature__text {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.78);
  line-height: 1.6;
}

/* C7 — Outlined bold */
.card {
  border: 2px solid var(--color-gold);
  border-radius: 4px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.card:hover {
  background: rgba(200, 184, 138, 0.06);
  box-shadow: 0 0 0 1px var(--color-gold);
}

/* ─── HOW IT WORKS ─── */
.how-section {
  background: var(--color-navy-mid);
  padding: clamp(80px, 10vw, 140px) 0 clamp(100px, 12vw, 160px);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 96%);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}

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

.steps-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.666% + 20px);
  right: calc(16.666% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.35;
  pointer-events: none;
}

.step-card {
  padding: 36px 28px;
  text-align: center;
}

.step-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.step-card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-navy);
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card__icon svg { width: 24px; height: 24px; stroke: var(--color-gold); fill: none; stroke-width: 1.5; }

.step-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.step-card__desc {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.75;
}

/* ─── BENEFITS ─── */
.benefits-section {
  background: var(--color-navy);
  padding: clamp(80px, 10vw, 140px) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.benefit-item {
  padding: 40px 36px;
  border: 1px solid var(--color-border);
  position: relative;
  transition: border-color var(--transition);
}

.benefit-item:hover { border-color: var(--color-gold); }

.benefit-item__icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--color-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.benefit-item__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.benefit-item__desc {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.75;
}

/* ─── DISCLAIMER ─── */
.disclaimer-bar {
  background: rgba(26, 37, 64, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 14px 20px;
  margin: 24px auto 0;
  max-width: 680px;
  text-align: center;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.6;
}

/* ─── DELIVERY ─── */
.delivery-section {
  background: var(--color-navy-light);
  padding: clamp(80px, 10vw, 140px) 0;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.delivery-card {
  padding: 32px 28px;
  text-align: center;
}

.delivery-card__icon {
  width: 60px;
  height: 60px;
  background: var(--color-navy);
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.delivery-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.delivery-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 10px;
}

.delivery-card__desc {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.58);
  line-height: 1.7;
}

/* ─── EMAIL SUBSCRIBE ─── */
.subscribe-section {
  background: var(--color-navy-mid);
  padding: clamp(80px, 10vw, 120px) 0;
}

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

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

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

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
}

.form-input {
  background: rgba(10, 15, 30, 0.6);
  border: 1.5px solid var(--color-border-dark);
  border-radius: 4px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-white);
  transition: border-color var(--transition);
  width: 100%;
}

.form-input::placeholder { color: rgba(245, 240, 232, 0.3); }
.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-input.error { border-color: #e53e3e; }
.form-error { font-size: 12px; color: #e53e3e; display: none; }
.form-error.visible { display: block; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-check-label {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
}

.form-check-label a { color: var(--color-gold); text-decoration: underline; }

/* ─── SUPPORT / CONTACT ─── */
.support-section {
  background: var(--color-navy);
  padding: clamp(80px, 10vw, 140px) 0;
}

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

.support-contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.support-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.support-contact-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--color-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.support-contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 4px;
}

.support-contact-value {
  font-size: 16px;
  color: var(--color-white);
  font-weight: 400;
}

.support-contact-value a { color: var(--color-gold); }

.support-form-wrap {}

/* ─── FAQ ─── */
.faq-section {
  background: var(--color-navy-mid);
  padding: clamp(80px, 10vw, 140px) 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1.5px solid var(--color-border-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: rgba(200, 184, 138, 0.4); }
.faq-item.faq--open { border-color: var(--color-gold); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--color-gold); }
.faq-item.faq--open .faq-question { color: var(--color-gold); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.faq--open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.88);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(8px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--color-navy-mid);
  border: 2px solid var(--color-gold);
  border-radius: 4px;
  padding: clamp(36px, 5vw, 56px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}

.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-icon {
  width: 56px;
  height: 56px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal-icon svg { width: 26px; height: 26px; stroke: var(--color-navy); fill: none; stroke-width: 2; }

.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.modal-body {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.75;
  margin-bottom: 28px;
}

.modal-close {
  background: none;
  border: 1.5px solid var(--color-gold);
  border-radius: 4px;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.modal-close:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, calc(100% - 40px));
  background: var(--color-navy-mid);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 24px 28px;
  z-index: 8000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
}

.cookie-banner.visible { display: block; animation: fade-up 0.5s ease forwards; }

.cookie-banner__text {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid;
}

.cookie-btn--accept {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.cookie-btn--accept:hover { background: var(--color-gold-light); }

.cookie-btn--reject {
  background: transparent;
  color: rgba(245, 240, 232, 0.65);
  border-color: rgba(245, 240, 232, 0.2);
}

.cookie-btn--reject:hover { border-color: rgba(245, 240, 232, 0.5); color: var(--color-white); }

.cookie-btn--configure {
  background: transparent;
  color: rgba(245, 240, 232, 0.5);
  border-color: transparent;
  text-decoration: underline;
}

.cookie-panel {
  display: none;
  margin-top: 16px;
  border-top: 1px solid var(--color-border-dark);
  padding-top: 16px;
}

.cookie-panel.visible { display: block; }

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.cookie-toggle-label {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.75);
}

.cookie-toggle-label span {
  display: block;
  font-size: 11px;
  color: rgba(245, 240, 232, 0.4);
}

.cookie-switch {
  position: relative;
  width: 40px;
  height: 22px;
}

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

.cookie-switch-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 22px;
  transition: background var(--transition);
  cursor: pointer;
}

.cookie-switch-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform var(--transition);
}

.cookie-switch input:checked + .cookie-switch-slider { background: var(--color-gold); }
.cookie-switch input:checked + .cookie-switch-slider::before { transform: translateX(18px); }

.cookie-switch input:disabled + .cookie-switch-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-save-btn {
  margin-top: 14px;
  width: 100%;
  padding: 10px;
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-save-btn:hover { background: var(--color-gold-light); }

/* ─── FOOTER ─── */
.footer {
  background: var(--color-navy);
  border-top: 1px solid var(--color-border);
  padding: clamp(48px, 7vw, 80px) 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__brand span { color: var(--color-gold); }

.footer__tagline {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__contact-block {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.8;
}

.footer__contact-block a { color: var(--color-gold); }

.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

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

.footer__links a {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  transition: color var(--transition);
}

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

.footer__bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.3);
}

.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.35);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--color-gold); }

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding: clamp(48px, 6vw, 80px) 0 clamp(80px, 10vw, 120px);
  min-height: 70vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.legal-page .lead {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 48px;
  line-height: 1.7;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  margin: 40px 0 16px;
}

.legal-page h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin: 28px 0 10px;
}

.legal-page p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-page ul {
  margin: 0 0 20px 0;
  padding-left: 20px;
}

.legal-page ul li {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.85;
  margin-bottom: 8px;
  list-style: disc;
}

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

/* ─── CHECKOUT ─── */
.checkout-page {
  padding: clamp(48px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  min-height: 100vh;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--site-header-height) + 28px);
}

.checkout-summary__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.checkout-summary__product {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 2px solid var(--color-gold);
  border-radius: 4px;
  margin-bottom: 20px;
}

.checkout-summary__img {
  width: 96px;
  height: 96px;
  background: var(--color-white);
  border: 1px solid rgba(10, 15, 30, 0.08);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-summary__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.checkout-summary__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.checkout-summary__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gold);
}

.checkout-summary__qty {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--color-border-dark);
}

.checkout-total-label {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
}

.checkout-total-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
}

.checkout-seller-block {
  margin-top: 24px;
  padding: 20px;
  border: 1.5px solid var(--color-border-dark);
  border-radius: 4px;
}

.checkout-seller-block__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.checkout-seller-block p {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.75;
}

.checkout-order-terms {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(200, 184, 138, 0.07);
  border-radius: 4px;
  border-left: 3px solid var(--color-gold);
  font-size: 12px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
}

.checkout-form-section {
  margin-bottom: 36px;
}

.checkout-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-dark);
}

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

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

.form-select {
  background: rgba(10, 15, 30, 0.6);
  border: 1.5px solid var(--color-border-dark);
  border-radius: 4px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-white);
  transition: border-color var(--transition);
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%23c8b88a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-select option {
  background: var(--color-navy-mid);
  color: var(--color-white);
}

.cash-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(200, 184, 138, 0.08);
  border: 1.5px solid var(--color-gold);
  border-radius: 4px;
  margin-bottom: 24px;
}

.cash-badge__icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cash-badge__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 2;
}

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

.cash-badge__text span {
  display: block;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 400;
}

/* ─── TABLE ─── */
.table-scroll {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--color-navy-mid);
}

.spec-table th, .spec-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: rgba(245, 240, 232, 0.75);
}

.spec-table thead th {
  background: var(--color-navy-light);
  color: var(--color-white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spec-table__label {
  background: rgba(10, 15, 30, 0.5) !important;
  font-weight: 600;
  text-align: left !important;
  color: rgba(245, 240, 232, 0.55) !important;
  font-size: 13px !important;
}

.spec-table__hl {
  background: rgba(200, 184, 138, 0.1) !important;
  color: var(--color-gold) !important;
  font-weight: 700 !important;
}

.spec-table thead th.spec-table__hl {
  background: var(--color-gold) !important;
  color: var(--color-navy) !important;
}

/* ─── TRUST BADGES ─── */
.trust-strip {
  background: var(--color-navy-mid);
  padding: 32px 0;
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  align-items: center;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-badge__icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.trust-badge__text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
}

/* ─── INBOX SECTION ─── */
.subscribe-text__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.subscribe-text__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.subscribe-text__desc {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.58);
  line-height: 1.8;
}

/* ─── MEDIA QUERIES ─── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__left {
    clip-path: none;
    padding: 60px 32px 60px;
    text-align: center;
    align-items: center;
  }

  .hero__subtitle { max-width: 100%; }

  .hero__right {
    display: none;
  }

  .product-section__inner,
  .subscribe-inner,
  .support-grid,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary { position: static; }

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

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

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

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

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }

  .nav__links.nav__links--open { display: flex; }
  .nav__links a { font-size: 18px; }

  .nav__toggle { display: flex; }

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

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

  .hero__actions { justify-content: center; }

  .product-carousel__viewport {
    gap: 0;
  }

  .product-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.92);
  }

  .product-carousel__btn--prev { left: 10px; }
  .product-carousel__btn--next { right: 10px; }

  .product-carousel__btn:hover {
    transform: translateY(-50%) scale(1.05);
  }

  .product-carousel__btn:active {
    transform: translateY(-50%) scale(0.97);
  }

  .product-carousel__thumb {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
  }

  .stats-strip__grid { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-border-dark); }
  .stat-item:last-child { border-bottom: none; }
}

/* ─── ABOUT, CONTACT, misc ─── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; }
}

.map-section {
  padding: 60px 0 0;
}

.map-section__heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.map-section__address {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 20px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .about-values-grid { grid-template-columns: 1fr; }
}

.value-card {
  padding: 28px 24px;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 10px;
}

.value-card__desc {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.58);
  line-height: 1.75;
}

/* 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;
}
