/* ==========================================================================
   COLOR ALCHEMIST - one calm page that moves
   Mobile first. Nothing here needs reading to be understood.
   ========================================================================== */

:root {
  --ink:        #120e0c;
  --ink-2:      #1a1412;
  --panel:      #211a16;
  --panel-2:    #2a211c;
  --cream:      #f7efe5;
  --muted:      #b3a396;
  --faint:      #6f6259;
  --copper:     #c98a3f;
  --copper-2:   #e0aa63;
  --rose:       #c98a9a;
  --teal:       #6fa8a0;
  --line:       rgba(201, 138, 63, 0.24);
  --line-soft:  rgba(247, 239, 229, 0.10);
  --glass:      rgba(26, 20, 18, 0.86);
  --shadow:     0 24px 60px rgba(0, 0, 0, 0.55);
  --serif: "Didot", "Bodoni MT", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.8, 0.2, 1);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: 100%;
}

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

svg { width: 1.25rem; height: 1.25rem; fill: currentColor; display: block; }

/* ============================================================== rooms ==== */
.room {
  position: fixed;
  inset: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity 0.62s var(--ease), transform 0.72s var(--ease);
  overflow: hidden;
}
.room.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 2;
}
.room.was-active { z-index: 1; }

/* ============================================================ FACADE ==== */
#room-facade { background: #0b0807; }

.facade {
  position: absolute;
  inset: 0;
  transform-origin: 50% 62%;
  transition: transform 1.15s var(--ease), opacity 0.9s var(--ease), filter 1s var(--ease);
}
body.entering .facade { transform: scale(1.5) translateY(6%); opacity: 0; filter: brightness(1.5); }

.facade-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 60% at 50% 108%, rgba(224, 170, 99, 0.34), transparent 62%),
    radial-gradient(80% 50% at 50% 88%, rgba(201, 138, 63, 0.20), transparent 70%),
    linear-gradient(180deg, #0a0706 0%, #16100d 55%, #241a14 100%);
}

.facade-photo {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  opacity: 0; transition: opacity 0.8s ease;
}
.facade-photo.has-photo { opacity: 1; }
body.has-photo .building .sign,
body.has-photo .building .window,
body.has-photo .building .door { display: none; }

.building {
  position: absolute;
  left: 50%; bottom: 0;
  width: min(560px, 94vw);
  transform: translateX(-50%);
  padding-bottom: calc(18vh + var(--safe-b));
}

/* ---- the sign ---- */
.sign {
  text-align: center;
  padding: 16px 18px 14px;
  margin: 0 auto 14px;
  width: min(100%, 430px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(28, 20, 16, 0.94), rgba(16, 11, 9, 0.96));
  box-shadow: 0 0 60px rgba(201, 138, 63, 0.22), inset 0 0 30px rgba(201, 138, 63, 0.06);
}
.sign-name {
  display: block;
  font: 500 clamp(1.35rem, 7.4vw, 2.05rem)/1.1 var(--serif);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-2);
  text-shadow: 0 0 18px rgba(224, 170, 99, 0.45);
}
.sign-tag {
  display: block;
  margin-top: 8px;
  font: italic 400 clamp(0.9rem, 4.4vw, 1.1rem)/1.3 var(--serif);
  letter-spacing: 0.02em;
  color: var(--cream);
  opacity: 0.82;
}

/* ---- shopfront ---- */
.front {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 10px;
  height: min(46vh, 320px);
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(34, 24, 19, 0.9), rgba(20, 14, 11, 0.95));
}

.window {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(180deg, #4a3626, #2a1d15);
}
.window-light {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 50% 22%, rgba(255, 226, 178, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(255, 216, 160, 0.28), rgba(255, 190, 120, 0.06));
  animation: glow 7s ease-in-out infinite;
}
@keyframes glow { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }
.window-shelf {
  position: absolute; left: 8%; right: 8%; bottom: 26%; height: 2px;
  background: rgba(255, 226, 178, 0.45);
}
.window-bottle {
  position: absolute; bottom: 26.6%; width: 13%; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(255, 240, 220, 0.92), rgba(214, 176, 132, 0.7));
}
.window-bottle.a { left: 16%; height: 26%; }
.window-bottle.b { left: 34%; height: 34%; }
.window-bottle.c { left: 52%; height: 20%; }

.door {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255, 214, 160, 0.18), rgba(255, 190, 120, 0.05));
  cursor: pointer;
  overflow: hidden;
  transform-origin: left center;
  transition: transform 0.75s var(--ease), box-shadow 0.4s ease;
}
.door::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 60%, rgba(255, 226, 178, 0.30), transparent 72%);
  animation: glow 5s ease-in-out infinite;
}
.door:active, .door.pressed { box-shadow: 0 0 42px rgba(224, 170, 99, 0.5); }
body.entering .door { transform: perspective(600px) rotateY(-64deg); box-shadow: 0 0 90px rgba(255, 226, 178, 0.7); }
.door-frame {
  position: absolute; inset: 5px;
  border: 1px solid rgba(247, 239, 229, 0.22);
  border-radius: 2px;
}
.door-glass {
  position: absolute; left: 12%; right: 12%; top: 14%; bottom: 18%;
  border: 1px solid rgba(247, 239, 229, 0.18);
  border-radius: 2px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}
.door-handle {
  position: absolute; right: 14%; top: 52%; width: 3px; height: 46px;
  border-radius: 3px; background: var(--copper-2);
  box-shadow: 0 0 10px rgba(224, 170, 99, 0.6);
}
.door-open {
  position: absolute; left: 0; right: 0; bottom: 7%;
  text-align: center;
  font: 500 0.6rem/1 var(--sans);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.72;
}

.facade-hint {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hint {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 16px;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(201, 138, 63, 0.10);
  color: var(--copper-2);
  font: 500 0.8rem/1 var(--sans); letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
}
.hint:active { background: rgba(201, 138, 63, 0.24); }
.hint-or { color: var(--faint); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; }
.hint-say { color: var(--cream); border-color: var(--line-soft); background: rgba(247, 239, 229, 0.05); }

/* ============================================================= STORE ==== */
#room-store, #room-consultation {
  background:
    radial-gradient(90% 50% at 50% 0%, rgba(201, 138, 63, 0.10), transparent 70%),
    var(--ink);
}

.topbar {
  flex: 0 0 auto;
  padding: calc(10px + var(--safe-t)) 14px 10px;
  background: linear-gradient(180deg, rgba(18, 14, 12, 0.96), rgba(18, 14, 12, 0.72));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar-row { display: flex; align-items: center; gap: 10px; }
.brand-mini {
  flex: 1;
  font: 500 0.82rem/1 var(--serif);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-2);
}
.back, .sound {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line-soft); border-radius: 50%;
  background: rgba(247, 239, 229, 0.04);
  color: var(--cream);
  cursor: pointer;
}
.sound[aria-pressed="false"] { color: var(--faint); }

/* ---- voice bar: the mic and the words, always on top ---- */
.voice-bar {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px;
  padding: 6px 6px 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(42, 33, 28, 0.9), rgba(26, 20, 18, 0.92));
  position: relative;
}
.voice-bar[data-state="listening"] { border-color: var(--copper-2); box-shadow: 0 0 0 3px rgba(201, 138, 63, 0.16); }
.mic {
  width: 44px; height: 44px; flex: 0 0 44px;
  display: grid; place-items: center;
  border: none; border-radius: 50%;
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: #241a05;
  cursor: pointer;
}
.voice-bar[data-state="listening"] .mic { background: linear-gradient(180deg, #f0c07a, #c98a3f); }
.voice-field { flex: 1; min-width: 0; }
.voice-field input {
  width: 100%;
  border: none; background: transparent;
  color: var(--cream);
  font: 400 0.95rem/1.2 var(--sans);
  padding: 10px 2px;
}
.voice-field input::placeholder { color: #8d7f74; }
.voice-field input:focus { outline: none; }
.voice-go {
  width: 38px; height: 38px; flex: 0 0 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-soft); border-radius: 50%;
  background: rgba(247, 239, 229, 0.05);
  color: var(--cream); cursor: pointer;
}
.voice-pulse {
  position: absolute; right: 12px; top: 50%;
  width: 10px; height: 10px; margin-top: -5px;
  border-radius: 50%; background: var(--copper-2);
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.2s ease;
}
.voice-bar[data-state="listening"] .voice-pulse { opacity: 1; animation: pulse 1.1s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(0.7); opacity: 0.5; } 50% { transform: scale(1.5); opacity: 1; } }

.chips { display: flex; gap: 8px; overflow-x: auto; padding: 10px 2px 2px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line-soft); border-radius: 999px;
  background: rgba(247, 239, 229, 0.04);
  color: var(--muted);
  font: 400 0.82rem/1 var(--sans);
  cursor: pointer; white-space: nowrap;
}
.chip:active { color: var(--cream); border-color: var(--line); }

/* ---- shelves ---- */
.store {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 14px 28px;
}
.shelf {
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(33, 26, 22, 0.72), rgba(22, 17, 14, 0.72));
  transition: transform 0.7s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s ease, opacity 0.4s;
}
.shelf.forward {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--line);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 138, 63, 0.12);
}
.shelf.dim { opacity: 0.35; }
.shelf-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.shelf-title { font: 500 1.12rem/1.25 var(--serif); letter-spacing: 0.01em; }
.shelf-sub { color: var(--muted); font-size: 0.78rem; }
.shelf.coming { opacity: 0.5; }
.shelf.coming .shelf-title { color: var(--muted); }

.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  padding: 12px;
  border: 1px solid var(--line-soft); border-radius: 12px;
  background: linear-gradient(180deg, rgba(48, 38, 31, 0.6), rgba(28, 22, 19, 0.6));
  color: var(--cream); text-align: left; cursor: pointer;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s;
}
.tile:active { transform: scale(0.97); }
.tile.pop { border-color: var(--copper); background: linear-gradient(180deg, rgba(70, 52, 36, 0.7), rgba(34, 26, 21, 0.7)); }
.tile-step {
  font: 500 0.62rem/1 var(--sans); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper-2);
}
.tile-name { font: 500 0.94rem/1.25 var(--serif); }
.tile-sub { color: var(--muted); font-size: 0.72rem; line-height: 1.35; }

/* a small bottle drawn in CSS - no image files anywhere */
.bottle { position: relative; width: 34px; height: 48px; }
.bottle::before {
  content: ""; position: absolute; left: 50%; top: 0; width: 12px; height: 9px;
  transform: translateX(-50%);
  border-radius: 2px 2px 0 0;
  background: var(--copper-2);
}
.bottle::after {
  content: ""; position: absolute; left: 0; top: 9px; width: 100%; bottom: 0;
  border-radius: 6px 6px 8px 8px;
  background: linear-gradient(180deg, rgba(247, 239, 229, 0.86), rgba(201, 138, 63, 0.5));
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.25);
}
.bottle.s1::after { background: linear-gradient(180deg, #f3e3cf, #c98a3f); }
.bottle.s2::after { background: linear-gradient(180deg, #f6dfe2, #c98a9a); }
.bottle.s3::after { background: linear-gradient(180deg, #e6efe9, #6fa8a0); }
.bottle.s4::after { background: linear-gradient(180deg, #f7edd6, #b8862f); }

.store-foot {
  flex: 0 0 auto;
  padding: 12px 16px calc(16px + var(--safe-b));
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(0deg, rgba(18, 14, 12, 0.98), rgba(18, 14, 12, 0.7));
}
.foot-nav { display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.link {
  border: none; background: none; padding: 6px 0;
  color: var(--copper-2); font: 400 0.84rem/1 var(--sans); cursor: pointer;
  border-bottom: 1px solid rgba(224, 170, 99, 0.3);
}
.rule { color: var(--muted); font-size: 0.8rem; line-height: 1.55; margin: 0 0 6px; }
.rule.small { font-size: 0.72rem; color: var(--faint); }
.preview-pill {
  display: inline-block; margin-left: 8px; padding: 3px 8px;
  border: 1px dashed var(--line); border-radius: 999px;
  font: 500 0.6rem/1 var(--sans); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper-2); opacity: 0.8;
}

/* ====================================================== CONSULTATION ==== */
.room-body {
  flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 18px 16px calc(30px + var(--safe-b));
}
.disclaimer {
  padding: 14px 16px; margin: 0 0 22px;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(201, 138, 63, 0.07);
  color: var(--cream); font: italic 400 0.92rem/1.5 var(--serif);
}
.room-h { margin: 0 0 4px; font: 500 1.3rem/1.2 var(--serif); }
.room-sub { margin: 0 0 14px; color: var(--muted); font-size: 0.82rem; }
.questions { display: grid; gap: 10px; }
.question {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; width: 100%;
  border: 1px solid var(--line-soft); border-radius: 12px;
  background: linear-gradient(180deg, rgba(40, 32, 27, 0.7), rgba(25, 19, 16, 0.7));
  color: var(--cream); text-align: left; cursor: pointer;
}
.question strong { display: block; font: 500 0.98rem/1.3 var(--serif); }
.question span { color: var(--muted); font-size: 0.74rem; }
.play-dot {
  flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: #241a05;
}
.hairline { height: 1px; margin: 26px 0; background: var(--line-soft); }
.quote {
  margin: 12px 0 18px; padding-left: 14px;
  border-left: 2px solid var(--line);
  color: var(--muted); font: italic 400 0.95rem/1.6 var(--serif);
}
.book-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  border: 1px solid var(--copper); border-radius: 999px;
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: #241a05; text-decoration: none;
  font: 600 0.78rem/1 var(--sans); letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
}
.btn.ghost { background: rgba(247, 239, 229, 0.05); color: var(--cream); border-color: var(--line-soft); }
.btn:active { transform: translateY(1px); }

/* ============================================================ SHEETS ==== */
.scrim {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(6, 4, 4, 0.62);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.scrim.show { opacity: 1; pointer-events: auto; }

.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  max-height: 92dvh;
  display: flex; flex-direction: column;
  border-radius: 20px 20px 0 0;
  border: 1px solid var(--line-soft); border-bottom: none;
  background: linear-gradient(180deg, #241c18, #171210);
  box-shadow: var(--shadow);
  transform: translateY(102%);
  transition: transform 0.5s var(--ease);
  overscroll-behavior: contain;
}
.sheet.open { transform: none; }
.sheet-body {
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 22px 18px calc(30px + var(--safe-b));
}
.sheet-close {
  position: absolute; right: 12px; top: 12px; z-index: 3;
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line-soft); border-radius: 50%;
  background: rgba(18, 14, 12, 0.8); color: var(--cream); cursor: pointer;
}
.sheet::before {
  content: ""; position: absolute; left: 50%; top: 8px; width: 42px; height: 4px;
  margin-left: -21px; border-radius: 4px; background: rgba(247, 239, 229, 0.18);
}

/* ---- product pop-up: eight parts, in order ---- */
.p-part { margin-bottom: 22px; }
.p-part:last-child { margin-bottom: 0; }
.p-kicker {
  display: flex; align-items: center; gap: 8px;
  font: 500 0.62rem/1 var(--sans); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 10px;
}
.p-title { margin: 0 0 6px; font: 500 1.5rem/1.15 var(--serif); padding-right: 44px; }
.p-sub { margin: 0; color: var(--muted); font-size: 0.84rem; }
.p-brand { color: var(--faint); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

.step-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(201, 138, 63, 0.1);
}
.step-badge b { font: 600 0.9rem/1 var(--serif); color: var(--copper-2); }
.step-badge span { font: 500 0.62rem/1 var(--sans); letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* video slot - placeholder now, file later */
.video-slot {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(70% 60% at 50% 34%, rgba(224, 170, 99, 0.22), transparent 70%),
    linear-gradient(160deg, #2c2119, #14100e);
  cursor: pointer;
  display: grid; place-items: center; gap: 10px;
}
.video-slot .play {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: #241a05; box-shadow: 0 12px 30px rgba(201, 138, 63, 0.3);
}
.video-slot .play svg { width: 22px; height: 22px; }
.video-slot .slot-note {
  position: absolute; left: 0; right: 0; bottom: 12px;
  text-align: center;
  font: 500 0.66rem/1 var(--sans); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); opacity: 0.82;
}
.video-slot .slot-credit {
  position: absolute; left: 0; right: 0; top: 10px; text-align: center;
  font: 400 0.62rem/1 var(--sans); letter-spacing: 0.12em; color: var(--muted);
}
.slot-tag {
  position: absolute; left: 12px; top: 12px;
  padding: 4px 9px; border-radius: 999px;
  border: 1px solid var(--line-soft); background: rgba(10, 8, 7, 0.6);
  font: 500 0.58rem/1 var(--sans); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper-2);
}
video { width: 100%; border-radius: 14px; display: block; background: #000; }

.strand { border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; background: #17110f; }
.strand svg { width: 100%; height: auto; display: block; }
.strand-note { padding: 10px 12px; color: var(--muted); font-size: 0.74rem; line-height: 1.5; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.need {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid var(--line-soft); background: rgba(247, 239, 229, 0.04);
  color: var(--cream); font: 400 0.82rem/1 var(--sans); cursor: pointer;
}
.need b { color: var(--copper-2); font: 600 0.72rem/1 var(--sans); }
.service {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; margin-bottom: 8px;
  border: 1px solid var(--line-soft); border-radius: 12px;
  background: rgba(247, 239, 229, 0.03);
}
.service strong { font: 500 0.92rem/1.2 var(--serif); }
.service span { color: var(--muted); font-size: 0.74rem; }

.honest { display: grid; gap: 10px; }
.honest-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; line-height: 1.5; }
.honest-row i {
  flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-style: normal; font-size: 0.72rem;
  border: 1px solid var(--line); color: var(--copper-2);
}
.honest-row.no i { border-color: rgba(201, 138, 154, 0.4); color: var(--rose); }

.buy-block { border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: rgba(201, 138, 63, 0.06); }
.sizes { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.size {
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line-soft); background: transparent;
  color: var(--muted); font: 500 0.78rem/1 var(--sans);
}
.size[aria-pressed="true"] { border-color: var(--copper); color: var(--cream); background: rgba(201, 138, 63, 0.14); }
.buy-note { margin: 10px 0 0; color: var(--muted); font-size: 0.76rem; line-height: 1.5; }
.badge-line {
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line-soft);
  color: var(--copper-2); font: italic 400 0.8rem/1.4 var(--serif);
}
.flags { display: flex; flex-wrap: wrap; gap: 8px; }
.flag {
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line-soft); background: rgba(247, 239, 229, 0.04);
  color: var(--muted); font: 500 0.72rem/1 var(--sans);
}
.chair-only {
  padding: 14px; border: 1px dashed var(--line); border-radius: 12px;
  color: var(--muted); font-size: 0.82rem; line-height: 1.5;
}

/* ---- packages ---- */
.pkg {
  position: relative;
  margin-bottom: 14px; padding: 18px;
  border: 1px solid var(--line-soft); border-radius: 16px;
  background: linear-gradient(180deg, rgba(38, 30, 25, 0.7), rgba(23, 18, 15, 0.7));
}
.pkg.rec { border-color: var(--copper); background: linear-gradient(180deg, rgba(58, 43, 30, 0.8), rgba(28, 21, 17, 0.8)); }
.pkg-rank {
  position: absolute; right: 16px; top: 16px;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--copper-2);
  font: 600 0.82rem/1 var(--serif);
}
.pkg h3 { margin: 0 0 4px; font: 500 1.2rem/1.2 var(--serif); padding-right: 40px; }
.pkg .pkg-sub { margin: 0 0 12px; color: var(--muted); font-size: 0.8rem; }
.pkg-items { list-style: none; margin: 0 0 14px; padding: 0; }
.pkg-items li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 0.86rem;
}
.pkg-items li:last-child { border-bottom: none; }
.pkg-items .n {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(201, 138, 63, 0.16); color: var(--copper-2);
  font: 600 0.7rem/1 var(--sans);
}
.pkg-items .sz { margin-left: auto; color: var(--faint); font-size: 0.74rem; }
.pkg-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.pkg-actions .btn { padding: 12px 16px; font-size: 0.72rem; }
.pkg-buys { display: grid; gap: 8px; margin-top: 10px; }
.buy-line {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 13px; border: 1px solid var(--line-soft); border-radius: 10px;
  color: var(--cream); text-decoration: none; font-size: 0.84rem;
  background: rgba(247, 239, 229, 0.03);
}
.buy-line small { color: var(--faint); font-size: 0.7rem; }
.buy-line .go { color: var(--copper-2); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.pkg-note { margin: 12px 0 0; color: var(--faint); font-size: 0.74rem; font-style: italic; }

/* ---- routine card ---- */
.rc {
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: linear-gradient(180deg, #faf4ea, #f1e7d8);
  color: #241a12;
}
.rc-head { padding: 18px 18px 12px; border-bottom: 1px solid rgba(36, 26, 18, 0.14); }
.rc-brand { font: 500 0.7rem/1 var(--sans); letter-spacing: 0.28em; text-transform: uppercase; color: #9a6f2c; }
.rc-title { margin: 8px 0 2px; font: 500 1.5rem/1.15 var(--serif); }
.rc-sub { margin: 0; font-size: 0.78rem; color: #6b5a48; }
.rc-list { list-style: none; margin: 0; padding: 6px 18px 14px; }
.rc-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(36, 26, 18, 0.1); }
.rc-list li:last-child { border-bottom: none; }
.rc-num {
  flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: #241a12; color: #f7efe5;
  font: 600 0.86rem/1 var(--serif);
}
.rc-name { font: 500 0.95rem/1.25 var(--serif); }
.rc-how { color: #5d4c3c; font-size: 0.78rem; line-height: 1.45; margin-top: 2px; }
.rc-size { color: #8a7663; font-size: 0.72rem; }
.rc-foot {
  padding: 14px 18px; border-top: 1px solid rgba(36, 26, 18, 0.14);
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  font-size: 0.74rem; color: #6b5a48;
}
.rc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }

.image-hold { text-align: center; }
.image-hold img { width: 100%; border-radius: 14px; border: 1px solid var(--line-soft); }
.image-hold p { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

/* ---- caption: what the site says, also on screen ---- */
.caption {
  position: fixed; left: 50%; bottom: calc(22px + var(--safe-b)); z-index: 70;
  transform: translate(-50%, 12px);
  max-width: min(90vw, 460px);
  padding: 12px 18px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--glass); backdrop-filter: blur(12px);
  color: var(--cream); font: 400 0.86rem/1.35 var(--sans);
  text-align: center; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}
.caption.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================= wide ==== */
@media (min-width: 720px) {
  .sheet {
    left: 50%; right: auto; bottom: 0;
    width: min(620px, 92vw); margin-left: min(-310px, -46vw);
    border-radius: 20px 20px 0 0;
  }
  .store { padding-inline: max(14px, calc((100vw - 760px) / 2)); }
  .tiles { grid-template-columns: repeat(4, 1fr); }
  .room-body { padding-inline: max(16px, calc((100vw - 720px) / 2)); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.12s !important; }
}

/* ============================================================ print ==== */
@media print {
  body { overflow: visible; background: #fff; }
  body > *:not(#printCard) { display: none !important; }
  #printCard { display: block !important; color: #000; background: #fff; }
  .rc { border: 1px solid #ccc; }
  .rc-num { background: #000; }
}
.print-card { display: none; padding: 24px; }
