/* Vantra — Signal · Daylight system. Compact density. */

:root {
  /* Surfaces */
  --paper:    #ffffff;
  --warm:     #f7f6f2;
  --cool:     #f1f3f7;
  /* Text & dark */
  --ink:      #0d1424;
  --slate:    #2a3142;
  --slate-mid:#5a6275;
  /* Dividers */
  --fog:      #c8ccd4;
  --fog-light:#e3e5ea;
  /* Signal Blue */
  --accent:      #2c6cff;
  --accent-tint: #e6efff;
  --accent-deep: #1a4cd9;
  /* Semantic */
  --go:    #1aa67a;
  --alert: #e2483b;
  /* Type */
  --font-display: "Space Grotesk", "Inter Tight", system-ui, sans-serif;
  --font-serif:   "Instrument Serif", Georgia, serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
  /* Spacing — compact */
  --sy: 72px;
  --sx: 56px;
  --h1: 88px;
  --h2: 56px;
  --h3: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }
input, textarea, select { font: inherit; }
::selection { background: var(--accent-tint); color: var(--accent-deep); }

/* === Wordmark =============================================================== */
.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 22px;
}
.wordmark::after {
  content: "";
  display: inline-block;
  width: 0.16em;
  height: 0.16em;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 0.06em;
  transform: translateY(-0.38em);
  flex-shrink: 0;
}
.wordmark--lg { font-size: 28px; }
.wordmark--xl { font-size: 32px; }
.wordmark--on-dark { color: var(--paper); }

/* === Pill / badge =========================================================== */
.pill {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
  display: inline-block;
}
.pill--tint  { background: var(--accent-tint); color: var(--accent); }
.pill--solid { background: var(--accent); color: var(--paper); }
.pill--dark  { background: var(--ink); color: var(--paper); }
.pill--light { background: var(--warm); color: var(--ink); }
.pill--ghost { background: transparent; color: var(--slate-mid); border: 1px solid var(--fog); }

/* === Buttons ================================================================ */
.btn {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, opacity 150ms ease;
  white-space: nowrap;
  border: 0;
}
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--lg { padding: 18px 28px; font-size: 15px; }
.btn--primary  { background: var(--accent); color: var(--paper); }
.btn--primary:hover  { background: var(--accent-deep); }
.btn--dark     { background: var(--ink); color: var(--paper); }
.btn--dark:hover     { background: var(--slate); }
.btn--ghost    { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover    { background: var(--ink); color: var(--paper); }
.btn--ghost-inv { background: transparent; color: var(--paper); border: 1px solid rgba(255, 255, 255, 0.35); }
.btn--ghost-inv:hover { background: var(--paper); color: var(--ink); }
.btn--link { background: transparent; color: var(--accent); padding: 0; }

/* === Top utility bar (above nav) =========================================== */
.utilbar {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px var(--sx);
  display: flex;
  justify-content: center;
  gap: 32px;
  font-weight: 500;
}
.utilbar__dot::before { content: "● "; color: var(--accent); }

/* === Nav ==================================================================== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--sx);
  border-bottom: 1px solid var(--fog-light);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  gap: 24px;
}
.nav--dark { background: var(--slate); color: var(--paper); border-bottom-color: rgba(255, 255, 255, 0.1); }
.nav__links {
  display: flex;
  gap: 32px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--slate-mid);
  font-weight: 500;
}
.nav__links a:hover { color: var(--accent); }
.nav__right {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav__signin {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.nav__signin:hover { color: var(--accent); }
.nav__cart {
  font-family: var(--font-display);
  font-size: 13px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__cart-icon { width: 14px; height: 14px; }

/* === Section primitives ==================================================== */
.section {
  padding: var(--sy) var(--sx);
}
.section--warm  { background: var(--warm); }
.section--cool  { background: var(--cool); }
.section--paper { background: var(--paper); }
.section--ink   { background: var(--ink); color: var(--paper); }
.section--slate { background: var(--slate); color: var(--paper); }
.section__inner { max-width: 1320px; margin: 0 auto; }
.section__inner--narrow { max-width: 980px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 32px;
  flex-wrap: wrap;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* Display sizes */
.display-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, var(--h1));
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.display-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, var(--h2));
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.display-h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, var(--h3));
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.lede {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate-mid);
}
.italic-serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* === Hero (split) =========================================================== */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 640px;
}
.hero-split__copy {
  padding: var(--sy) var(--sx);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split__h1 { max-width: 560px; margin-bottom: 24px; }
.hero-split__sub { max-width: 460px; margin-bottom: 32px; }
.hero-split__ctas { display: flex; gap: 12px; }
.hero-split__chips {
  display: flex;
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--fog-light);
  flex-wrap: wrap;
}
.hero-split__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--slate-mid);
}
.hero-split__chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-split__media {
  background: var(--warm);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero-split__media-inner {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--cool);
}
.hero-split__media-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.live-callout {
  position: absolute;
  top: 64px;
  right: 64px;
  background: var(--paper);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 2;
}
.live-callout__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.live-callout__title { font-size: 12px; font-weight: 500; color: var(--ink); }
.live-callout__sub   { font-size: 11px; color: var(--slate-mid); margin-top: 2px; }

/* === Photo placeholder ===================================================== */
.photo {
  position: relative;
  background: var(--warm);
  border-radius: 12px;
  overflow: hidden;
  display: block;
  width: 100%;
}
.photo--cool { background: var(--cool); }
.photo--dark { background: var(--slate); color: var(--paper); }
.photo__img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.photo__cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  padding: 18px;
  z-index: 1;
}
.photo__stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0 8px, transparent 8px 16px);
}
.photo--dark .photo__cap { color: rgba(255, 255, 255, 0.7); }
.photo--dark .photo__stripes {
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 8px, transparent 8px 16px);
}
.photo:has(.photo__img[src]:not([src=""])) .photo__cap,
.photo:has(.photo__img[src]:not([src=""])) .photo__stripes { display: none; }

/* Hero photo with overlay for readability */
.photo--hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 20, 36, 0) 0%, rgba(13, 20, 36, 0.45) 100%);
  pointer-events: none;
}

/* === Trust strip ============================================================ */
.trust {
  background: var(--warm);
  padding: 28px var(--sx);
  border-top: 1px solid var(--fog-light);
  border-bottom: 1px solid var(--fog-light);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.trust__cell { display: flex; flex-direction: column; gap: 4px; }
.trust__v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.trust__l {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--slate-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === Safety story (homepage) ================================================ */
.safety-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.safety-story__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.safety-story__feature-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}
.safety-story__feature-c {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.5;
}

/* === Product 4-card grid (homepage) ======================================== */
.product-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-grid--4 { grid-template-columns: 1fr; gap: 14px; }
}

/* === Product card =========================================================== */
.product-card {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--fog-light);
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--warm);
}
.product-card__media img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; padding: 16px; }
.product-card__media .photo__cap { color: var(--slate-mid); }
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card__sku {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.product-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.product-card__tagline {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.5;
  margin-bottom: 14px;
}
.product-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.product-card__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
}
.product-card__price-was {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--slate-mid);
  text-decoration: line-through;
  margin-left: 8px;
}
.product-card__cta {
  font-family: var(--font-display);
  font-size: 13px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-weight: 500;
}
.product-card--compact .product-card__media { aspect-ratio: 1 / 1; }
.product-card--compact .product-card__body { padding: 18px; }
.product-card--compact .product-card__name { font-size: 18px; }

/* === Review card ============================================================ */
.review {
  background: var(--paper);
  border: 1px solid var(--fog-light);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.review__verified {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review__quote {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.review__foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--fog-light);
  display: flex;
  justify-content: space-between;
}
.review__who {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
}
.review__location {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--slate-mid);
}

/* === Reviews section grid =================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reviews-grid--two   { grid-template-columns: repeat(2, 1fr); }
.reviews-grid--six   { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .reviews-grid, .reviews-grid--two, .reviews-grid--six { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .reviews-grid, .reviews-grid--two, .reviews-grid--six { grid-template-columns: 1fr; } }

/* === FAQ ==================================================================== */
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.faq-item {
  border-top: 1px solid var(--fog-light);
  padding: 24px 0;
}
.faq-item__summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  cursor: pointer;
  list-style: none;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
}
.faq-item__indicator {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--slate-mid);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__indicator { transform: rotate(45deg); transition: transform 150ms ease; }
.faq-item__a {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--slate-mid);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 720px;
}

/* === CTA band =============================================================== */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, var(--h2));
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.cta-band__sub {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.75);
}
.cta-band__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* === Footer ================================================================= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px var(--sx) 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer__brand-tag {
  font-family: var(--font-display);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-top: 18px;
  max-width: 320px;
}
.footer__socials { display: flex; gap: 10px; margin-top: 28px; }
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 150ms ease, border-color 150ms ease;
}
.footer__social:hover { color: var(--accent); border-color: var(--accent); }
.footer__col-h {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 150ms ease;
}
.footer__col li:hover, .footer__col li a:hover { color: var(--accent); }
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  gap: 16px;
  flex-wrap: wrap;
}

/* === Breadcrumb ============================================================= */
.breadcrumb {
  padding: 18px var(--sx);
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--slate-mid);
  border-bottom: 1px solid var(--fog-light);
  background: var(--paper);
}
.breadcrumb__current { color: var(--ink); }
.breadcrumb a:hover { color: var(--accent); }

/* === PDP hero (storefront) ================================================== */
.pdp-hero {
  padding: 40px var(--sx) 64px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
}
.pdp-hero__gallery .photo {
  aspect-ratio: 4 / 3;
  position: relative;
}
.pdp-hero__gallery .photo img,
.pdp-hero__thumb img { object-fit: contain !important; padding: 8px; }
.pdp-hero__gallery .photo img { padding: 24px; }
.pdp-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.pdp-hero__thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--warm);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}
.pdp-hero__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdp-hero__thumb--active { border-color: var(--accent); }
.pdp-hero__buy { display: flex; flex-direction: column; }
.pdp-hero__head-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.pdp-hero__rating {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--slate-mid);
}
.pdp-hero__rating .stars { color: var(--accent); margin-right: 4px; }
.pdp-hero__sku {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 8px;
}
.pdp-hero__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pdp-hero__sub {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--slate-mid);
  line-height: 1.55;
  margin-top: 14px;
}
.pdp-hero__price-row { margin-top: 28px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.pdp-hero__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pdp-hero__price-was {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--slate-mid);
  text-decoration: line-through;
}
.pdp-hero__price-note {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--slate-mid);
  margin-top: 6px;
}
.pdp-hero__qty-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin: 24px 0 8px;
}
.pdp-hero__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--fog);
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
}
.pdp-hero__qty button {
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  min-width: 40px;
}
.pdp-hero__qty button:hover { background: var(--warm); }
.pdp-hero__qty-val {
  padding: 10px 6px;
  font-family: var(--font-display);
  font-size: 14px;
  min-width: 28px;
  text-align: center;
  border-left: 1px solid var(--fog);
  border-right: 1px solid var(--fog);
}
.pdp-hero__cta-row { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.pdp-hero__cta-row .btn { flex: 1; justify-content: center; min-width: 0; }
.pdp-hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--fog-light);
}
.pdp-hero__trust-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--slate-mid);
}
.pdp-hero__trust-cell::before {
  content: "✓";
  color: var(--accent);
  font-weight: 600;
}

/* === Feature strip (PDP) ==================================================== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-strip__cell { padding: 0 4px; }
.feature-strip__n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.feature-strip__l {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--slate-mid);
  margin-top: 8px;
  line-height: 1.4;
}

/* === Specs section (PDP) ==================================================== */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.specs-card {
  background: var(--paper);
  border: 1px solid var(--fog-light);
  border-radius: 12px;
  padding: 32px;
}
.specs-card__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 20px;
}
.specs-table { font-family: var(--font-display); font-size: 14px; }
.specs-table__row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--fog-light);
  gap: 16px;
}
.specs-table__row:last-child { border-bottom: 0; }
.specs-table__k { color: var(--slate-mid); }
.specs-table__v { color: var(--ink); font-weight: 500; text-align: right; }
.in-the-box { display: flex; flex-direction: column; gap: 10px; }
.in-the-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0;
}
.in-the-box li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* === Story block (PDP) ====================================================== */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-block__photo .photo { aspect-ratio: 1 / 1; }
.story-block__copy { max-width: 480px; }
.story-block__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, var(--h2));
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 16px 0 18px;
}
.story-block__body {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-mid);
}

/* === Shop All collection page =============================================== */
.collection-header { padding: 48px var(--sx) 56px; background: var(--paper); }
.collection-header__inner { max-width: 1320px; margin: 0 auto; }
.collection-header__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: flex-end;
}
.collection-header__h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.filter-bar {
  background: var(--warm);
  padding: 20px var(--sx);
  border-top: 1px solid var(--fog-light);
  border-bottom: 1px solid var(--fog-light);
}
.filter-bar__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--fog-light);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: all 150ms ease;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip--active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter-sort {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* === About manifesto ======================================================== */
.manifesto-hero { padding: 96px var(--sx); background: var(--paper); }
.manifesto-hero__inner { max-width: 1100px; }
.manifesto-hero__h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, var(--h1));
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-top: 24px;
}
.manifesto-hero__h1 .accent { color: var(--accent); }
.manifesto-hero__sub {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.55;
  color: var(--slate-mid);
  margin-top: 28px;
  max-width: 720px;
}
.numbers-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--fog-light);
  padding-top: 32px;
}
.numbers-strip__n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
}
.numbers-strip__l {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--slate-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.principle {
  border-top: 1px solid var(--ink);
  padding: 28px 0 0;
}
.principle__n {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.principle__h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.025em;
  margin: 14px 0 16px;
}
.principle__b {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate-mid);
  max-width: 520px;
}

/* === Contact ================================================================ */
.contact-form {
  background: var(--paper);
  border: 1px solid var(--fog-light);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 680px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  background: var(--warm);
  border: 1px solid var(--fog-light);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  outline: none;
  color: var(--ink);
  transition: border-color 150ms ease, background 150ms ease;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus { border-color: var(--accent); background: var(--paper); }
.contact-form__textarea { min-height: 140px; resize: vertical; font-family: var(--font-display); }
.contact-form__success {
  display: none;
  color: var(--go);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-form.is-sent .contact-form__success { display: block; }

/* === Policy / legal pages ================================================== */
.policy-hero {
  padding: 80px var(--sx) 56px;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--fog-light);
}
.policy-hero__inner { max-width: 1320px; margin: 0 auto; }
.policy-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.policy-hero__h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, var(--h1));
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin-top: 18px;
}
.policy-hero__updated {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-top: 18px;
}
.policy-page { background: var(--warm); padding: 64px var(--sx) 96px; }
.policy-shell {
  max-width: 880px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--fog-light);
  border-radius: 16px;
  padding: 56px 64px;
}
.policy-shell h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  margin: 36px 0 12px;
}
.policy-shell h2:first-child { margin-top: 0; }
.policy-shell h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  margin: 24px 0 8px;
}
.policy-shell p,
.policy-shell li {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate-mid);
  margin: 0 0 12px;
}
.policy-shell ul,
.policy-shell ol { padding-left: 22px; margin: 8px 0 16px; }
.policy-shell ul { list-style: disc; }
.policy-shell ol { list-style: decimal; }
.policy-shell li { margin-bottom: 6px; }
.policy-shell li::marker { color: var(--accent); }
.policy-shell strong { color: var(--ink); font-weight: 600; }
.policy-shell a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 120ms ease;
}
.policy-shell a:hover { color: var(--accent); }
.policy-shell table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.policy-shell th,
.policy-shell td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--fog-light);
}
.policy-shell th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.policy-shell .payment-icons { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 20px; }
.policy-shell .payment-icon {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  background: var(--warm);
  border: 1px solid var(--fog-light);
  border-radius: 8px;
}
@media (max-width: 768px) {
  .policy-hero { padding: 48px var(--sx) 32px; }
  .policy-page { padding: 32px var(--sx) 64px; }
  .policy-shell { padding: 28px 22px; border-radius: 12px; }
  .policy-shell h2 { font-size: 20px; }
}

/* === Responsive ============================================================= */
@media (max-width: 1280px) {
  :root { --sx: 40px; --sy: 64px; }
  .hero-split { grid-template-columns: 1fr; min-height: 0; }
  .hero-split__media { padding: 0 var(--sx) 56px; background: var(--paper); }
  .hero-split__media-inner { aspect-ratio: 16 / 10; min-height: 0; flex: 0 0 auto; }
  .live-callout { display: none; }
  .pdp-hero { grid-template-columns: 1fr; }
  .pdp-hero__gallery .photo { aspect-ratio: 16/10; }
  .safety-story, .story-block, .faq-section, .collection-header__row,
  .principles, .specs-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-strip, .trust__grid, .numbers-strip { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand-block { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --sx: 24px; --sy: 56px; }
  .nav { padding: 14px var(--sx); gap: 12px; }
  .nav__links { display: none; }
  .nav__signin { font-size: 12px; }
  .nav__cart { padding: 6px 12px; font-size: 12px; }
  .utilbar { font-size: 11px; padding: 7px var(--sx); gap: 14px; flex-wrap: wrap; justify-content: center; }

  /* Hero — tighter media padding; hide the live-recording callout (decorative only) */
  .live-callout { display: none; }
  .hero-split { min-height: 0; }
  .hero-split__copy { padding: 48px var(--sx) 36px; }
  .hero-split__media { padding: 0 var(--sx) 48px; background: var(--paper); }
  .hero-split__media-inner { aspect-ratio: 4 / 3; min-height: 0; flex: 0 0 auto; }
  .hero-split__chips { margin-top: 28px; padding-top: 18px; }
  .hero-split__ctas { flex-direction: column; align-items: stretch; }
  .hero-split__ctas .btn { justify-content: center; }

  .feature-strip, .trust__grid, .numbers-strip, .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand-block { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 8px; }
  .product-grid, .reviews-grid, .reviews-grid--two, .reviews-grid--six { grid-template-columns: 1fr; }
  .pdp-hero { padding: 32px var(--sx); }
  .section { padding: var(--sy) var(--sx); }
  .pdp-hero__cta-row .btn { flex: 1 0 100%; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
