/* ============================================================
   Totel Protect — demo design system
   Palette: deep burgundy, warm blush, soft cream, restrained gold
   ============================================================ */

:root {
  --burgundy: #7a1e2b;
  --burgundy-deep: #571219;
  --burgundy-ink: #3d0d13;
  --blush: #f3e2dd;
  --blush-soft: #f9efec;
  --cream: #faf6ef;
  --cream-deep: #f3ecdf;
  --gold: #b08a3c;
  --gold-soft: #c9a85e;
  --ink: #2e2126;
  --ink-soft: #5c4b51;
  --line: rgba(122, 30, 43, 0.14);
  --white: #ffffff;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 14px;
  --shadow: 0 18px 45px -18px rgba(61, 13, 19, 0.28);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

/* Allow grid tracks to shrink below content min-width (prevents mobile overflow) */
.hero__grid > *, .split > *, .kit-grid > *, .pdp > *, .contact-grid > *,
.steps > *, .compat-grid > *, .review-grid > *, .footer-grid > * { min-width: 0; }

a { color: var(--burgundy); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.14;
  color: var(--burgundy-ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section--tight { padding: clamp(2.2rem, 5vw, 3.5rem) 0; }
.section--blush { background: var(--blush-soft); }
.section--cream-deep { background: var(--cream-deep); }
.section--burgundy { background: var(--burgundy-deep); color: var(--cream); }
.section--burgundy h2, .section--burgundy h3 { color: var(--cream); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; }
.section--burgundy .lead { color: rgba(250, 246, 239, 0.82); }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 0 12px 26px -12px rgba(122, 30, 43, 0.65);
}
.btn--primary:hover { background: var(--burgundy-deep); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--burgundy);
  border-color: rgba(122, 30, 43, 0.45);
}
.btn--outline:hover { background: rgba(122, 30, 43, 0.07); transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: #9a7830; transform: translateY(-2px); }

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

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 239, 0.55);
}
.btn--outline-light:hover { background: rgba(250, 246, 239, 0.12); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.center .btn-row { justify-content: center; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--burgundy-ink);
  color: var(--cream);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
}
.announce span { color: var(--gold-soft); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 42px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav__links a:hover, .nav__links a[aria-current="page"] {
  color: var(--burgundy);
  border-bottom-color: var(--gold);
}

.nav__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  padding: 0.4rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  transition: color 0.25s ease, transform 0.25s ease;
}
.nav__social:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  padding: 0.4rem 0.2rem;
}
.nav__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 0.72rem;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--burgundy-ink);
}
.nav__toggle svg { display: block; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 0.6rem 22px 1.4rem;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0.2rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--blush-soft);
  overflow: hidden;
}
.hero--full {
  min-height: clamp(560px, 86vh, 840px);
  display: flex;
  align-items: center;
  isolation: isolate;
  background: var(--burgundy-deep);
}
.hero--full .hero__backdrop,
.hero--full .hero__shade {
  position: absolute;
  inset: 0;
}
.hero--full .hero__backdrop { z-index: -2; }
.hero--full .hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}
/* Shade only deep enough for the left-hand message — the products stay vivid */
.hero--full .hero__shade {
  z-index: -1;
  background: linear-gradient(90deg,
    rgba(61, 8, 18, 0.66) 0%,
    rgba(74, 8, 19, 0.3) 36%,
    rgba(74, 8, 19, 0.03) 58%,
    rgba(74, 8, 19, 0) 100%);
}
.hero__content {
  width: 100%;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.hero--full .hero__content > * {
  max-width: 460px;
}
.hero--full h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(31, 4, 9, 0.25);
}
.hero--full .lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.hero--full .eyebrow { color: var(--gold-soft); }
.hero--full .trust-row { color: rgba(255, 255, 255, 0.9); }
.hero--full .trust-row svg { stroke: var(--gold-soft); }
.review-strip {
  background: transparent;
}
.review-proof {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.58rem 1.25rem;
  color: var(--burgundy-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}
.review-proof:hover {
  color: var(--burgundy);
}
.review-proof__stars {
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.review-proof__copy {
  display: grid;
  gap: 0.05rem;
  padding-left: 0.8rem;
  border-left: 1px solid var(--line);
}
.review-proof__copy strong {
  font-size: 0.92rem;
  line-height: 1.2;
}
.review-proof__copy small {
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.35;
}
.review-proof__source {
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.review-strip--trustpilot {
  background: transparent;
  border-bottom: none;
}
.hero > .review-strip--trustpilot {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
}
.review-strip--trustpilot .review-proof {
  min-height: 48px;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(31, 4, 9, 0.45);
}
.review-strip--trustpilot .review-proof:hover {
  color: var(--gold-soft);
}
.review-strip--trustpilot .review-proof__copy {
  border-left-color: rgba(255, 255, 255, 0.45);
}
.review-strip--trustpilot .review-proof__copy small {
  color: rgba(255, 255, 255, 0.82);
}
.review-strip--trustpilot .review-proof__stars {
  display: inline-flex;
  gap: 2px;
  letter-spacing: 0;
}
.tp-star {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--white);
  background: #00b67a;
  font-size: 0.72rem;
  line-height: 1;
}
.review-strip--trustpilot .review-proof__source {
  color: var(--white);
}
.tp-mark {
  color: #00b67a;
  font-size: 1.05rem;
  vertical-align: -0.05em;
}
/* Gentle load-in for the hero */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero--full .hero__content > * {
  animation: heroRise 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.hero--full .hero__content > *:nth-child(2) { animation-delay: 0.08s; }
.hero--full .hero__content > *:nth-child(3) { animation-delay: 0.16s; }
.hero--full .hero__content > *:nth-child(4) { animation-delay: 0.24s; }
.hero--full .hero__content > *:nth-child(5) { animation-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .hero--full .hero__content > * { animation: none; }
}
.btn--light {
  color: var(--burgundy-deep);
  background: var(--white);
  border-color: var(--white);
}
.btn--light:hover {
  color: var(--burgundy-deep);
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-1px);
}
.btn--glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}
.btn--glass:hover {
  color: var(--burgundy-deep);
  background: var(--white);
  border-color: var(--white);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 1.6rem;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.trust-row li { display: flex; align-items: center; gap: 0.45rem; }
.trust-row svg { flex: none; }

/* ---------- Animated brand banner ---------- */
.banner {
  background: var(--burgundy-ink);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(1.9rem, 4vw, 2.7rem) 0;
  border-top: 1px solid rgba(201, 168, 94, 0.28);
  border-bottom: 1px solid rgba(201, 168, 94, 0.28);
}
.banner__track {
  display: flex;
  width: max-content;
  animation: bannerScroll 48s linear infinite;
}
.banner__group {
  display: flex;
  align-items: stretch;
  flex: none;
}
.banner__item {
  flex: none;
  width: clamp(300px, 26vw, 420px);
  padding: 0 clamp(1.6rem, 3vw, 2.6rem);
  text-align: center;
}
.banner__item + .banner__item {
  border-left: 1px solid rgba(201, 168, 94, 0.22);
}
.banner__icon {
  display: flex;
  justify-content: center;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}
.banner__item h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  color: var(--cream);
  margin: 0 0 0.5rem;
  letter-spacing: 0;
}
.banner__item p {
  margin: 0 auto;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(250, 246, 239, 0.62);
  max-width: 34ch;
}
@keyframes bannerScroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .banner__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .banner__group { flex-wrap: wrap; justify-content: center; }
}

/* ---------- Lifestyle imagery ---------- */
.section--lifestyle { padding-bottom: clamp(1.5rem, 4vw, 3rem); }
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.lifestyle-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lifestyle-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lifestyle-grid figure:hover img { transform: scale(1.03); }
.lifestyle-grid__main,
.lifestyle-grid__side { aspect-ratio: 3 / 2; }
@media (prefers-reduced-motion: reduce) {
  .lifestyle-grid figure:hover img { transform: none; }
}

/* ---------- Problem section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Client brand video (plays with sound on click) ---------- */
.feature-video__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature-video__frame {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-video__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(122, 30, 43, 0.15);
  pointer-events: none;
}
.feature-video__frame video {
  display: block;
  width: 100%;
  height: auto;
  background: var(--burgundy-ink);
}
.feature-video--hero .feature-video__grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(2.5rem, 4vw, 4.5rem);
}
.feature-video--hero .feature-video__frame {
  width: 100%;
  max-width: 760px;
  box-shadow: 0 28px 70px -28px rgba(61, 13, 19, 0.58);
}
.feature-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 8, 18, 0.28);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
}
.feature-video__play:hover { background: rgba(61, 8, 18, 0.42); }
.feature-video__play svg {
  width: 78px;
  height: 78px;
  padding: 24px;
  color: var(--white);
  background: rgba(122, 30, 43, 0.92);
  border: 1px solid rgba(201, 168, 94, 0.6);
  border-radius: 50%;
  box-shadow: 0 16px 40px -12px rgba(31, 4, 9, 0.6);
  transition: transform 0.3s ease;
}
.feature-video__play:hover svg { transform: scale(1.06); }
.feature-video__play.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.feature-video__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.6rem;
}
@media (prefers-reduced-motion: reduce) {
  .feature-video__play, .feature-video__play svg { transition: none; }
}

/* ---------- Instagram social proof ---------- */
.section--social-proof {
  background:
    radial-gradient(circle at 12% 15%, rgba(201, 168, 94, 0.12), transparent 30%),
    var(--blush-soft);
}
.social-proof__intro {
  max-width: 720px;
  margin: 0 auto;
}
.social-proof__intro .lead { margin: 0 auto; }
.social-proof__swipe { display: none; }
.social-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 390px));
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 2.8rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}
.social-video-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(176, 138, 60, 0.34);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 20px 50px -30px rgba(61, 13, 19, 0.48);
}
.social-video-card__frame {
  position: relative;
  aspect-ratio: 29 / 40;
  overflow: hidden;
  background: var(--burgundy-deep);
}
.social-video-card__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}
.social-video-card__copy { padding: 1.25rem 1.4rem 1.45rem; }
.social-video-card__copy p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.social-video-card__label {
  display: block;
  color: var(--burgundy-ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
}
.social-proof__footer { margin-top: 1.8rem; }
.social-proof__footer .text-link {
  color: var(--burgundy);
  font-weight: 700;
  text-underline-offset: 0.24em;
}

/* ---------- Quote slideshow ---------- */
.quote-section .lead { color: rgba(250, 246, 239, 0.82); }
.quote-slider {
  max-width: 720px;
  margin: 0 auto;
  border-radius: calc(var(--radius) + 6px);
  outline: none;
}
.quote-slider:focus-visible {
  box-shadow: 0 0 0 2px var(--gold-soft);
}
.quote-slider__viewport {
  display: grid;
}
.quote-slide {
  grid-area: 1 / 1;
  margin: 0;
  padding: 0.4rem 0 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.quote-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
/* Chat exchange */
.chat {
  max-width: 720px;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
}
.chat__question,
.chat__answer {
  max-width: 86%;
  padding: 1.1rem 1.4rem 1.2rem;
  box-shadow: 0 14px 34px -16px rgba(31, 4, 9, 0.45);
}
.chat__question {
  background: var(--cream);
  color: var(--ink);
  border-radius: 20px 20px 20px 5px;
}
.chat__question p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.45;
}
.chat__answer {
  margin: 0.9rem 0 0 auto;
  background: var(--burgundy-ink);
  border: 1px solid rgba(201, 168, 94, 0.45);
  border-radius: 20px 20px 5px 20px;
  text-align: left;
}
.chat__answer p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.8vw, 2.2rem);
  line-height: 1.15;
  color: var(--cream);
}
.chat__label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
}
.chat__label--gold { color: var(--gold-soft); }
.quote-slide footer {
  margin: 0.7rem 0.4rem 0 0;
  text-align: right;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.quote-slide footer span {
  color: rgba(250, 246, 239, 0.6);
  font-weight: 500;
}
.quote-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding-bottom: clamp(1.6rem, 4vw, 2.4rem);
}
.quote-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 239, 0.35);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.quote-slider__arrow:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  transform: translateY(-1px);
}
.quote-slider__dots {
  display: flex;
  gap: 0.55rem;
}
.quote-slider__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.3);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.quote-slider__dots button.is-active {
  background: var(--gold-soft);
  transform: scale(1.35);
}
.quote-section__punch {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(250, 246, 239, 0.88);
  margin: clamp(1.4rem, 3vw, 2.2rem) auto 0;
}
.quote-section__punch a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 94, 0.5);
}
.quote-section__punch a:hover { border-bottom-color: var(--gold-soft); }
@media (prefers-reduced-motion: reduce) {
  .quote-slide { transition: none; transform: none; }
}

/* ---------- Product cards ---------- */
.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  margin-top: 2.4rem;
}
.kit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 36px -20px rgba(61, 13, 19, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.kit-card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.kit-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.kit-card:hover .kit-card__media img { transform: scale(1.04); }
.kit-card__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.kit-card__price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--burgundy);
  margin: 0.2rem 0 0.7rem;
}
.kit-card__body p { color: var(--ink-soft); flex: 1; }
.kit-card__body .btn { align-self: flex-start; margin-top: 0.6rem; }
.kit-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ---------- Before / after ---------- */
.ba-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.ba-frame img { width: 100%; }
.ba-labels {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--white);
}
.placeholder-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--gold);
  padding: 0.35rem 0 0.35rem 0.9rem;
  margin-top: 1rem;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: 2.4rem;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position: relative;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Compatibility ---------- */
.compat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: 2.2rem;
}
.compat-card {
  background: rgba(250, 246, 239, 0.06);
  border: 1px solid rgba(250, 246, 239, 0.18);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.compat-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--gold-soft); }
.compat-card p, .compat-card li { color: rgba(250, 246, 239, 0.85); font-size: 0.95rem; }
.compat-card ul { margin: 0; padding-left: 1.1rem; }

/* ---------- Reviews / placeholder cards ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: 2.2rem;
}
.review-card {
  background: var(--white);
  border: 1px dashed rgba(122, 30, 43, 0.4);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  text-align: center;
  color: var(--ink-soft);
}
.review-card__stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 0.8rem; font-size: 1.05rem; }
.review-card strong { display: block; color: var(--burgundy); font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.4rem; }

/* ---------- Story ---------- */
.story-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--burgundy-ink);
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin: 0 0 1.4rem;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 2.2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0.2rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--burgundy-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--gold);
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 0.2rem 1.2rem; color: var(--ink-soft); }
.faq-item .faq-answer p { margin-bottom: 0.5em; }

/* ---------- Email capture ---------- */
.email-capture { max-width: 680px; margin: 0 auto; }
.email-card {
  position: relative;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.4rem, 4vw, 3rem);
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
/* Slow-moving gold border sheen */
.email-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(120deg,
    rgba(176, 138, 60, 0.15) 0%,
    rgba(201, 168, 94, 0.85) 25%,
    rgba(176, 138, 60, 0.15) 50%,
    rgba(201, 168, 94, 0.85) 75%,
    rgba(176, 138, 60, 0.15) 100%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: cardSheen 9s linear infinite;
}
@keyframes cardSheen {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Soft glow that settles in when the card appears */
.email-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 70%;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(201, 168, 94, 0.16), transparent 70%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .email-card::before { animation: none; }
}
/* Shine sweep on the subscribe button */
.btn--shine {
  position: relative;
  overflow: hidden;
}
.btn--shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.btn--shine:hover::after { left: 130%; }
@media (prefers-reduced-motion: reduce) {
  .btn--shine::after { display: none; }
}
/* Success message pop */
.form-note:not(:empty) {
  animation: notePop 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes notePop {
  from { opacity: 0; transform: translateY(6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.email-form {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.6rem;
}
.email-form input[type="email"] {
  flex: 1;
  min-height: 52px;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(122, 30, 43, 0.35);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
.email-form input[type="email"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: left;
}
.consent input { margin-top: 3px; }
.form-note { font-size: 0.85rem; color: var(--burgundy); margin-top: 0.9rem; min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--burgundy-ink);
  color: rgba(250, 246, 239, 0.8);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(250, 246, 239, 0.15);
}
.footer-grid img { height: 46px; width: auto; margin-bottom: 1rem; }
.footer-grid h4 {
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: rgba(250, 246, 239, 0.8); text-decoration: none; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-grid img {
  background: var(--cream);
  border-radius: 10px;
  padding: 8px 12px;
  box-sizing: content-box;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.6);
}
.footer-bottom a { color: var(--gold-soft); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Product page ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.gallery__main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  background: var(--cream-deep);
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery__thumb {
  flex: 0 0 84px;
  width: 84px;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  scroll-snap-align: start;
}
.gallery__thumb.is-active { border-color: var(--gold); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info .eyebrow { margin-bottom: 0.5rem; }
.pdp__title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 0.4rem; }
.pdp__price {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--burgundy);
  margin: 0.4rem 0 1.1rem;
}
.pdp__rating-placeholder {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.pdp__benefits { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.pdp__benefits li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.35rem 0;
  color: var(--ink);
}
.pdp__benefits svg { flex: none; margin-top: 4px; }

.buy-row {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
  margin-bottom: 0.9rem;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(122, 30, 43, 0.35);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  width: 46px;
  min-height: 52px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--burgundy);
  cursor: pointer;
}
.qty input {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
}
.qty input:focus { outline: none; }
.buy-row .btn { flex: 1; }

.pdp__reassure {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.45rem;
}
.pdp__reassure li { display: flex; gap: 0.55rem; align-items: center; }
.pdp__reassure svg { flex: none; }

.pdp-sections { max-width: 860px; margin: 0 auto; }
.pdp-section { padding: 2.4rem 0; border-top: 1px solid var(--line); }
.pdp-section:first-child { border-top: none; }
.pdp-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.pdp-section .contents-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.pdp-section .contents-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.pdp-section .contents-list svg { flex: none; }
.contents-list__copy { display: grid; gap: 0.12rem; }
.contents-list__copy small { color: var(--ink-soft); line-height: 1.45; }

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---------- Sticky mobile buy bar ---------- */
.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 0.9rem;
  background: rgba(250, 246, 239, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 0.7rem 16px calc(0.7rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px -12px rgba(61, 13, 19, 0.35);
}
.sticky-buy.is-visible { display: flex; }
.sticky-buy__info { flex: 1; min-width: 0; }
.sticky-buy__name {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--burgundy-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-buy__price { font-size: 0.85rem; color: var(--ink-soft); }
.sticky-buy .btn { min-height: 46px; padding: 0.6rem 1.4rem; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 33, 38, 0.45);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 92vw);
  background: var(--cream);
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -18px 0 45px -20px rgba(61, 13, 19, 0.4);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__head h2 { font-size: 1.3rem; margin: 0; }
.cart-drawer__close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--burgundy); line-height: 1; padding: 4px 8px; }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.cart-empty { color: var(--ink-soft); text-align: center; margin-top: 2.5rem; }
.cart-item {
  display: flex;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
}
.cart-item img { width: 68px; height: 52px; object-fit: cover; border-radius: 6px; }
.cart-item__name { font-weight: 600; font-size: 0.9rem; color: var(--burgundy-ink); }
.cart-item__meta { font-size: 0.82rem; color: var(--ink-soft); }
.cart-item__remove { background: none; border: none; color: var(--burgundy); font-size: 0.78rem; cursor: pointer; padding: 0; text-decoration: underline; }
.cart-drawer__foot { padding: 1.2rem 1.4rem 1.5rem; border-top: 1px solid var(--line); }
.cart-drawer__total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 0.9rem; color: var(--burgundy-ink); }
.cart-drawer__foot .btn { width: 100%; }
.cart-drawer__demo { font-size: 0.75rem; color: var(--ink-soft); text-align: center; margin-top: 0.7rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding: 1rem 0 0;
}
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--burgundy); }
.breadcrumbs span[aria-current] { color: var(--burgundy); }

/* ---------- Page hero (secondary pages) ---------- */
.page-hero {
  background: var(--blush-soft);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
}
.contact-form { display: grid; gap: 1rem; }
.contact-form label { font-weight: 600; font-size: 0.9rem; color: var(--burgundy-ink); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(122, 30, 43, 0.35);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.2rem;
}
.contact-card h3 { margin-bottom: 0.4rem; }
.contact-card p { color: var(--ink-soft); margin-bottom: 0.3rem; }

/* ---------- Cookie consent ---------- */
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 1.35rem 1.5rem;
  color: var(--cream);
  background: var(--burgundy-ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(30, 8, 12, 0.42);
}
.cookie-banner h2 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}
.cookie-banner p { margin: 0; color: rgba(250, 246, 239, 0.86); font-size: 0.9rem; }
.cookie-banner a { color: var(--cream); text-underline-offset: 0.18em; }
.cookie-banner__eyebrow {
  margin: 0 0 0.3rem !important;
  color: var(--gold-soft) !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cookie-banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 0.65rem;
  min-width: 350px;
}
.cookie-choice {
  min-height: 46px;
  padding: 0.7rem 1rem;
  color: var(--burgundy-ink);
  background: var(--cream);
  border: 1px solid var(--cream);
  border-radius: 999px;
  font: 600 0.82rem/1.2 var(--sans);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.cookie-choice:hover { background: var(--white); transform: translateY(-1px); }
.cookie-choice:focus-visible,
.cookie-preferences__close:focus-visible,
.cookie-settings-link:focus-visible,
.cookie-switch input:focus-visible + span {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}
.cookie-choice--text {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 0.2rem;
  color: var(--cream);
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}
.cookie-choice--text:hover { color: var(--white); background: transparent; transform: none; }

.cookie-modal {
  position: fixed;
  z-index: 1010;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 15, 20, 0.65);
  backdrop-filter: blur(3px);
}
.cookie-preferences {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  padding: clamp(1.35rem, 4vw, 2rem);
  color: var(--ink);
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(30, 8, 12, 0.38);
}
.cookie-preferences h2 { padding-right: 2rem; font-size: clamp(1.65rem, 4vw, 2.2rem); }
.cookie-preferences > p { color: var(--ink-soft); }
.cookie-preferences__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--burgundy-ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font: 400 1.65rem/1 var(--sans);
  cursor: pointer;
}
.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 0.85rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.cookie-category h3 { margin: 0 0 0.2rem; font: 700 0.95rem/1.25 var(--sans); }
.cookie-category p { margin: 0; color: var(--ink-soft); font-size: 0.82rem; line-height: 1.5; }
.cookie-category__status { color: var(--burgundy); font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.cookie-switch { position: relative; display: inline-flex; }
.cookie-switch input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-switch span {
  position: relative;
  display: block;
  width: 48px;
  height: 28px;
  background: #c9c0c2;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease;
}
.cookie-switch span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease;
}
.cookie-switch input:checked + span { background: var(--burgundy); }
.cookie-switch input:checked + span::after { transform: translateX(20px); }
.cookie-preferences__policy { margin-top: 1rem; font-size: 0.78rem; }
.cookie-preferences__actions { display: flex; justify-content: flex-end; margin-top: 1.2rem; }
.cookie-preferences__actions .cookie-choice { color: var(--cream); background: var(--burgundy); border-color: var(--burgundy); }
.cookie-preferences__actions .cookie-choice:hover { background: var(--burgundy-deep); }
.cookie-modal-open { overflow: hidden; }
.cookie-settings-link {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

/* ---------- Policy pages ---------- */
.policy-page { max-width: 850px; }
.policy-page h2 { margin-top: 1.6em; font-size: clamp(1.35rem, 3vw, 1.8rem); }
.policy-page h3 { margin-top: 1.35em; font: 700 1rem/1.35 var(--sans); }
.policy-page ul { padding-left: 1.25rem; }
.policy-table-wrap { margin: 1.2rem 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.policy-table { width: 100%; min-width: 680px; border-collapse: collapse; background: var(--white); font-size: 0.85rem; }
.policy-table th, .policy-table td { padding: 0.85rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.policy-table th { color: var(--burgundy-ink); background: var(--blush-soft); }
.policy-table tr:last-child td { border-bottom: 0; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__social { display: none; }
  .nav { height: 64px; }
  .nav__logo img { height: 36px; }
  .nav__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav { position: relative; }
  .split, .pdp, .contact-grid { grid-template-columns: 1fr; }
  .hero--full {
    min-height: 620px;
    align-items: flex-end;
  }
  .hero--full .hero__shade {
    background: linear-gradient(0deg,
      rgba(61, 8, 18, 0.92) 0%,
      rgba(61, 8, 18, 0.55) 48%,
      rgba(74, 8, 19, 0.12) 100%);
  }
  .hero--full .hero__backdrop img { object-position: 62% center; }
  .hero--full .btn--glass {
    background: rgba(61, 8, 18, 0.55);
    border-color: rgba(255, 255, 255, 0.55);
  }
  .hero__content { padding-top: 6rem; padding-bottom: 3rem; }
  .hero--full h1 { font-size: clamp(2.3rem, 9.5vw, 3.6rem); }
  .feature-video__grid,
  .feature-video--hero .feature-video__grid { grid-template-columns: 1fr; }
  .feature-video--hero .feature-video__frame {
    order: -1;
    max-width: 760px;
  }
  .social-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kit-grid, .steps, .compat-grid, .review-grid, .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-grid__side { margin-top: 0; aspect-ratio: 3 / 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .btn-row .btn { flex: 1 1 100%; }
  .pdp { padding-top: 1.2rem; }
  .cookie-banner { grid-template-columns: 1fr; gap: 1rem; }
  .cookie-banner__actions { min-width: 0; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .social-video-grid {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    width: calc(100% + 20px);
    margin-right: -20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 20px 0.75rem 0;
  }
  .social-proof__swipe {
    display: block;
    margin: 1.25rem 0 -1rem;
    color: var(--burgundy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-align: right;
    text-transform: uppercase;
  }
  .social-proof__swipe span { color: var(--gold); }
  .social-video-grid::-webkit-scrollbar { display: none; }
  .social-video-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }
  .email-form { flex-direction: column; }
  .email-form .btn { width: 100%; }
  .buy-row { flex-wrap: wrap; }
  .buy-row .btn { flex: 1 1 100%; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .review-proof {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 0.48rem 0.75rem;
  }
  .review-proof__copy {
    display: grid;
    gap: 0;
    padding-left: 0.55rem;
  }
  .review-proof__source {
    grid-column: auto;
    justify-self: end;
    font-size: 0.72rem;
  }
  .review-strip--trustpilot .review-proof {
    min-height: 52px;
  }
  .review-strip--trustpilot .tp-star {
    width: 16px;
    height: 16px;
    font-size: 0.66rem;
  }
  /* Mobile: stop the banner marquee so every message is fully readable.
     Show one static, centred group instead of the scrolling track. */
  .banner__track { animation: none; width: 100%; }
  .banner__group { flex-wrap: wrap; justify-content: center; gap: 1.5rem 0; width: 100%; }
  .banner__group + .banner__group { display: none; }
  .banner__item { width: 100%; max-width: 340px; padding: 0 1rem; }
  .banner__item + .banner__item { border-left: none; }
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    padding: 1.1rem;
    border-radius: 14px;
  }
  .cookie-banner__actions { grid-template-columns: 1fr; }
  .cookie-choice--text { grid-column: auto; }
  .cookie-category { align-items: start; padding: 0.85rem; }
  .cookie-preferences { max-height: calc(100vh - 20px); padding: 1.15rem; }
  .cookie-modal { padding: 10px; }
}
