/* ==========================================================================
   D'Chico Boutique — one page demo
   Palette: one accent hue family (red) + warm neutrals + ink.
   Every animation is gated behind prefers-reduced-motion.
   ========================================================================== */

:root {
  --cream: #F4F0EA;
  --cream-deep: #E9E2D8;
  --sand: #D3B294;
  --red: #E00713;
  --red-lite: #F5262F;
  --red-deep: #A50D1C;
  --wine: #8E0B22;
  --red-wash: #FAE9E8;
  --ink: #141011;
  --ink-soft: #6D6560;
  --line: rgba(20, 16, 17, 0.12);
  --line-light: rgba(244, 240, 234, 0.18);

  --font-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  --nav-h: 72px;
  --gut: clamp(20px, 5vw, 72px);
  --sec: clamp(72px, 10vw, 150px);

  --spring-snappy: linear(0, 0.009, 0.035 2.1%, 0.141 4.4%, 0.723 12.9%, 0.938 16.7%, 1.017 19.4%, 1.067 22.5%, 1.089 26%, 1.079 30.3%, 1.049 36%, 1.024 42.6%, 1.011 50.3%, 1.004 59.2%, 1.001 69.3%, 1);
  --spring-smooth: linear(0, 0.004, 0.016 2.3%, 0.063 4.7%, 0.141 7.2%, 0.25 9.9%, 0.601 16.5%, 0.815 21%, 0.929 25.2%, 0.987 29%, 1.025 33.5%, 1.042 38%, 1.04 43.5%, 1.027 50%, 1.013 57.5%, 1.005 67%, 1.001 79%, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(15px, 1.02vw, 17px);
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain. Fixed, non-interactive, above everything. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

::selection { background-color: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background-color: var(--ink);
  color: var(--cream);
  font-size: 0.85rem;
  text-decoration: none;
}
.skip:focus { left: 8px; top: 8px; }

/* --------------------------------------------------------------- utilities */

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-deep);
}
.eyebrow--light { color: var(--red-lite); }

.h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h2--light { color: var(--cream); }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 clamp(20px, 2vw, 30px);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.5s var(--ease-out), background-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), color 0.5s var(--ease-out);
}
.pill--red {
  background-color: var(--red);
  color: #fff;
  box-shadow: 0 1px 0 rgba(20, 16, 17, 0.08);
}
.pill--red:hover {
  background-color: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(165, 13, 28, 0.3);
}
.pill--red:active { transform: translateY(0) scale(0.98); }

.micro {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-deep);
  text-decoration: none;
  padding-bottom: 0.45em;
  background-image: linear-gradient(var(--red), var(--red));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 32% 1px;
  transition: background-size 0.5s var(--ease-out), color 0.5s var(--ease-out);
}
.micro:hover { background-size: 100% 1px; color: var(--red); }

/* Scroll reveals. The .js gate keeps content visible if JS never runs. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* --------------------------------------------------------------------- nav */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background-color 0.55s var(--ease-out), border-color 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}
.nav.is-scrolled {
  background-color: rgba(244, 240, 234, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px rgba(20, 16, 17, 0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 34px);
  height: var(--nav-h);
  padding: 0 var(--gut);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  margin-right: auto;
  min-width: 0;
  text-decoration: none;
}
.nav__logo { height: 30px; width: auto; }

.nav__chip {
  padding: 0.52em 0.82em 0.48em;
  border-radius: 999px;
  background-color: var(--ink);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.55s var(--ease-out), color 0.55s var(--ease-out);
}
.nav.is-scrolled .nav__chip {
  background-color: transparent;
  color: var(--ink-soft);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav__links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 0.5em 0;
  transition: color 0.4s var(--ease-out);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.4s var(--ease-out);
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background-color: var(--ink);
  transition: transform 0.45s var(--ease-out), opacity 0.3s var(--ease-out);
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.nav__panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px var(--gut) 22px;
  background-color: rgba(244, 240, 234, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__panel[hidden] { display: none; }
.nav__panel a {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.nav__panel a:last-child { border-bottom: 0; }

/* -------------------------------------------------------------------- hero */

.hero {
  display: grid;
  grid-template-columns: 57% 43%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--sand);
}

.hero__type {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + clamp(40px, 7vw, 92px)) var(--gut) clamp(28px, 4vw, 56px);
  padding-right: clamp(28px, 4vw, 64px);
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(20, 16, 17, 0.6);
  max-width: 40ch;
}

.hero__title {
  margin: clamp(16px, 2.2vw, 28px) 0 clamp(18px, 2.4vw, 32px);
  font-size: clamp(2.8rem, 7.4vw, 7.4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.hero__title span { display: block; }

.hero__sub {
  max-width: 44ch;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.55;
  color: rgba(20, 16, 17, 0.78);
}

.hero__actions { margin-top: clamp(22px, 3vw, 38px); }

.hero__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(14px, 1.8vw, 26px);
  margin-top: clamp(28px, 4vw, 52px);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 16, 17, 0.5);
}
.hero__stores li { position: relative; padding-right: clamp(14px, 1.8vw, 26px); }
.hero__stores li:last-child { padding-right: 0; }
.hero__stores li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgba(20, 16, 17, 0.4);
  transform: translateY(-50%);
}

.hero__media {
  position: relative;
  overflow: hidden;
  background-color: var(--sand);
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}
/* the single decoration: a red hairline sitting in the seam, offset 14px */
.hero__media::before {
  content: '';
  position: absolute;
  z-index: 2;
  left: 14px;
  top: clamp(96px, 15vh, 180px);
  bottom: clamp(40px, 9vh, 104px);
  width: 1px;
  background-color: var(--red);
}

/* hero entry, choreographed on load rather than on scroll */
.hero__eyebrow,
.hero__title span,
.hero__sub,
.hero__actions,
.hero__stores,
.hero__media {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(7px);
  animation: hero-in 0.78s var(--ease-out) forwards;
}
.hero__media { transform: translateY(0) scale(1.03); }
.hero__eyebrow { animation-delay: 0.08s; }
.hero__title span:nth-child(1) { animation-delay: 0.18s; }
.hero__title span:nth-child(2) { animation-delay: 0.26s; }
.hero__title span:nth-child(3) { animation-delay: 0.34s; }
.hero__sub { animation-delay: 0.42s; }
.hero__actions { animation-delay: 0.5s; }
.hero__stores { animation-delay: 0.58s; }

@keyframes hero-in {
  to { opacity: 1; transform: none; filter: blur(0); }
}

/* ------------------------------------------------------------------- story */

.story { padding: var(--sec) var(--gut); background-color: var(--cream); }

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 5vw, 92px);
  align-items: start;
}

.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--cream-deep);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }

.story__text { padding-top: clamp(24px, 4.4vw, 64px); }
.story__text .h2 { margin: clamp(12px, 1.6vw, 20px) 0 clamp(18px, 2.2vw, 30px); }
.story__text p + p { margin-top: 1.1em; }
.story__text p { max-width: 52ch; color: var(--ink-soft); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(56px, 7vw, 110px);
  border-top: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: clamp(24px, 3vw, 42px) clamp(16px, 2vw, 34px);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.stat__unit { margin-left: 0.24em; font-size: 0.4em; letter-spacing: -0.01em; color: var(--red); }
.stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------------ brands */

.brands { padding: var(--sec) var(--gut); background-color: var(--ink); color: var(--cream); }

.brands__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0 clamp(20px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 88px);
}
.brands__head .eyebrow { grid-column: 1 / -1; margin-bottom: clamp(12px, 1.6vw, 20px); }
.brands__sub {
  grid-column: 2;
  align-self: end;
  max-width: 38ch;
  font-size: 0.98rem;
  color: rgba(244, 240, 234, 0.5);
}

.brand-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0 clamp(16px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(20px, 2.8vw, 38px) 0;
}
.brand-row::before,
.brand-row:last-child::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--line-light);
}
.brand-row::before { top: 0; transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease-out); }
.brand-row:last-child::after { bottom: 0; }
.brand-row.is-visible::before { transform: scaleX(1); }

.brand-row__name {
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: transform 0.6s var(--ease-out), color 0.6s var(--ease-out);
}
.brand-row__note { font-size: 0.95rem; color: rgba(244, 240, 234, 0.45); }
.brand-row:hover .brand-row__name { transform: translateX(10px); color: var(--red-lite); }

/* ----------------------------------------------------------------- catalog */

.catalog { padding: var(--sec) var(--gut); background-color: var(--cream); }

.catalog__head { max-width: 54ch; margin-bottom: clamp(48px, 7vw, 112px); }
.catalog__head .h2 { margin: clamp(12px, 1.6vw, 20px) 0 clamp(16px, 2vw, 26px); }
.catalog__sub { color: var(--ink-soft); max-width: 46ch; }

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 36px);
  row-gap: clamp(48px, 7vw, 112px);
  align-items: start;
}

.piece { display: flex; flex-direction: column; gap: clamp(14px, 1.6vw, 22px); }

.piece__frame {
  position: relative;
  display: block;
  aspect-ratio: var(--ratio, 4 / 5);
  overflow: hidden;
  background-color: var(--cream-deep);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.piece__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out);
}
.piece:hover .piece__frame {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(20, 16, 17, 0.16);
}
.piece:hover .piece__frame img { transform: scale(1.04); }

.piece__cap { display: flex; flex-direction: column; gap: 0.55em; align-items: flex-start; }
.piece__brand {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 16, 17, 0.5);
}
.piece__name {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.018em;
}

.price { display: flex; align-items: baseline; gap: 0.7em; flex-wrap: wrap; }
.price__now { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.price__was { font-size: 0.9rem; color: var(--ink-soft); }
.price__tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.piece--1 { grid-column: 1 / 6; }
.piece--2 { grid-column: 8 / 12; margin-top: clamp(40px, 9vw, 152px); }
.piece--3 { grid-column: 1 / 4; }
.piece--4 { grid-column: 6 / 9; margin-top: clamp(24px, 6vw, 92px); }
.piece--5 { grid-column: 10 / 13; margin-top: clamp(56px, 12vw, 204px); }

/* ------------------------------------------------------------------- promo */

.promo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  background-color: var(--wine);
  color: var(--cream);
}

.promo__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(64px, 9vw, 148px) var(--gut);
}

.promo__kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.promo__lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  margin-top: 0.28em;
}
.promo__word {
  font-size: clamp(1.8rem, 4.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.promo__tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.42em 0.95em 0.36em;
  border-radius: 999px;
  background-color: var(--red);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
.promo__since { margin-top: 0.2em; font-size: 0.46em; font-weight: 500; letter-spacing: 0.04em; opacity: 0.85; }

.promo__tagline { margin-top: 0.7em; font-size: clamp(0.9rem, 1.2vw, 1.05rem); color: rgba(244, 240, 234, 0.75); }

.promo__lead {
  margin-top: clamp(30px, 4vw, 56px);
  font-size: clamp(0.78rem, 1.05vw, 0.94rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.promo__lead--mid { margin-top: clamp(6px, 1vw, 14px); letter-spacing: 0.2em; }

.promo__big {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
}

.promo__window {
  margin-top: clamp(26px, 3.4vw, 46px);
  padding: 0.95em 1.4em;
  border: 1px solid rgba(244, 240, 234, 0.5);
  font-size: clamp(0.74rem, 1vw, 0.88rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.promo__where {
  margin-top: clamp(14px, 2vw, 26px);
  font-size: clamp(0.8rem, 1.05vw, 0.95rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo__fine { margin-top: clamp(18px, 2.4vw, 32px); font-size: 0.85rem; color: rgba(244, 240, 234, 0.55); }

.promo__media { position: relative; overflow: hidden; background-color: var(--wine); }
.promo__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* -------------------------------------------------------------- highlights */

.highlights { padding: var(--sec) var(--gut); background-color: var(--cream-deep); }
.highlights__head { margin-bottom: clamp(40px, 5vw, 84px); }
.highlights__head .h2 { margin-top: clamp(12px, 1.6vw, 20px); max-width: 24ch; }

.hl-row {
  display: grid;
  grid-template-columns: clamp(56px, 7vw, 112px) minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 0 clamp(12px, 2.4vw, 44px);
  align-items: baseline;
  padding: clamp(18px, 2.6vw, 34px) 0;
  border-top: 1px solid var(--line);
  transition: border-color 0.55s var(--ease-out);
}
.hl-row:last-child { border-bottom: 1px solid var(--line); }
.hl-row:hover { border-color: var(--red); }

.hl-row__num {
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--red);
  transition: transform 0.55s var(--ease-out);
}
.hl-row:hover .hl-row__num { transform: translateX(8px); }

.hl-row__name {
  font-size: clamp(1.1rem, 2.1vw, 1.7rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hl-row__note { font-size: 0.98rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------ voices */

.voices {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 62px);
  padding: clamp(56px, 7vw, 116px) 0;
  background-color: var(--ink);
  color: var(--cream);
}

.marquee { overflow: hidden; width: 100%; }
.marquee__track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.marquee--b .marquee__track { animation-duration: 58s; animation-direction: reverse; }

.marquee__set { display: flex; flex: 0 0 auto; align-items: center; }
.marquee__set em {
  padding: 0 0.5em;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  line-height: 1.3;
  white-space: nowrap;
}
.marquee__set i { font-style: normal; font-size: clamp(1.5rem, 3.2vw, 2.6rem); color: var(--red-lite); }

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

.voices__mark { display: flex; justify-content: center; }
.voices__mark img { height: 40px; width: auto; }

/* ------------------------------------------------------------------ stores */

.stores { padding: var(--sec) var(--gut); background-color: var(--cream); }

.stores__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 38px);
  margin-top: clamp(40px, 5vw, 84px);
}
.store {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75em;
  padding-top: clamp(20px, 2.4vw, 34px);
  border-top: 1px solid var(--line);
}
.store__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.store__addr {
  max-width: 22ch;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.contact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 38px);
  margin-top: clamp(48px, 6vw, 100px);
  padding-top: clamp(28px, 3.4vw, 50px);
  border-top: 1px solid var(--line);
}
.contact__col { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5em; }
.contact__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact__value {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.12em;
  transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
a.contact__value:hover { color: var(--red); border-color: var(--red-deep); }
.contact__value--plain { border-color: transparent; color: var(--ink-soft); font-weight: 500; }
.contact__note { font-size: 0.86rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------ footer */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.6vw, 36px);
  padding: clamp(56px, 7vw, 116px) var(--gut) clamp(32px, 4vw, 58px);
  background-color: var(--ink);
  color: var(--cream);
  text-align: center;
}
.footer__mark img { height: 44px; width: auto; }
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--red-lite);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__links a {
  color: rgba(244, 240, 234, 0.7);
  text-decoration: none;
  transition: color 0.4s var(--ease-out);
}
.footer__links a:hover { color: var(--cream); }
.footer__legal { font-size: 0.82rem; color: rgba(244, 240, 234, 0.42); }

/* ------------------------------------------------------------- breakpoints */

@media (max-width: 1180px) {
  .contact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .piece--2 { margin-top: clamp(32px, 7vw, 88px); }
  .piece--4 { margin-top: clamp(20px, 5vw, 56px); }
  .piece--5 { margin-top: clamp(40px, 9vw, 116px); }
}

@media (max-width: 860px) {
  :root { --nav-h: 64px; }

  .nav__links, .nav__chip { display: none; }
  .nav__burger { display: inline-flex; }

  .hero { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto 1fr; }
  .hero__type { order: 1; padding: calc(var(--nav-h) + clamp(24px, 6vw, 48px)) var(--gut) clamp(24px, 4vw, 40px); }
  .hero__media { order: 2; min-height: clamp(220px, 34vh, 400px); }
  .hero__stores { display: none; }
  .hero__title { font-size: clamp(2.4rem, 10.4vw, 4.6rem); }

  .story__grid { grid-template-columns: minmax(0, 1fr); gap: clamp(24px, 5vw, 48px); }
  .story__text { padding-top: 0; }

  .stats { grid-template-columns: minmax(0, 1fr); }
  .stat { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-right: 0; }
  .stat:first-child { border-top: 0; }

  .brands__head { grid-template-columns: minmax(0, 1fr); }
  .brands__sub { grid-column: 1; margin-top: clamp(12px, 2vw, 20px); }
  .brand-row { grid-template-columns: minmax(0, 1fr); gap: 0.4em; }
  .brand-row__name { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .brand-row:hover .brand-row__name { transform: none; }

  .catalog__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); row-gap: clamp(40px, 8vw, 72px); }
  .piece--1 { grid-column: 1 / 6; }
  .piece--2 { grid-column: 4 / 7; margin-top: clamp(24px, 8vw, 60px); }
  .piece--3 { grid-column: 1 / 4; }
  .piece--4 { grid-column: 3 / 7; margin-top: 0; }
  .piece--5 { grid-column: 1 / 5; margin-top: 0; }

  .promo { grid-template-columns: minmax(0, 1fr); }
  .promo__media { order: -1; min-height: clamp(340px, 58vh, 560px); }
  .promo__media img { object-position: top center; }

  .hl-row { grid-template-columns: auto minmax(0, 1fr); row-gap: 0.45em; }
  .hl-row__note { grid-column: 2; }

  .stores__grid { grid-template-columns: minmax(0, 1fr); }
  .contact { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .catalog__grid { grid-template-columns: minmax(0, 1fr); }
  .piece--1, .piece--2, .piece--3, .piece--4, .piece--5 { grid-column: 1; margin-top: 0; }
  .piece--2 { margin-top: clamp(20px, 6vw, 40px); }
  .piece--4 { margin-top: clamp(20px, 6vw, 40px); }
  .hl-row { grid-template-columns: minmax(0, 1fr); }
  .hl-row__note { grid-column: 1; }
  .promo__window { padding: 0.85em 1em; letter-spacing: 0.14em; }
}

/* ------------------------------------------------------- reduced motion gate */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; filter: none; }
  .hero__eyebrow, .hero__title span, .hero__sub, .hero__actions, .hero__stores, .hero__media {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .marquee__track { animation-name: none; width: 100%; }
  .marquee__set { flex-wrap: wrap; justify-content: center; row-gap: 0.2em; }
  .marquee__set[aria-hidden="true"] { display: none; }
  .brand-row::before { transform: scaleX(1); }
  .hl-row:hover .hl-row__num,
  .brand-row:hover .brand-row__name,
  .piece:hover .piece__frame { transform: none; }
}

/* ---- qa: touch targets >= 44px ---- */
.nav__brand { min-height: 44px; }

.nav__links a,
.nav__panel a,
.footer__links a,
.micro,
.contact__value,
a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* ---- qa: render at real pixel size (no upscale) ---- */
.story__media { max-width: 495px; }

.piece__frame { max-width: 495px; margin-inline: auto; }

.promo__media { max-width: 584px; }
