/* ============================================================
   VACATION STOCK — Artful Travel Images
   Brand: Canela-style serif (Fraunces) + Suisse-style sans (Inter)
   Palette: #111111 #333333 #6B6761 #DBD1C5 #F5F3EE #C45A3C #B08A5A
   ============================================================ */

:root {
  --ink: #111111;
  --charcoal: #333333;
  --stone: #6B6761;
  --sand: #DBD1C5;
  --cream: #F5F3EE;
  --coral: #C45A3C;
  --gold: #B08A5A;
  --white: #FFFFFF;

  --serif: "Fraunces", "Canela", Georgia, serif;
  --sans: "Inter", "Suisse International", -apple-system, Helvetica, sans-serif;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- type ---------- */

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.display {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 340;
}

.h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 380; }
.h3 { font-size: 1.3rem; font-weight: 420; }

.accent-i {
  font-style: italic;
  color: var(--coral);
  font-weight: 360;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}

.eyebrow--dark { color: var(--sand); }

.lede { font-size: 1.05rem; color: var(--charcoal); max-width: 56ch; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover { background: var(--ink); color: var(--cream); }

.btn--light { color: var(--cream); }
.btn--light:hover { background: var(--cream); color: var(--ink); }

.btn--coral {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--cream);
}
.btn--coral:hover { background: #A84A30; border-color: #A84A30; color: var(--cream); }

.btn--full { display: block; width: 100%; text-align: center; }

/* ---------- header / nav ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}

.site-head--dark {
  background: #101010;
  border-bottom: 1px solid rgba(219, 209, 197, 0.14);
  color: var(--cream);
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 420;
  letter-spacing: 0.005em;
  margin-right: auto;
  white-space: nowrap;
}

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--coral); }

.nav-icons { display: flex; gap: 18px; align-items: center; }

.nav-icons button, .nav-icons a {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.85;
  position: relative;
  padding: 2px;
}
.nav-icons button:hover, .nav-icons a:hover { opacity: 1; }
.nav-icons svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  background: var(--coral);
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  padding: 0 4px;
  display: none;
}
.cart-badge.on { display: block; }

.nav-toggle { display: none; }

/* ---------- hero: gallery room ---------- */

.hero {
  background:
    radial-gradient(ellipse 110% 70% at 62% 30%, #2a2724 0%, #151413 58%, #0e0d0c 100%);
  color: var(--cream);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  padding-top: clamp(60px, 9vh, 110px);
  padding-bottom: clamp(70px, 10vh, 130px);
}

.hero-copy .display { margin: 18px 0 22px; }

.hero-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 34px;
}

/* the framed artwork on the wall */
.gallery-wall { position: relative; padding: 30px 0 10px; }

.gallery-wall::before {           /* spotlight cone */
  content: "";
  position: absolute;
  inset: -40px -60px auto -60px;
  height: 130%;
  background: radial-gradient(ellipse 60% 55% at 50% 34%, rgba(240, 228, 208, 0.13), transparent 70%);
  pointer-events: none;
}

.frame {
  position: relative;
  background: #060606;
  padding: clamp(10px, 1.4vw, 16px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.4);
}

.frame--mat { background: #060606; }
.frame--mat .frame-mat {
  background: #EDE9E0;
  padding: clamp(16px, 2.4vw, 30px);
}

.frame img { width: 100%; height: auto; }

.bench {
  width: 46%;
  margin: 46px auto 0;
  position: relative;
  height: 34px;
}
.bench::before {                  /* seat */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 9px;
  background: #1e1c1a;
  border-radius: 2px;
}
.bench::after {                   /* legs + floor shadow */
  content: "";
  position: absolute;
  top: 9px; left: 8%; right: 8%;
  height: 22px;
  background:
    linear-gradient(#191817, #191817) left / 6px 22px no-repeat,
    linear-gradient(#191817, #191817) right / 6px 22px no-repeat,
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(0,0,0,0.5), transparent 70%);
}

/* ---------- value props ---------- */

.value-props {
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 0;
}

.prop {
  text-align: center;
  padding: 6px 22px;
  border-left: 1px solid var(--sand);
}
.prop:first-child { border-left: none; }

.prop svg {
  width: 26px; height: 26px;
  margin: 0 auto 14px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.3;
}

.prop-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.prop-sub { font-size: 0.8rem; color: var(--stone); line-height: 1.5; }

/* ---------- section scaffolding ---------- */

.section { padding: clamp(56px, 8vh, 96px) 0; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.view-all {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 0.2s;
}
.view-all:hover { color: var(--coral); }

/* ---------- collection cards ---------- */

.collection-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.c-card {
  background: var(--white);
  border: 1px solid var(--sand);
  transition: transform 0.3s, box-shadow 0.3s;
}
.c-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.c-card .thumb { aspect-ratio: 4 / 5; overflow: hidden; background: var(--charcoal); }
.c-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.c-card:hover .thumb img { transform: scale(1.04); }

.c-meta { padding: 14px 16px 16px; }

.c-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.c-count { font-size: 0.72rem; color: var(--stone); margin-top: 3px; }

/* big collection cards (collections page) */
.collection-big {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.collection-big .c-card .thumb { aspect-ratio: 4 / 3; }
.collection-big .c-meta { padding: 20px 22px 24px; }
.collection-big .c-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 420; letter-spacing: 0; text-transform: none; }
.collection-big .c-desc { font-size: 0.85rem; color: var(--stone); margin-top: 8px; }
.collection-big .c-count { margin-top: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.66rem; font-weight: 600; color: var(--gold); }

/* ---------- artwork grid ---------- */

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 26px 22px;
}

.art-card { position: relative; }

.art-card .thumb {
  background: var(--charcoal);
  overflow: hidden;
  border: 1px solid var(--sand);
}
.art-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, opacity 0.3s; }
.art-card:hover .thumb img { transform: scale(1.03); }

.art-card.landscape { grid-column: span 2; }
.art-card .thumb { aspect-ratio: 4 / 5; }
.art-card.landscape .thumb { aspect-ratio: 8 / 5.05; }

.art-meta { padding: 12px 2px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }

.art-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 440; }
.art-loc { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); margin-top: 2px; }
.art-price { font-size: 0.78rem; color: var(--charcoal); white-space: nowrap; }
.art-price span { color: var(--stone); }

/* filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }

.chip {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--sand);
  color: var(--charcoal);
  transition: all 0.2s;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* ---------- dark statement band ---------- */

.band {
  background:
    radial-gradient(ellipse 90% 130% at 20% 0%, #1d1b19 0%, #111111 60%),
    var(--ink);
  color: var(--cream);
  padding: clamp(64px, 9vh, 110px) 0;
}

.band .h2 { max-width: 20ch; }
.band-rule { width: 44px; height: 2px; background: var(--coral); margin: 26px 0; }
.band-url {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- product page ---------- */

.crumbs { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-bottom: 30px; }
.crumbs a:hover { color: var(--coral); }
.crumbs span { margin: 0 8px; color: var(--sand); }

.product {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.product-stage {
  background:
    radial-gradient(ellipse 100% 80% at 50% 20%, #292623 0%, #161514 65%, #100f0e 100%);
  padding: clamp(36px, 5vw, 64px) clamp(28px, 5vw, 72px) clamp(30px, 4vw, 48px);
  position: sticky;
  top: 96px;
}

.product-stage .frame { max-width: 480px; margin: 0 auto; }
.product-stage .bench { margin-top: 34px; }

.p-collection { color: var(--gold); }
.p-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 380; margin: 12px 0 4px; }
.p-loc { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
.p-desc { margin: 22px 0 8px; color: var(--charcoal); max-width: 52ch; }

.p-edition {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--sand);
  padding: 7px 12px;
}

/* buy panel */
.buy-tabs { display: grid; grid-template-columns: 1fr 1fr; margin: 30px 0 0; border: 1px solid var(--ink); }

.buy-tab {
  padding: 14px 10px;
  background: transparent;
  border: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  transition: all 0.2s;
}
.buy-tab.active { background: var(--ink); color: var(--cream); }

.buy-pane { border: 1px solid var(--sand); border-top: none; padding: 26px 24px 28px; background: var(--white); }

.opt-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 18px 0 10px;
}
.opt-label:first-child { margin-top: 0; }

.opt-row { display: flex; flex-wrap: wrap; gap: 9px; }

.opt {
  border: 1px solid var(--sand);
  background: transparent;
  padding: 10px 16px;
  font-size: 0.78rem;
  color: var(--charcoal);
  transition: all 0.2s;
}
.opt:hover { border-color: var(--ink); }
.opt.active { border-color: var(--ink); background: var(--ink); color: var(--cream); }

.opt small { display: block; font-size: 0.68rem; opacity: 0.65; }

.lic-opt { flex: 1 1 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; }
.lic-opt .lic-name { font-weight: 600; font-size: 0.8rem; }
.lic-opt .lic-sub { font-size: 0.72rem; opacity: 0.7; margin-top: 2px; }
.lic-opt .lic-price { font-family: var(--serif); font-size: 1.1rem; }

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 24px 0 16px;
  padding-top: 18px;
  border-top: 1px solid var(--sand);
}
.price-big { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.price-note { font-size: 0.72rem; color: var(--stone); }

/* share row */
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.share-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-right: 6px;
}

.share-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sand);
  background: transparent;
  color: var(--charcoal);
  transition: all 0.2s;
}
.share-btn:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.share-btn svg { width: 16px; height: 16px; fill: currentColor; }
.share-btn.stroke svg { fill: none; stroke: currentColor; stroke-width: 1.6; }

/* details accordion */
.detail { border-bottom: 1px solid var(--sand); }
.detail summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.detail summary::-webkit-details-marker { display: none; }
.detail summary::after { content: "+"; font-family: var(--serif); font-size: 1.1rem; color: var(--gold); }
.detail[open] summary::after { content: "–"; }
.detail p { padding: 0 2px 18px; font-size: 0.85rem; color: var(--charcoal); }

/* ---------- about / licensing ---------- */

.statement {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 380;
  line-height: 1.35;
  max-width: 26ch;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--sand);
  border-left: 1px solid var(--sand);
}
.value-cell {
  border-right: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 34px 26px;
  text-align: center;
}
.value-cell svg { width: 26px; height: 26px; margin: 0 auto 16px; stroke: var(--ink); fill: none; stroke-width: 1.3; }

.lic-table { width: 100%; border-collapse: collapse; }
.lic-table th, .lic-table td { border: 1px solid var(--sand); padding: 14px 18px; text-align: left; font-size: 0.85rem; vertical-align: top; }
.lic-table th { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; background: var(--white); }
.lic-table td:first-child { font-weight: 600; }

/* ---------- footer ---------- */

.site-foot {
  background: #0F0F0F;
  color: var(--cream);
  padding: clamp(52px, 8vh, 84px) 0 40px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(219, 209, 197, 0.14);
}

.foot-title { font-family: var(--serif); font-size: 1.7rem; font-weight: 380; }
.foot-sub { color: var(--sand); font-size: 0.85rem; margin-top: 8px; opacity: 0.8; }

.subscribe { display: flex; }
.subscribe input {
  flex: 1;
  background: #1B1A19;
  border: 1px solid rgba(219, 209, 197, 0.22);
  border-right: none;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.85rem;
  padding: 14px 16px;
  outline: none;
}
.subscribe input::placeholder { color: rgba(219, 209, 197, 0.5); }
.subscribe .btn--coral { border-width: 1px; }

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  padding: 30px 0 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.foot-links a { opacity: 0.7; }
.foot-links a:hover { opacity: 1; color: var(--coral); }

.foot-copy { text-align: center; margin-top: 22px; font-size: 0.72rem; color: rgba(219, 209, 197, 0.45); }

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- micro-interactions ---------- */

.nav-links a {
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.view-all { transition: color 0.2s, letter-spacing 0.25s; }
.view-all:hover { letter-spacing: 0.24em; }

.btn { transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s; }
.btn:active { transform: translateY(1px); }

/* ---------- product stage: room view ---------- */

.stage-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.stage-tab {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(219, 209, 197, 0.3);
  color: var(--sand);
  transition: all 0.2s;
}
.stage-tab:hover { border-color: var(--sand); }
.stage-tab.active { background: var(--sand); border-color: var(--sand); color: var(--ink); }

.room-scene {
  position: relative;
  aspect-ratio: 16 / 11;
  background: linear-gradient(#E9E3D3 0%, #E2DBC9 68%, #D8D0BC 68.5%, #C9BFA8 100%);
  overflow: hidden;
}
.room-scene::before {              /* soft window light */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 30% 20%, rgba(255, 250, 236, 0.55), transparent 70%);
}
.room-floorline {
  position: absolute;
  left: 0; right: 0;
  top: 68%;
  height: 1px;
  background: rgba(110, 103, 97, 0.3);
}
.room-frame {
  position: absolute;
  left: 50%;
  bottom: 42%;
  transform: translateX(-50%);
  width: 20%;                       /* JS sets true-scale width */
  background: #14110e;
  padding: 2.2%;
  padding-bottom: 2.2%;
  box-shadow: 0 14px 30px rgba(40, 32, 20, 0.35);
  transition: width 0.35s ease;
}
.room-frame .room-mat { background: #EDE9E0; padding: 9%; }
.room-frame img { width: 100%; display: block; }
.room-sofa {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7%;
  width: 74%;
}
.room-sofa svg { width: 100%; height: auto; display: block; }
.room-scale-note {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(90, 82, 72, 0.75);
}

/* ---------- craft strip (homepage) ---------- */

.craft {
  background: var(--white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(48px, 7vh, 80px) 0;
}
.craft-item { text-align: center; }
.craft-item svg { width: 84px; height: 84px; margin: 0 auto 20px; display: block; }
.craft-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 440; margin-bottom: 8px; }
.craft-sub { font-size: 0.84rem; color: var(--stone); max-width: 30ch; margin: 0 auto; }

@media (max-width: 760px) {
  .craft-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- cart drawer ---------- */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 70;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--cream);
  border-left: 1px solid var(--sand);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.3, 1);
  z-index: 80;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: none; }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--sand);
}
.cart-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 420; }
.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--stone);
  padding: 4px 8px;
}
.cart-close:hover { color: var(--ink); }

.cart-body { flex: 1; overflow-y: auto; padding: 8px 24px; }

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--stone);
}
.cart-empty .serif { font-size: 1.2rem; color: var(--ink); margin-bottom: 10px; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sand);
}
.cart-item .ci-thumb {
  width: 72px; height: 90px;
  object-fit: cover;
  border: 1px solid var(--sand);
  background: var(--charcoal);
}
.ci-name { font-family: var(--serif); font-size: 1rem; font-weight: 440; }
.ci-variant { font-size: 0.72rem; color: var(--stone); margin-top: 3px; line-height: 1.5; }
.ci-kind {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.ci-right { text-align: right; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.ci-price { font-size: 0.9rem; }
.ci-qty { display: inline-flex; align-items: center; border: 1px solid var(--sand); }
.ci-qty button {
  width: 26px; height: 26px;
  background: none;
  border: none;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.ci-qty button:hover { background: var(--sand); }
.ci-qty span { min-width: 26px; text-align: center; font-size: 0.8rem; }
.ci-remove {
  background: none;
  border: none;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: underline;
  padding: 0;
  margin-top: 6px;
}
.ci-remove:hover { color: var(--coral); }

.cart-foot { border-top: 1px solid var(--sand); padding: 20px 24px 24px; background: var(--white); }
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.cart-subtotal .label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
.cart-subtotal .amount { font-family: var(--serif); font-size: 1.6rem; }
.cart-note { font-size: 0.72rem; color: var(--stone); margin-bottom: 16px; }

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--cream);
  border-left: 3px solid var(--coral);
  padding: 14px 22px;
  font-size: 0.8rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 90;
  max-width: min(92vw, 460px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- page hero (inner pages) ---------- */

.page-head { padding: clamp(44px, 7vh, 80px) 0 clamp(30px, 5vh, 54px); }
.page-head .display { margin-top: 14px; }
.page-head .lede { margin-top: 18px; }

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .collection-row { grid-template-columns: repeat(3, 1fr); }
  .props-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .prop:nth-child(3) { border-left: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
  .gallery-wall { max-width: 480px; margin: 0 auto; }
  .product { grid-template-columns: 1fr; }
  .product-stage { position: static; }
  .foot-grid { grid-template-columns: 1fr; text-align: center; }
  .subscribe { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; background: none; border: none; color: inherit; }
  .nav-toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    color: var(--ink);
  }
  .site-head--dark .nav-links.open { background: #101010; color: var(--cream); border-color: rgba(219,209,197,0.14); }
  .nav-links.open a { padding: 16px var(--pad); border-top: 1px solid var(--sand); }
  .site-head--dark .nav-links.open a { border-color: rgba(219,209,197,0.1); }
  .collection-row { grid-template-columns: repeat(2, 1fr); }
  .art-card.landscape { grid-column: span 1; }
  .art-card.landscape .thumb { aspect-ratio: 4 / 5; }
  .section-head { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .collection-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .props-grid { grid-template-columns: 1fr; }
  .prop { border-left: none; border-top: 1px solid var(--sand); padding-top: 22px; }
  .prop:first-child { border-top: none; }
  .values-grid { grid-template-columns: 1fr; }
}
