/* ==========================================================================
   WINTHERMO — design system
   Visual language adapted from the FLUYE Bottle reference (public storefront):
   white/black high contrast, Montserrat 700 headings with tight tracking,
   pill buttons, 10–14px card radii, light-cyan accent, dark footer.
   Structure is ours; nothing is copied from that site's markup or assets.
   ========================================================================== */

/* ------------------------------ tokens ---------------------------------- */
:root {
  --font-head: "Montserrat", ui-sans-serif, system-ui, "Segoe UI", Arial, sans-serif;
  --font-body: "Montserrat", ui-sans-serif, system-ui, "Segoe UI", Arial, sans-serif;
  --font-accent: "Playfair Display", Georgia, serif;

  --maxw: 1400px;
  --maxw-narrow: 860px;
  --gutter: clamp(18px, 4vw, 52px);

  /* FLUYE radii: pill buttons, 14px cards, 10px product cards, 8px forms */
  --r-pill: 50px;
  --r-card: 14px;
  --r-product: 10px;
  --r-form: 8px;
  --r-sm: 8px;

  --section-y: clamp(52px, 7vw, 104px);
  --t: .24s cubic-bezier(.2, .7, .3, 1);
}

html[data-theme="light"] {
  /* warm palette: ivory paper, sand surfaces, terracotta accent, warm-black ink
     (same structure as the reference storefront, shifted from cool cyan to warm) */
  --bg: #fbf7f1;
  --surface: #f6f0e6;
  --surface-2: #efe6d8;
  --ink: #241c15;
  --body-ink: #3e3428;
  --muted: #8a7b6b;
  --line: rgba(64, 45, 28, .14);
  --line-strong: rgba(64, 45, 28, .28);
  --accent: #c87d4b;
  --accent-deep: #a65c2b;
  --accent-soft: rgba(200, 125, 75, .16);
  --dark: #241c15;
  --on-dark: #fbf7f1;
  --card-shadow: 0 2px 14px rgba(64, 45, 28, .07);
  --card-shadow-hover: 0 14px 34px rgba(64, 45, 28, .14);
  --media-bg: #f3ebdf;
  --media-line: rgba(64, 45, 28, .05);
}

html[data-theme="dark"] {
  /* warm dark: roasted brown-black rather than pure #000 */
  --bg: #17110c;
  --surface: #1f1811;
  --surface-2: #2a2118;
  --ink: #f7f1e8;
  --body-ink: #e4dacb;
  --muted: #a2937f;
  --line: rgba(247, 241, 232, .14);
  --line-strong: rgba(247, 241, 232, .28);
  --accent: #d99160;
  --accent-deep: #efb189;
  --accent-soft: rgba(217, 145, 96, .18);
  --dark: #f7f1e8;
  --on-dark: #17110c;
  --card-shadow: none;
  --card-shadow-hover: 0 16px 40px rgba(0, 0, 0, .5);
  --media-bg: #241c15;
  --media-line: rgba(247, 241, 232, .06);
}

/* ------------------------------ base ------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body-ink);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  transition: background var(--t), color var(--t);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 7.4vw, 95px); }
h2 { font-size: clamp(30px, 5.4vw, 75px); }
h3 { font-size: clamp(20px, 2.6vw, 35px); letter-spacing: -.02em; }
h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
p { margin: 0 0 1em; }

::selection { background: var(--accent); color: #2a1c10; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--maxw-narrow); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(34px, 4.5vw, 60px); }
.section + .section { border-top: 1px solid var(--line); }
.section--flush { border-top: 0; }

.muted { color: var(--muted); }
.center { text-align: center; }
.mono { font-family: ui-monospace, "Consolas", monospace; font-size: .82em; }

/* FLUYE-style accent line: serif italic used for eyebrows / small labels */
.eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent-deep);
  margin: 0 0 10px;
}
.lede { font-size: clamp(17px, 1.35vw, 20px); color: var(--muted); max-width: 64ch; }

.section-head { max-width: 72ch; margin-bottom: clamp(26px, 4vw, 46px); }
.section-head--split {
  max-width: none;
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 18px;
}
.section-head--split > div { max-width: 64ch; }

/* ------------------------------ announcement bar ------------------------ */
.announce {
  background: var(--dark);
  color: var(--on-dark);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px var(--gutter);
}
.announce a { text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------ buttons --------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 30px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer; white-space: nowrap;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--dark); color: var(--on-dark); }
.btn--primary:hover { background: var(--accent-deep); color: #fff8f0; }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--accent { background: var(--accent); color: #2a1c10; }
.btn--accent:hover { background: var(--accent-deep); color: #fff8f0; }
.btn--sm { min-height: 40px; padding: 0 20px; font-size: 12.5px; }
.btn--block { width: 100%; }

/* ------------------------------ nav ------------------------------------- */
/* three-column header, matching the reference: menu left | logo centre | icons right
   (their .header--wrapper is grid-template-columns:1fr auto 1fr; min-height:65px) */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 10px;
  min-height: 65px;
}

.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 21px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink);
}
.nav .brand { justify-self: center; }
.brand__mark {
  width: 36px; height: 36px; flex: 0 0 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--dark); color: var(--on-dark);
  font-size: 16px; font-weight: 700; letter-spacing: 0;
}
.brand small {
  display: block; font-family: var(--font-body);
  font-size: 9.5px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}

.nav__links { display: flex; align-items: center; gap: 2px; justify-self: start; }
.nav__links a {
  padding: 10px 14px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  border-radius: var(--r-pill);
  transition: color var(--t), background var(--t);
}
.nav__links a:hover { color: var(--accent-deep); }
.nav__links a[aria-current="page"] { color: var(--accent-deep); }
.nav__actions { display: flex; align-items: center; gap: 12px; justify-self: end; }

.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: 50%; color: var(--muted); cursor: pointer;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.icon-btn:hover { color: var(--ink); border-color: var(--line-strong); }
.nav__burger { display: none; }

@media (max-width: 1080px) {
  .nav__inner { display: flex; align-items: center; justify-content: space-between; }
  .nav__links {
    position: absolute; inset: 65px 0 auto;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 14px var(--gutter) 22px;
    background: var(--bg); border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav__links[data-open="true"] { display: flex; }
  .nav__links a { padding: 14px 10px; font-size: 14px; }
  .nav__burger { display: grid; }
  .nav__actions .btn { display: none; }
  .langswitch { order: 2; }
}

/* language switcher */
.langswitch {
  display: flex; align-items: center; gap: 2px;
  padding: 3px; border: 1px solid var(--line); border-radius: var(--r-pill);
}
.langswitch__item {
  padding: 6px 11px; border-radius: var(--r-pill);
  font-family: var(--font-head); font-size: 11.5px; font-weight: 600;
  letter-spacing: .06em; color: var(--muted);
  transition: color var(--t), background var(--t);
}
.langswitch__item:hover { color: var(--ink); background: var(--surface-2); }
.langswitch__item.is-current { background: var(--dark); color: var(--on-dark); }
@media (max-width: 1080px) { .langswitch__item { padding: 6px 8px; font-size: 11px; } }

/* ------------------------------ banner (hero) --------------------------- */
/* Premium "product spotlight": a warm-black stage with a soft radial glow, the
   product photo shown whole (object-fit: contain) in a floating card, serif italic
   eyebrow, a hairline accent rule and bar indicators. The blurred photo layer is
   kept only as faint texture — a full-bleed cover crop would zoom a square product
   shot until the bottle was cut off, which is the opposite of premium. */
.banner {
  position: relative; display: grid; place-items: center; overflow: hidden;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
/* warm spotlight behind the product */
.banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(115% 85% at 50% 16%, rgba(200, 125, 75, .22), transparent 60%);
}

.banner__bg { position: absolute; inset: 0; overflow: hidden; }
.banner__bg .banner__slide {
  position: absolute; inset: 0; opacity: 0;
  animation: slideCycle 24s linear infinite;
  animation-delay: var(--delay, 0s);
}
.banner__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(46px) brightness(.34) saturate(1.1);
  transform: scale(1.25);
  opacity: .5;
}
.banner__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 100% at 50% 50%, transparent 30%, rgba(18, 13, 9, .72) 100%),
    linear-gradient(180deg, rgba(18, 13, 9, .2), rgba(18, 13, 9, .45) 60%, rgba(18, 13, 9, .9));
}
.banner__content { position: relative; z-index: 2; width: 100%; padding-block: clamp(52px, 9vh, 112px); text-align: center; }
.banner__content h1, .banner__content .eyebrow { color: #fff; }
.banner__content h1 em { color: var(--accent); }
/* hairline rule between the serif eyebrow and the wordmark-sized headline */
.banner__content h1::before {
  content: ''; display: block; width: 58px; height: 1px;
  margin: 0 auto clamp(16px, 2vh, 26px);
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.banner__content h1 { margin: 0 auto .32em; max-width: 22ch; }
.banner__content .eyebrow { color: rgba(255, 255, 255, .88); }
.banner__lede { font-size: clamp(17px, 1.4vw, 20px); color: rgba(255, 255, 255, .88); max-width: 62ch; margin: 0 auto; }
.banner__content .hero__cta { justify-content: center; }
.banner__content .btn--ghost { border-color: rgba(255, 255, 255, .72); color: #fff; }
.banner__content .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* the product, whole and uncropped, floating on the dark stage */
.banner__stage { position: relative; height: clamp(210px, 40vh, 460px); margin-top: clamp(24px, 3.4vw, 46px); }
.banner__product {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: 0;
  animation: slideCycle 24s linear infinite;
  animation-delay: var(--delay, 0s);
}
.banner__product img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow:
    0 60px 100px -45px rgba(0, 0, 0, .95),
    0 0 0 1px rgba(255, 255, 255, .07);
}

/* bar indicators rather than dots — quieter, more editorial */
.banner__dots { position: relative; margin-top: 26px; display: flex; justify-content: center; gap: 8px; }
.banner__dots i {
  width: 36px; height: 2px; border-radius: 2px;
  background: rgba(255, 255, 255, .22);
  animation: dotCycle 24s linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes slideCycle { 0% { opacity: 0 } 1.2% { opacity: 1 } 31% { opacity: 1 } 33.3% { opacity: 0 } 100% { opacity: 0 } }
@keyframes dotCycle {
  0% { background: var(--accent) }
  31% { background: var(--accent) }
  33.3% { background: rgba(255, 255, 255, .22) }
  100% { background: rgba(255, 255, 255, .22) }
}
@media (max-width: 700px) {
  .banner__content { padding-block: clamp(36px, 6vh, 70px); }
  .banner__stage { height: clamp(160px, 30vh, 300px); }
}
@media (prefers-reduced-motion: reduce) {
  .banner__slide, .banner__product { animation: none; }
  .banner__slide:first-child, .banner__product:first-child { opacity: 1; }
  .banner__dots { display: none; }
}

/* facts strip under the banner (reference: promotional bar) */
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; padding-block: clamp(22px, 3vw, 34px); }
.facts div { text-align: center; }
.facts strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(19px, 2vw, 27px); letter-spacing: -.02em; color: var(--ink); }
.facts span { font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 700px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; } }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ------------------------------ media ----------------------------------- */
.hero__shot {
  border: 0; border-radius: var(--r-card); overflow: hidden;
  background: var(--media-bg);
  box-shadow: var(--card-shadow);
}
.hero__shot img { width: 100%; height: auto; display: block; }

.ph-media {
  position: relative; aspect-ratio: 4 / 3;
  display: grid; place-items: center; text-align: center; padding: 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-card);
  background-image:
    linear-gradient(var(--media-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--media-line) 1px, transparent 1px);
  background-size: 34px 34px;
  background-color: var(--media-bg);
  color: var(--muted);
}
.ph-media span { font-family: var(--font-head); font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.ph-media small { display: block; margin-top: 6px; font-size: 11px; opacity: .8; letter-spacing: .04em; }
.ph-media--tall { aspect-ratio: 3 / 4; }
.ph-media--wide { aspect-ratio: 16 / 9; }

/* ------------------------------ grids ----------------------------------- */
.grid { display: grid; gap: clamp(14px, 1.8vw, 26px); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 1080px) { .grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 860px) { .grid--4, .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; } }

/* ------------------------------ product card ---------------------------- */
.card {
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-product);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
a.card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); border-color: transparent; }
.card__media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--surface); }
/* both dimensions are set here, so no width/height attribute can override the ratio */
.card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s cubic-bezier(.2, .7, .3, 1); }
a.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 10px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .3em; font-size: 17px; letter-spacing: -.015em; }
.card__body p { margin: 0; font-size: 13px; color: var(--muted); }
.card__meta { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.chip {
  display: inline-block; padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--surface-2); color: var(--muted);
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.chip--accent { background: var(--accent); color: #2a1c10; }
.card__link { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--accent-deep); text-transform: uppercase; }

/* filters */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter {
  padding: 10px 20px; min-height: 42px;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: transparent; color: var(--body-ink);
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all var(--t);
}
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--dark); border-color: var(--dark); color: var(--on-dark); }

/* ------------------------------ category tiles -------------------------- */
/* category tiles: 1:1 to match the square source photos.
   NOTE the `height: auto` — it is load-bearing. The <img> tags carry
   width="1066" height="1066" attributes (to reserve space), and those act as a
   presentational `height: 1066px`, which BEATS `aspect-ratio` (aspect-ratio only
   applies when width or height is auto). Without `height: auto` every tile
   rendered 417x1066 — a tall letterboxed strip instead of a square. */
.cats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 22px); }
@media (max-width: 860px) { .cats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .cats { grid-template-columns: 1fr; } }

.cat { position: relative; display: block; border-radius: var(--r-card); overflow: hidden; background: var(--surface); }
.cat img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; transition: transform .5s cubic-bezier(.2, .7, .3, 1); }
.cat:hover img { transform: scale(1.05); }
.cat__label {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  background: var(--bg); border-radius: var(--r-pill);
  padding: 11px 18px; text-align: center;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.cat--all .cat__label { background: var(--dark); color: var(--on-dark); }

/* ------------------------------ benefit row ----------------------------- */
.benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 900px) { .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.benefit { text-align: center; padding: 24px 14px; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--bg); }
.benefit__icon {
  width: 46px; height: 46px; margin: 0 auto 14px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
}
.benefit h3 { font-size: 14px; margin-bottom: .35em; }
.benefit p { margin: 0; font-size: 13px; color: var(--muted); }

/* ------------------------------ marquee --------------------------------- */
.marquee { overflow: hidden; background: var(--dark); color: var(--on-dark); padding: 16px 0; }
.marquee__track {
  display: flex; gap: 46px; width: max-content;
  font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  animation: marquee 34s linear infinite;
}
.marquee__track span { white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ------------------------------ text rows ------------------------------- */
.rows { border-top: 1px solid var(--line); }
.row {
  display: grid; grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(14px, 3vw, 48px);
  padding-block: clamp(20px, 2.6vw, 32px);
  border-bottom: 1px solid var(--line);
}
.row dt { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.row dd { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 720px) { .row { grid-template-columns: 1fr; gap: 6px; } }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(26px, 4.5vw, 64px); align-items: center; }
.split--media-first .split__media { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--media-first .split__media { order: 0; } }

.ticks { list-style: none; padding: 0; margin: 22px 0 0; }
.ticks li { position: relative; padding-left: 26px; margin-bottom: 11px; font-size: 15px; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--accent-deep); border-bottom: 2px solid var(--accent-deep);
  transform: rotate(-45deg);
}

.certs { display: flex; flex-wrap: wrap; gap: 10px; }
.cert {
  padding: 11px 20px; border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--bg); font-family: var(--font-head);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}

/* ------------------------------ forms ----------------------------------- */
.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field .req { color: var(--accent-deep); }

input, select, textarea {
  width: 100%; min-height: 50px; padding: 12px 15px;
  background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: var(--r-form); color: var(--body-ink);
  font-family: inherit; font-size: 15px;
  transition: border-color var(--t);
}
textarea { min-height: 132px; resize: vertical; }
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--muted) 80%, transparent); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
input[type="checkbox"] { width: auto; min-height: auto; margin-right: 9px; accent-color: var(--accent-deep); }
.check { display: flex; align-items: flex-start; font-size: 13px; color: var(--muted); }

.form__note { font-size: 12.5px; color: var(--muted); }
.form__status { display: none; padding: 13px 16px; border-radius: var(--r-form); font-size: 14px; }
.form__status[data-state="ok"] { display: block; background: var(--accent-soft); border: 1px solid var(--accent); color: var(--ink); }
.form__status[data-state="err"] { display: block; border: 1px solid #c4453a; color: #c4453a; }

.panel { padding: clamp(20px, 2.6vw, 34px); border: 1px solid var(--line); border-radius: var(--r-card); background: var(--surface); }

/* ------------------------------ contact list ---------------------------- */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 15px 0; border-bottom: 1px solid var(--line); display: flex; gap: 16px; justify-content: space-between; flex-wrap: wrap; }
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-list .k { font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-list .v { font-size: 15px; font-weight: 500; }
.contact-list .v a:hover { color: var(--accent-deep); }

/* ------------------------------ band ------------------------------------ */
.band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.band__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 4.5vw, 64px); align-items: start; }
@media (max-width: 900px) { .band__grid { grid-template-columns: 1fr; } }

/* ------------------------------ footer ---------------------------------- */
.footer { background: var(--dark); color: var(--on-dark); padding-block: clamp(44px, 6vw, 76px) 26px; }
.footer a { color: var(--on-dark); }
.footer a:hover { color: var(--accent); }
.footer .brand { color: var(--on-dark); }
.footer .brand__mark { background: var(--on-dark); color: var(--dark); }
.footer .brand small { color: color-mix(in srgb, var(--on-dark) 60%, transparent); }
.footer .muted { color: color-mix(in srgb, var(--on-dark) 62%, transparent); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(22px, 3.6vw, 48px); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: 12px; letter-spacing: .16em; color: color-mix(in srgb, var(--on-dark) 55%, transparent); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; font-size: 14.5px; }
.footer__bottom {
  margin-top: clamp(30px, 4.5vw, 56px); padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--on-dark) 18%, transparent);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12.5px; color: color-mix(in srgb, var(--on-dark) 60%, transparent);
}

/* ------------------------------ whatsapp -------------------------------- */
.wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 54px; padding: 0 24px 0 18px;
  border-radius: var(--r-pill);
  background: #25d366; color: #04231a;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  box-shadow: 0 16px 34px -14px rgba(37, 211, 102, .75);
  transition: transform var(--t), filter var(--t);
}
.wa:hover { transform: translateY(-2px); filter: brightness(1.06); }
.wa svg { flex: 0 0 22px; }
@media (max-width: 620px) { .wa span { display: none; } .wa { padding: 0 16px; } }

/* ------------------------------ misc ------------------------------------ */
.breadcrumb { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding-top: 24px; }
.breadcrumb a:hover { color: var(--accent-deep); }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 15px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 38%; font-weight: 600; color: var(--muted); font-size: 13px; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
/* height: auto is required for the same reason as .cat img above — several
   gallery images carry width/height attributes that would otherwise win. */
.gallery img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; border-radius: var(--r-product); background: var(--surface); }
.gallery--tight { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 12px; }
@media (max-width: 620px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } .gallery--tight { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.quote { margin: 0; padding-left: 20px; border-left: 2px solid var(--accent); font-family: var(--font-accent); font-style: italic; font-size: 19px; }
.muted.small { font-size: 13px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* dev-only placeholder highlight */
html[data-dev="1"] .ph { outline: 1px dashed var(--accent-deep); outline-offset: 3px; border-radius: 3px; }

.dev {
  position: fixed; left: 18px; bottom: 18px; z-index: 70;
  display: none; flex-direction: column; gap: 10px; width: 214px; padding: 14px;
  border: 1px solid var(--line-strong); border-radius: var(--r-card);
  background: var(--bg); box-shadow: var(--card-shadow-hover); font-size: 13px;
}
html[data-dev="1"] .dev { display: flex; }
.dev strong { font-family: var(--font-head); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.dev__row { display: flex; gap: 8px; }
.dev__row button {
  flex: 1; min-height: 36px; border: 1px solid var(--line); border-radius: var(--r-pill);
  background: transparent; color: var(--muted); font-family: inherit; font-size: 12px; cursor: pointer;
}
.dev__row button[aria-pressed="true"] { border-color: var(--ink); background: var(--dark); color: var(--on-dark); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ==========================================================================
   MOBILE / TABLET LAYOUT — a deliberate second arrangement, not a shrunken
   copy of the desktop one.

   Why this layer exists: the desktop design is a full-bleed banner with text
   overlaid on it, 95px display headings and 4-up grids. Rendered on a phone that
   same arrangement squeezes — and a square product photo forced into a full-bleed
   frame is exactly what made the pictures look "wrong sized". So phones get their
   own layout: text on the page instead of over the photo, the product in a square
   card that matches the source file, 2-up grids, stacked spec tables.

   Breakpoints:  <=749px phone   |   750-1079px tablet   |   >=1080px desktop
   ========================================================================== */

/* ------------------------------ tablet + phone ------------------------- */
@media (max-width: 1079px) {
  /* header: burger left, wordmark centred, controls right (desktop puts the
     menu links on the left instead) */
  .nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; column-gap: 10px; }
  .nav__burger { display: grid; grid-column: 1; justify-self: start; }
  .nav .brand { grid-column: 2; justify-self: center; }
  .nav__actions { grid-column: 3; justify-self: end; }
  .nav__actions .btn { display: none; }              /* the quote CTA lives in the drawer */
  .nav__links { inset: 65px 0 auto; }
  .nav__links a { padding: 16px 10px; font-size: 15px; }

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

/* ------------------------------ tablet only ---------------------------- */
@media (min-width: 750px) and (max-width: 1079px) {
  h1 { font-size: clamp(40px, 6.2vw, 62px); }
  h2 { font-size: clamp(31px, 4.6vw, 48px); }
  .banner__stage { height: clamp(190px, 28vh, 320px); }
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ------------------------------ phone ---------------------------------- */
@media (max-width: 749px) {
  :root { --gutter: 18px; --section-y: 44px; }

  /* type: desktop display sizes are unusable at 390px */
  h1 { font-size: clamp(29px, 8.4vw, 38px); }
  h2 { font-size: clamp(23px, 6.6vw, 30px); }
  h3 { font-size: 19px; }
  .lede, .banner__lede { font-size: 16.5px; }
  .eyebrow { font-size: 16px; }
  .section-head { margin-bottom: 22px; }
  .section-head--split { align-items: flex-start; }

  /* ---- banner on a phone: same premium dark stage, but the copy sits ABOVE the
     photo rather than on top of it, and the product keeps its square frame ----- */
  .banner { display: block; }
  .banner__content { padding-block: 30px 4px; }
  .banner__content .hero__cta { margin-top: 22px; }
  .banner__content .hero__cta .btn { flex: 1 1 100%; }
  .banner__stage { height: auto; aspect-ratio: 1 / 1; margin-top: 22px; }
  .banner__dots { margin-top: 18px; }

  /* facts strip: 2 x 2 */
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 12px; padding-block: 22px; }
  .facts strong { font-size: 21px; }

  /* grids: two up on a phone */
  .grid--4, .grid--3, .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery, .gallery--tight { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card__body { padding: 9px 12px 14px; }
  .card__body h3 { font-size: 15px; }
  .card__body p { font-size: 12.5px; }
  .card__meta { padding-top: 10px; }
  .cat__label { left: 10px; right: 10px; bottom: 10px; padding: 9px 12px; font-size: 11px; letter-spacing: .06em; }

  /* filters scroll horizontally instead of wrapping into four rows */
  .filters {
    flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 10px;
    -webkit-overflow-scrolling: touch;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; }

  /* benefits: icon beside the text, one per row */
  .benefits { grid-template-columns: 1fr; }
  .benefit {
    display: grid; grid-template-columns: 42px 1fr; align-items: center;
    gap: 0 14px; text-align: left; padding: 16px;
  }
  .benefit__icon { width: 42px; height: 42px; margin: 0; }

  /* spec tables: label above value (a 38%-wide label column is unusable here) */
  .spec-table, .spec-table tbody, .spec-table tr, .spec-table th, .spec-table td { display: block; width: 100%; }
  .spec-table tr { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .spec-table tr:last-child { border-bottom: 0; }
  .spec-table th, .spec-table td { border: 0; padding: 0; }
  .spec-table th { width: auto; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; }
  .spec-table td { margin-top: 4px; font-size: 15.5px; }

  /* stacked rows, contact list, footer */
  .row { grid-template-columns: 1fr; gap: 4px; }
  .contact-list li { flex-direction: column; gap: 4px; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { flex-direction: column; gap: 6px; }
  .marquee__track { font-size: 11px; gap: 28px; padding: 0; }
  .panel { padding: 18px; }
  .band__grid { gap: 22px; }
  .quote { font-size: 17px; }
  .breadcrumb { padding-top: 16px; font-size: 11px; }

  /* WhatsApp becomes a full-width bar above the home indicator */
  .wa { left: 14px; right: 14px; bottom: 14px; justify-content: center; }
}

/* (bar indicators share dotCycle — the previous light-banner variant is gone) */
