/* ==========================================================================
   AREVALO — Authenticated Designer Goods
   Global stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Core palette — white first, blush second, one confident rose accent */
  --white: #ffffff;
  --blush-50: #fffafc;
  --blush-100: #fff1f5;
  --blush-200: #ffe1ec;
  --blush-300: #ffc9db;
  --rose: #ff3d78;          /* the loud one — large type, glows, hardware */
  --rose-deep: #c4174f;     /* the readable one — small text, buttons */
  --rose-soft: #ff9dbd;     /* on ink grounds */

  --ink: #0e0a12;
  --ink-800: #171020;
  --ink-700: #241830;
  --ink-70: #4a4351;
  --ink-45: #857d90;
  --ink-20: #e0d9e4;
  --hairline: #f0e8ee;

  /* Chrome — the nod to the hardware these pieces are known for */
  --chrome: linear-gradient(
    170deg,
    #ffffff 0%,
    #e9ebf0 18%,
    #b9bec9 38%,
    #7e8593 52%,
    #c7ccd6 68%,
    #f2f3f7 100%
  );

  /* Same metal, weighted for legibility on a white ground */
  --chrome-ink: linear-gradient(
    168deg,
    #9aa1ae 0%,
    #565e6c 26%,
    #23272f 50%,
    #6b7382 72%,
    #aab1bd 100%
  );

  --shadow-sm: 0 1px 2px rgba(22, 18, 26, 0.04), 0 2px 8px rgba(22, 18, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(22, 18, 26, 0.06), 0 16px 40px rgba(178, 52, 89, 0.08);
  --shadow-lg: 0 24px 70px rgba(196, 23, 79, 0.18);
  --glow: 0 0 0 1px rgba(255, 61, 120, 0.18), 0 18px 60px rgba(255, 61, 120, 0.22);

  /* Paper grain — keeps large flat areas from reading as dead space */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");

  --serif: "Bodoni Moda", "Didot", "Playfair Display", "Times New Roman", serif;
  --sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --page: min(1320px, 100% - 3rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --header-h: 78px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

/* Fine grain over the whole page — flat colour fields read as paper, not slab */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background-image: var(--grain);
  opacity: 0.16;
  mix-blend-mode: multiply;
}

img, svg, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button { background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

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

::selection {
  background: var(--blush-300);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.wrap { width: var(--page); margin-inline: auto; }
.wrap--narrow { width: min(820px, 100% - 3rem); margin-inline: auto; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.015em;
}

.chrome-text {
  background: var(--chrome-ink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.9));
}

.rule {
  height: 1px;
  background: var(--hairline);
  border: 0;
}

/* Section heading pattern shared across pages */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 400;
  margin-top: 0.75rem;
}

.section-head p {
  color: var(--ink-45);
  max-width: 40ch;
  font-size: 14px;
  padding-bottom: 0.4rem;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.32) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:hover::after { transform: translateX(120%); }

.btn:active { transform: translateY(0); }

.btn--rose {
  --btn-bg: var(--rose-deep);
  --btn-fg: #fff;
  background: linear-gradient(135deg, #e0225f, #b5124a);
  border-color: transparent;
}
.btn--rose:hover { box-shadow: var(--glow); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink-20);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn--light {
  --btn-bg: var(--white);
  --btn-fg: var(--ink);
  border-color: var(--white);
}

.btn { position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

.link-underline {
  position: relative;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 3px;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(0); transform-origin: left; }

/* --------------------------------------------------------------------------
   5. Announcement ticker
   -------------------------------------------------------------------------- */
.ticker {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 9px 0;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-slide 38s linear infinite;
}

.ticker__group {
  display: flex;
  gap: 3.5rem;
  padding-right: 3.5rem;
  white-space: nowrap;
}

.ticker__group span { display: inline-flex; align-items: center; gap: 0.75rem; }
.ticker__group span::before { content: "✦"; color: var(--rose-soft); font-size: 9px; }

@keyframes ticker-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker:hover .ticker__track { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.4s var(--ease);
}

.header.is-stuck { box-shadow: 0 6px 24px rgba(22, 18, 26, 0.05); }

.header__inner {
  width: var(--page);
  margin-inline: auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-70);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  justify-self: center;
}

.brand__mark {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  font-weight: 500;
  line-height: 1;
}

.brand__sub {
  font-size: 8px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rose);
  text-indent: 0.36em;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.icon-btn:hover { background: var(--blush-200); color: var(--rose-deep); }
.icon-btn svg { width: 19px; height: 19px; }

.cart-count {
  position: absolute;
  top: 2px; right: 0;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform 0.35s var(--ease);
}
.cart-count.is-visible { transform: scale(1); }
.cart-count.is-bump { animation: bump 0.45s var(--ease); }

@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.burger { display: none; }

/* Mobile drawer nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--white);
  padding: 2rem 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.mobile-nav a {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--hairline);
}
.mobile-nav a:last-of-type { border-bottom: 0; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
}

/* Two slow-drifting blooms keep the ground alive without any imagery */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hero::before {
  width: 60vw; height: 60vw;
  right: -12vw; top: -22vw;
  background: radial-gradient(circle, rgba(255, 61, 120, 0.20), transparent 66%);
  animation: drift-a 22s ease-in-out infinite alternate;
}
.hero::after {
  width: 46vw; height: 46vw;
  left: -16vw; bottom: -20vw;
  background: radial-gradient(circle, rgba(255, 157, 189, 0.28), transparent 68%);
  animation: drift-b 27s ease-in-out infinite alternate;
}
.hero > * { position: relative; z-index: 1; }

@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-4vw, 4vw, 0) scale(1.12); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.08); }
  to { transform: translate3d(5vw, -3vw, 0) scale(1); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.02;
  margin: 1.25rem 0 1.5rem;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero__lede {
  color: var(--ink-70);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 2.25rem;
}
.hero__lede strong { color: var(--ink); font-weight: 600; }

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__stats {
  display: flex;
  gap: 2.75rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}

.hero__stats div strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stats div span {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-45);
}

/* Stacked hero imagery */
.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
}

.hero__art figure {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--blush-100);
}

.hero__art figure img { width: 100%; height: 100%; object-fit: cover; }

.hero__art .art-a { inset: 0 22% 14% 0; z-index: 2; }
.hero__art .art-b { width: 46%; aspect-ratio: 3/4; right: 0; bottom: 0; z-index: 3; }
.hero__art .art-c {
  width: 30%; aspect-ratio: 1; right: 6%; top: 4%;
  z-index: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  box-shadow: var(--shadow-md);
}

.seal {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.5;
  animation: spin-slow 26s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.float-badge {
  position: absolute;
  left: -12px; bottom: 20%;
  z-index: 4;
  background: var(--white);
  padding: 0.9rem 1.15rem;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  animation: float 5s ease-in-out infinite;
}
.float-badge svg { width: 22px; height: 22px; color: var(--rose); }
.float-badge strong { display: block; font-size: 12px; }
.float-badge span { font-size: 10px; color: var(--ink-45); letter-spacing: 0.08em; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   8. Marquee band
   -------------------------------------------------------------------------- */
.band {
  background: var(--ink);
  color: var(--white);
  padding: 1.9rem 0;
  overflow: hidden;
  position: relative;
}
.band::before,
.band::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 14%;
  z-index: 2;
  pointer-events: none;
}
.band::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.band::after { right: 0; background: linear-gradient(to left, var(--ink), transparent); }

.band__track {
  display: flex;
  width: max-content;
  animation: ticker-slide 30s linear infinite;
  align-items: center;
}

.band__group {
  display: flex;
  align-items: center;
  gap: 3.25rem;
  padding-right: 3.25rem;
}

.band__group span {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  color: var(--white);
  white-space: nowrap;
  opacity: 0.9;
}
.band__group span:nth-child(even) {
  font-style: italic;
  color: var(--rose-soft);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   9. Sections
   -------------------------------------------------------------------------- */
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section--blush {
  background:
    radial-gradient(80% 60% at 100% 0%, var(--blush-200), transparent 60%),
    var(--blush-50);
}

/* Ink sections carry the drama — used sparingly, never two in a row */
.section--ink {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.section--ink::before {
  content: "";
  position: absolute;
  width: 55vw; height: 55vw;
  right: -18vw; top: -18vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 61, 120, 0.28), transparent 66%);
  filter: blur(40px);
  pointer-events: none;
}
.section--ink > * { position: relative; z-index: 1; }
.section--ink .section-head { border-bottom-color: rgba(255, 255, 255, 0.14); }
.section--ink .section-head p { color: rgba(255, 255, 255, 0.6); }
.section--ink .eyebrow { color: var(--rose-soft); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: rgba(255, 255, 255, 0.68); }

/* Category tiles */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cat {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blush-100);
  display: block;
}

.cat img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.cat:hover img { transform: scale(1.07); }

.cat__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(22, 18, 26, 0.62), transparent);
  color: var(--white);
}
.cat__label strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
}
.cat__label span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.82;
}

/* --------------------------------------------------------------------------
   10. Product cards
   -------------------------------------------------------------------------- */
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 2rem 1.5rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--blush-100);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 1px rgba(14, 10, 18, 0.05);
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}
.card:hover .card__media {
  box-shadow: inset 0 0 0 1px rgba(255, 61, 120, 0.4), var(--shadow-md);
  transform: translateY(-6px);
}

.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease), opacity 0.5s var(--ease);
}

.card:hover .card__media img { transform: scale(1.05); }

.card__flags {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.flag {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 9px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.flag--rose { background: var(--rose); color: #fff; }
.flag--ink { background: var(--ink); color: #fff; }

.card__quick {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
  z-index: 2;
}
.card:hover .card__quick,
.card:focus-within .card__quick { transform: translateY(0); opacity: 1; }

.card__wish {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  color: var(--ink-45);
  box-shadow: var(--shadow-sm);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.card__wish:hover { color: var(--rose); transform: scale(1.08); }
.card__wish.is-active { color: var(--rose); }
.card__wish.is-active svg { fill: currentColor; }
.card__wish svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.card__brand {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 4px;
}

.card__name {
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.22;
  margin-bottom: 6px;
  transition: color 0.3s var(--ease);
}
.card:hover .card__name { color: var(--rose-deep); }

.card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.card__price { font-size: 14px; font-weight: 500; }
.card__price s { color: var(--ink-45); font-weight: 400; margin-right: 6px; font-size: 12.5px; }

.card__cond {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.card.is-sold .card__media img { opacity: 0.45; }

/* --------------------------------------------------------------------------
   11. Editorial split
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

/* Same typography, no media column — a single readable measure, centred. */
.split--solo {
  grid-template-columns: minmax(0, 68ch);
  justify-content: center;
}

.split__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blush-100);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.split h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 300;
  margin: 1rem 0 1.25rem;
}
.split p { color: var(--ink-70); margin-bottom: 1rem; }

/* Numbered process list */
.steps { counter-reset: step; margin: 2rem 0; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--hairline);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--rose);
}
.steps strong { display: block; font-size: 14px; font-weight: 600; }
.steps span { color: var(--ink-45); font-size: 13.5px; }

/* --------------------------------------------------------------------------
   12. Shop layout
   -------------------------------------------------------------------------- */
.page-head {
  background: linear-gradient(180deg, var(--blush-100), var(--white));
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--hairline);
}

.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 300;
  margin: 0.6rem 0 0.75rem;
}
.page-head p { color: var(--ink-70); max-width: 58ch; }

.crumbs {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-45);
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.crumbs a:hover { color: var(--rose); }

.shop {
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 3rem;
  padding: 3rem 0 5rem;
  align-items: start;
}

.filters { position: sticky; top: calc(var(--header-h) + 24px); }

.filter-group { border-bottom: 1px solid var(--hairline); padding: 1.15rem 0; }
.filter-group:first-child { padding-top: 0; }

.filter-group h3 {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.filter-opt {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 5px 0;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ink-70);
  transition: color 0.25s var(--ease);
}
.filter-opt:hover { color: var(--ink); }

.filter-opt input {
  appearance: none;
  width: 15px; height: 15px;
  border: 1px solid var(--ink-20);
  border-radius: 2px;
  display: grid;
  place-items: center;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  flex: 0 0 auto;
}
.filter-opt input:checked { background: var(--rose); border-color: var(--rose); }
.filter-opt input:checked::after {
  content: "";
  width: 7px; height: 4px;
  border-left: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: rotate(-45deg) translate(0.5px, -1px);
}
.filter-opt .count { margin-left: auto; font-size: 11px; color: var(--ink-45); }

.shop__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 2rem;
}

.result-count { font-size: 12px; letter-spacing: 0.08em; color: var(--ink-45); }

.select {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.select select {
  appearance: none;
  border: 1px solid var(--ink-20);
  background: var(--white);
  padding: 0.6rem 2.4rem 0.6rem 0.9rem;
  border-radius: var(--radius);
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.select::after {
  content: "";
  position: absolute;
  right: 14px;
  width: 6px; height: 6px;
  border-right: 1.4px solid var(--ink-70);
  border-bottom: 1.4px solid var(--ink-70);
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
}

.search-box {
  position: relative;
  flex: 1 1 220px;
  max-width: 320px;
}
.search-box input {
  width: 100%;
  border: 1px solid var(--ink-20);
  background: var(--white);
  padding: 0.6rem 0.9rem 0.6rem 2.35rem;
  border-radius: var(--radius);
  font-size: 13px;
  transition: border-color 0.3s var(--ease);
}
.search-box input:focus { outline: none; border-color: var(--rose); }
.search-box svg {
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  color: var(--ink-45);
}

.chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 5px 10px;
  background: var(--blush-200);
  color: var(--rose-deep);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.chip button { color: inherit; line-height: 1; font-size: 14px; }

.empty {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--ink-45);
}
.empty h3 { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); margin-bottom: 0.5rem; }

.filters-toggle { display: none; }

/* --------------------------------------------------------------------------
   13. Product detail
   -------------------------------------------------------------------------- */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: 2.5rem 0 4rem;
  align-items: start;
}

.gallery { position: sticky; top: calc(var(--header-h) + 24px); }

.gallery__main {
  aspect-ratio: 4 / 5;
  background: var(--blush-100);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }

.gallery__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.gallery__thumbs button {
  aspect-ratio: 1;
  background: var(--blush-100);
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.gallery__thumbs button.is-active { border-color: var(--rose); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp__brand {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.pdp h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 300;
  margin: 0.5rem 0 0.75rem;
}

.pdp__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.pdp__price s { color: var(--ink-45); font-size: 1rem; }
.pdp__price .save {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--blush-200);
  color: var(--rose-deep);
  padding: 4px 9px;
  border-radius: 100px;
}

.pdp__desc { color: var(--ink-70); margin-bottom: 1.5rem; }

.opt-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  font-weight: 600;
}
.opt-label a { color: var(--rose); letter-spacing: 0.1em; text-transform: none; font-size: 12px; font-weight: 400; }

.sizes { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.size {
  min-width: 52px;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--ink-20);
  border-radius: var(--radius);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  transition: all 0.25s var(--ease);
}
.size:hover { border-color: var(--ink); }
.size.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink-20);
  border-radius: var(--radius);
}
.qty button { width: 40px; height: 44px; font-size: 16px; color: var(--ink-70); }
.qty button:hover { color: var(--rose); }
.qty span { width: 34px; text-align: center; font-size: 14px; }

.pdp__buy { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; align-items: stretch; }
.pdp__buy .btn { flex: 1 1 200px; }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: var(--blush-50);
  border: 1px solid var(--blush-200);
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
}
.trust div { text-align: center; }
.trust svg { width: 20px; height: 20px; color: var(--rose); margin: 0 auto 6px; }
.trust strong { display: block; font-size: 11.5px; }
.trust span { font-size: 10.5px; color: var(--ink-45); }

.accordion { border-top: 1px solid var(--hairline); }
.accordion__item { border-bottom: 1px solid var(--hairline); }
.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  text-align: left;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.accordion__btn i {
  font-style: normal;
  font-size: 18px;
  color: var(--rose);
  transition: transform 0.35s var(--ease);
  line-height: 1;
}
.accordion__item.is-open .accordion__btn i { transform: rotate(45deg); }
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel > div { overflow: hidden; }
.accordion__panel p, .accordion__panel ul { padding-bottom: 1.1rem; color: var(--ink-70); font-size: 14px; }
.accordion__panel li { padding: 3px 0 3px 1rem; position: relative; }
.accordion__panel li::before {
  content: "—"; position: absolute; left: 0; color: var(--rose-soft);
}

.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-table th, .spec-table td { text-align: left; padding: 0.55rem 0; border-bottom: 1px solid var(--hairline); }
.spec-table th { font-weight: 500; color: var(--ink-45); width: 42%; }

/* --------------------------------------------------------------------------
   14. Cart drawer + cart page
   -------------------------------------------------------------------------- */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(22, 18, 26, 0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 85;
  width: min(420px, 100%);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  box-shadow: -20px 0 60px rgba(22, 18, 26, 0.1);
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}
.drawer__head h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
}
.drawer__body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.drawer__foot { padding: 1.5rem; border-top: 1px solid var(--hairline); background: var(--blush-50); }

.line {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
}
.line:first-child { padding-top: 0; }
.line__img {
  aspect-ratio: 3/4;
  background: var(--blush-100);
  border-radius: var(--radius);
  overflow: hidden;
}
.line__img img { width: 100%; height: 100%; object-fit: cover; }
.line__brand { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-deep); }
.line__name { font-family: var(--serif); font-size: 1.05rem; line-height: 1.25; margin: 2px 0 4px; }
.line__opt { font-size: 11.5px; color: var(--ink-45); }
.line__remove { font-size: 11px; color: var(--ink-45); text-decoration: underline; margin-top: 6px; }
.line__remove:hover { color: var(--rose); }
.line__right { text-align: right; font-size: 13.5px; display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end; }

.qty--sm { border: 1px solid var(--ink-20); }
.qty--sm button { width: 26px; height: 28px; font-size: 13px; }
.qty--sm span { width: 24px; font-size: 12.5px; }

.totals { font-size: 13.5px; }
.totals div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--ink-70);
}
.totals .grand {
  border-top: 1px solid var(--ink-20);
  margin-top: 8px;
  padding-top: 12px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
}

.cart-page { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: 3rem; padding: 3rem 0 5rem; align-items: start; }
.cart-page .summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--blush-50);
  border: 1px solid var(--blush-200);
  padding: 1.75rem;
  border-radius: var(--radius);
}
.cart-page .summary h2 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 1.25rem; }

.promo { display: flex; gap: 0.5rem; margin: 1.25rem 0; }
.promo input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--ink-20);
  background: var(--white);
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  font-size: 13px;
}
.promo input:focus { outline: none; border-color: var(--rose); }
.promo button {
  padding: 0 1.1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.promo-msg { font-size: 12px; margin-top: -0.5rem; margin-bottom: 1rem; }
.promo-msg.ok { color: var(--rose-deep); }
.promo-msg.bad { color: #b4443c; }

/* --------------------------------------------------------------------------
   15. Newsletter, footer, misc
   -------------------------------------------------------------------------- */
.newsletter {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -120px; top: -180px;
  background: radial-gradient(circle, rgba(224, 86, 124, 0.45), transparent 65%);
  pointer-events: none;
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  margin: 0.75rem 0 0.85rem;
}
.newsletter p { color: rgba(255, 255, 255, 0.66); max-width: 48ch; margin-bottom: 1.75rem; }

.subscribe { display: flex; gap: 0.6rem; flex-wrap: wrap; max-width: 480px; }
.subscribe input {
  flex: 1 1 220px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-size: 14px;
}
.subscribe input::placeholder { color: rgba(255, 255, 255, 0.42); }
.subscribe input:focus { outline: none; border-color: var(--rose-soft); }
.form-msg { font-size: 12.5px; margin-top: 0.85rem; color: var(--rose-soft); min-height: 1.2em; }

.footer {
  background: var(--blush-50);
  border-top: 1px solid var(--blush-200);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer h4 {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer li { padding: 4px 0; }
.footer li a { font-size: 13.5px; color: var(--ink-70); transition: color 0.25s var(--ease); }
.footer li a:hover { color: var(--rose); }
.footer__about p { font-size: 13.5px; color: var(--ink-70); max-width: 34ch; margin-top: 1rem; }

.socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--ink-20);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-70);
  transition: all 0.3s var(--ease);
}
.socials a:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.socials svg { width: 15px; height: 15px; }

.footer__bottom {
  border-top: 1px solid var(--blush-200);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: var(--ink-45);
}

.disclaimer {
  font-size: 11.5px;
  color: var(--ink-45);
  max-width: 90ch;
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 140%);
  z-index: 95;
  background: var(--ink);
  color: var(--white);
  padding: 0.85rem 1.35rem;
  border-radius: 100px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: calc(100% - 2rem);
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast svg { width: 16px; height: 16px; color: var(--rose-soft); flex: 0 0 auto; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Children of a stagger container come in one after another */
.stagger > * { --delay: 0ms; }
.stagger > *:nth-child(2) { --delay: 90ms; }
.stagger > *:nth-child(3) { --delay: 180ms; }
.stagger > *:nth-child(4) { --delay: 270ms; }
.stagger > *:nth-child(5) { --delay: 360ms; }
.stagger > *:nth-child(6) { --delay: 450ms; }
.stagger > *:nth-child(7) { --delay: 540ms; }
.stagger > *:nth-child(8) { --delay: 630ms; }

/* Content pages */
.prose h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 300; margin: 2.5rem 0 0.85rem; }
.prose h3 { font-size: 15px; font-weight: 600; margin: 1.75rem 0 0.5rem; }
.prose p, .prose li { color: var(--ink-70); margin-bottom: 0.85rem; }
.prose ul { margin-bottom: 1rem; }
.prose li { padding-left: 1.15rem; position: relative; }
.prose ul li::before { content: "✦"; position: absolute; left: 0; color: var(--rose-soft); font-size: 10px; top: 4px; }
.prose strong { color: var(--ink); font-weight: 600; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blush-300); }
.value svg { width: 26px; height: 26px; color: var(--rose); margin-bottom: 1rem; }
.value h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.4rem; }
.value p { font-size: 13.5px; color: var(--ink-45); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: start; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--ink-20);
  background: var(--white);
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius);
  font-size: 14px;
  transition: border-color 0.3s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--rose); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.info-card {
  background: var(--blush-50);
  border: 1px solid var(--blush-200);
  padding: 1.75rem;
  border-radius: var(--radius);
}
.info-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 1rem; }
.info-card dl div { padding: 0.7rem 0; border-bottom: 1px solid var(--blush-200); }
.info-card dl div:last-child { border-bottom: 0; }
.info-card dt { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-45); }
.info-card dd { font-size: 14px; margin-top: 2px; }

/* --------------------------------------------------------------------------
   15b. Home story components
   -------------------------------------------------------------------------- */

/* Founders */
.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2.5rem;
  background:
    radial-gradient(120% 100% at 0% 0%, var(--blush-50), transparent 55%),
    var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.founder:hover {
  border-color: var(--blush-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.founder__monogram {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--blush-100);
  border: 1px solid var(--blush-300);
  box-shadow: inset 0 2px 10px rgba(255, 61, 120, 0.12);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}
.founder__monogram span {
  background: var(--chrome-ink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.founder__name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.1;
}
.founder__role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 6px 0 0.85rem;
}
.founder p { color: var(--ink-70); font-size: 14px; margin-bottom: 0.85rem; }
.founder blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  padding-left: 1rem;
  border-left: 2px solid var(--rose-soft);
  line-height: 1.4;
}

/* Timeline — the years are a real sequence, so they carry the structure */
.timeline { display: grid; gap: 0; }

.timeline li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  transition: background 0.5s var(--ease);
}
.timeline li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.timeline li::before {
  content: "";
  position: absolute;
  left: -1.5rem; right: -1.5rem; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(255, 61, 120, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.timeline li:hover::before { opacity: 1; }

.timeline__year {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  line-height: 0.9;
  color: var(--rose-soft);
  font-style: italic;
}
.timeline__year small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
}
.timeline h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.55rem;
}
.timeline p { font-size: 14.5px; max-width: 68ch; }

/* "What gives a fake away" cards */
.tells {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.tell {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.tell::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.tell:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blush-300);
}
.tell:hover::before { transform: scaleX(1); }
.tell strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.tell span { font-size: 13.5px; color: var(--ink-70); }

/* Numbers strip */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--blush-200);
  border: 1px solid var(--blush-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.numbers div {
  text-align: center;
  padding: 2.5rem 1rem;
  background: var(--white);
  transition: background 0.45s var(--ease);
}
.numbers div:hover { background: var(--blush-50); }
.numbers strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.6rem;
  background: linear-gradient(150deg, var(--rose) 10%, var(--rose-deep) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.numbers span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-45);
  font-weight: 600;
}

/* Closing call to action */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 120% at 18% 0%, var(--blush-200) 0%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(80% 120% at 88% 100%, var(--blush-300) 0%, rgba(255, 255, 255, 0) 58%),
    var(--blush-50);
  border-block: 1px solid var(--blush-200);
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  text-align: center;
}
.cta-band::before {
  content: "✦";
  position: absolute;
  left: 50%; top: clamp(1.5rem, 4vw, 3rem);
  transform: translateX(-50%);
  color: var(--rose);
  font-size: 14px;
  opacity: 0.7;
}
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 400;
  margin: 1rem 0 1.25rem;
  line-height: 0.98;
}
.cta-band p {
  color: var(--ink-70);
  max-width: 52ch;
  margin: 0 auto 2rem;
}
.cta-band .btn { padding: 1.15rem 3rem; font-size: 12px; }

/* --------------------------------------------------------------------------
   15c. Landing (the welcome page — one screen, nothing below it)
   -------------------------------------------------------------------------- */
.landing {
  position: relative;
  /* Fill the screen at every stage of the mobile browser's URL-bar animation.
     100svh is the *smallest* viewport, so it leaves a white strip once the bar
     retracts; 100dvh tracks the live height instead. 100vh is the fallback for
     anything that does not know the newer units. */
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding:
    calc(var(--header-h) + 3rem + env(safe-area-inset-top, 0px))
    0
    calc(4rem + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  isolation: isolate;
}

/* The page canvas behind the landing — ink, not white, so nothing pale shows
   through while the browser chrome slides away or during rubber-band
   overscroll at the top and bottom of the screen. */
body[data-page="home"] { background: var(--ink); }

/* The backdrop. The image itself is set inline on the element in index.html —
   a url() inside a custom property would resolve against this stylesheet's
   folder, not the page's. A scrim sits over the top so white type stays
   readable whatever the photograph looks like. */
.landing__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.landing__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Enough scrim to hold white type over any photograph, weighted to the middle
     so whatever is in the corners of the image still reads.

     The vertical pass lands on *solid* ink at 0% and 100% — the same ink the
     page canvas and the theme colour use. On a phone the browser's own bars sit
     directly against those edges, so anything short of the exact colour reads
     as a seam across the top and bottom of the screen. */
  background:
    radial-gradient(68% 62% at 50% 52%, rgba(14, 10, 18, 0.68), rgba(14, 10, 18, 0.28) 72%),
    linear-gradient(
      180deg,
      rgba(14, 10, 18, 1) 0%,
      rgba(14, 10, 18, 0.94) 3%,
      rgba(14, 10, 18, 0.52) 13%,
      rgba(14, 10, 18, 0.1) 38%,
      rgba(14, 10, 18, 0.48) 80%,
      rgba(14, 10, 18, 0.94) 96%,
      rgba(14, 10, 18, 1) 100%
    );
}

.landing__inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100% - 3rem);
  margin-inline: auto;
  text-align: center;
  color: var(--white);
}

.landing__mark {
  font-family: var(--serif);
  font-size: clamp(3rem, 11vw, 7.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.landing__rule {
  width: 64px;
  height: 1px;
  background: var(--rose);
  margin: 0 auto 1.5rem;
}

.landing__sub {
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rose-soft);
  margin-bottom: 2rem;
}

.landing__desc {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin: 0 auto 2.75rem;
}

.landing__legal {
  position: absolute;
  left: 0; right: 0;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 1;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
  padding-inline: 1.5rem;
}

/* Header sits over the backdrop on the landing only */
body[data-page="home"] .header {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding-top: env(safe-area-inset-top, 0px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
}
body[data-page="home"] .nav a,
body[data-page="home"] .brand__mark,
body[data-page="home"] .icon-btn { color: var(--white); }
body[data-page="home"] .nav a { color: rgba(255, 255, 255, 0.82); }
body[data-page="home"] .nav a:hover,
body[data-page="home"] .nav a[aria-current="page"] { color: var(--white); }
body[data-page="home"] .icon-btn:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }
body[data-page="home"] .brand__sub { color: var(--rose-soft); }
body[data-page="home"]::after { opacity: 0.1; }

/* --------------------------------------------------------------------------
   15d. Sell — submission form
   -------------------------------------------------------------------------- */
.sell-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.form-card h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}
.form-card > p { color: var(--ink-45); font-size: 14px; margin-bottom: 1.75rem; }

.fieldset-title {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  padding-top: 1.5rem;
  margin-bottom: 1rem;
  border-top: 1px solid var(--hairline);
}
.fieldset-title:first-of-type { padding-top: 0; border-top: 0; }

/* Drop zone */
.dropzone {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1.5px dashed var(--ink-20);
  border-radius: var(--radius);
  background: var(--blush-50);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.dropzone:hover, .dropzone.is-over { border-color: var(--rose); background: var(--blush-100); }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone svg { width: 26px; height: 26px; color: var(--rose); }
.dropzone strong { font-size: 14px; }
.dropzone span { font-size: 12px; color: var(--ink-45); }

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}
.thumbs:empty { display: none; }
.thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--blush-100);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb button {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(14, 10, 18, 0.72);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.thumb button:hover { background: var(--rose-deep); }

.checkline {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-70);
  margin: 1.25rem 0;
}
.checkline input {
  appearance: none;
  width: 16px; height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  border: 1px solid var(--ink-20);
  border-radius: 2px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.checkline input:checked { background: var(--rose-deep); border-color: var(--rose-deep); }
.checkline input:checked::after {
  content: "";
  width: 7px; height: 4px;
  border-left: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: rotate(-45deg) translate(0.5px, -1px);
}

/* Sidebar steps */
.side-card {
  background:
    radial-gradient(120% 90% at 100% 0%, var(--blush-100), transparent 60%),
    var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.side-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.side-card .steps { margin: 0; }
.side-card .steps li:first-child { border-top: 0; padding-top: 0; }
.side-card ul.plain li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.3rem;
  font-size: 13.5px;
  color: var(--ink-70);
}
.side-card ul.plain li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0.5rem;
  color: var(--rose);
  font-size: 9px;
}

/* --------------------------------------------------------------------------
   15e. Sell — the submission system
   -------------------------------------------------------------------------- */

/* Progress across the four steps + review */
.stepper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.stepper li {
  position: relative;
  padding-top: 1.15rem;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-45);
  font-weight: 600;
  transition: color 0.35s var(--ease);
}
.stepper li::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blush-200);
  transition: background 0.45s var(--ease);
}
.stepper li[data-state="done"] { color: var(--rose-deep); }
.stepper li[data-state="done"]::before { background: var(--rose-soft); }
.stepper li[data-state="active"] { color: var(--ink); }
.stepper li[data-state="active"]::before { background: var(--rose); }

.stepper li span {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: inherit;
  margin-top: 2px;
}

/* One panel per step */
.step[hidden] { display: none; }
.step h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.step > p.hint {
  color: var(--ink-45);
  font-size: 13.5px;
  margin-bottom: 1.75rem;
}

.step-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
}
.step-actions .btn { flex: 0 0 auto; }
.step-actions .spacer { flex: 1; }
.step-actions .count {
  font-size: 11.5px;
  color: var(--ink-45);
  letter-spacing: 0.1em;
}

/* The guided shot list */
.shotlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.25rem;
  margin: 1.25rem 0 1.5rem;
}
.shotlist li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 13px;
  color: var(--ink-70);
}
.shotlist li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 1px;
  color: var(--rose);
  font-size: 9px;
}
.shotlist li strong { color: var(--ink); font-weight: 600; }

/* Review step */
.review {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: var(--blush-50);
  border-bottom: 1px solid var(--hairline);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.review__head button {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--rose-deep);
  text-decoration: underline;
  font-weight: 500;
}
.review dl { display: grid; grid-template-columns: 40% 1fr; }
.review dt, .review dd {
  padding: 0.7rem 1.25rem;
  font-size: 13.5px;
  border-bottom: 1px solid var(--hairline);
}
.review dt { color: var(--ink-45); }
.review dd { font-weight: 500; }
.review dl > :nth-last-child(-n + 2) { border-bottom: 0; }
.review .thumbs { padding: 1rem 1.25rem; }

/* Confirmation receipt */
.receipt {
  text-align: center;
  padding: 3rem 2rem;
  background:
    radial-gradient(100% 80% at 50% 0%, var(--blush-100), transparent 60%),
    var(--white);
  border: 1px solid var(--blush-200);
  border-radius: var(--radius);
}
.receipt__tick {
  width: 62px; height: 62px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rose-deep);
  color: #fff;
  animation: pop 0.5s var(--ease);
}
.receipt__tick svg { width: 28px; height: 28px; }
@keyframes pop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}
.receipt h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.receipt > p { color: var(--ink-70); max-width: 52ch; margin: 0 auto 1.75rem; }

.receipt__ref {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 1rem 2rem;
  border: 1px dashed var(--rose-soft);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 2rem;
}
.receipt__ref span {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.receipt__ref strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--rose-deep);
}

/* The three possible answers */
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.outcome {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--ink-20);
  border-radius: var(--radius);
  text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.outcome:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.outcome--yes { border-top-color: #2f9e6f; }
.outcome--counter { border-top-color: var(--rose); }
.outcome--no { border-top-color: var(--ink-45); }
.outcome h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.outcome p { font-size: 13.5px; color: var(--ink-70); }
.outcome__tag {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.outcome--yes .outcome__tag { background: #e6f5ee; color: #1f7a53; }
.outcome--counter .outcome__tag { background: var(--blush-200); color: var(--rose-deep); }
.outcome--no .outcome__tag { background: #f2eff4; color: var(--ink-70); }

/* Submissions this browser has made */
.submissions { display: grid; gap: 0.85rem; }
.submission {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.5rem;
  align-items: center;
  padding: 1.15rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}
.submission__ref {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--rose-deep);
}
.submission__meta { font-size: 13px; color: var(--ink-70); }
.submission__meta small {
  display: block;
  font-size: 11.5px;
  color: var(--ink-45);
  margin-top: 2px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 100px;
  background: var(--blush-200);
  color: var(--rose-deep);
  white-space: nowrap;
}
.status-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* An answered request is settled — no pulsing dot, it is not waiting on
   anything any more. */
.status-pill--yes,
.status-pill--maybe,
.status-pill--no { background: var(--ink); color: var(--white); }
.status-pill--yes { background: #1c7a4a; }
.status-pill--maybe { background: #9a6212; }
.status-pill--no { background: var(--ink-70); }
.status-pill--yes::before,
.status-pill--maybe::before,
.status-pill--no::before { animation: none; }

/* The reason the owners gave, shown to the seller under their piece. */
.submission__answer {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --page: min(1320px, 100% - 2.5rem); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .value-grid { grid-template-columns: 1fr; }
  .tells { grid-template-columns: repeat(2, 1fr); }
  .numbers { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .cart-page { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sell-grid { grid-template-columns: 1fr; }
  .outcomes { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin-inline: auto; width: 100%; }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .founders { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: inline-flex; }

  .shop { grid-template-columns: 1fr; gap: 1.5rem; }
  .filters {
    position: static;
    display: none;
    border: 1px solid var(--hairline);
    padding: 1.25rem;
    border-radius: var(--radius);
  }
  .filters.is-open { display: block; }
  .filters-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  :root { --page: min(1320px, 100% - 2rem); --header-h: 66px; }
  body { font-size: 14.5px; }
  .brand__mark { font-size: 21px; letter-spacing: 0.32em; text-indent: 0.32em; }
  .grid-products { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0.85rem; }
  .card__name { font-size: 1.05rem; }
  .card__quick { display: none; }
  .hero__stats { gap: 1.75rem; }
  .trust { grid-template-columns: 1fr; }
  .trust div { display: flex; align-items: center; gap: 0.75rem; text-align: left; }
  .trust svg { margin: 0; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery__thumbs { gap: 0.5rem; }
  .float-badge { left: 0; }
  .section-head { margin-bottom: 2rem; }
  .tells { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
  .timeline li { grid-template-columns: 1fr; gap: 0.75rem; }
  .timeline__year { font-size: 1.5rem; }
  .timeline__year small { display: inline; margin-left: 0.75rem; }
  .numbers { padding: 1.5rem; }
  .line { grid-template-columns: 66px 1fr; }
  .landing {
    padding:
      calc(var(--header-h) + 2rem + env(safe-area-inset-top, 0px))
      0
      calc(3.5rem + env(safe-area-inset-bottom, 0px));
  }
  .landing__mark { letter-spacing: 0.1em; text-indent: 0.1em; }
  .form-card { padding: 1.5rem; }
  .stepper { grid-template-columns: repeat(5, 1fr); gap: 0.3rem; }
  .stepper li { font-size: 0; }
  .stepper li span { font-size: 12px; letter-spacing: 0; }
  .shotlist { grid-template-columns: 1fr; }
  .review dl { grid-template-columns: 1fr; }
  .review dt { padding-bottom: 0; border-bottom: 0; }
  .review dd { padding-top: 2px; }
  .submission { grid-template-columns: 1fr; }
  .step-actions { flex-wrap: wrap; }
  .step-actions .spacer { flex-basis: 100%; }
  .line__right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; width: 100%; }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Reference lookup on the sell page */
.lookup { display: flex; gap: 0.6rem; flex-wrap: wrap; max-width: 460px; }
.lookup input {
  flex: 1 1 200px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--ink-20);
  border-radius: var(--radius);
  background: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lookup input:focus-visible { outline: 2px solid var(--rose); outline-offset: 1px; }
.lookup__msg { margin-top: 1rem; font-size: 13.5px; color: var(--ink-70); }
.lookup__msg--bad { color: var(--rose-deep); }
[data-lookup-result] .submission { margin-top: 1.25rem; }
