:root {
  --cream: #fdebc7;
  --ink: #4a2a22;
  --ink-2: #5c3328;
  --band: rgba(255, 248, 234, 0.42);
  --band-2: rgba(255, 252, 245, 0.58);
  --paper: #fff8ea;
  --paper-2: #f6e6c8;
  --gold: #c9a45a;
  --gold-hi: #a12021;
  --ember: #c45c2a;
  --muted: #8a6248;
  --muted-2: #a07a58;
  --line: rgba(161, 32, 33, 0.16);
  --ok: #2f7a58;
  --font: "Be Vietnam Pro", system-ui, sans-serif;
  --serif: "Noto Serif Display", "Be Vietnam Pro", serif;
  --dock: 56px;
  --header: 52px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body {
  font-family: var(--font);
  background-color: var(--cream);
  color: var(--ink);
  padding-bottom: var(--dock);
}
a { color: var(--gold-hi); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.clouds, .waves, .grain {
  pointer-events: none;
  position: fixed;
  z-index: 0;
}
.clouds, .waves { overflow: hidden; }
.clouds::after, .waves::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.clouds {
  top: 0; left: 0; right: 0;
  height: min(26vh, calc(100vw * 282 / 1800));
  background-image: url("clouds.png?v=9");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}
.clouds::after {
  background: linear-gradient(to bottom, transparent 18%, var(--cream) 92%);
}
.waves {
  left: 0; right: 0;
  bottom: 0;
  height: calc(var(--dock) + min(32vh, calc(100vw * 380 / 2481)));
  background-image: url("waves.png?v=14");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% calc(100% - var(--dock) + 10px);
}
.waves::after {
  inset: 0 0 var(--dock) 0;
  background: linear-gradient(to bottom, var(--cream), transparent 46%);
}
.grain {
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.app {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 100dvh;
}

.top {
  height: auto;
  background: rgba(253, 235, 199, 0.88);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 5;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.top-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
}
.top .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.top img { width: 32px; height: 32px; object-fit: contain; }
.top .name { font-size: 13px; letter-spacing: 0.16em; color: var(--gold-hi); font-weight: 500; }
.top .grow { flex: 1; }
.reach {
  display: flex;
  align-items: center;
  gap: 4px;
}
.reach-i {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-hi);
  padding: 6px 8px;
  min-height: 36px;
}
.reach-i svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.reach-i.call span {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}
body.is-home .top .brand { opacity: 0; pointer-events: none; }
body.is-home.scrolled .top .brand { opacity: 1; pointer-events: auto; }

.view { display: none; padding: 28px 32px 48px; }
.view.on { display: block; }
#view-home.on { padding-bottom: 0; }

.home-mark {
  text-align: center;
  padding: 28px 0 20px;
  position: relative;
}
.home-mark img {
  position: relative;
  z-index: 1;
  width: 180px;
  height: auto;
  margin: 0 auto;
  opacity: 0;
}
.home-copy { opacity: 0; }
.home-copy h1,
.home-copy .lede,
.home-copy .hero-actions { text-align: center; }
.home-copy .lede { margin-left: auto; margin-right: auto; }
.home-copy .hero-actions { justify-content: center; }
.home-mark.in img {
  animation: dawn 2.6s ease forwards;
}
.home-mark.in + .home-copy {
  animation: dawn 1.8s ease 1.1s forwards;
}
@keyframes dawn {
  from { opacity: 0; filter: blur(12px); transform: translateY(12px); }
  to { opacity: 1; filter: blur(0); transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .home-mark img, .home-copy,
  .spread.rise .page-photo img, .spread.rise .page-text {
    opacity: 1; filter: none; transform: none; animation: none !important;
  }
}

.kicker {
  color: var(--gold-hi);
  letter-spacing: 0.32em;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h1, .h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 6vw, 40px);
  line-height: 1.22;
  margin-bottom: 12px;
}
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 8px 0 12px;
}
.lede { color: var(--muted); line-height: 1.75; font-size: 17px; margin-bottom: 22px; max-width: 46rem; }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  background: var(--gold);
  color: var(--ink);
  border: 0;
  font-size: 15px;
  font-weight: 600;
  width: auto;
  min-width: 260px;
}
.cta.wide { width: 100%; }
.cta.secondary {
  background: transparent;
  color: var(--gold);
  border: 0;
  margin-top: 8px;
  box-shadow: inset 0 -1px 0 var(--gold);
  border-radius: 0;
  min-width: 0;
  padding: 0 2px;
  height: 44px;
}
.cta.secondary[data-view="catalog"] {
  color: var(--gold-hi);
  box-shadow: inset 0 -1px 0 var(--gold-hi);
}
.cta.compact {
  min-width: 0;
  min-height: 36px;
  height: 36px;
  padding: 0 14px;
  font-size: 13px;
  margin-left: 6px;
}
.cta:disabled { opacity: 0.4; }

.pillars {
  display: grid;
  gap: 8px;
  margin: 22px 0 28px;
}
.pillar {
  border: 0;
  padding: 4px 8px 8px 0;
  background: transparent;
}
.pillar strong {
  display: block;
  color: var(--gold-hi);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
}
.pillar span { color: var(--muted); font-size: 13px; line-height: 1.5; }

.rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin: 0 -32px 24px;
  padding-left: 32px;
  padding-right: 32px;
  scroll-snap-type: x mandatory;
}
.rail::-webkit-scrollbar { display: none; }
.place {
  flex: 0 0 168px;
  scroll-snap-align: start;
  border: 0;
  padding: 0;
  min-height: 132px;
  background: transparent;
  text-align: left;
  color: inherit;
}
.place b { display: block; font-family: var(--serif); font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.place small { color: var(--muted); font-size: 12px; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--gold-hi);
  margin: 8px 0 12px;
}

.band {
  background: var(--band);
  margin-left: -32px;
  margin-right: -32px;
  padding: 36px 32px 40px;
}
.dip-switch {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 16px;
}
.dip-tab {
  flex: none;
  border: 1px solid var(--line);
  background: rgba(255, 252, 245, 0.72);
  color: var(--ink);
  font-size: 13px;
  padding: 8px 12px;
}
.dip-tab.on {
  color: var(--gold-hi);
  border-color: rgba(161, 32, 33, 0.4);
  background: rgba(161, 32, 33, 0.06);
}
.dip-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.5fr;
  gap: 22px;
  align-items: start;
}
.dip-when {
  color: var(--gold-hi);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.dip-copy h2 { margin-top: 0; }
.dip-copy p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 8px; }
.dip-where { color: var(--ink-2); font-size: 13px; }
.dip-side { min-width: 0; }
.dip-turn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}
.dip-turn button {
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 245, 0.8);
  color: var(--gold-hi);
  font-size: 20px;
}
.dip-mams { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dip-mam {
  border: 1px solid var(--line);
  background: rgba(255, 252, 245, 0.78);
  color: inherit;
  text-align: left;
  padding: 0;
}
.dip-mam img { width: 100%; height: 132px; object-fit: cover; }
.dip-mam span { display: block; padding: 10px 10px 12px; }
.dip-mam b { display: block; font-family: var(--serif); font-weight: 500; font-size: 15px; line-height: 1.3; margin-bottom: 4px; }
.dip-mam em { color: var(--gold-hi); font-style: normal; font-size: 13px; font-variant-numeric: tabular-nums; }
@media (max-width: 800px) {
  .dip-card { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .dip-mams { grid-template-columns: 1fr; }
  .dip-mam { display: grid; grid-template-columns: 96px 1fr; }
  .dip-mam img { height: 96px; }
}
.band.alt { background: var(--band-2); }
.band .rail {
  margin-left: -8px;
  margin-right: -8px;
  padding-left: 8px;
  padding-right: 8px;
}

.progress {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.progress i {
  flex: 1;
  height: 3px;
  background: rgba(212,179,106,.18);
}
.progress i.on { background: var(--gold); }
.pane { display: none; }
.pane.on { display: block; }
.step-title { color: var(--muted); font-size: 13px; margin-bottom: 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chip, .tile {
  border: 0;
  background: rgba(161, 32, 33, 0.06);
  color: var(--ink);
  font-size: 14px;
  padding: 10px 12px;
  text-align: left;
}
.chip.on, .tile.on {
  background: rgba(212, 179, 106, 0.16);
  color: var(--gold-hi);
}
.tiles { display: grid; gap: 8px; }

.lore {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
  padding: 16px 16px 14px;
  margin-bottom: 14px;
}
.lore h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.lore p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.player {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.player button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-hi);
  font-size: 16px;
}
.player .bar {
  flex: 1;
  height: 3px;
  background: rgba(212,179,106,.2);
  overflow: hidden;
}
.player .bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}
.player.play .bar span { animation: read 18s linear forwards; }
@keyframes read { to { width: 100%; } }

.mam {
  border: 1px solid var(--line);
  padding: 14px;
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
  color: inherit;
  background: transparent;
}
.mam.on { border-color: var(--gold); background: rgba(212,179,106,.08); }
.mam .row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.mam b { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.mam .price { color: var(--gold-hi); font-variant-numeric: tabular-nums; }
.mam ul { margin-top: 8px; padding-left: 1.1em; color: var(--muted); font-size: 13px; line-height: 1.55; }
.mam-picked {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 245, 0.78);
  margin-bottom: 16px;
}
.mam-picked img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.mam-picked > div { padding: 14px 16px 16px; }
.mam-picked h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 0 0 6px; }
.mam-picked-where { color: var(--muted); font-size: 13px; margin: 0 0 10px; }
.mam-picked ul { margin: 0 0 10px; padding-left: 1.1em; color: var(--muted); font-size: 13px; line-height: 1.55; }
.mam-picked li b { color: var(--ink); font-weight: 600; }
.mam-picked-price { color: var(--gold-hi); font-variant-numeric: tabular-nums; font-size: 18px; margin: 0 0 8px; }
.mam-picked .cta.secondary { margin-top: 4px; }
@media (max-width: 640px) {
  .mam-picked { grid-template-columns: 1fr; }
  .mam-picked img { height: 200px; min-height: 0; }
}

.sku {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sku .nm { flex: 1; font-size: 14px; }
.sku .qty { display: flex; align-items: center; gap: 8px; }
.sku .qty button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
}
.sku .n { min-width: 1.2em; text-align: center; font-variant-numeric: tabular-nums; }
.sku .nm em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
}
#btn-add-sku { margin: 12px 0 8px; }
.sku-picker { margin: 0 0 8px; }
.sku-picker-hint { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.sku-picker .field { margin-bottom: 10px; }
.pick-list {
  max-height: 260px;
  overflow: auto;
  margin-top: 8px;
}
.sku-add {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.sku-add em {
  font-style: normal;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
}

.total {
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
  font-size: 16px;
}
.total strong { color: var(--gold-hi); font-variant-numeric: tabular-nums; }

.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.field input, .field select {
  width: 100%;
  height: 44px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0 12px;
  font-size: 15px;
  font-family: inherit;
}
.field select { cursor: pointer; }
.empty-loc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  padding: 12px 2px 4px;
}

.pay {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.pay .tile { min-height: 64px; }
.qr {
  border: 1px dashed var(--line);
  padding: 18px;
  text-align: center;
  margin-bottom: 12px;
}
.qr .box {
  width: 160px;
  height: 160px;
  margin: 0 auto 10px;
  background:
    repeating-conic-gradient(var(--gold) 0% 25%, var(--cream) 0% 50%) 50% / 16px 16px;
  opacity: 0.85;
}
.qr small { color: var(--muted); }

.done { text-align: center; padding: 12px 0 8px; }
.done .code {
  font-family: ui-monospace, monospace;
  color: var(--gold-hi);
  letter-spacing: 0.08em;
  margin: 10px 0 16px;
}

.list a.row, .blog a.row {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: inherit;
}
.list a.row b, .blog a.row b { display: block; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.list a.row small, .blog a.row small { color: var(--muted); font-size: 12px; }

.article p { color: var(--muted); line-height: 1.75; margin-bottom: 12px; font-size: 15px; }
.article h3 { font-family: var(--serif); margin: 18px 0 8px; font-weight: 500; }

.track {
  border: 1px solid var(--line);
  padding: 14px;
  margin-top: 12px;
}
.track .st { display: flex; gap: 10px; margin: 8px 0; color: var(--muted); font-size: 14px; }
.track .st.on { color: var(--gold-hi); }
.track .st i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-2);
  margin-top: 6px;
  flex: none;
}
.track .st.on i { background: var(--ember); box-shadow: 0 0 8px var(--ember); }

.actions { margin-top: 18px; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  display: flex;
  gap: 0;
  background: rgba(253, 235, 199, 0.94);
  border-top: 1px solid var(--line);
  height: var(--dock);
}
.dock a, .dock button {
  flex: 1;
  background: none;
  border: 0;
  color: var(--muted-2);
  font-size: 10px;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.dock a.on, .dock button.on { color: var(--gold-hi); }

.banner {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--gold);
  padding: 6px 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(253, 235, 199, 0.9);
}
.banner b { font-weight: 600; }

.site {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding: 36px 28px 24px;
  border-top: 1px solid var(--line);
  background: rgba(253, 235, 199, 0.72);
}
.site-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.site b {
  display: block;
  color: var(--gold-hi);
  letter-spacing: 0.12em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.site p, .site a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 4px;
}
.site a:hover { color: var(--gold-hi); }
.site .muted { color: var(--muted-2); font-size: 13px; }
.site .muted a { display: inline; color: var(--gold-hi); }
.site .copy {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding-top: 16px;
  color: #6f624d;
  font-size: 12px;
}

body.sheet-open { overflow: hidden; }
.sheet {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px 16px calc(var(--dock) + 20px);
}
.sheet[hidden] { display: none !important; }
.sheet-back {
  position: absolute;
  inset: 0;
  background: rgba(74, 42, 34, 0.45);
  backdrop-filter: blur(8px);
}
.sheet-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 680px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: var(--paper-2);
}
.sheet-x {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(253, 235, 199, 0.7);
  color: var(--gold-hi);
  font-size: 24px;
  line-height: 1;
}
.sheet-photo {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.sheet-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.sheet-peek {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(253, 235, 199, 0.7);
  color: var(--paper);
  font-size: 26px;
  line-height: 1;
}
.sheet-peek.next { left: auto; right: 10px; }
.sheet-card.rise .sheet-photo img,
.sheet-card.rise .sheet-body {
  animation: leaf 0.55s ease forwards;
}
.sheet-body {
  overflow-y: auto;
  padding: 28px 28px 22px;
  background: #f3ead4;
  color: #1c1917;
}
.sheet-body .kicker { color: #7c2d12; }
.sheet-body h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: #4a1609;
  margin: 0 0 10px;
}
.sheet-meta {
  font-size: 14px;
  line-height: 1.55;
  color: #5c564e;
  margin-bottom: 16px;
}
.sheet-meta b {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c2d12;
  margin: 8px 0 2px;
}
.sheet-skus-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c2d12;
  margin-bottom: 8px;
}
.sheet-body dl { margin: 0 0 16px; }
.sheet-body dt {
  font-size: 13px;
  font-weight: 600;
  color: #7c2d12;
}
.sheet-body dd {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #5c564e;
}
.sheet-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
}
.sheet-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 4px 0 12px;
}
.sheet-nav button {
  border: 0;
  background: transparent;
  color: #7c2d12;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 0;
}
.sheet-nav span {
  font-size: 12px;
  color: #8a8378;
  letter-spacing: 0.04em;
}
.sheet-bar strong {
  color: #4a1609;
  font-variant-numeric: tabular-nums;
  font-size: 18px;
}
.sheet-bar .cta { margin: 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-actions .cta.secondary { margin-top: 0; }

.book {
  margin: 8px 0 36px;
}
.spread {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  height: 520px;
  overflow: hidden;
  position: relative;
  border: 0;
  box-shadow: 0 28px 64px rgba(0,0,0,.4);
  background: var(--paper-2);
}
.spread.rise .page-photo img,
.spread.rise .page-text {
  animation: leaf 0.8s ease forwards;
}
@keyframes leaf {
  from { opacity: 0; filter: blur(8px); }
  to { opacity: 1; filter: none; }
}
.spread .spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 28px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.5), rgba(244,234,214,.08), rgba(0,0,0,.45), transparent);
  pointer-events: none;
  z-index: 2;
}
.page-photo {
  margin: 0;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--paper-2);
}
.page-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-text {
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  padding: 32px 36px 28px;
  background:
    linear-gradient(180deg, rgba(124,45,18,.06), transparent 30%),
    #f3ead4;
  color: #1c1917;
}
.page-text .kicker { color: #7c2d12; }
.page-text h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: #4a1609;
  margin: 0 0 8px;
}
.page-text .cap { color: #7c2d12; font-size: 15px; font-weight: 500; margin-bottom: 16px; }
.page-text dl { margin: 0; }
.page-text dt {
  font-size: 13px;
  font-weight: 600;
  color: #7c2d12;
  letter-spacing: 0.04em;
}
.page-text dd {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #5c564e;
}
.page-fit {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(74, 22, 9, 0.16);
}
.page-fit p { margin: 0 0 10px; font-size: 14px; line-height: 1.5; color: #5c564e; }
.page-fit b {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c2d12;
  margin-bottom: 3px;
}
.page-buy {
  margin-top: 4px;
  width: 100%;
  height: 42px;
  border: 0;
  background: #4a1609;
  color: var(--paper);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.folio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}
.folio .turn {
  display: flex;
  gap: 8px;
}
.folio button {
  min-width: 44px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--gold-hi);
  font-size: 22px;
}
.book .cta.secondary.wide { margin-top: 16px; min-width: 0; }

.sieve {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 22px;
}
.alcove-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 8px;
}
.alcove {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0 0 14px;
  cursor: pointer;
  font-family: inherit;
  min-width: 0;
}
.alcove .plaque {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: #f3ead4;
  color: #4a1609;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px;
}
.alcove .frame {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #c9a45a22;
  box-shadow: inset 0 0 32px rgba(161, 32, 33, 0.08);
}
.alcove img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}
.alcove:hover img { transform: scale(1.05); }
.alcove .meta { display: flex; flex-direction: column; flex: 1; padding: 12px 4px 0; }
.alcove b {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  min-height: 2.6em;
  margin-bottom: 8px;
}
.alcove .tags { display: flex; flex-direction: column; gap: 4px; }
.alcove .tags i {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.alcove em {
  display: block;
  margin-top: auto;
  padding-top: 10px;
  font-style: normal;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.place {
  padding: 0;
  overflow: hidden;
  flex: 0 0 220px;
  min-height: 0;
}
.place img { width: 100%; height: 110px; object-fit: cover; }
.place .t { padding: 12px 12px 14px; display: block; }

.blog-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.blog-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  border: 0;
  overflow: hidden;
  color: inherit;
  min-height: 120px;
  background: transparent;
}
.blog-card img { width: 160px; height: 100%; object-fit: cover; }
.blog-card .t { padding: 14px 16px; }
.blog-card b { display: block; font-family: var(--serif); font-size: 18px; font-weight: 500; margin-bottom: 6px; }
.blog-card small { color: var(--muted); font-size: 12px; }

.hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin: 0 0 20px;
  border: 0;
}

#view-di-le .field { max-width: 28rem; margin: 0 0 18px; }
.loc-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid var(--line);
  color: inherit;
  min-height: 96px;
}
.loc-card img { width: 140px; height: 96px; object-fit: cover; }
.loc-card .t { padding: 12px 14px; }
.loc-card b { display: block; font-family: var(--serif); font-size: 18px; font-weight: 500; }

@media (min-width: 720px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 719px) {
  .alcove-wall { grid-template-columns: 1fr 1fr; }
  .home-mark img { width: 148px; height: auto; }
}
@media (max-width: 820px) {
  .view { padding: 20px 16px 40px; }
  .top-inner { padding: 0 16px; }
  .band {
    margin-left: -16px;
    margin-right: -16px;
    padding: 28px 16px 32px;
  }
  .reach-i.call span { font-size: 12px; }
  .spread {
    grid-template-columns: 1fr;
    height: auto;
  }
  .spread .spine { display: none; }
  .page-photo { height: 320px; }
  .page-text {
    height: auto;
    max-height: 360px;
    padding: 20px 18px;
  }
  .alcove-wall { grid-template-columns: repeat(2, 1fr); }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card img { width: 100%; height: 160px; }
  .site { padding: 28px 16px 20px; }
  .site-inner { grid-template-columns: 1fr; gap: 22px; }
  .sheet-card {
    grid-template-columns: 1fr;
    max-height: min(88vh, 760px);
    overflow-y: auto;
  }
  .sheet-photo { height: 240px; }
  .clouds { height: min(18vh, calc(100vw * 282 / 1800)); }
  .waves { height: calc(var(--dock) + min(22vh, calc(100vw * 380 / 2481))); }
}

.catalog-search { max-width: 28rem; margin: 0 0 14px; }
.catalog-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px 16px;
  align-items: end;
  margin: 0 0 22px;
}
.catalog-bar .field, .catalog-bar .catalog-search { margin: 0; max-width: none; }
@media (max-width: 720px) {
  .catalog-bar { grid-template-columns: 1fr; }
}
.done .cta, .article + .cta, #view-di-le-detail .cta, #view-bai .cta, #view-tracking-ok .cta {
  display: inline-flex;
}
#view-di-le-detail .cta.secondary,
#view-bai .cta.secondary,
#view-tracking-ok .cta.secondary,
.done .cta.secondary { margin-left: 8px; }

.guide {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
}
.guide[hidden] { display: none; }
.guide-back {
  position: absolute;
  inset: 0;
  background: rgba(74, 42, 34, 0.38);
}
.guide-card {
  position: relative;
  width: min(440px, 100%);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px 24px 22px;
  box-shadow: 0 18px 48px rgba(74, 42, 34, 0.16);
}
.guide-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--ink);
}
.guide-lead { color: var(--ink-2); font-size: 15px; line-height: 1.65; margin: 0 0 12px; }
.guide-hint {
  background: rgba(255, 248, 234, 0.86);
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.guide-hint ol, .guide-hint ul { margin: 6px 0 0; padding-left: 1.2em; }
.guide-hint li { margin-bottom: 4px; }
.guide-actions .cta.wide { min-width: 0; }
body.guide-open { overflow: hidden; }
