/** Shopify CDN: Minification failed

Line 185:282 Expected identifier but found whitespace
Line 185:283 Unexpected "999px"

**/
/* Galelux — design tokens & global styles */

:root {
  /* palette — warm paper base, warm amber accents, cool slate */
  --paper:        oklch(0.965 0.008 75);   /* warm off-white */
  --paper-2:      oklch(0.935 0.012 75);
  --paper-3:      oklch(0.88  0.015 72);
  --ink:          oklch(0.22  0.01 60);    /* deep warm charcoal */
  --ink-2:        oklch(0.38  0.012 60);
  --ink-3:        oklch(0.56  0.012 65);
  --line:         oklch(0.86  0.01 70);

  --warm:         oklch(0.72 0.135 70);    /* amber */
  --warm-2:       oklch(0.6 0.155 60);
  --warm-3:       oklch(0.82 0.115 85);
  --warm-glow:    oklch(0.88 0.135 90);

  --cool:         oklch(0.7 0.02 230);     /* muted slate */
  --cool-2:       oklch(0.55 0.025 235);
  --cool-3:       oklch(0.85 0.015 230);

  --shadow-sm: 0 1px 2px rgba(60,40,20,.06), 0 2px 6px rgba(60,40,20,.04);
  --shadow-md: 0 4px 14px rgba(60,40,20,.08), 0 14px 40px rgba(60,40,20,.06);
  --shadow-lg: 0 20px 60px rgba(60,40,20,.12);

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  --r-sm: 8.4px;
  --r-md: 19.6px;
  --r-lg: 33.6px;
  --r-xl: 50.4px;

  --container: 1360px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
h1 { font-size: clamp(42px, 6vw, 88px); line-height: 0.98; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 3.6vw, 56px); line-height: 1.04; }
h3 { font-size: clamp(20px, 1.6vw, 26px); line-height: 1.2; }
h4 { font-size: 16px; line-height: 1.3; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; }
p { margin: 0; }
em { font-style: italic; color: var(--warm-2); font-family: var(--serif); }

.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.small { font-size: 12px; color: var(--ink-3); }
.eyebrow-sm { color: var(--ink-3); }
.eyebrow-sm.light { color: rgba(255,255,255,0.75); }

.section { max-width: var(--container); margin: 0 auto; padding: 100px 40px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-head .mono { display: block; margin-bottom: 14px; }
.link-arrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); border-bottom: 1px solid var(--line); padding-bottom: 4px; transition: .2s; }
.link-arrow:hover { color: var(--warm-2); border-color: var(--warm-2); }

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(243, 238, 228, 0.78); backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 16px 40px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-word { font-family: var(--sans); font-weight: 700; letter-spacing: 0.18em; font-size: 14px; }
.logo-mark { object-fit: contain; filter: drop-shadow(0 2px 6px rgba(60,40,20,0.08)); }
.footer .logo-mark { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.nav-links { display: flex; gap: 28px; justify-content: center; }
.nav-link { font-size: 13px; letter-spacing: 0.04em; color: var(--ink-2); padding: 6px 2px; border-bottom: 1px solid transparent; transition: .2s; }
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); border-color: var(--warm-2); }
.nav-actions { display: flex; align-items: center; gap: 6px; justify-content: flex-end; }
.icon-btn { width: 36px; height: 36px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); transition: .2s; }
.icon-btn:hover { background: var(--paper-2); color: var(--ink); }
.cart-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--ink); color: var(--ink); font-size: 13px; position: relative; transition: .2s; }
.cart-btn:hover { background: var(--ink); color: var(--paper); }
.cart-count { position: absolute; top: -6px; right: -6px; background: var(--warm-2); color: var(--paper); font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }

.nav-ticker { background: var(--ink); color: var(--paper); overflow: hidden; }
.ticker-track { display: inline-flex; white-space: nowrap; gap: 40px; padding: 8px 0; animation: ticker 50s linear infinite; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.ticker-track > span:nth-child(even) { color: var(--warm-3); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; transition: .22s; cursor: pointer; border: 1px solid transparent; }
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { background: var(--warm-2); }
.btn.ghost { color: var(--ink); border-color: var(--ink-2); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn.outline:hover { background: var(--paper); }
.btn.large { padding: 16px 28px; font-size: 14px; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(1200px 600px at 85% 30%, oklch(0.88 0.11 60 / 0.35), transparent 60%), radial-gradient(900px 500px at 10% 80%, oklch(0.78 0.03 230 / 0.2), transparent 60%); pointer-events: none; transition: opacity 1.2s; }
.hero.tone-cool .hero-bg { background: radial-gradient(1200px 600px at 85% 30%, oklch(0.8 0.04 230 / 0.4), transparent 60%), radial-gradient(900px 500px at 10% 80%, oklch(0.82 0.06 70 / 0.15), transparent 60%); }
.hero-grid { max-width: var(--container); margin: 0 auto; padding: 90px 40px 120px; display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.dot { width: 6px; height: 6px; border-radius: 999px; display: inline-block; }
.dot.warm { background: var(--warm); box-shadow: 0 0 10px var(--warm-glow); }
.dot.cool { background: var(--cool); }
.dot.pulse { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.4; transform: scale(0.8);} }

.hero-title { margin-top: 28px; }
.hero-lede { margin-top: 28px; max-width: 540px; font-size: 18px; line-height: 1.55; color: var(--ink-2); }
.hero-ctas { margin-top: 36px; display: flex; gap: 12px; }
.hero-meta { margin-top: 60px; display: grid; grid-template-columns: repeat(3, auto); gap: 40px; padding-top: 28px; border-top: 1px solid var(--line); max-width: 540px; }
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong { font-family: var(--serif); font-size: 40px; font-weight: 500; line-height: 1; }
.hero-meta span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); line-height: 1.3; }

.hero-visual { position: relative; aspect-ratio: 1/1; }
.hero-video { position: absolute; inset: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #2a2623; }
.hv-inner { position: relative; width: 100%; height: 100%; }
.hv-shape { width: 100%; height: 100%; object-fit: cover; transition: .8s; }
.hv-overlay { position: absolute; inset: 0; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; color: var(--paper); background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%); }
.hv-playbar { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.hv-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--warm); }
.hv-time { margin-left: auto; }
.hv-caption { font-family: var(--serif); font-size: 20px; line-height: 1.2; }
.hv-caption .mono { color: var(--warm-3); margin-right: 8px; }
.hv-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; border-radius: 999px; background: rgba(255,255,255,0.92); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(0,0,0,0.2); transition: .2s; }
.hv-play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--warm); color: var(--paper); }

.hero-side { position: absolute; right: -40px; bottom: -40px; width: 45%; aspect-ratio: 4/5; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--paper); }
.hero-side img { width: 100%; height: 100%; object-fit: cover; }
.hs-tag { position: absolute; left: 12px; bottom: 12px; display: inline-flex; gap: 8px; align-items: center; padding: 6px 10px; background: var(--paper); border-radius: 999px; font-size: 11px; }
.hs-tag .mono { background: var(--warm-2); color: var(--paper); padding: 2px 6px; border-radius: 4px; letter-spacing: 0.1em; }

.tone-toggle { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 8px; z-index: 3; }
.tone-toggle button { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 10px; border-radius: 999px; font-size: 11px; font-family: var(--mono); letter-spacing: 0.12em; text-transform: uppercase; background: var(--paper); border: 1px solid var(--line); color: var(--ink-3); transition: .2s; }
.tone-toggle button.on { color: var(--ink); border-color: var(--ink); }
.tone-toggle .swatch { width: 14px; height: 14px; border-radius: 999px; }
.tone-toggle .swatch.warm { background: linear-gradient(135deg, var(--warm-3), var(--warm-2)); }
.tone-toggle .swatch.cool { background: linear-gradient(135deg, var(--cool-3), var(--cool-2)); }

/* ===== COLLECTIONS STRIP ===== */
.coll-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.coll-card { display: flex; flex-direction: column; cursor: pointer; transition: .3s; }
.coll-card:hover { transform: translateY(-4px); }
.coll-img { position: relative; aspect-ratio: 4/5; background: var(--paper-2); border-radius: var(--r-md); overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
.coll-img svg { width: 78%; height: 100%; }
.coll-count { position: absolute; top: 14px; left: 14px; color: var(--ink-3); }
.coll-meta { padding: 18px 4px 4px; display: grid; grid-template-columns: 1fr auto; row-gap: 4px; }
.coll-meta h3 { grid-column: 1; }
.coll-meta p { grid-column: 1; color: var(--ink-3); font-size: 13px; }
.coll-arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-size: 20px; color: var(--ink-3); transition: .2s; }
.coll-card:hover .coll-arrow { color: var(--warm-2); transform: translateX(4px); }

/* ===== PRODUCT CARD ===== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.pcard { cursor: pointer; display: flex; flex-direction: column; gap: 16px; }
.pcard-media { position: relative; aspect-ratio: 4/5; border-radius: var(--r-md); overflow: hidden; background: var(--paper-2); }
.pcard-img.real { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .5s; }
.pcard:hover .pcard-img.real { transform: scale(1.06); }
.pcard-glow { position: absolute; inset: 0; background: radial-gradient(280px 180px at 50% 55%, oklch(0.85 0.15 70 / 0.35), transparent 65%); opacity: 0; transition: opacity .5s; pointer-events: none; mix-blend-mode: screen; }
.pcard-media.lit .pcard-glow { opacity: 1; }
.pcard-badge { position: absolute; top: 14px; left: 14px; padding: 5px 9px; background: rgba(28, 24, 20, 0.82); color: #F5F1EA; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 999px; white-space: nowrap; } border-radius: 999px; backdrop-filter: blur(8px); z-index: 2; }
.pcard-swatches { position: absolute; bottom: 12px; left: 12px; display: flex; gap: 4px; }
.pcard-swatches span { width: 14px; height: 14px; border-radius: 999px; border: 1.5px solid var(--paper); box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.pcard-quick { position: absolute; bottom: 12px; right: 12px; padding: 8px 12px; border-radius: 999px; background: var(--paper); font-size: 11px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: .3s; }
.pcard:hover .pcard-quick { opacity: 1; transform: translateY(0); }
.pcard-quick:hover { background: var(--ink); color: var(--paper); }
.pcard-meta { display: flex; flex-direction: column; gap: 4px; }
.pcard-row { display: flex; justify-content: space-between; font-size: 11px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.pcard-price { color: var(--ink); }
.pcard-name { font-family: var(--serif); font-size: 22px; }
.pcard-tag { color: var(--ink-3); font-size: 13px; font-style: italic; }

/* ===== SPLIT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 40px; max-width: var(--container); margin: 0 auto; }
.split-warm, .split-cool { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-xl); overflow: hidden; min-height: 480px; }
.split-warm { background: linear-gradient(135deg, oklch(0.55 0.14 50), oklch(0.4 0.12 40)); color: var(--paper); }
.split-cool { background: linear-gradient(135deg, oklch(0.85 0.02 230), oklch(0.72 0.025 235)); color: var(--ink); }
.split-inner { padding: 48px; display: flex; flex-direction: column; justify-content: flex-end; gap: 20px; }
.split-inner h2 { color: inherit; }
.split-inner p { font-size: 14px; opacity: 0.85; max-width: 340px; }
.split-visual { position: relative; display: flex; align-items: center; justify-content: center; padding: 40px; }
.split-visual svg { width: 80%; max-height: 400px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }

/* ===== PROCESS ===== */
.process { padding-top: 40px; padding-bottom: 40px; }
.process-marquee { background: var(--ink); color: var(--paper); overflow: hidden; margin: 0 -40px 60px; padding: 22px 0; border-radius: 0; }
.pm-track { display: inline-flex; gap: 40px; white-space: nowrap; animation: ticker 40s linear infinite; font-family: var(--serif); font-size: 52px; font-weight: 400; letter-spacing: -0.02em; }
.pm-item { display: inline-flex; align-items: center; gap: 40px; }
.pm-dot { color: var(--warm); font-size: 24px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-grid.six { grid-template-columns: repeat(6, 1fr); gap: 20px; }
.process-grid.five { grid-template-columns: repeat(5, 1fr); gap: 22px; }
.process-grid.five .proc-step { padding: 24px 18px; min-height: 200px; }
.process-grid.five h4 { font-size: 20px; }
.process-grid.five p { font-size: 13px; line-height: 1.55; }
.process-grid.six .proc-step { padding: 24px 18px; min-height: 200px; }
.process-grid.six h4 { font-size: 20px; }
.process-grid.six p { font-size: 13px; line-height: 1.55; }
.section-lede { max-width: 520px; font-size: 15px; line-height: 1.7; color: var(--ink-2); margin: 8px 0 0; text-wrap: pretty; }
.craft-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); margin-top: 48px; overflow: hidden; }
.craft-stats > div { padding: 32px 24px; background: var(--paper); text-align: center; display: flex; flex-direction: column; gap: 6px; }
.craft-stats strong { font-family: var(--serif); font-size: 48px; font-weight: 400; color: var(--warm-2); line-height: 1; letter-spacing: -0.02em; }
.craft-stats span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }
.values-grid.six { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) {
  .process-grid.six { grid-template-columns: repeat(3, 1fr); }
  .process-grid.five { grid-template-columns: repeat(3, 1fr); }
  .values-grid.six { grid-template-columns: repeat(2, 1fr); }
  .craft-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .process-grid.six, .process-grid.five, .values-grid.six { grid-template-columns: 1fr; }
  .craft-stats { grid-template-columns: 1fr; }
  .craft-stats strong { font-size: 36px; }
}
.proc-step { padding: 30px 24px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); transition: .3s; }
.proc-step:hover { border-color: var(--warm); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.proc-n { color: var(--warm-2); display: block; margin-bottom: 12px; }
.proc-step h4 { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 8px; text-transform: none; }
.proc-step p { color: var(--ink-3); font-size: 13.5px; line-height: 1.6; }

/* ===== STORY TEASER ===== */
.story-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.st-visual { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; }
.st-visual img { width: 100%; height: 100%; object-fit: cover; }
.st-caption { position: absolute; bottom: 16px; left: 16px; padding: 6px 10px; background: rgba(0,0,0,0.5); color: var(--paper); backdrop-filter: blur(8px); border-radius: 4px; font-size: 10px; }
.st-copy { display: flex; flex-direction: column; gap: 20px; }
.st-copy p { font-size: 16px; color: var(--ink-2); line-height: 1.6; max-width: 480px; }

/* ===== JOURNAL TEASER ===== */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.jcard { cursor: pointer; display: flex; flex-direction: column; gap: 14px; }
.jcard-img { aspect-ratio: 5/4; border-radius: var(--r-md); overflow: hidden; background: var(--paper-2); display: flex; align-items: center; justify-content: center; }
.jcard-img svg { width: 60%; height: 100%; }
.jcard-meta { display: flex; flex-direction: column; gap: 8px; }
.jcard-row { display: flex; justify-content: space-between; color: var(--ink-3); }
.jcard h3 { font-family: var(--serif); font-size: 22px; transition: .2s; }
.jcard:hover h3 { color: var(--warm-2); }
.jcard p { color: var(--ink-3); font-size: 13.5px; }

/* ===== CTA band ===== */
/* ===== Product card — gift-ready pill ===== */
.pcard-gift { position: absolute; top: 14px; right: 14px; padding: 5px 9px; background: var(--paper); color: var(--warm-2); border: 1px solid var(--warm-3); border-radius: 999px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); white-space: nowrap; }

/* ===== PDP gift-ready callout ===== */
.pdp-gift { margin: 22px 0 8px; padding: 22px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md); display: grid; grid-template-columns: minmax(140px, 200px) 1fr; gap: 22px; position: relative; overflow: hidden; }
.pdp-gift::before { content: ''; position: absolute; inset: -1px; background: linear-gradient(135deg, transparent 60%, oklch(0.82 0.12 60 / 0.12) 100%); pointer-events: none; border-radius: var(--r-md); }
.pdp-gift-imgs { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; position: relative; z-index: 1; }
.pdp-gift-imgs img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-sm); display: block; background: var(--paper); }
.pdp-gift-copy { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.pdp-gift-eye { color: var(--warm-2); letter-spacing: 0.14em; }
.pdp-gift-title { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 24px); font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
.pdp-gift-title em { font-style: italic; color: var(--warm-2); }
.pdp-gift-copy p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; text-wrap: pretty; }
.pdp-gift-toggle { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer; font-size: 13px; color: var(--ink-2); transition: .2s; margin-top: 6px; }
.pdp-gift-toggle:hover { border-color: var(--warm-2); background: oklch(0.97 0.02 65); }
.pdp-gift-toggle input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--warm-2); margin: 0; flex: 0 0 16px; }
.pdp-gift-toggle span { line-height: 1.4; }
@media (max-width: 700px) { .pdp-gift { grid-template-columns: 1fr; } .pdp-gift-imgs { grid-template-rows: auto; grid-template-columns: 1fr 1fr; } }

.subscribe-band { max-width: var(--container); margin: 0 auto; padding: 100px 40px 40px; }
.sb-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; padding: 64px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-xl); position: relative; overflow: hidden; }
.sb-inner::before { content: ''; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 999px; background: radial-gradient(circle at 50% 50%, oklch(0.82 0.12 60 / 0.18), transparent 65%); pointer-events: none; }
.sb-copy h2 { font-size: clamp(32px, 3.4vw, 52px); margin: 14px 0 18px; line-height: 1.05; }
.sb-copy p { font-size: 15px; line-height: 1.65; color: var(--ink-2); max-width: 460px; text-wrap: pretty; }
.sb-bullets { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 10px; color: var(--ink-2); }
.sb-bullets li { display: flex; gap: 10px; align-items: center; letter-spacing: 0.04em; }
.sb-bullets li span { color: var(--warm-2); }

.sb-form { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.sb-fields { display: flex; flex-direction: column; gap: 14px; transition: opacity .3s; }
.sb-fields.off { opacity: 0; pointer-events: none; height: 0; overflow: hidden; }
.sb-field { display: flex; flex-direction: column; gap: 6px; }
.sb-field span { color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; }
.sb-field input { padding: 16px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); font-family: inherit; font-size: 15px; color: var(--ink); transition: .2s; }
.sb-field input:focus { outline: none; border-color: var(--warm-2); box-shadow: 0 0 0 3px oklch(0.82 0.12 60 / 0.18); }
.sb-fine { color: var(--ink-3); letter-spacing: 0.04em; text-transform: none; margin: 0; }

.sb-ok { display: none; gap: 14px; align-items: flex-start; padding: 20px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); }
.sb-ok.on { display: flex; }
.sb-check { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 999px; background: var(--warm-2); color: var(--paper); flex: 0 0 32px; font-weight: 600; }
.sb-ok strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.sb-ok p { font-size: 13px; color: var(--ink-2); margin: 0; }

@media (max-width: 900px) {
  .sb-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}

/* ===== CTA band ===== */
.cta-band { text-align: center; padding: 140px 40px; background: linear-gradient(180deg, var(--paper), var(--paper-2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width: none; }
.cta-band h2 { max-width: 780px; margin: 0 auto 36px; font-size: clamp(36px, 4.4vw, 72px); }
.cta-band .cta-sub { max-width: 540px; margin: -20px auto 36px; font-size: 16px; line-height: 1.6; color: var(--ink-2); text-wrap: pretty; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: var(--paper); padding: 80px 40px 32px; }
.footer-top, .footer-cols, .footer-bottom { max-width: var(--container); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand { display: flex; gap: 20px; align-items: flex-start; }
.footer-brand h3 { color: var(--paper); font-family: var(--sans); font-weight: 700; letter-spacing: 0.18em; font-size: 16px; margin-bottom: 8px; }
.footer-brand .small { color: rgba(255,255,255,0.55); font-size: 12px; }
.footer-news h4 { color: var(--paper); margin-bottom: 10px; }
.footer-news .small { color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.news-form { display: flex; gap: 8px; }
.news-form input { flex: 1; padding: 12px 16px; background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; color: var(--paper); font-family: inherit; font-size: 13px; }
.news-form input::placeholder { color: rgba(255,255,255,0.4); }
.news-form button { padding: 12px 22px; border-radius: 999px; background: var(--warm); color: var(--paper); font-size: 13px; font-weight: 500; transition: .2s; }
.news-form button:hover { background: var(--warm-2); }

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 60px 0; }
.footer-cols h5 { color: rgba(255,255,255,0.5); font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 16px; }
.footer-cols a { display: block; color: rgba(255,255,255,0.85); font-size: 13.5px; padding: 5px 0; transition: .15s; }
.footer-cols a:hover { color: var(--warm-3); transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 11px; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-operator { font-size: 16px !important; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.95) !important; font-weight: 600; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.35); border-radius: 4px; }

/* ===== PAGE HEAD ===== */
.page-head { max-width: var(--container); margin: 0 auto; padding: 80px 40px 40px; border-bottom: 1px solid var(--line); }
.page-head.center { text-align: center; border: none; padding-bottom: 60px; }
.page-head .crumbs { margin-bottom: 20px; color: var(--ink-3); }
.page-head .crumbs span, .page-head .crumbs a { color: var(--ink); }
.page-head h1 { margin: 14px 0 18px; }
.page-head p { color: var(--ink-3); max-width: 620px; font-size: 16px; }
.crumbs { max-width: var(--container); margin: 20px auto; padding: 0 40px; color: var(--ink-3); }
.crumbs a { color: var(--ink); cursor: pointer; }
.crumbs a:hover { color: var(--warm-2); }

/* ===== SHOP ===== */
.shop-page { padding-bottom: 80px; }
.shop-layout { max-width: var(--container); margin: 0 auto; padding: 40px; display: grid; grid-template-columns: 240px 1fr; gap: 48px; }
.shop-filters { display: flex; flex-direction: column; gap: 32px; }
.filter-group h4 { margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.filter-group label { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; cursor: pointer; color: var(--ink-2); text-transform: capitalize; }
.filter-group label:hover { color: var(--ink); }
.filter-group input { accent-color: var(--warm-2); }
.swatch-inline { width: 14px; height: 14px; border-radius: 999px; display: inline-block; }
.price-range input[type=range] { width: 100%; accent-color: var(--warm-2); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.sort-select { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; background: var(--paper); }

/* ===== PRODUCT PAGE ===== */
.product-page { padding-bottom: 80px; }
.pdp-main { max-width: var(--container); margin: 0 auto; padding: 20px 40px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; }
.pdp-visual { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 100px; align-self: flex-start; }
.pdp-stage { position: relative; aspect-ratio: 1/1; border-radius: var(--r-lg); overflow: hidden; background: #1a1815; display: flex; align-items: center; justify-content: center; cursor: grab; perspective: 1400px; }
.pdp-stage.lit { background: linear-gradient(180deg, oklch(0.92 0.04 70), oklch(0.78 0.08 55)); }
.pdp-plinth { position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%); width: 70%; height: 20px; background: radial-gradient(ellipse at center, rgba(0,0,0,0.3), transparent 70%); filter: blur(10px); }
.pdp-spin { position: relative; width: 72%; aspect-ratio: 1/1; transform-style: preserve-3d; transition: transform 0.2s; }
.pdp-spin img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); transition: filter 0.5s; }
.pdp-glow { position: absolute; inset: 0; background: radial-gradient(400px 280px at 50% 55%, oklch(0.88 0.16 70 / 0.6), transparent 65%); opacity: 0; mix-blend-mode: screen; transition: opacity 0.6s; pointer-events: none; }
.pdp-glow.on { opacity: 1; animation: glowPulse 4s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { opacity: 0.85; } 50% { opacity: 1; } }
.pdp-controls { position: absolute; top: 16px; right: 16px; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.pdp-ctrl { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); transition: .2s; }
.pdp-ctrl.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pdp-angle { padding: 6px 10px; background: rgba(0,0,0,0.6); color: var(--paper); border-radius: 4px; }

.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pdp-thumb { aspect-ratio: 1/1; border-radius: var(--r-sm); overflow: hidden; border: 2px solid transparent; background: #1a1815; padding: 0; position: relative; }
.pdp-thumb.active { border-color: var(--ink); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.5); color: var(--paper); }

.pdp-info { display: flex; flex-direction: column; gap: 18px; padding: 20px 0; }
.pdp-name { font-size: clamp(38px, 4vw, 64px); line-height: 1; }
.pdp-tag { font-style: italic; color: var(--ink-3); font-size: 17px; font-family: var(--serif); font-weight: 400; }
.pdp-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.pdp-price { font-family: var(--serif); font-size: 44px; font-weight: 500; }
.ccy { font-size: 14px; color: var(--ink-3); margin-left: 6px; font-family: var(--mono); }
.pdp-stock { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-3); }
.pdp-desc { color: var(--ink-2); font-size: 15px; line-height: 1.7; }
.pdp-palette { padding: 14px 0; }
.pdp-palette .mono { display: block; margin-bottom: 10px; color: var(--ink-3); }
.pdp-variants { padding: 18px 0 8px; border-top: 1px solid var(--line); }
.pdp-variants .mono { display: block; margin-bottom: 12px; color: var(--ink-3); }
.variant-row { display: flex; gap: 10px; flex-wrap: wrap; }
.variant-chip { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; background: var(--paper-2); border: 1.5px solid transparent; border-radius: 999px; cursor: pointer; transition: all .2s; }
.variant-chip:hover { background: var(--paper-3); }
.variant-chip.on { background: var(--paper); border-color: var(--ink); }
.vc-swatches { display: inline-flex; gap: 2px; padding: 3px; background: var(--paper); border-radius: 999px; }
.vc-swatches span { width: 14px; height: 14px; border-radius: 999px; display: block; }
.vc-thumb { width: 38px; height: 38px; border-radius: 999px; overflow: hidden; background: var(--paper); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06); }
.vc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.variant-chip.with-img { padding: 6px 14px 6px 6px; }
.vc-name { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--ink); letter-spacing: .01em; }
.vc-stock { font-size: 10px; color: var(--ink-3); padding: 2px 6px; background: var(--paper); border-radius: 4px; }
.variant-chip.on .vc-stock { background: var(--warm-3); color: var(--ink); }
.palette-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pal-chip { display: inline-flex; align-items: center; gap: 8px; padding: 4px 10px 4px 4px; background: var(--paper-2); border-radius: 999px; font-size: 10px; }
.pc-swatch { width: 18px; height: 18px; border-radius: 999px; }
.pdp-qty { display: flex; align-items: center; gap: 16px; }
.qty-ctrl { display: inline-flex; border: 1px solid var(--ink); border-radius: 999px; overflow: hidden; }
.qty-ctrl button { padding: 10px 16px; font-size: 16px; }
.qty-ctrl button:hover { background: var(--ink); color: var(--paper); }
.qty-ctrl span { padding: 10px 20px; border-left: 1px solid var(--line); border-right: 1px solid var(--line); min-width: 20px; text-align: center; }
.pdp-ctas { display: flex; gap: 12px; margin-top: 8px; }
.pdp-ctas .btn { flex: 1; justify-content: center; }
.pdp-assure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 20px; background: var(--paper-2); border-radius: var(--r-md); font-size: 12px; color: var(--ink-2); }
.pdp-assure span { color: var(--warm-2); margin-right: 6px; }

.pdp-tabs { display: flex; gap: 4px; margin-top: 20px; border-bottom: 1px solid var(--line); }
.pdp-tabs button { padding: 12px 18px; font-size: 12px; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); border-bottom: 2px solid transparent; }
.pdp-tabs button.on { color: var(--ink); border-color: var(--warm-2); }
.pdp-tab-body { padding: 20px 0; }
.kv { display: grid; grid-template-columns: 1fr 2fr; gap: 12px; margin: 0; }
.kv > div { display: contents; }
.kv dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); padding: 6px 0; border-bottom: 1px solid var(--line); }
.kv dd { margin: 0; padding: 6px 0; font-size: 14px; border-bottom: 1px solid var(--line); }

.ship-table { display: flex; flex-direction: column; }
.ship-row { display: grid; grid-template-columns: 140px auto 1fr; gap: 16px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); }
.ship-row strong { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--warm-2); }
.ship-row .small { color: var(--ink-3); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: grid; grid-template-columns: 60px 1fr 30px; gap: 20px; align-items: center; width: 100%; padding: 28px 8px; text-align: left; font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); font-weight: 500; letter-spacing: -0.01em; color: var(--ink); transition: .2s; }
.faq-q:hover { background: var(--paper-2); padding-left: 16px; padding-right: 16px; }
.faq-n { color: var(--warm-2); font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; }
.faq-icon { font-family: var(--serif); font-size: 28px; color: var(--ink-3); font-weight: 300; line-height: 1; transition: transform .3s; }
.faq-item.open .faq-icon { color: var(--warm-2); transform: rotate(180deg); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.3,.8,.3,1); }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; padding: 0 8px 0 88px; color: var(--ink-2); font-size: 15px; line-height: 1.7; max-width: 780px; }
.faq-item.open .faq-a { padding-bottom: 28px; }

.pdp-story { max-width: var(--container); margin: 100px auto; padding: 0 40px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.pdp-quote { padding: 40px 0; }
.pdp-quote .mark { font-family: var(--serif); font-size: 100px; line-height: 0.5; color: var(--warm-2); display: block; margin-bottom: -20px; }
.pdp-quote p { font-family: var(--serif); font-size: clamp(26px, 2.5vw, 38px); line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); max-width: 600px; }
.quote-by { margin-top: 24px; color: var(--ink-3); }
.pdp-story-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; }
.pdp-story-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== PRODUCT — pre-launch subscribe ===== */
.pdp-preheat { margin: 8px 0 16px; padding: 24px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md); display: flex; flex-direction: column; gap: 12px; }
.pp-eyebrow { color: var(--warm-2); letter-spacing: 0.14em; text-transform: uppercase; font-size: 11px; }
.pp-title { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); }
.pp-copy { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; max-width: 460px; text-wrap: pretty; }
.pp-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 6px; }
.pp-form input { padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); font-family: inherit; font-size: 14px; color: var(--ink); }
.pp-form input:focus { outline: none; border-color: var(--ink); }
.pp-success { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); }
.pp-check { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 999px; background: var(--ink); color: var(--paper); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.pp-success strong { font-family: var(--serif); font-size: 16px; font-weight: 500; }
.pp-success p { color: var(--ink-3); margin-top: 4px; font-size: 13px; line-height: 1.5; }
.pp-fine { color: var(--ink-3); letter-spacing: 0.05em; }
.pp-fine strong { color: var(--warm-2); font-weight: 600; }
.pdp-details { max-width: var(--container); margin: 80px auto 60px; padding: 0 40px; }
.pdp-details-head { max-width: 760px; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.pdp-details-head h2 { font-size: clamp(34px, 3.2vw, 48px); line-height: 1.05; letter-spacing: -0.02em; margin: 12px 0 14px; }
.pdp-details-head p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; max-width: 580px; text-wrap: pretty; }
.pdp-about .pdp-details-head { max-width: none; }
.pdp-about .pdp-details-head p { max-width: none; font-size: 18px; line-height: 1.65; }
.pdp-about .pdp-details-head p + p { margin-top: 14px; }
.pdp-details-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.pd-tile { position: relative; margin: 0; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3/2; grid-column: span 3; background: var(--paper-2); }
.pd-tile.pd-wide { grid-column: span 6; aspect-ratio: 21/9; }
.pd-tile.pd-dark { background: #0c0a09; }
.pd-tile.pd-full { aspect-ratio: auto; grid-column: span 6; background: transparent; border-radius: 0; }
.pd-tile.pd-full img { mix-blend-mode: multiply; }
.pd-tile.pd-full img { width: 100%; height: auto; object-fit: contain; }
.pd-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.pd-tile:hover img { transform: scale(1.03); }
.pd-tile figcaption { position: absolute; bottom: 12px; left: 12px; padding: 5px 10px; background: rgba(255,255,255,0.92); color: var(--ink-2); border-radius: 4px; font-size: 10.5px; letter-spacing: 0.12em; }
.pd-tile.pd-dark figcaption { background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.92); backdrop-filter: blur(4px); }

/* Info cards from supplier sheet — pure image, no caption overlay */
.pdp-details-info { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pd-info-card { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--paper); border: 0; }
.pd-info-card img { width: 100%; height: auto; display: block; }
.pd-info-card.pd-info-wide { grid-column: span 2; }
@media (max-width: 900px) { .pdp-details-info { grid-template-columns: 1fr; } .pd-info-card.pd-info-wide { grid-column: span 1; } }

.pd-specs { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.pd-spec { padding: 22px 18px; background: var(--paper); display: flex; flex-direction: column; gap: 6px; }
.pd-spec .mono { color: var(--ink-3); letter-spacing: 0.1em; }
.pd-spec strong { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.pd-spec.pd-warn strong { color: #B6582F; }
.pd-spec.pd-warn .mono { color: #B6582F; }

.use-guide { font-size: 14.5px; color: var(--ink-2); }
.use-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.use-steps li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); }
.use-n { font-size: 12px; letter-spacing: 0.12em; color: var(--warm-2); padding-top: 2px; }
.use-steps strong { display: block; font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 4px; }
.use-steps p { font-size: 13.5px; line-height: 1.55; color: var(--ink-3); margin: 0; }
.use-note { display: block; margin-top: 14px; padding: 10px 12px; background: var(--paper-2); border-radius: var(--r-sm); color: var(--ink-3); letter-spacing: 0.06em; }

@media (max-width: 900px) {
  .pdp-details-grid { grid-template-columns: 1fr 1fr; }
  .pd-tile, .pd-tile.pd-wide { grid-column: span 2; aspect-ratio: 4/3; }
  .pd-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pdp-details-grid { grid-template-columns: 1fr; }
  .pd-tile, .pd-tile.pd-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .pd-specs { grid-template-columns: 1fr; }
}

/* ===== STORY ===== */
.story-page { padding-bottom: 80px; }
.story-intro { max-width: var(--container); margin: 0 auto; padding: 60px 40px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.si-image { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; }
.si-image img { width: 100%; height: 100%; object-fit: cover; }
.si-copy .lede { font-family: var(--serif); font-size: clamp(22px, 2vw, 30px); line-height: 1.35; color: var(--ink); }
.si-copy .lede.muted { font-size: clamp(15px, 1.2vw, 17px); color: var(--ink-2); line-height: 1.65; margin-top: 20px; font-family: var(--sans); text-wrap: pretty; }

/* Story — long-form intro */
.story-long { max-width: var(--container); margin: 0 auto; padding: 40px 40px 60px; }
.story-long .sl-inner { max-width: 720px; margin: 0 auto; }
.story-long p { font-family: var(--sans); font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-top: 18px; text-wrap: pretty; }
.story-long .sl-lede { font-family: var(--serif); font-size: clamp(24px, 2.3vw, 34px); line-height: 1.3; color: var(--ink); margin-top: 0; letter-spacing: -0.01em; }
.story-long .sl-close { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.4; color: var(--ink); margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); text-wrap: balance; }

/* Story — alternating chapter sections */
.story-chapter { max-width: var(--container); margin: 80px auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.story-chapter.alt { grid-template-columns: 1.05fr 1fr; }
.story-chapter.alt .sc-visual { order: 2; }
.story-chapter.alt .sc-copy { order: 1; }
.sc-visual { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--paper); }
.sc-visual img { width: 100%; height: 100%; object-fit: cover; }
.sc-caption { position: absolute; left: 16px; bottom: 16px; padding: 8px 12px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); border-radius: 999px; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); }
.sc-copy h2 { margin: 14px 0 22px; font-size: clamp(32px, 3vw, 48px); line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }
.sc-copy p { color: var(--ink-2); font-size: 16.5px; line-height: 1.7; max-width: 540px; text-wrap: pretty; }

/* Story — gift closing */
.story-gift { max-width: var(--container); margin: 100px auto 40px; padding: 0 40px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.story-gift .sg-inner h2 { margin: 14px 0 22px; font-size: clamp(34px, 3.2vw, 52px); line-height: 1.05; letter-spacing: -0.02em; }
.story-gift .sg-inner p { color: var(--ink-2); font-size: 17px; line-height: 1.7; max-width: 540px; text-wrap: pretty; }
.story-gift .sg-image { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/4; background: var(--paper); }
.story-gift .sg-image img { width: 100%; height: 100%; object-fit: cover; }

/* Story — founder timeline */
.story-timeline { max-width: var(--container); margin: 80px auto; padding: 0 40px; }
.st-tl-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.st-tl-head h2 { margin-top: 10px; font-size: clamp(28px, 2.8vw, 40px); line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }
.st-tl { list-style: none; padding: 0; margin: 0; max-width: 780px; margin: 0 auto; position: relative; }
.st-tl::before { content: ''; position: absolute; left: 92px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.st-tl-item { display: grid; grid-template-columns: 80px 24px 1fr; gap: 24px; align-items: start; padding: 18px 0; }
.st-tl-year { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--warm-2); letter-spacing: -0.02em; padding-top: 2px; text-align: right; }
.st-tl-dot { width: 12px; height: 12px; border-radius: 999px; background: var(--ink); border: 3px solid var(--paper); box-shadow: 0 0 0 1px var(--line); margin: 12px auto 0; }
.st-tl-card { padding: 4px 0 4px; }
.st-tl-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 8px; }
.st-tl-card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; text-wrap: pretty; max-width: 540px; }

@media (max-width: 700px) {
  .st-tl-item { grid-template-columns: 64px 18px 1fr; gap: 14px; }
  .st-tl::before { left: 73px; }
  .st-tl-year { font-size: 20px; }
}

@media (max-width: 900px) {
  .story-chapter, .story-chapter.alt, .story-gift { grid-template-columns: 1fr; }
  .story-chapter.alt .sc-visual { order: 0; }
  .story-chapter.alt .sc-copy { order: 0; }
}

.timeline { max-width: 880px; margin: 80px auto; padding: 0 40px; position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--line); }
.tl-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; margin: 32px 0; gap: 28px; }
.tl-row.right .tl-year { order: 3; text-align: left; }
.tl-row.right .tl-card { order: 1; text-align: right; }
.tl-row.left .tl-year { text-align: right; }
.tl-year { font-family: var(--serif); font-size: 40px; font-weight: 500; color: var(--warm-2); }
.tl-dot { width: 12px; height: 12px; border-radius: 999px; background: var(--ink); border: 3px solid var(--paper); box-shadow: 0 0 0 1px var(--line); }
.tl-card { padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); }
.tl-card h3 { margin-bottom: 8px; }
.tl-card p { color: var(--ink-3); font-size: 14px; }

.values { max-width: var(--container); margin: 60px auto; padding: 0 40px; }
.values h2 { margin-bottom: 40px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { padding: 32px 24px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); min-height: 220px; display: flex; flex-direction: column; gap: 10px; transition: .3s; }
.value-card:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.value-card:hover .vk { color: var(--warm-3); }
.value-card:hover p { color: rgba(255,255,255,0.7); }
.vk { color: var(--warm-2); }
.value-card h4 { font-family: var(--serif); font-size: 28px; font-weight: 500; text-transform: none; letter-spacing: -0.01em; margin-top: 14px; color: inherit; }
.value-card p { color: var(--ink-3); font-size: 13.5px; margin-top: auto; }

.makers { max-width: var(--container); margin: 60px auto 100px; padding: 0 40px; }
.makers h2 { margin-bottom: 40px; }
.makers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.maker-card { text-align: center; }
.maker-portrait { aspect-ratio: 4/5; border-radius: var(--r-md); overflow: hidden; background: var(--paper-2); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; }
.maker-portrait svg { width: 80%; height: 100%; }
.maker-card h4 { font-family: var(--serif); font-size: 22px; text-transform: none; letter-spacing: -0.01em; }

/* ===== JOURNAL ===== */
.journal-page { padding-bottom: 80px; }
.journal-filters { max-width: var(--container); margin: 0 auto 40px; padding: 20px 40px 0; display: flex; gap: 8px; }
.journal-filters button { padding: 8px 16px; border-radius: 999px; font-size: 12px; color: var(--ink-3); border: 1px solid var(--line); transition: .2s; }
.journal-filters button.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.journal-feed { max-width: var(--container); margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
.jfeed { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; align-items: center; cursor: pointer; }
.jfeed.hero { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.jfeed.hero h2 { font-size: clamp(32px, 3vw, 48px); }
.jfeed-img { aspect-ratio: 5/4; border-radius: var(--r-md); overflow: hidden; background: var(--paper-2); display: flex; align-items: center; justify-content: center; }
.jfeed-img svg { width: 70%; height: 100%; }
.jfeed-body h2 { font-size: 26px; margin: 10px 0; }
.jfeed-body p { color: var(--ink-3); font-size: 14px; margin-bottom: 12px; }
.row-between { display: flex; justify-content: space-between; color: var(--ink-3); }

/* ===== CARE ===== */
.care-page { padding-bottom: 80px; }
.care-grid { max-width: var(--container); margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.care-card { padding: 36px 28px; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line); min-height: 220px; display: flex; flex-direction: column; gap: 10px; transition: .3s; }
.care-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--warm); }
.care-n { color: var(--warm-2); }
.care-card h3 { font-family: var(--serif); font-size: 24px; margin-top: 14px; }
.care-card p { color: var(--ink-3); font-size: 14px; line-height: 1.6; margin-top: auto; }

/* ===== CONTACT ===== */
.contact-page .page-head { padding-bottom: 24px; }
.contact-inner { max-width: 720px; margin: 0 auto; padding: 20px 40px 80px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.contact-email { font-family: var(--serif); font-size: clamp(34px, 5vw, 56px); color: var(--ink); line-height: 1.1; letter-spacing: -0.01em; padding: 18px 28px; border-bottom: 1px solid var(--ink); transition: .2s; }
.contact-email:hover { color: var(--warm-2); border-bottom-color: var(--warm-2); }
.contact-blurb { font-family: var(--serif); font-size: 20px; line-height: 1.6; color: var(--ink-2); max-width: 560px; text-wrap: pretty; }
.contact-blurb.contact-soft { font-size: 16px; color: var(--ink-3); font-family: inherit; line-height: 1.7; }
.contact-faq { margin-top: 40px; }

/* Shop — collections section appended below the shop grid */
.shop-collections-section { max-width: var(--container); margin: 100px auto 40px; padding: 0 40px; border-top: 1px solid var(--line); padding-top: 80px; }
.shop-coll-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.shop-coll-head .eyebrow-sm { color: var(--warm-2); display: inline-block; margin-bottom: 14px; }
.shop-coll-head h2 { font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 18px; }
.shop-coll-head h2 em { color: var(--warm-2); font-style: italic; }
.shop-coll-head p { font-size: 16px; color: var(--ink-2); line-height: 1.65; text-wrap: pretty; max-width: 580px; margin: 0 auto; }
.shop-collections .collections-page { display: none; } /* unused inside */
.shop-collections .coll-feature { max-width: 1180px; margin: 0 auto 40px; }
.shop-collections .cf-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.shop-collections .cf-head .eyebrow-sm { color: var(--warm-2); }
.shop-collections .cf-head h2 { font-family: var(--serif); font-size: 36px; margin: 6px 0 10px; }
.shop-collections .cf-head p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* 3-up row, smaller cards */
.shop-collections .coll-feature .mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.shop-collections .coll-feature .mosaic-card { max-width: 300px; justify-self: center; width: 100%; }
.shop-collections .coll-feature .mosaic-img { aspect-ratio: 1/1; }
.shop-collections .coll-feature .mosaic-meta { padding: 16px 16px 20px; gap: 6px; }
.shop-collections .coll-feature .mosaic-meta h3 { font-size: 20px; }
.shop-collections .coll-feature .mosaic-meta p { font-size: 13px; line-height: 1.5; }
@media (max-width: 960px) {
  .shop-collections .coll-feature .mosaic-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .shop-collections .coll-feature .mosaic-card:nth-child(3) { grid-column: span 2; max-width: 300px; }
}
@media (max-width: 600px) {
  .shop-collections .coll-feature .mosaic-grid { grid-template-columns: 1fr; gap: 28px; }
  .shop-collections .coll-feature .mosaic-card:nth-child(3) { grid-column: span 1; }
}

/* ===== PDP — 3 colour modes callout ===== */
.pdp-modes {
  margin: 18px 0 26px;
  padding: 18px 20px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, oklch(0.98 0.02 70) 0%, oklch(0.96 0.04 70) 100%);
  position: relative;
}
.pdp-modes-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.pdp-modes-eye {
  color: var(--ink-1); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.pdp-modes-tap {
  color: var(--warm-2); display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.pdp-tap-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--warm-2); display: inline-block;
}
.pdp-modes-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.pdp-mode {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 8px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(20,17,14,0.06);
  transition: 0.25s;
}
.pdp-mode-bulb {
  width: 42px; height: 42px; border-radius: 50%;
  box-shadow: 0 0 22px 4px currentColor, inset 0 0 12px rgba(255,255,255,0.6);
  background: currentColor;
}
.pdp-mode-warm { color: #FF8A2A; }
.pdp-mode-soft { color: #F5C57A; }
.pdp-mode-cool { color: #E8E9EC; }
.pdp-mode-cool .pdp-mode-bulb { box-shadow: 0 0 18px 2px #D6DAE0, inset 0 0 12px rgba(255,255,255,0.7); }
.pdp-mode-label {
  font-family: var(--serif); font-size: 16px; color: var(--ink); text-align: center;
  line-height: 1.15; display: flex; flex-direction: column; gap: 2px;
}
.pdp-mode-label small {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--ink-3); text-transform: uppercase;
}
.pdp-mode-arrow {
  color: var(--ink-3); font-size: 18px; flex: 0 0 auto;
}
.pdp-modes-note {
  margin: 12px 0 0; color: var(--ink-3); text-align: center; letter-spacing: 0.04em;
}
@media (max-width: 540px) {
  .pdp-modes-row { flex-wrap: wrap; }
  .pdp-mode-arrow { display: none; }
  .pdp-mode { flex: 1 1 30%; }
}

/* Coming-soon imagery — blur until released */
.gift-visual.is-coming-soon img,
.gs-visual.is-coming-soon img { filter: blur(14px) saturate(0.85); transform: scale(1.06); }
.gift-visual.is-coming-soon, .gs-visual.is-coming-soon { position: relative; overflow: hidden; }
.gift-visual.is-coming-soon::after,
.gs-visual.is-coming-soon::after {
  content: 'Coming soon';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #14110E; background: rgba(242,239,231,0.92); padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(20,17,14,0.12); white-space: nowrap;
}

/* Awaiting-release series — show clearly, no blur */
.coll-block.dim .dim-img img { filter: none; transform: none; opacity: 1; }
.coll-block.dim .dim-img { background: var(--paper-2); }

/* ===== GIFT SET PAGE ===== */
.giftset-page { padding-bottom: 100px; }
.giftset-list { max-width: var(--container); margin: 40px auto 80px; padding: 0 40px; display: flex; flex-direction: column; gap: 80px; }
.gs-row { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.gs-row.alt { grid-template-columns: 1.05fr 1fr; }
.gs-row.alt .gs-visual { order: 2; }
.gs-row.alt .gs-copy   { order: 1; }
.gs-visual { position: relative; aspect-ratio: 1/1; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2); }
.gs-visual img { width: 100%; height: 100%; object-fit: cover; }
.gs-visual.fit-contain { background: #f3ece1; }
.gs-visual.fit-contain img { object-fit: contain; padding: 6%; }
.gs-tag { position: absolute; top: 18px; left: 18px; padding: 7px 12px; background: var(--paper); color: var(--ink); border-radius: 999px; font-size: 11px; letter-spacing: 0.12em; }
.gs-copy { display: flex; flex-direction: column; gap: 14px; max-width: 540px; }
.gs-kicker { color: var(--warm-2); letter-spacing: 0.14em; text-transform: uppercase; }
.gs-copy h2 { font-family: var(--serif); font-size: clamp(30px, 2.8vw, 42px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 500; }
.gs-seo-lead { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.45; color: var(--ink); text-wrap: pretty; }
.gs-copy p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; text-wrap: pretty; }
.gs-features { list-style: none; padding: 0; margin: 8px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.gs-features li { display: flex; gap: 10px; align-items: baseline; font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.gs-features .gs-n { color: var(--warm-2); font-size: 11px; letter-spacing: 0.08em; }
.gs-foot { display: flex; gap: 16px; align-items: center; margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.gs-price { font-size: 16px; color: var(--ink); letter-spacing: 0.06em; padding: 8px 14px; background: var(--paper-2); border-radius: 999px; }
.gs-tags { display: flex; flex-wrap: wrap; gap: 6px; color: var(--ink-3); align-items: center; margin-top: 6px; }
.gs-tags > span:first-child { letter-spacing: 0.1em; margin-right: 4px; }
.gs-chip { padding: 4px 10px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); font-size: 10.5px; letter-spacing: 0.06em; }

.giftset-occasions { max-width: var(--container); margin: 80px auto 60px; padding: 0 40px; }
.gs-occ-head { max-width: 720px; margin-bottom: 36px; }
.gs-occ-head h2 { font-size: clamp(32px, 3vw, 46px); line-height: 1.05; letter-spacing: -0.02em; margin: 10px 0 14px; }
.gs-occ-head p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; max-width: 560px; text-wrap: pretty; }
.gs-occ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gs-occ-card { padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); display: flex; flex-direction: column; gap: 10px; }
.gs-occ-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.gs-occ-card p { color: var(--ink-2); font-size: 14px; line-height: 1.6; text-wrap: pretty; }

.giftset-faq { max-width: 880px; margin: 80px auto 0; padding: 0 40px; }

@media (max-width: 900px) {
  .gs-row, .gs-row.alt { grid-template-columns: 1fr; gap: 28px; }
  .gs-row.alt .gs-visual { order: 0; }
  .gs-row.alt .gs-copy { order: 0; }
  .gs-features { grid-template-columns: 1fr; }
  .gs-occ-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .gs-occ-grid { grid-template-columns: 1fr; }
}

/* featured */
.coll-feature { max-width: var(--container); margin: 40px auto 100px; padding: 0 40px; }
.coll-feature .cf-head { max-width: 760px; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.coll-feature .cf-head h2 { font-size: clamp(40px, 4vw, 60px); line-height: 1; letter-spacing: -0.02em; margin: 12px 0 14px; }
.coll-feature .cf-head p { font-size: 16px; color: var(--ink-2); line-height: 1.6; max-width: 580px; }

/* future intro */
.coll-future-head { max-width: var(--container); margin: 80px auto 40px; padding: 0 40px 24px; border-bottom: 1px solid var(--line); }
.coll-future-head h2 { font-size: clamp(34px, 3.2vw, 48px); line-height: 1.05; letter-spacing: -0.02em; margin: 12px 0 14px; color: var(--ink-2); }
.coll-future-head p { color: var(--ink-3); font-size: 15px; line-height: 1.6; max-width: 580px; }

/* dim blocks */
.coll-block { max-width: var(--container); margin: 80px auto; padding: 0 40px; display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: auto auto; gap: 40px 60px; }
.coll-block.dim { opacity: 0.78; }
.coll-block.dim .cb-hero { filter: grayscale(0.7) brightness(0.95); background: var(--paper-2); }
.coll-block.dim .cb-hero::after { content: ''; position: absolute; inset: 0; background: rgba(245,240,232,0.35); pointer-events: none; }
.cb-soon { position: absolute; top: 20px; right: 20px; padding: 6px 12px; background: var(--ink); color: var(--paper); border-radius: 999px; font-size: 10px; letter-spacing: 0.14em; z-index: 2; }
.dim-eyebrow { color: var(--ink-3); }
.coll-block.dim h2 { color: var(--ink-2); }
.coll-block.dim p { color: var(--ink-3); }

/* dim cards */
.coll-block.dim .cb-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.dim-card { display: flex; flex-direction: column; gap: 8px; }
.dim-img { position: relative; aspect-ratio: 4/5; border-radius: var(--r-md); overflow: hidden; background: var(--paper-2); }
.dim-img-placeholder { display: flex; align-items: center; justify-content: center; padding: 18%; }
.dim-img-placeholder svg { width: 100%; height: 100%; }
.dim-img.dim-img-placeholder { background: var(--paper-2); filter: grayscale(0.6) brightness(1); }
.dim-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.dim-label { position: absolute; bottom: 10px; left: 10px; padding: 4px 8px; background: rgba(255,255,255,0.92); color: var(--ink-2); border-radius: 4px; font-size: 10px; letter-spacing: 0.12em; }
.dim-meta { padding: 4px 2px; color: var(--ink-3); }
.dim-meta h4 { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink-2); margin-top: 2px; }

@media (max-width: 900px) {
  .coll-block.dim .cb-items { grid-template-columns: 1fr 1fr; }
}
.coll-block { max-width: var(--container); margin: 80px auto; padding: 0 40px; display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: auto auto; gap: 40px 60px; }
.coll-block .cb-hero { grid-column: 1; grid-row: 1 / span 2; aspect-ratio: 4/5; background: var(--paper-2); border-radius: var(--r-lg); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.coll-block.alt .cb-hero { background: var(--ink); }
.cb-hero svg { width: 80%; max-height: 100%; }
.cb-hero-label { position: absolute; top: 20px; left: 20px; padding: 6px 10px; background: var(--paper); border-radius: 4px; }
.coll-block.alt .cb-hero-label { background: var(--paper); }
.cb-copy { grid-column: 2; }
.cb-copy h2 { margin-bottom: 16px; }
.cb-copy p { color: var(--ink-2); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.cb-stats { display: flex; gap: 10px; color: var(--ink-3); }
.cb-items { grid-column: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ===== CART DRAWER ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(30,20,10,0.35); backdrop-filter: blur(4px); z-index: 200; opacity: 0; pointer-events: none; transition: .3s; }
.cart-overlay.on { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 440px; max-width: 90vw; background: var(--paper); z-index: 201; transform: translateX(100%); transition: transform .35s cubic-bezier(.3,.8,.3,1); display: flex; flex-direction: column; }
.cart-drawer.on { transform: translateX(0); }
.cart-head { padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-family: var(--serif); font-size: 24px; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 28px; display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 72px; height: 90px; object-fit: cover; border-radius: var(--r-sm); }
.cart-item-meta h4 { font-family: var(--serif); font-size: 17px; font-weight: 500; text-transform: none; margin-bottom: 2px; }
.cart-item-meta .small { margin-top: 4px; }
.cart-item-side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item-side strong { font-family: var(--serif); font-size: 18px; }
.cart-item-remove { font-size: 11px; color: var(--ink-3); text-decoration: underline; }
.cart-foot { padding: 20px 28px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 22px; margin-bottom: 14px; }
.cart-foot .btn { width: 100%; justify-content: center; }
.cart-empty { text-align: center; color: var(--ink-3); padding: 40px; }

/* ===== TWEAKS ===== */
.tweaks-panel { position: fixed; right: 24px; bottom: 24px; width: 280px; background: var(--paper); border: 1px solid var(--ink); border-radius: var(--r-md); padding: 16px; z-index: 300; box-shadow: var(--shadow-lg); transform: translateY(120%); transition: transform .3s; }
.tweaks-panel.on { transform: translateY(0); }
.tweaks-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.tweaks-head h4 { font-family: var(--serif); font-size: 18px; text-transform: none; letter-spacing: -0.01em; }
.tweak-row { margin-bottom: 12px; }
.tweak-row label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.tweak-row input[type="range"] { width: 100%; accent-color: var(--warm-2); }
.tweak-row .swatches { display: flex; gap: 6px; }
.tweak-row .swatches button { width: 26px; height: 26px; border-radius: 999px; border: 2px solid var(--line); }
.tweak-row .swatches button.on { border-color: var(--ink); transform: scale(1.1); }
.tweak-row .btn-row { display: flex; gap: 4px; }
.tweak-row .btn-row button { flex: 1; padding: 6px 8px; border-radius: 6px; background: var(--paper-2); font-size: 11px; }
.tweak-row .btn-row button.on { background: var(--ink); color: var(--paper); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 80px; }
  .hero-visual { max-width: 520px; }
  .product-grid, .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .values-grid, .makers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .pdp-main, .story-teaser, .pdp-story, .story-intro, .split, .journal-grid, .care-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .tone-toggle { right: 16px; }
  .journal-feed { grid-template-columns: 1fr; }
  .coll-block { grid-template-columns: 1fr; }
  .coll-block .cb-hero { grid-row: 1; grid-column: 1; aspect-ratio: 16/9; }
  .cb-copy, .cb-items { grid-column: 1; }
  .split-warm, .split-cool { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  h1 { font-size: 38px; }
  .section { padding: 60px 20px; }
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; padding: 12px 20px; }
  .nav-actions .cart-btn span:not(.cart-count) { display: none; }
  .product-grid, .coll-grid, .process-grid, .values-grid, .makers-grid, .footer-cols { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .pdp-main, .section { padding-left: 20px; padding-right: 20px; }
  .cal-stage { grid-template-columns: 1fr; }
  .cal-lamp { padding: 60px 20px 40px; }
  .cal-block { width: 180px; height: 220px; }
  .cal-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== CALENDAR SHOWCASE ========== */
.calendar-feature { background: linear-gradient(180deg, var(--paper) 0%, #1a1612 55%); padding-bottom: 0; }
.calendar-feature .section-head h2 { color: var(--ink); }
.cal-wrap { max-width: 1280px; margin: 0 auto; }
.cal-stage {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  background: #15110d;
  border-radius: var(--r-lg, 22px);
  overflow: hidden;
  margin-top: 28px;
  box-shadow: 0 40px 100px rgba(20,10,5,.35);
}
.cal-lamp {
  position: relative;
  background: radial-gradient(ellipse 70% 60% at 50% 70%, #3a2418 0%, #1a0f08 55%, #0c0705 100%);
  padding: 80px 40px 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  min-height: 520px;
}
.cal-plinth {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 12px;
  background: radial-gradient(ellipse, rgba(229,138,58,.28) 0%, transparent 70%);
  filter: blur(8px);
}
.cal-block {
  position: relative;
  width: 240px; height: 300px;
  background: linear-gradient(175deg, #c9c3b8 0%, #a8a298 40%, #8a8478 100%);
  clip-path: polygon(18% 0%, 82% 0%, 96% 100%, 4% 100%);
  box-shadow: inset -24px 0 40px rgba(0,0,0,.28), inset 24px 0 20px rgba(255,240,220,.08);
  display: flex; align-items: center; justify-content: center;
  transition: filter .6s ease;
}
.cal-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 45%, rgba(255,180,100,.18) 0%, transparent 60%);
  clip-path: polygon(18% 0%, 82% 0%, 96% 100%, 4% 100%);
}
.cal-cutout {
  position: relative;
  width: 110px; height: 110px;
  color: #ffb870;
  filter: drop-shadow(0 0 18px rgba(255,180,100,.85)) drop-shadow(0 0 40px rgba(255,130,50,.55));
  animation: cal-flicker 4s ease-in-out infinite;
}
.cal-cutout svg { display: block; }
@keyframes cal-flicker {
  0%,100% { filter: drop-shadow(0 0 18px rgba(255,180,100,.85)) drop-shadow(0 0 40px rgba(255,130,50,.55)); }
  50%     { filter: drop-shadow(0 0 22px rgba(255,200,130,.95)) drop-shadow(0 0 50px rgba(255,150,60,.7)); }
}
.cal-inner-glow {
  position: absolute; inset: -10px;
  background: radial-gradient(circle, rgba(255,200,130,.35) 0%, transparent 65%);
  pointer-events: none;
}
.cal-switch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4a35a 0%, #8a6430 50%, #3a2814 100%);
  box-shadow: inset -1px -2px 3px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.4);
}
.cal-shadow {
  position: absolute; bottom: -30px; left: -10%; right: -10%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,.55) 0%, transparent 70%);
  filter: blur(8px);
}
.cal-spill {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 120px;
  background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(255,160,80,.22) 0%, transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.cal-mo {
  position: absolute; top: 32px; left: 40px;
  color: rgba(240,225,205,.7);
  font-size: 11px; letter-spacing: .2em;
}

.cal-side {
  padding: 56px 48px;
  background: #f5efe4;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px;
}
.cal-picker {}
.cal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.cal-tile {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 8px 14px;
  background: #fffbf2;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s ease;
}
.cal-tile:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.cal-tile.on { background: #1a1612; border-color: #1a1612; color: #f5d9b2; box-shadow: 0 0 30px rgba(255,160,80,.25); }
.cal-tile-icon { width: 36px; height: 36px; color: var(--ink-2); transition: color .2s; }
.cal-tile.on .cal-tile-icon { color: #ffb870; filter: drop-shadow(0 0 6px rgba(255,160,80,.6)); }
.cal-tile-mo { font-size: 9px; letter-spacing: .16em; color: var(--ink-3); }
.cal-tile.on .cal-tile-mo { color: rgba(245,217,178,.7); }
.cal-tile-name { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink); }
.cal-tile.on .cal-tile-name { color: #f5d9b2; }

.cal-meta { border-top: 1px solid var(--line); padding-top: 22px; }
.cal-meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px dashed var(--line);
}
.cal-meta-row:last-of-type { border-bottom: none; }
.cal-meta-row .quiet { font-family: var(--serif); color: var(--ink-2); font-size: 17px; }
.cal-meta-row strong { font-size: 14px; color: var(--ink); }




/* Mosaic Light — 3-item home collection strip */
.mosaic-strip .mosaic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1180px) { .mosaic-strip .mosaic-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 640px)  { .mosaic-strip .mosaic-grid { grid-template-columns: 1fr; } }

/* Mosaic card — "Awaiting release" greyed state */
.mosaic-card.is-later { pointer-events: auto; }
.mosaic-card.is-later .mosaic-img { position: relative; }
.mosaic-card.is-later .mosaic-img img { filter: grayscale(0.85) brightness(0.92) opacity(0.65); }
.mosaic-card.is-later .mosaic-img::after { content: ''; position: absolute; inset: 0; background: rgba(247, 243, 238, 0.18); pointer-events: none; }
.mosaic-card.is-later .mosaic-edition { background: rgba(28, 24, 20, 0.78); color: var(--paper); }
.mosaic-card.is-later .mosaic-meta h3,
.mosaic-card.is-later .mosaic-meta p,
.mosaic-card.is-later .mosaic-meta .eyebrow-sm { color: var(--ink-3, #8A8580); }
.mosaic-card.is-later:hover .mosaic-img img { transform: none; }

/* Collections page — same cards, smaller + roomier */
.collections-page .coll-feature .mosaic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px; max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.collections-page .coll-feature .mosaic-card { max-width: 320px; justify-self: center; width: 100%; }
.collections-page .coll-feature .mosaic-img { aspect-ratio: 1/1; }
.collections-page .coll-feature .mosaic-meta { padding: 18px 18px 22px; }
.collections-page .coll-feature .mosaic-meta h3 { font-size: 22px; }
@media (max-width: 1000px) {
  .collections-page .coll-feature .mosaic-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .collections-page .coll-feature .mosaic-card:nth-child(3) { grid-column: span 2; max-width: 320px; }
}
@media (max-width: 640px) {
  .collections-page .coll-feature .mosaic-grid { grid-template-columns: 1fr; gap: 36px; }
  .collections-page .coll-feature .mosaic-card:nth-child(3) { grid-column: span 1; }
}
.mosaic-card { display: flex; flex-direction: column; background: var(--paper-2, #FAF7F0); border: 1px solid var(--line, #D9D2C5); border-radius: 20px; overflow: hidden; cursor: pointer; transition: 0.35s; text-decoration: none; color: inherit; }
.mosaic-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(20,17,14,0.12); border-color: var(--warm, #E58A3A); }
.mosaic-img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #14110E; }
.mosaic-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.mosaic-card:hover .mosaic-img img { transform: scale(1.04); }
.mosaic-edition { position: absolute; top: 14px; right: 14px; padding: 5px 11px; background: rgba(242,239,231,0.92); color: #14110E; font-size: 10px; letter-spacing: 0.1em; border-radius: 999px; }
.mosaic-meta { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 8px; }
.mosaic-meta .eyebrow-sm { color: var(--warm, #E58A3A); }
.mosaic-meta h3 { font-family: var(--serif, "Cormorant Garamond"), serif; font-size: 30px; font-weight: 400; line-height: 1.05; margin: 2px 0 6px; letter-spacing: -0.01em; }
.mosaic-meta p { font-size: 14px; line-height: 1.55; color: var(--ink-2, #5C5852); margin: 0 0 8px; text-wrap: pretty; }
.mosaic-meta .coll-arrow { color: var(--warm, #E58A3A); font-size: 18px; }
@media (max-width: 1000px) { .mosaic-strip .mosaic-grid { grid-template-columns: repeat(2, 1fr); } .mosaic-card:nth-child(3) { grid-column: auto; max-width: none; justify-self: stretch; width: auto; } }
@media (max-width: 640px) { .mosaic-strip .mosaic-grid { grid-template-columns: 1fr; } .mosaic-card:nth-child(3) { grid-column: span 1; } }


/* PDP — launch price + benefits + use cases */
.pdp-longtitle { font-size: 13px; line-height: 1.5; color: var(--ink-3, #8A8580); margin: 4px 0 12px; font-weight: 400; text-wrap: pretty; }
.pdp-anchor { font-size: 18px; color: var(--ink-3, #8A8580); text-decoration: line-through; margin-right: 8px; font-family: var(--serif, serif); }
.pdp-coupon { display: inline-block; padding: 4px 10px; background: oklch(0.92 0.08 70); color: oklch(0.4 0.13 50); border-radius: 999px; font-size: 10px; letter-spacing: 0.1em; }
.pdp-benefits { margin: 20px 0; padding: 18px 20px; background: var(--paper-2, #FAF7F0); border-radius: 14px; border: 1px solid var(--line, #D9D2C5); }
.pdp-benefits .mono { display: block; margin-bottom: 10px; color: var(--ink-3, #8A8580); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.pdp-benefits ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pdp-benefits li { font-size: 14px; line-height: 1.55; padding-left: 18px; position: relative; color: var(--ink-1, #1B1715); }
.pdp-benefits li::before { content: '◆'; position: absolute; left: 0; color: var(--warm, #E58A3A); font-size: 10px; top: 4px; }
.pdp-usecases { margin: 16px 0 20px; }
.pdp-usecases .mono { display: block; margin-bottom: 10px; color: var(--ink-3, #8A8580); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.usecase-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.usecase-chip { padding: 7px 14px; background: oklch(0.95 0.02 70); border: 1px solid var(--line, #D9D2C5); border-radius: 999px; font-size: 12px; color: var(--ink-2, #5C5852); }


/* PDP product FAQ */
.pdp-faq { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line, #D9D2C5); display: flex; flex-direction: column; gap: 8px; }
.pdp-faq h4 { display: block; margin: 0 0 8px; color: var(--ink-3, #8A8580); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.pdp-faq-item { padding: 12px 14px; background: var(--paper-2, #FAF7F0); border: 1px solid var(--line, #D9D2C5); border-radius: 10px; cursor: pointer; }
.pdp-faq-item summary { font-size: 14px; font-weight: 500; list-style: none; color: var(--ink-1, #1B1715); position: relative; padding-right: 24px; }
.pdp-faq-item summary::-webkit-details-marker { display: none; }
.pdp-faq-item summary::after { content: '+'; position: absolute; right: 0; top: 0; color: var(--warm, #E58A3A); font-size: 18px; }
.pdp-faq-item[open] summary::after { content: '–'; }
.pdp-faq-item p { font-size: 13px; line-height: 1.6; color: var(--ink-2, #5C5852); margin: 10px 0 0; text-wrap: pretty; }


/* Hero — early-bird subscribe */
.hero-subscribe { margin-top: 28px; max-width: 520px; }
.hero-sub-row { display: flex; flex-direction: column; gap: 10px; padding: 18px 20px; background: rgba(20,17,14,0.04); border: 1px solid var(--line, #D9D2C5); border-radius: 16px; }
.hero-sub-eye { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2, #5C5852); font-size: 11px; letter-spacing: 0.12em; }
.hero-sub-input { display: flex; gap: 8px; }
.hero-sub-input input { flex: 1; padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line, #D9D2C5); background: #fff; font-size: 14px; font-family: inherit; outline: none; transition: 0.2s; min-width: 0; }
.hero-sub-input input:focus { border-color: var(--warm, #E58A3A); box-shadow: 0 0 0 3px rgba(229,138,58,0.15); }
.hero-sub-input .btn { padding: 12px 22px; font-size: 14px; white-space: nowrap; }
.hero-sub-ok { display: none; color: var(--warm, #E58A3A); }
.hero-sub-ok.on { display: block; }


/* Shop — coming soon / coming later states */
.pcard-status { position: absolute; top: 14px; left: 14px; padding: 6px 12px; font-family: var(--mono, "JetBrains Mono"), monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 999px; z-index: 2; }
.pcard-status.soon { background: var(--warm, #E58A3A); color: #14110E; box-shadow: 0 4px 14px rgba(229,138,58,0.4); }
.pcard-status.later { background: rgba(20,17,14,0.65); color: #F2EFE7; backdrop-filter: blur(4px); }
.pcard-soon { box-shadow: 0 0 0 1px var(--warm, #E58A3A); }
.pcard-soon:hover { box-shadow: 0 24px 60px rgba(229,138,58,0.25), 0 0 0 1px var(--warm, #E58A3A); }
.pcard-later { opacity: 0.5; filter: grayscale(0.65); pointer-events: none; }
.pcard-later .pcard-media img { filter: grayscale(1) brightness(0.85); }
.pcard-later:hover { transform: none; box-shadow: none; }
.pcard-later .pcard-quick { display: none; }


/* Hero side — auto-rotating carousel */
.hero-side .hs-carousel { position: relative; width: 100%; height: 100%; }
.hs-carousel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; }
.hs-carousel img.on { opacity: 1; }
.hs-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 2; }
.hs-dots span { width: 5px; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.45); transition: 0.3s; }
.hs-dots span.on { background: #fff; width: 16px; }
