/* ============ KEIVE & CO — base styles ============ */
:root {
  --bg: #f6efe4;
  --bg-2: #ede4d3;
  --bg-3: #e1d4ba;
  --paper: #faf5eb;
  --ink: #1f1a14;
  --ink-2: #4a4036;
  --ink-3: #847868;
  --line: #d4c8b1;
  --line-2: #c9bb9e;
  --gold: #b6862c;       /* warm gold accent */
  --gold-dk: #8a6418;
  --gold-tint: #f0e3c5;
  --rust: #8e5a2c;

  --serif:   "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --reading: "Spectral", "Cormorant Garamond", Georgia, serif;
  --sans:    "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--reading);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold-tint); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 108px); line-height: 0.98; letter-spacing: -0.025em; }
h2 { font-size: clamp(34px, 4.5vw, 64px); line-height: 1.02; }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; }
h4 { font-size: 18px; line-height: 1.25; }

.italic, em { font-style: italic; font-family: var(--serif); }

p { margin: 0 0 1em; }

.reading { font-family: var(--reading); font-size: 17px; line-height: 1.75; color: var(--ink-2); }
.reading p { margin-bottom: 1.3em; }

.serif { font-family: var(--serif); }
.mono  {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.intention {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
}

/* ============ Layout ============ */
.app { min-height: 100vh; display: flex; flex-direction: column; }
.container      { max-width: 1320px; margin: 0 auto; padding: 0 36px; width: 100%; }
.container-wide { max-width: 1680px; margin: 0 auto; padding: 0 36px; width: 100%; }
/* section setwidth: Box=.container(1320) · Fluid=.container-fluid(wide 1680) · Full=.full(100%) */
.container-fluid { max-width: 1680px; margin: 0 auto; padding: 0 36px; width: 100%; }
.full           { max-width: 100%;  margin: 0 auto; padding: 0 36px; width: 100%; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; width: 100%; }
/* product-card sale/sold-out + PDP sale-path treatments */
.product-card-body .price .was{ color:var(--ink-3); font-weight:400; font-size:12px; margin-left:6px; }
.badge.badge-soldout{ background:var(--ink-3); }
.product-tag{ display:inline-block; font-family:var(--mono); font-size:9px; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-dk); vertical-align:super; margin-left:4px; }
.product-tag.hide{ display:none; }
.pdp-info .price .product-single__price--compare,.pdp-info .price .old_price{ color:var(--ink-3); font-size:.72em; }
.hide{ display:none; }
.qty-stepper input{ width:46px; height:52px; text-align:center; border:0; background:transparent; font-family:var(--mono); font-size:13px; color:var(--ink); -moz-appearance:textfield; appearance:textfield; }
.qty-stepper input::-webkit-outer-spin-button,.qty-stepper input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.section    { padding: 120px 0; }
.section-sm { padding: 72px 0; }

@media (max-width: 700px) {
  .container, .container-wide { padding: 0 22px; }
  .section { padding: 80px 0; }
}

/* ============ Promo bar ============ */
.promo {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 16px;
}

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,239,228,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 30px; }
.nav-right { justify-content: flex-end; }
.nav-link {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold-dk); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--gold-dk); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.brand {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.32em;
  font-weight: 500;
  text-align: center;
  color: var(--ink);
  display: inline-block;
}
.brand .amp { font-style: italic; color: var(--gold-dk); margin: 0 2px; }
.cart-btn { display: inline-flex; align-items: center; gap: 8px; position: relative; }
.cart-count {
  background: var(--gold-dk); color: var(--paper);
  font-family: var(--mono); font-size: 9px;
  border-radius: 999px; min-width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}
.icon-btn { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.15s ease; color: var(--ink); }
.icon-btn:hover { background: var(--bg-2); }
.menu-btn { display: none; }

@media (max-width: 980px) {
  .nav-inner { height: 68px; }
  .nav-left .nav-link, .nav-right .nav-link { display: none; }
  .menu-btn { display: inline-flex; }
  .brand { font-size: 21px; letter-spacing: 0.26em; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 17px 32px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: background 0.18s ease, color 0.18s ease, border 0.18s ease;
  cursor: pointer;
  min-height: 50px;
}
.btn:hover { background: var(--gold-dk); border-color: var(--gold-dk); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-gold { background: var(--gold-dk); border-color: var(--gold-dk); color: var(--paper); }
.btn-gold:hover { background: var(--ink); border-color: var(--ink); }
.btn-link {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 4px;
  display: inline-block;
}
.btn-link:hover { color: var(--gold-dk); }
.btn-block { width: 100%; }

/* ============ Image placeholder ============ */
.ph { position: relative; background: var(--bg-2); overflow: hidden; display: block; }
.ph svg, .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph img.img-failed { display: none; }
.ph-caption {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-2);
  background: rgba(246,239,228,0.85); padding: 4px 8px;
}

/* ============ Hero — calm splash (ODE TO SELF inspired) ============ */
.hero-calm {
  background: var(--bg);
  padding: 12px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-calm-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-badge {
  position: relative;
  width: clamp(180px, 16vw, 220px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.brand-badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
@media (max-width: 700px) {
  .brand-badge-ring { transform: rotate(-120deg); }
}
.brand-badge-text {
  font-family: var(--mono);
  font-size: 19px;
  letter-spacing: 0.10em;
  fill: var(--ink);
  text-transform: uppercase;
  font-weight: 500;
}
.brand-badge-blob {
  width: 62%;
  aspect-ratio: 1 / 1;
  background: var(--ink);
  border-radius: 52% 48% 56% 44% / 48% 54% 46% 52%;
}

@media (max-width: 700px) {
  .hero-calm { padding: 8px 0 12px; }
  .brand-badge { width: 48vw; max-width: 180px; }
  .brand-badge-text { font-size: 16px; letter-spacing: 0.08em; }
}

/* ============ Editorial split below splash ============ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.hero-split-text {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px clamp(32px, 5vw, 80px);
}
.hero-split-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.12;
  color: var(--paper);
  margin: 0;
  max-width: 14ch;
}
.hero-split-quote em {
  color: var(--gold-tint);
  font-style: italic;
}
.hero-split-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  /* On mobile: image first, then text */
  .hero-split-img { order: 1; aspect-ratio: 4/5; }
  .hero-split-text { order: 2; padding: 56px 24px; text-align: center; align-items: center; }
  .hero-split-quote { max-width: none; }
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px - 38px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}
.hero-img { position: absolute; inset: 0; }
.hero-img .ph { width: 100%; height: 100%; aspect-ratio: auto; }
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,26,20,0.15) 0%, rgba(31,26,20,0) 30%, rgba(31,26,20,0.65) 100%),
    linear-gradient(90deg, rgba(31,26,20,0.4) 0%, rgba(31,26,20,0) 50%);
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0 88px; color: var(--paper); }
.hero h1 { color: var(--paper); font-style: normal; }
.hero h1 em { color: var(--gold-tint); }
.hero-meta {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 64px;
}
.hero-meta .col { max-width: 480px; }
.hero-meta .eyebrow { color: var(--gold-tint); }
.hero-tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); color: var(--gold-tint);
  letter-spacing: 0.02em; margin-top: 18px;
}
.hero-cta { color: var(--paper); border-color: rgba(246,239,228,0.6); }
.hero-cta:hover { color: var(--gold-tint); border-color: var(--gold-tint); }

@media (max-width: 800px) {
  .hero-meta { grid-template-columns: 1fr; gap: 28px; }
  .hero-inner { padding: 60px 0 64px; }
}

/* ============ Cards / product grids ============ */
.grid { display: grid; gap: 48px 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 520px)  { .grid-4 { grid-template-columns: 1fr; } }

.product-card { display: flex; flex-direction: column; gap: 16px; cursor: pointer; min-width: 0; }
.product-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-2);
}
.product-card-img .ph {
  position: absolute; inset: 0; aspect-ratio: auto;
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.2,0.6,0.2,1);
}
.product-card-img .ph:nth-child(2) { opacity: 0; }
.product-card:hover .ph:nth-child(1) { opacity: 0; }
.product-card:hover .ph:nth-child(2) { opacity: 1; transform: scale(1.03); }
.product-card-img .badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--paper);
  background: rgba(31,26,20,0.78); padding: 5px 10px;
}
.product-card-body { display: flex; flex-direction: column; gap: 6px; padding: 0 2px; }
.product-card-body .row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 12px; }
.product-card-body .name { font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.product-card-body .price { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; white-space: nowrap; color: var(--ink-2); }
.product-card-body .intention { font-size: 15px; color: var(--ink-2); margin-top: 2px; }
.product-card-body .family { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }

/* ============ Section header ============ */
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.sec-head .left p { max-width: 460px; color: var(--ink-2); margin-top: 14px; }
.sec-head .right { display: flex; gap: 24px; align-items: center; }

/* ============ Tenets row ============ */
.tenets {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tenet { padding: 44px 32px; border-right: 1px solid var(--line); }
.tenet:last-child { border-right: 0; }
.tenet .n { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold-dk); margin-bottom: 14px; }
.tenet .t { font-family: var(--serif); font-size: 23px; line-height: 1.2; }
@media (max-width: 900px) {
  .tenets { grid-template-columns: 1fr 1fr; }
  .tenet:nth-child(2) { border-right: 0; }
  .tenet:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ============ Editorial split ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 1000px) { .split { grid-template-columns: 1fr; gap: 40px; } .split.reverse > :first-child { order: 0; } }

/* ============ Category tiles ============ */
.cat-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.cat-tile { position: relative; cursor: pointer; overflow: hidden; }
.cat-tile .ph { aspect-ratio: auto; height: 100%; min-height: 320px; transition: transform 0.6s cubic-bezier(0.2,0.6,0.2,1); }
.cat-tile:hover .ph { transform: scale(1.02); }
.cat-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31,26,20,0.55) 100%);
  pointer-events: none;
}
.cat-tile-label {
  position: absolute; left: 28px; bottom: 28px; right: 28px;
  display: flex; justify-content: space-between; align-items: end;
  color: var(--paper); z-index: 2;
}
.cat-tile-label h3 { color: var(--paper); font-size: 32px; }
.cat-tile-label .sub { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold-tint); margin-top: 4px; display: block; }
.cat-tile-label .arr { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--gold-tint); }
.cat-tile.big { grid-column: 1; grid-row: 1 / 3; }
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cat-tile.big { grid-column: 1 / 3; grid-row: auto; }
}
@media (max-width: 540px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-tile.big { grid-column: 1; }
}

/* ============ Newsletter ============ */
.news { background: var(--ink); color: var(--paper); padding: 140px 0; position: relative; overflow: hidden; }
.news::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 10%, rgba(182,134,44,0.18), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(182,134,44,0.10), transparent 60%);
  pointer-events: none;
}
.news h2 { color: var(--paper); max-width: 760px; position: relative; }
.news h2 em { color: var(--gold-tint); }
.news .form { display: flex; gap: 12px; margin-top: 36px; max-width: 540px; position: relative; }
.news .form input {
  flex: 1; background: transparent; border: 0; border-bottom: 1px solid var(--paper);
  color: var(--paper); padding: 14px 0; font-family: var(--reading); font-size: 16px;
  outline: none;
}
.news .form input::placeholder { color: rgba(246,239,228,0.5); }
.news .form button {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold-tint); padding-bottom: 10px; color: var(--gold-tint);
}

/* ============ Footer ============ */
.footer { background: var(--bg-2); padding: 96px 0 36px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 80px; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 22px; color: var(--ink-3); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer ul a:hover { color: var(--gold-dk); }
.footer-brand .brand { text-align: left; margin-bottom: 18px; }
.footer-brand p { color: var(--ink-2); font-size: 15px; max-width: 360px; line-height: 1.6; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); padding-top: 28px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; } }

/* ============ Cart drawer ============ */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(31,26,20,0.5);
  z-index: 100; opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 480px; max-width: 100vw;
  background: var(--bg); z-index: 101;
  transform: translateX(100%); transition: transform 0.34s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 28px 32px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 24px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 32px; }
.drawer-foot { padding: 28px 32px; border-top: 1px solid var(--line); }
.drawer-foot .row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.drawer-foot .row.total { font-family: var(--serif); font-size: 24px; margin: 14px 0 22px; }

.cart-item { display: grid; grid-template-columns: 96px 1fr auto; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: 0; }
.cart-item .ph { aspect-ratio: 4/5; }
.cart-item-info .name { font-family: var(--serif); font-size: 19px; margin-bottom: 4px; display: block; }
.cart-item-info .opts { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.cart-item-info .qty { margin-top: 12px; display: inline-flex; align-items: center; border: 1px solid var(--line-2); }
.cart-item-info .qty button { width: 30px; height: 30px; }
.cart-item-info .qty span { width: 32px; text-align: center; font-family: var(--mono); font-size: 12px; }
.cart-item-right { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; gap: 8px; }
.cart-item-right .price { font-family: var(--mono); font-size: 13px; }
.cart-item-right .rm { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.cart-item-right .rm:hover { color: var(--gold-dk); }

.empty-cart { text-align: center; padding: 80px 20px; }
.empty-cart h4 { font-family: var(--serif); font-size: 28px; margin-bottom: 12px; }

/* ============ PLP (collection / shop) ============ */
.plp-header { padding: 80px 0 32px; }
.plp-header h1 { font-size: clamp(48px, 6vw, 92px); }
.plp-header .intention-line {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: var(--gold-dk); margin-top: 14px;
}
.plp-header p { max-width: 580px; color: var(--ink-2); margin-top: 18px; font-size: 16px; line-height: 1.7; }
.plp-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
  position: sticky; top: 84px; background: var(--bg); z-index: 10;
}
.plp-toolbar .left, .plp-toolbar .right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.chip {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 16px; border: 1px solid var(--line-2); border-radius: 999px;
  transition: all 0.15s ease; color: var(--ink-2);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.select {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  background: transparent; border: 0; padding: 9px 28px 9px 14px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 8px) 50%;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  appearance: none;
}

@media (max-width: 980px) { .plp-toolbar { top: 68px; } }

/* ============ PDP ============ */
.pdp { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; padding: 40px 0 120px; }
@media (max-width: 1100px) { .pdp { grid-template-columns: 1fr; gap: 48px; } }
.pdp-gallery { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
.pdp-gallery.has-thumbs { grid-template-columns: 88px 1fr; }
.pdp-thumbs { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 110px; }
.pdp-thumb { aspect-ratio: 4/5; cursor: pointer; border: 1px solid transparent; transition: border 0.15s ease; overflow: hidden; }
.pdp-thumb.active { border-color: var(--gold-dk); }
.pdp-main { display: flex; flex-direction: column; gap: 18px; }
.pdp-main figure { margin: 0; }
.pdp-main .ph { aspect-ratio: 4/5; width: 100%; }
@media (max-width: 720px) {
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; position: static; overflow-x: auto; }
  .pdp-thumb { min-width: 70px; }
}

.pdp-info { position: sticky; top: 110px; align-self: start; }
.pdp-info .crumb { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.pdp-info .family-line { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 14px; }
.pdp-info h1 { font-size: clamp(40px, 4.4vw, 60px); margin-bottom: 14px; }
.pdp-info .intention {
  font-family: var(--serif); font-style: italic; font-size: 21px;
  line-height: 1.45; color: var(--ink-2);
  padding-left: 18px; border-left: 1px solid var(--gold-dk);
  margin-bottom: 28px;
}
.pdp-info .price { font-family: var(--mono); font-size: 16px; letter-spacing: 0.06em; margin-bottom: 32px; }
.pdp-info .lede { color: var(--ink-2); margin-bottom: 32px; max-width: 480px; font-size: 16px; line-height: 1.7; }

.notes-card { background: var(--paper); border: 1px solid var(--line); padding: 24px 26px; margin-bottom: 32px; }
.notes-card .heading { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 18px; }
.note-row { display: grid; grid-template-columns: 80px 1fr; gap: 18px; padding: 10px 0; border-top: 1px solid var(--line); align-items: baseline; }
.note-row:first-of-type { border-top: 0; padding-top: 0; }
.note-row .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.note-row .v { font-family: var(--serif); font-size: 17px; line-height: 1.4; color: var(--ink); }

.opt-block { padding: 22px 0; border-top: 1px solid var(--line); }
.opt-block .label {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 14px;
}
.opt-block .label .val { color: var(--ink-2); }
.opt-row { display: flex; gap: 10px; flex-wrap: wrap; }
.opt {
  min-width: 64px; height: 44px; padding: 0 18px;
  border: 1px solid var(--line-2); background: var(--paper);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s ease; color: var(--ink-2);
}
.opt:hover { border-color: var(--ink); color: var(--ink); }
.opt.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.qty-add { display: grid; grid-template-columns: auto 1fr; gap: 12px; margin-top: 28px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--ink); }
.qty-stepper button { width: 52px; height: 52px; }
.qty-stepper span { width: 40px; text-align: center; font-family: var(--mono); font-size: 13px; }

.trust-row {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 22px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row span::before { content: "✓"; color: var(--gold-dk); }

/* PDP narrative section (long form description) */
.pdp-story { background: var(--bg-2); padding: 96px 0; }
.pdp-story .arc {
  display: grid; gap: 56px;
}
.pdp-story .arc-item { display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start; }
.pdp-story .arc-item .label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dk); padding-top: 8px;
}
.pdp-story .arc-item .label small { display: block; color: var(--ink-3); margin-top: 6px; font-size: 10px; letter-spacing: 0.18em; }
.pdp-story .arc-item .body { font-family: var(--reading); font-size: 18px; line-height: 1.7; color: var(--ink); }
@media (max-width: 800px) { .pdp-story .arc-item { grid-template-columns: 1fr; gap: 12px; } }

.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; text-align: left; }
.acc-head .t { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.acc-head .plus { width: 16px; height: 16px; position: relative; }
.acc-head .plus::before, .acc-head .plus::after { content: ""; position: absolute; background: var(--ink); }
.acc-head .plus::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-0.5px); }
.acc-head .plus::after { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-0.5px) scaleY(1); transition: transform 0.2s ease; }
.acc-item.open .acc-head .plus::after { transform: translateX(-0.5px) scaleY(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc-body-inner { padding: 0 0 24px; color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }
.acc-item.open .acc-body { max-height: 480px; }

.spec { display: grid; grid-template-columns: 160px 1fr; padding: 14px 0; border-top: 1px solid var(--line); font-size: 14px; }
.spec:first-of-type { border-top: 0; }
.spec .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }

/* layering callout */
.layering-card { background: var(--paper); border: 1px solid var(--line); padding: 28px 30px; margin-top: 32px; display: grid; gap: 16px; }
.layering-card .heading { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dk); }
.layering-card .pairs { display: flex; gap: 12px; flex-wrap: wrap; }
.layering-pair {
  font-family: var(--serif); font-size: 16px;
  padding: 8px 14px; background: var(--bg-2); border: 1px solid var(--line);
}
.layering-pair em { color: var(--gold-dk); margin: 0 6px; font-size: 13px; }

/* ============ Editorial reading layout ============ */
.editorial { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.editorial .lede { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 30px); line-height: 1.35; color: var(--ink); margin-bottom: 1.4em; }
.editorial p { font-family: var(--reading); font-size: 18px; line-height: 1.85; color: var(--ink); margin-bottom: 1.4em; }
.editorial h2 { margin: 2em 0 0.6em; }
.editorial h3 { margin: 1.6em 0 0.5em; font-style: italic; }
.editorial blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.3;
  margin: 64px 0; padding-left: 36px;
  border-left: 2px solid var(--gold-dk); color: var(--ink);
}
.editorial .drop-cap::first-letter {
  font-family: var(--serif); float: left; font-size: 5.4em; line-height: 0.9;
  padding: 0.08em 0.12em 0 0; color: var(--gold-dk); font-weight: 500;
}
.editorial hr { border: 0; height: 1px; background: var(--line); margin: 56px auto; max-width: 200px; }

.journal-card { display: flex; flex-direction: column; gap: 16px; cursor: pointer; }
.journal-card .ph { aspect-ratio: 5/4; }
.journal-card .meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.journal-card h3 { font-size: 26px; line-height: 1.2; }
.journal-card:hover h3 { color: var(--gold-dk); }
.journal-card p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* ============ Checkout / forms ============ */
.co { display: grid; grid-template-columns: 1.4fr 1fr; gap: 88px; padding: 56px 0 120px; }
@media (max-width: 1000px) { .co { grid-template-columns: 1fr; gap: 40px; } }
.co-step { padding: 32px 0; border-top: 1px solid var(--line); }
.co-step:last-child { border-bottom: 1px solid var(--line); }
.co-step-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 22px; }
.co-step-num { font-family: var(--mono); font-size: 12px; color: var(--gold-dk); letter-spacing: 0.18em; }
.co-step h3 { font-size: 26px; }
.co-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.co-form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line-2); background: var(--paper);
  padding: 15px 16px; font-family: var(--reading); font-size: 15px;
  color: var(--ink); outline: none;
  transition: border 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-dk); }
.field.error input, .field.error select { border-color: #b04a3a; }
.field .err { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: #b04a3a; }
.field-help { font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.12em; }

.co-summary { background: var(--bg-2); padding: 36px; position: sticky; top: 110px; align-self: start; border: 1px solid var(--line); }
.co-summary h4 { font-size: 14px; margin-bottom: 22px; font-family: var(--mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.co-line { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; gap: 16px; }
.co-line .name { font-family: var(--serif); font-size: 17px; }
.co-totals { padding-top: 18px; }
.co-totals .row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; }
.co-totals .row.tot { font-family: var(--serif); font-size: 24px; padding: 18px 0 0; border-top: 1px solid var(--line); margin-top: 10px; }

.radio-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--line-2); cursor: pointer; transition: border 0.15s ease; background: var(--paper); }
.radio-card.active { border-color: var(--ink); }
.radio-card .dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--ink-3); position: relative; flex-shrink: 0; }
.radio-card.active .dot { border-color: var(--ink); }
.radio-card.active .dot::after { content: ""; position: absolute; inset: 3px; background: var(--gold-dk); border-radius: 50%; }
.radio-card .info { flex: 1; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.radio-card .info .t { font-size: 15px; font-family: var(--serif); }
.radio-card .info .sub { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }

.trust-strip {
  margin-top: 28px; padding: 16px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

/* ============ Mobile menu ============ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg); transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; padding: 96px 32px 40px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 32px; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu a:hover { color: var(--gold-dk); }

/* ============ Account ============ */
.auth-wrap { max-width: 480px; margin: 0 auto; padding: 80px 24px; }
.auth-wrap h1 { font-size: clamp(40px, 5vw, 56px); margin-bottom: 14px; }
.auth-wrap .sub { color: var(--ink-2); margin-bottom: 40px; font-size: 16px; }
.auth-wrap .form { display: grid; gap: 18px; }
.auth-wrap .alt { text-align: center; margin-top: 28px; font-size: 14px; color: var(--ink-2); }
.auth-wrap .alt a { color: var(--gold-dk); border-bottom: 1px solid var(--gold-dk); }

.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 64px; padding: 64px 0 120px; }
@media (max-width: 900px) { .account-layout { grid-template-columns: 1fr; gap: 32px; } }
.account-sidebar ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.account-sidebar li a {
  display: block; padding: 12px 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); border-left: 2px solid transparent;
}
.account-sidebar li a:hover { color: var(--ink); background: var(--bg-2); }
.account-sidebar li a.active { color: var(--ink); border-left-color: var(--gold-dk); background: var(--bg-2); }

.order-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 24px; align-items: center;
  padding: 22px 0; border-top: 1px solid var(--line); font-size: 14px;
}
.order-row .order-num { font-family: var(--mono); font-size: 12px; }
.order-row .status { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; }
.order-row .status.shipped { color: var(--gold-dk); }
.order-row .status.delivered { color: var(--ink-3); }
.order-row .status.processing { color: var(--rust); }

.address-card { padding: 24px; border: 1px solid var(--line); background: var(--paper); position: relative; }
.address-card .pin { position: absolute; top: 18px; right: 18px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dk); }
.address-card h4 { font-family: var(--serif); font-size: 20px; margin-bottom: 10px; }
.address-card p { color: var(--ink-2); margin-bottom: 0; font-size: 14px; line-height: 1.6; }
.address-card .actions { display: flex; gap: 16px; margin-top: 20px; }

/* ============ Misc ============ */
.divider { height: 1px; background: var(--line); margin: 0; }
.center { text-align: center; }
.muted { color: var(--ink-2); }
.fade-in { animation: fadeIn 0.5s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--paper);
  padding: 14px 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  z-index: 200; opacity: 0; transition: all 0.28s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* 404 */
.not-found { padding: 120px 0; text-align: center; min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 24px; }
.not-found .num { font-family: var(--serif); font-size: clamp(120px, 18vw, 240px); line-height: 1; color: var(--gold-dk); }

/* category grid (overview) */
.cats-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 96px; }
@media (max-width: 900px) { .cats-overview { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .cats-overview { grid-template-columns: 1fr; } }
.cats-overview .cat-card { position: relative; overflow: hidden; }
.cats-overview .cat-card .ph { aspect-ratio: 4/5; }
.cats-overview .cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(31,26,20,0.6) 100%); pointer-events: none;
}
.cats-overview .cat-card .label {
  position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; color: var(--paper);
}
.cats-overview .cat-card .label h3 { color: var(--paper); margin-bottom: 6px; }
.cats-overview .cat-card .label .sub { font-family: var(--serif); font-style: italic; color: var(--gold-tint); font-size: 15px; }
