/* v6 — Quiet Atelier: warm luxury, editorial craft */

:root {
  --ink: #1a1917;
  --stone: #6b6560;
  --linen: #f7f4ef;
  --sand: #ebe6de;
  --warm: #c9b8a8;
  --brass: #9a7b5c;
  --white: #fffefa;
  --rule: rgba(26, 25, 23, 0.1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --rail: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--stone);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.rail {
  width: 100%;
  max-width: calc(var(--rail) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--ink);
  color: rgba(255, 254, 250, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
  padding-block: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.trust-bar .sep { opacity: 0.35; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
  box-shadow: 0 8px 32px rgba(26, 25, 23, 0.04);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  gap: 16px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.header-nav--right { justify-self: end; }
.header-nav a {
  position: relative;
  transition: color 0.25s;
}
.header-nav a:not(.header-cart)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s var(--ease);
}
.header-nav a:hover::after { width: 100%; }
.header-logo { justify-self: center; line-height: 0; }
.header-cart {
  padding: 8px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 12px;
  transition: border-color 0.25s, background 0.25s;
}
.header-cart:hover {
  border-color: var(--ink);
  background: var(--white);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 41px);
  min-height: calc(100dvh - var(--header-h) - 41px);
  display: flex;
  align-items: center;
  padding-block: clamp(48px, 8vw, 96px);
  background:
    radial-gradient(ellipse 80% 60% at 85% 40%, rgba(201, 184, 168, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--linen) 0%, var(--sand) 100%);
  overflow: hidden;
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.hero__copy h1 {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
}
.hero__lead {
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 42ch;
  margin-bottom: 28px;
  color: var(--stone);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__meta span:not(:last-child)::after {
  content: '·';
  margin-left: 20px;
  opacity: 0.35;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--brass);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(320px, 42vw, 520px);
}
.hero__glow {
  position: absolute;
  inset: 8% 0 12%;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(201, 184, 168, 0.35) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero__frame {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  background: var(--white);
  border: 1px solid rgba(26, 25, 23, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 254, 250, 0.8) inset,
    0 28px 72px rgba(26, 25, 23, 0.12),
    0 64px 120px rgba(26, 25, 23, 0.06);
}
.hero__canvas {
  position: relative;
  aspect-ratio: 3038 / 1518;
  background:
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(154, 123, 92, 0.08) 0%, transparent 55%),
    linear-gradient(168deg, #f5f1ea 0%, #ebe4da 48%, #e3dcd2 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(20px, 4vw, 40px) clamp(16px, 3vw, 28px) clamp(12px, 2vw, 20px);
  overflow: hidden;
}
.hero__canvas::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: clamp(8px, 1.5vw, 14px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 25, 23, 0.12), transparent);
}
.hero__canvas img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 40px rgba(26, 25, 23, 0.14));
  transform-origin: center bottom;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.hero__frame-label {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 16px;
  padding: 14px 18px;
  border-top: 1px solid var(--rule);
  background: rgba(255, 254, 250, 0.96);
}
.hero__frame-label-kicker {
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}
.hero__frame-label strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}
.hero__frame-label em {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}
.hero__inset {
  position: absolute;
  right: -12px;
  top: 14%;
  width: clamp(88px, 14vw, 128px);
  aspect-ratio: 1;
  margin: 0;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 16px 40px rgba(26, 25, 23, 0.1);
  z-index: 4;
  transform: rotate(3deg);
}
.hero__inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__swatches {
  position: absolute;
  left: -4px;
  bottom: 22%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 10px;
  background: rgba(255, 254, 250, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--rule);
  z-index: 5;
}
.hero__swatches button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 4px 2px;
  transition: color 0.2s;
}
.hero__swatches button.is-active { color: var(--ink); font-weight: 600; }
.hero__swatches button:hover { color: var(--brass); }
.hero__swatches span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(26, 25, 23, 0.14);
  box-shadow: 0 0 0 2px transparent;
  transition: box-shadow 0.2s;
}
.hero__swatches button.is-active span {
  box-shadow: 0 0 0 2px var(--brass);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.6;
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--brass), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--rule);
  background: var(--white);
  padding-block: 14px;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  animation: marquee 32s linear infinite;
}
.marquee__track span:nth-child(even) { opacity: 0.35; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Pillars ── */
.pillars {
  padding: clamp(64px, 10vw, 100px) 0;
  background: var(--white);
  border-block: 1px solid var(--rule);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
.pillar {
  padding: clamp(24px, 3vw, 36px) 0;
  border-left: 1px solid var(--rule);
  padding-left: clamp(20px, 3vw, 32px);
}
.pillar:first-child { border-left: none; padding-left: 0; }
.pillar__index {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar h2 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.pillar p { font-size: 14px; max-width: 32ch; }

/* ── Collections ── */
.collections {
  padding: clamp(72px, 10vw, 120px) 0;
}
.collections__head {
  margin-bottom: clamp(40px, 6vw, 64px);
}
.collections__head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  max-width: 16ch;
}
.collections__panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  padding-inline: var(--gutter);
  max-width: calc(var(--rail) + var(--gutter) * 2);
  margin-inline: auto;
}
.collection-panel {
  position: relative;
  display: block;
  min-height: clamp(380px, 52vh, 520px);
  overflow: hidden;
  background: var(--ink);
}
.collection-panel--tall { min-height: clamp(440px, 58vh, 580px); }
.collection-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}
.collection-panel__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 25, 23, 0.82) 0%, rgba(26, 25, 23, 0.15) 55%, transparent 100%);
  transition: opacity 0.5s;
}
.collection-panel__copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  z-index: 2;
}
.collection-panel__meta {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 8px;
}
.collection-panel h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 6px;
}
.collection-panel p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 16px;
}
.collection-panel__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 254, 250, 0.5);
  padding-bottom: 2px;
  transition: border-color 0.25s, color 0.25s;
}
.collection-panel:hover img { transform: scale(1.06); }
.collection-panel:hover .collection-panel__link {
  border-color: var(--warm);
  color: var(--warm);
}

/* ── Craft ── */
.craft {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--sand);
}
.craft__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.craft__copy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 20px;
}
.craft__copy > p {
  font-size: 15px;
  max-width: 44ch;
  margin-bottom: 32px;
}
.craft__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.craft__specs li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
}
.craft__specs strong {
  font-weight: 600;
  color: var(--ink);
}
.craft__specs span { color: var(--stone); }
.craft__visual {
  position: relative;
  min-height: 420px;
}
.craft__img {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(26, 25, 23, 0.08);
}
.craft__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.craft__img:hover img { transform: scale(1.04); }
.craft__img--main {
  position: relative;
  z-index: 1;
  width: 78%;
  aspect-ratio: 4 / 5;
}
.craft__img--accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1;
  z-index: 2;
  border: 6px solid var(--sand);
}

/* ── Showcase ── */
.showcase {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--linen);
}
.showcase__head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.showcase__head h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.showcase__sub {
  font-size: 15px;
  max-width: 40ch;
  margin-inline: auto;
}
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--white);
  margin-bottom: 16px;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.product-card__hover {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: rgba(26, 25, 23, 0.88);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card:hover .product-card__hover { transform: translateY(0); }
.product-card__body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.product-card__body p {
  font-size: 13px;
  margin-bottom: 8px;
}
.product-card__price {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ── Quote band ── */
.quote-band {
  padding: clamp(64px, 10vw, 100px) 0;
  background: var(--ink);
  color: rgba(255, 254, 250, 0.88);
  text-align: center;
}
.quote-band__inner p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 20px;
}
.quote-band__inner cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
}

/* ── Stats ── */
.stats {
  padding: clamp(48px, 8vw, 72px) 0;
  background: var(--white);
  border-block: 1px solid var(--rule);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Journal ── */
.journal {
  padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 8vw, 80px);
}
.journal__head {
  margin-bottom: clamp(32px, 5vw, 48px);
}
.journal__head h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--ink);
}
.journal__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.journal-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1px solid var(--rule);
  align-items: start;
  transition: border-color 0.3s;
}
.journal-item:hover { border-top-color: var(--brass); }
.journal-item__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}
.journal-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.journal-item:hover .journal-item__thumb img { transform: scale(1.04); }
.journal-item__meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.journal-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}
.journal-item h3 a { transition: color 0.25s; }
.journal-item h3 a:hover { color: var(--brass); }
.journal-item p {
  font-size: 14px;
  max-width: 56ch;
  margin-bottom: 14px;
}
.journal-item__read {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.journal-item__read:hover {
  color: var(--brass);
  border-color: var(--brass);
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255, 254, 250, 0.65);
  padding: clamp(56px, 8vw, 80px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer__brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__brand p { font-size: 14px; max-width: 28ch; }
.footer__col h3 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 254, 250, 0.08);
  font-size: 12px;
  text-align: center;
  opacity: 0.55;
}

/* Motion — visible without JS */
.reveal, .anim-item { transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
html.js .reveal:not(.vis) { opacity: 0; transform: translateY(28px); }
html.js .anim-item:not(.vis) { opacity: 0; transform: translateY(22px); }
.reveal.vis, .anim-item.vis { opacity: 1; transform: none; }
.stagger-group > * { transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
html.js .stagger-group > *:not(.vis):not(.is-visible) { opacity: 0; transform: translateY(20px); }
.stagger-group > *.vis,
.stagger-group > *.is-visible { opacity: 1; transform: none; }

/* ── Back link ── */
.back-link {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--rule);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(26, 25, 23, 0.08);
  transition: transform 0.25s, border-color 0.25s;
}
.back-link:hover {
  transform: translateY(-2px);
  border-color: var(--brass);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__meta { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__inset { right: 4%; top: auto; bottom: 8%; width: 96px; }
  .hero__swatches { left: auto; right: 4%; bottom: 8%; flex-direction: row; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 24px; }
  .pillar:first-child { border-top: none; padding-top: 0; }
  .collections__panels { grid-template-columns: 1fr; }
  .collection-panel, .collection-panel--tall { min-height: 360px; }
  .craft__grid { grid-template-columns: 1fr; }
  .craft__visual { min-height: 320px; }
  .showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .header-nav--left { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-logo { justify-self: start; }
  .hero__stage { flex-direction: column; }
  .hero__scroll { display: none; }
  .hero__inset { display: none; }
  .hero__swatches {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 16px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .stats__grid { grid-template-columns: 1fr; gap: 32px; }
  .journal-item { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__brand p { margin-inline: auto; }
  .footer__col { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal:not(.vis),
  html.js .anim-item:not(.vis),
  html.js .stagger-group > *:not(.vis):not(.is-visible) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__scroll i { animation: none; }
  .marquee__track { animation: none; }
  .collection-panel img,
  .product-card__media img,
  .journal-item__thumb img,
  .craft__img img { transition: none; }
}
