/* ------------------------------------------------------------------
   Choker · Rosée (v6)
   Soft romantic feminine — blush, dusty rose, cream, rose gold.
   DM Serif Display + Jost. Light, airy, unhurried.
------------------------------------------------------------------ */

:root {
  --cream: #fbf5ec;
  --cream-2: #f5ecdd;
  --blush: #f4dbcf;
  --blush-2: #eec8b8;
  --rose: #d9a8a5;
  --rose-deep: #b97f7c;
  --mauve: #b99199;
  --champagne: #e6cfa8;
  --rose-gold: #c9a78a;
  --wine: #6d3b42;
  --ink: #3d2a30;
  --ink-2: #6b4e54;
  --ink-quiet: #9b8287;
  --line: rgba(61, 42, 48, 0.1);
  --line-strong: rgba(61, 42, 48, 0.26);

  --f-display: "DM Serif Display", "Cormorant Garamond", serif;
  --f-script: "Italiana", serif;
  --f-body: "Jost", -apple-system, sans-serif;

  --pad: clamp(20px, 4vw, 80px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: 0; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; background: transparent; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 400; letter-spacing: -0.005em; line-height: 1.05; }
p { margin: 0 0 1em; }
::selection { background: var(--rose); color: var(--cream); }

.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- Atoms ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.eyebrow::before { content: "— "; letter-spacing: 0.1em; }

.ornament {
  color: var(--rose-gold);
  letter-spacing: 0.8em;
  margin: 0;
}
.ornament--centered { text-align: center; }

.italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  border: 1px solid transparent;
}
.btn--rose {
  background: var(--rose-deep);
  color: var(--cream);
}
.btn--rose:hover { background: var(--wine); }
.btn--outline {
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--rose-deep); color: var(--rose-deep); }
.btn--ink {
  background: var(--ink);
  color: var(--cream);
}
.btn--ink:hover { background: var(--rose-deep); }
.btn--block { width: 100%; }

.link-u {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rose-gold);
  transition: gap .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.link-u:hover { gap: 14px; color: var(--wine); border-color: var(--wine); }

/* ---------- Age strip ---------- */
.age-strip {
  background: var(--blush);
  color: var(--ink);
  padding: 10px var(--pad);
  font-size: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  letter-spacing: 0.04em;
}
.age-strip button {
  background: var(--ink);
  color: var(--cream);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background .3s var(--ease);
}
.age-strip button:hover { background: var(--rose-deep); }
.age-strip.is-hidden { display: none; }

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  padding: 14px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 400;
}
.ticker__track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  padding-left: 48px;
}
.ticker__track em { color: var(--rose-deep); font-style: normal; font-family: var(--f-display); font-size: 13px; text-transform: none; letter-spacing: 0; vertical-align: -1px; }
.ticker__track .flower { color: var(--rose-gold); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 245, 236, 0.9);
  backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  transition: opacity .3s var(--ease);
}
.brand:hover { opacity: 0.8; }
.brand__ornament {
  color: var(--rose-gold);
  font-size: 14px;
  line-height: 1;
}
.brand__word {
  font-family: var(--f-display);
  font-size: 24px;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
}
.primary-nav {
  display: inline-flex;
  gap: 28px;
  justify-self: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 400;
}
.primary-nav a {
  position: relative;
  padding-bottom: 4px;
  transition: color .3s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--rose-deep); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-tools {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-self: end;
}
.icon-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease);
  position: relative;
}
.icon-btn:hover { background: var(--blush); color: var(--rose-deep); }
.bag-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--rose-deep);
  color: var(--cream);
  font-size: 9px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  padding: 0 4px;
  font-weight: 400;
  letter-spacing: 0;
}
.nav-toggle {
  display: none;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(60px, 10vw, 140px) var(--pad) clamp(60px, 8vw, 120px);
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero__ornament {
  font-family: var(--f-body);
  font-size: 20px;
  color: var(--rose-gold);
  letter-spacing: 0.8em;
  margin-bottom: 28px;
  padding-left: 0.8em;
  opacity: 0;
  animation: fade .8s 0.15s var(--ease) forwards;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 36px;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.hero__title .row {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s var(--ease) forwards;
}
.hero__title .row:nth-child(1) { animation-delay: 0.25s; }
.hero__title .row:nth-child(2) { animation-delay: 0.4s; }
.hero__title .row:nth-child(3) { animation-delay: 0.55s; }
.hero__title em {
  font-style: italic;
  color: var(--rose-deep);
  font-family: var(--f-script);
  font-weight: 400;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fade { to { opacity: 1; } }

.hero__lede {
  max-width: 56ch;
  margin: 0 auto 40px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 1s 0.75s var(--ease) forwards;
}
.hero__cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 0.9s var(--ease) forwards;
}

.hero__stage {
  margin: clamp(48px, 7vw, 88px) auto 0;
  max-width: 700px;
  aspect-ratio: 4 / 3;
  position: relative;
  opacity: 0;
  animation: fadeUp 1.2s 0.5s var(--ease) forwards;
}
.hero__plate {
  position: absolute;
  background: var(--blush);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(61, 42, 48, 0.18);
  transition: transform .8s var(--ease);
}
.hero__plate svg { width: 100%; height: 100%; }
.hero__plate--1 {
  left: 10%; top: 6%;
  width: 48%;
  aspect-ratio: 4/5;
  background: var(--blush);
  transform: rotate(-3deg);
  z-index: 2;
}
.hero__plate--2 {
  right: 10%; top: 20%;
  width: 42%;
  aspect-ratio: 4/5;
  background: var(--champagne);
  transform: rotate(4deg);
  z-index: 1;
}
.hero__stage:hover .hero__plate--1 { transform: rotate(-1deg) translateY(-6px); }
.hero__stage:hover .hero__plate--2 { transform: rotate(2deg) translateY(-4px); }

.hero__plate-label {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(251, 245, 236, 0.9);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--f-body);
}
.hero__plate-label em { font-family: var(--f-display); font-style: italic; font-size: 12px; letter-spacing: 0; text-transform: none; color: var(--rose-deep); margin-left: 4px; }

/* ---------- Section ---------- */
.section {
  padding: clamp(60px, 9vw, 140px) var(--pad);
}
.section--blush {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 50%, var(--cream) 100%);
}
.section--champagne {
  background: var(--cream-2);
}
.section-head {
  max-width: 800px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  text-align: center;
}
.section-head__ornament {
  font-family: var(--f-body);
  color: var(--rose-gold);
  letter-spacing: 0.8em;
  padding-left: 0.8em;
  font-size: 16px;
  margin: 0 0 16px;
}
.section-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--rose-deep);
}
.section-head__lede {
  font-size: 15px;
  max-width: 52ch;
  margin: 0 auto;
  color: var(--ink-2);
  line-height: 1.8;
}

/* ---------- Collections ---------- */
.collections {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.coll {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 6px 30px -10px rgba(61, 42, 48, 0.08);
  display: flex;
  flex-direction: column;
}
.coll:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(61, 42, 48, 0.18);
}
.coll__art {
  aspect-ratio: 4/5;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.coll__art svg { width: 100%; height: 100%; transition: transform 1.5s var(--ease); }
.coll:hover .coll__art svg { transform: scale(1.05); }
.coll__num {
  position: absolute;
  top: 18px; right: 18px;
  padding: 5px 12px;
  background: rgba(251, 245, 236, 0.86);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--rose-deep);
}
.coll__body {
  padding: 28px 28px 32px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.coll__title {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}
.coll__title em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--rose-deep);
}
.coll__desc {
  font-size: 13.5px;
  color: var(--ink-2);
  max-width: 32ch;
  margin: 12px auto 14px;
  line-height: 1.7;
  font-weight: 300;
}
.coll__link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--rose-gold);
  align-self: center;
  transition: letter-spacing .3s var(--ease);
}
.coll:hover .coll__link { letter-spacing: 0.28em; }

/* ---------- Product grid ---------- */
.shop-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(36px, 4vw, 52px) clamp(24px, 2vw, 32px);
}
.pcard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform .4s var(--ease);
}
.pcard:hover { transform: translateY(-6px); }
.pcard__media {
  aspect-ratio: 4/5;
  background: var(--blush);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 24px -8px rgba(61, 42, 48, 0.08);
  transition: box-shadow .5s var(--ease);
}
.pcard:hover .pcard__media {
  box-shadow: 0 22px 50px -12px rgba(217, 168, 165, 0.4);
}
.pcard__media svg {
  width: 100%; height: 100%;
  transition: transform 1.4s var(--ease);
}
.pcard:hover .pcard__media svg { transform: scale(1.05); }
.pcard__tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  background: rgba(251, 245, 236, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  z-index: 2;
}
.pcard__qv {
  position: absolute;
  left: 14px; right: 14px;
  bottom: 14px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.pcard:hover .pcard__qv { opacity: 1; transform: translateY(0); }
.pcard__qv:hover { background: var(--rose-deep); }
.pcard__info {
  text-align: center;
}
.pcard__name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: 0;
}
.pcard__name em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--rose-deep);
}
.pcard__material {
  font-size: 11px;
  color: var(--ink-quiet);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.pcard__price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--rose-deep);
}

/* ---------- Story (blush band) ---------- */
.story {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 0 var(--pad);
}
.story__portrait {
  aspect-ratio: 4 / 5;
  background: var(--blush);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(61, 42, 48, 0.2);
}
.story__portrait svg { width: 100%; height: 100%; }
.story__portrait .cap {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(251, 245, 236, 0.92);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--rose-deep);
}
.story__body .eyebrow { margin-bottom: 18px; display: inline-block; }
.story__body h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.06;
  font-weight: 400;
  margin: 0 0 24px;
}
.story__body h2 em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--rose-deep);
}
.story__body p {
  color: var(--ink-2);
  max-width: 48ch;
  font-weight: 300;
  line-height: 1.85;
  margin: 0 0 1em;
}

/* ---------- Notes (feminine testimonials) ---------- */
.notes {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.note {
  padding: 40px 32px;
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 6px 24px -8px rgba(61, 42, 48, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .4s var(--ease);
}
.note:hover { transform: translateY(-4px); }
.note:nth-child(2) { background: var(--blush); }
.note__ornament {
  color: var(--rose-gold);
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 1;
}
.note p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
}
.note .who {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.note .who strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rose-deep);
  font-weight: 400;
  margin-bottom: 4px;
}

/* ---------- Materials (refined list) ---------- */
.materials {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}
.mat {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 12px;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), background .3s var(--ease);
  border-radius: 8px;
}
.mat:first-child { border-top: 1px solid var(--line); }
.mat:hover { background: var(--blush); padding-left: 22px; padding-right: 22px; }
.mat__swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: inset 0 0 0 1px var(--line), 0 0 20px -6px color-mix(in srgb, var(--c) 60%, transparent);
}
.mat__name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
}
.mat__origin {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 12px;
  color: var(--ink-quiet);
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-weight: 300;
}
.mat__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--rose-gold);
}

/* ---------- Letter / newsletter ---------- */
.letter {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--pad);
}
.letter__ornament {
  color: var(--rose-gold);
  font-size: 14px;
  letter-spacing: 0.8em;
  padding-left: 0.8em;
  margin-bottom: 20px;
}
.letter h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 400;
}
.letter h2 em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--rose-deep);
}
.letter p {
  font-size: 14px;
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0 auto 32px;
  font-weight: 300;
}
.letter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  background: var(--cream);
  padding: 6px 6px 6px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 20px -8px rgba(61, 42, 48, 0.1);
  border: 1px solid var(--line);
}
.letter__form input {
  padding: 14px 0;
  outline: 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 300;
  min-width: 0;
}
.letter__form input::placeholder { color: var(--ink-quiet); font-style: italic; }
.letter__form button {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--rose-deep);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .3s var(--ease);
}
.letter__form button:hover { background: var(--wine); }
.letter__note {
  grid-column: 1 / -1;
  margin: 14px 20px 0 !important;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--rose-deep);
  min-height: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--wine);
  color: var(--cream);
  padding: clamp(50px, 7vw, 100px) var(--pad) 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251, 245, 236, 0.15);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand__word { color: var(--cream); }
.footer-brand .brand__ornament { color: var(--rose-gold); }
.footer-brand p {
  color: rgba(251, 245, 236, 0.7);
  margin: 16px 0 0;
  font-size: 13px;
  max-width: 34ch;
  line-height: 1.75;
  font-weight: 300;
}
.footer-col h4 {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: rgba(251, 245, 236, 0.85);
  font-size: 13px;
  font-weight: 300;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--rose-gold); }
.footer-col p {
  font-size: 12px;
  color: rgba(251, 245, 236, 0.5);
  margin: 14px 0 0;
  line-height: 1.7;
  font-weight: 300;
}
.footer-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(251, 245, 236, 0.4);
}
.footer-bottom a { color: inherit; transition: color .2s var(--ease); }
.footer-bottom a:hover { color: var(--rose-gold); }

/* ---------- Page head ---------- */
.page-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 140px) var(--pad) clamp(30px, 4vw, 56px);
  text-align: center;
}
.page-head .eyebrow { margin-bottom: 20px; display: inline-block; }
.page-head h1 {
  font-family: var(--f-display);
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.98;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.008em;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.page-head h1 em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--rose-deep);
}
.page-head__lede {
  max-width: 54ch;
  margin: 24px auto 0;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

/* ---------- Shop ---------- */
.shop {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 120px);
}
.shop__filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 0 36px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.shop__chips {
  display: inline-flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color .3s var(--ease);
  background: transparent;
  position: relative;
}
.chip::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 2px;
  height: 1px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.chip:hover { color: var(--rose-deep); }
.chip:hover::after { transform: scaleX(1); }
.chip.is-active {
  color: var(--rose-deep);
}
.chip.is-active::after { transform: scaleX(1); background: var(--rose-deep); }
.sort {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23b97f7c' stroke-width='1.4'><path d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: transparent;
  cursor: pointer;
}

/* ---------- Quick view ---------- */
.quick {
  position: fixed; inset: 0;
  z-index: 150;
  display: grid; place-items: center;
  padding: 20px;
}
.quick[hidden] { display: none; }
.quick__backdrop {
  position: absolute; inset: 0;
  background: rgba(61, 42, 48, 0.5);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.quick__panel {
  position: relative;
  background: var(--cream);
  border-radius: 16px;
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 30px 80px -20px rgba(61, 42, 48, 0.4);
  animation: pop .4s var(--ease);
}
@keyframes pop {
  from { opacity: 0; transform: scale(0.96) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.quick__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  z-index: 2;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 4px 14px rgba(61, 42, 48, 0.12);
}
.quick__close:hover { background: var(--rose-deep); color: var(--cream); transform: rotate(90deg); }
.quick__art {
  aspect-ratio: 1;
  background: var(--blush);
  border-radius: 16px 0 0 16px;
}
.quick__art svg { width: 100%; height: 100%; }
.quick__body { padding: 44px 40px 36px; }
.quick__ref {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 12px;
}
.quick__body h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.02;
  font-weight: 400;
  margin: 0 0 12px;
}
.quick__body h3 em { font-family: var(--f-script); font-style: italic; color: var(--rose-deep); }
.quick__price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--rose-deep);
  margin: 0 0 22px;
}
.quick__desc {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0 0 24px;
  max-width: 42ch;
  font-weight: 300;
  line-height: 1.75;
}
.quick__specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 22px;
  font-size: 12px;
}
.quick__specs dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  align-self: center;
  font-weight: 400;
}
.quick__specs dd { margin: 0; color: var(--ink); font-weight: 300; }
.quick__size { margin-bottom: 20px; }
.quick__size > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 10px;
}
.quick__sizes { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.quick__sizes button {
  min-width: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 300;
  transition: all .3s var(--ease);
}
.quick__sizes button:hover { border-color: var(--rose-deep); }
.quick__sizes button.is-selected {
  background: var(--rose-deep);
  color: var(--cream);
  border-color: var(--rose-deep);
}
.quick__note {
  margin-top: 14px;
  font-size: 11px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--ink-quiet);
  text-align: center;
  font-weight: 400;
}

/* ---------- Switcher ---------- */
.switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  display: inline-flex;
  padding: 4px;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(61, 42, 48, 0.2);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.switcher a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.switcher a:hover { color: var(--rose-deep); }
.switcher a.is-current {
  background: var(--rose-deep);
  color: var(--cream);
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .primary-nav.is-open {
    display: flex;
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--cream);
    padding: 16px var(--pad);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    z-index: 70;
  }
  .primary-nav.is-open a {
    padding: 16px 0;
    font-size: 18px;
    font-family: var(--f-display);
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .collections { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; text-align: center; }
  .story__portrait { max-width: 480px; margin: 0 auto; }
  .story__body p { max-width: 52ch; margin-left: auto; margin-right: auto; }
  .notes { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .hero__stage { max-width: 540px; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .quick__panel { grid-template-columns: 1fr; }
  .quick__art { border-radius: 16px 16px 0 0; max-height: 40vh; }
  .quick__body { padding: 24px; }
  .letter__form { grid-template-columns: 1fr; padding: 14px; border-radius: 20px; }
  .letter__form button { width: 100%; }
  .hero__plate--1 { left: 4%; width: 54%; }
  .hero__plate--2 { right: 4%; width: 46%; }
  .switcher { bottom: 12px; right: 12px; font-size: 10px; }
  .switcher a { padding: 6px 9px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
