@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,650;9..144,700&family=Nunito+Sans:wght@400;600;700;800&display=swap");

:root {
  --ink: #2a2118;
  --cedar: #5c3d2e;
  --brass: #b08d4a;
  --paper: #f4efe6;
  --sand: #e7dcc8;
  --clay: #8c4a32;
  --ivory: #fbf6ee;
  --muted: #5e5146;
  --white: #fffaf2;
  --page-bg: var(--paper);
  --surface: var(--white);
  --text: var(--ink);
  --heading: var(--ink);
  --price: var(--cedar);
  --card-border: color-mix(in srgb, var(--cedar) 14%, transparent);
  --on-ink: #fbf6ee;
  --forest: var(--cedar);
  --forest-deep: var(--ink);
  --on-forest: var(--on-ink);
  --sage: var(--sand);
  --amber: var(--brass);
  --shadow: 0 22px 44px -28px rgba(42, 33, 24, 0.5);
  --radius: 14px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page-bg: #0d1117;
  --surface: #161b22;
  --text: #f4f1ea;
  --heading: #f4f1ea;
  --muted: #8b93a7;
  --paper: #0d1117;
  --ivory: #161b22;
  --sand: #161b22;
  --white: #161b22;
  --price: #3ddc97;
  --card-border: #2a313c;
  --on-ink: #f4f1ea;
  --forest: var(--cedar);
  --forest-deep: var(--surface);
  --on-forest: var(--heading);
  --sage: var(--sand);
  --amber: var(--brass);
  --shadow: 0 22px 44px -28px rgba(0, 0, 0, 0.72);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 106.25%;
  background: var(--page-bg);
}
body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--heading); text-decoration: none; }
a:hover { color: var(--brass); }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 4.4rem 0; }
.band { background: var(--sand); }
html[data-theme="dark"] .band { background: var(--surface); }
.band-dark { background: var(--ink); color: var(--on-ink); }
html[data-theme="dark"] .band-dark {
  background: var(--surface);
  color: var(--text);
}
.kicker { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 800; color: var(--brass); margin: 0 0 0.5rem; }
.heading { font-family: var(--serif); font-weight: 650; line-height: 1.12; color: var(--heading); margin: 0 0 0.75rem; }
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  border: 1.5px solid transparent;
  font-weight: 800;
  cursor: pointer;
  background: var(--cedar);
  color: var(--on-ink);
}
.btn:hover { background: var(--ink); color: var(--on-ink); }
.btn-amber { background: var(--brass); color: var(--ink); }
.btn-ghost { background: transparent; border-color: var(--brass); color: var(--on-ink); }
.btn-outline { background: transparent; border-color: var(--cedar); color: var(--cedar); }
html[data-theme="dark"] .btn-outline {
  border-color: var(--brass);
  color: var(--heading);
}
html[data-theme="dark"] .btn-outline:hover {
  background: color-mix(in srgb, var(--brass) 16%, transparent);
  color: var(--heading);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--page-bg) 90%, var(--surface));
  border-bottom: 1px solid var(--card-border);
}
html[data-theme="dark"] .site-header { background: var(--page-bg); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; position: relative; }
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--heading); font-family: var(--serif); font-size: 1.15rem; }
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: transparent;
  border-radius: 50%;
}
@media (min-width: 861px) {
  .brand img { width: 56px; height: 56px; }
}
.nav { display: flex; align-items: center; gap: 1.1rem; }
.nav a { font-weight: 700; color: var(--heading); }
.nav .phone { color: var(--clay); }
.menu-toggle { display: none; background: none; border: 0; font: inherit; font-weight: 800; color: var(--heading); cursor: pointer; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border-radius: 999px;
  border: 1.5px solid var(--card-border);
  background: var(--surface);
  color: var(--heading);
  cursor: pointer;
}
.theme-toggle:hover {
  border-color: var(--brass);
  color: var(--brass);
}
.theme-toggle svg { width: 1.15rem; height: 1.15rem; display: block; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.hero { position: relative; min-height: 74vh; display: grid; align-items: center; color: var(--on-ink); overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 82% 28%, rgba(176, 141, 74, 0.22), transparent 58%),
    linear-gradient(118deg, #1c1611 0%, #2a2118 36%, #3d2a1e 70%, #5c3d2e 100%);
}
.story-mark {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 18rem;
  padding: 2rem 1.4rem;
  overflow: hidden;
  background: linear-gradient(160deg, #3d2a1e 0%, #2a2118 58%, #5c3d2e 100%);
}
.story-mark:has(.story-reel) {
  padding: 0;
  min-height: 0;
  min-width: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.story-mark img {
  width: min(220px, 72%);
  height: auto;
  object-fit: contain;
  background: transparent;
}
.story-reel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #1c1611;
  pointer-events: none;
}
.story-reel::-webkit-media-controls,
.story-reel::-webkit-media-controls-enclosure,
.story-reel::-webkit-media-controls-start-playback-button,
.story-reel::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; padding: 4.4rem 0; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.5rem, 5.4vw, 4.3rem); line-height: 1.02; margin: 0 0 1rem; }
.logo-glow { display: grid; place-items: center; }
.logo-glow img {
  width: min(260px, 70vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
  border-radius: 50%;
  padding: 0;
}
.hours-strip { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; padding: 0.9rem 0; font-weight: 700; }
.pill { display: inline-flex; padding: 0.2rem 0.7rem; border-radius: 999px; background: color-mix(in srgb, var(--brass) 24%, transparent); color: var(--brass); font-size: 0.85rem; font-weight: 800; }
.pill.open { background: #deecd8; color: #244126; }
.pill.closed { background: #ead3c6; color: #6a3320; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-frame iframe, .media-frame img { width: 100%; height: 100%; object-fit: cover; }
.product-card { display: flex; flex-direction: column; }
.product-card img { aspect-ratio: 1; object-fit: cover; background: var(--sand); }
.product-card .body { padding: 1rem; }
.tile-letter {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--sand);
  color: var(--brass);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.6rem;
}
.tile-letter-lg { min-height: 16rem; font-size: 4rem; }
html[data-theme="dark"] .tile-letter { background: var(--page-bg); }
.price { font-weight: 800; color: var(--price); }
.chip { display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); }
.filters { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.2rem 0 1.8rem; }
.filters input, .filters select, .form input, .form textarea, .form select {
  border: 1px solid var(--card-border);
  background: var(--surface);
  color: var(--text);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}
.form { display: grid; gap: 0.8rem; }
.variant-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--card-border); }
.flash { background: #deecd8; color: #244126; border-radius: 10px; padding: 0.8rem 1rem; }
html[data-theme="dark"] .flash {
  background: color-mix(in srgb, var(--price) 18%, var(--surface));
  color: var(--heading);
}

.site-footer { background: var(--ink); color: var(--on-ink); padding: 3rem 0 1.5rem; }
html[data-theme="dark"] .site-footer {
  background: var(--page-bg);
  color: var(--text);
  border-top: 1px solid var(--card-border);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer a { color: var(--brass); }
.fineprint { margin-top: 2rem; font-size: 0.85rem; color: color-mix(in srgb, currentColor 72%, transparent); }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 1rem;
  background: color-mix(in srgb, var(--page-bg) 82%, black);
}
.age-gate.open { display: grid; }
.age-panel {
  width: min(440px, 100%);
  max-height: min(92vh, 42rem);
  overflow-y: auto;
  background: var(--surface);
  color: var(--text);
  border-radius: 18px;
  padding: 2.2rem 1.8rem 2rem;
  text-align: center;
  border: 1px solid var(--brass);
}
.age-panel img {
  width: 104px;
  height: 104px;
  margin: 0 auto 1rem;
  object-fit: contain;
  background: transparent;
}
.footer-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 0.8rem;
  object-fit: contain;
  background: transparent;
  border-radius: 50%;
}
.gate-yesno { justify-content: center; margin-top: 1.2rem; }
.gate-rule {
  height: 0;
  margin: 1.3rem 0 0.85rem;
  border-top: 1px solid var(--card-border);
}
.gate-looking {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--heading);
}
.gate-sister {
  width: 100%;
  max-width: 24rem;
  white-space: normal;
  line-height: 1.25;
  min-height: 2.9rem;
  height: auto;
  padding: 0.65rem 1rem;
  text-decoration: none;
}
.age-panel a.gate-sister:hover { color: var(--cedar); }
html[data-theme="dark"] .age-panel a.gate-sister:hover { color: var(--heading); }
.gate-aside { margin: 0.65rem 0 0; font-size: 0.85rem; }
@media (max-width: 560px) {
  .gate-yesno { flex-direction: column; align-items: stretch; }
  .gate-yesno .btn { width: 100%; }
  .gate-sister { max-width: none; }
}

.page-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--on-ink); padding: 4rem 0; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.page-hero .wrap { position: relative; }
.page-hero .heading { color: var(--on-ink); }
html[data-theme="dark"] .page-hero {
  background: var(--page-bg);
  color: var(--text);
}
html[data-theme="dark"] .page-hero .heading { color: var(--heading); }

.staff-photo { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; border: 4px solid var(--brass); background: var(--sand); }

@media (max-width: 860px) {
  .hero-grid, .grid-2, .footer-grid, .grid-3 { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    background: var(--page-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--card-border);
    z-index: 41;
  }
  .nav.open { display: flex; }
  .nav .theme-toggle { align-self: flex-start; }
}

/* WPP-standard menu / print cart */
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img, .media-frame iframe { width: 100%; height: 100%; object-fit: cover; }
.quote { font-family: var(--serif); font-size: 1.7rem; line-height: 1.25; color: var(--heading); }

.product-card { display: flex; flex-direction: column; min-height: 100%; }
.product-card img { aspect-ratio: 1 / 1; object-fit: cover; background: var(--sand); width: 100%; }
.product-card .body { padding: 0.75rem 1.05rem 0.15rem; }
.product-card .product-card-meta { padding: 0 1.05rem 0.75rem; margin-top: auto; }
.product-card-link { color: inherit; text-decoration: none; display: block; }
.product-card-link:hover { color: inherit; }
.product-card.is-text {
  min-height: 0;
  background: color-mix(in srgb, var(--surface) 88%, var(--sand));
  border-style: dashed;
}
.product-card.is-text .body { padding: 0.7rem 1.05rem 0.15rem; }
.product-card.is-text .heading { font-size: 1.15rem !important; margin: .2rem 0 .15rem !important; }
.price { font-weight: 750; color: var(--price); }
.chip { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); }
.size-row { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.45rem 0 0.2rem; }
.size-chip {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    padding: 0.18rem 0.5rem;
    border: 1px solid var(--card-border, #d8d0c4);
    border-radius: 999px;
    color: var(--text);
    background: var(--surface, #fff);
    text-decoration: none;
}
a.size-chip:hover, .size-chip.is-on { border-color: var(--forest, #1b5c32); color: var(--forest, #1b5c32); }
.size-select-wrap {
  display: grid;
  gap: 0.28rem;
  margin: 0.35rem 0 0.2rem;
}
.size-select-wrap.is-compact {
  margin: 0;
  min-width: 8.2rem;
}
.size-select-wrap.is-compact .size-select {
  padding: 0.38rem 1.7rem 0.38rem 0.55rem;
  font-size: 0.88rem;
  border-radius: 10px;
}
.size-select-label, .filter-field span, .live-browse span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.size-select, .live-browse select, .filter-field select {
  appearance: none;
  width: 100%;
  font: inherit;
  font-weight: 600;
  color: var(--text);
  background-color: var(--surface);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231a3c34' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px 8px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.62rem 2.1rem 0.62rem 0.8rem;
  cursor: pointer;
}
html[data-theme="dark"] .size-select,
html[data-theme="dark"] .live-browse select,
html[data-theme="dark"] .filter-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23c4a35a' d='M1 1l5 5 5-5'/></svg>");
}
.size-select:focus, .live-browse select:focus, .filter-field select:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}
.filter-field { display: grid; gap: 0.28rem; min-width: 180px; flex: 1; }
.live-browse {
  display: grid;
  gap: 0.28rem;
  max-width: 28rem;
  margin: 0.85rem 0 0.6rem;
}
.feat-card { display: flex; flex-direction: column; }
.feat-card-link { color: inherit; text-decoration: none; }
.feat-card-meta { padding: 0 1rem 0.75rem; }

.filters { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.2rem 0 1.8rem; }
.filters input, .filters select,
.form input, .form textarea, .form select {
  border: 1px solid var(--card-border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  font: inherit;
}
.filters input, .filters select { min-width: 180px; }
.form { display: grid; gap: 0.8rem; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
}
.variant-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--card-border); }
.flash { background: #d7efe0; color: var(--forest-deep); border-radius: 12px; padding: 0.8rem 1rem; margin-bottom: 1rem; }
html[data-theme="dark"] .flash {
  background: color-mix(in srgb, var(--price) 18%, var(--surface));
  color: var(--heading);
}

.site-footer { background: var(--forest-deep); color: var(--on-ink); padding: 3rem 0 1.5rem; }
html[data-theme="dark"] .site-footer {
  background: var(--page-bg);
  color: var(--text);
  border-top: 1px solid var(--card-border);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer a { color: var(--brass); }
.fineprint { margin-top: 2rem; font-size: 0.85rem; color: color-mix(in srgb, currentColor 72%, transparent); }

.age-gate {
  position: fixed; inset: 0; z-index: 80;
  display: none; place-items: center; padding: 1rem;
  background: color-mix(in srgb, var(--page-bg) 82%, black);
}
.age-gate.open { display: grid; }
.age-panel {
  width: min(440px, 100%);
  max-height: min(92vh, 42rem);
  overflow-y: auto;
  background: var(--surface);
  color: var(--text);
  border-radius: 28px;
  padding: 2.2rem 1.8rem 2.1rem;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--brass) 35%, var(--card-border));
}
.age-panel img { width: 110px; height: 110px; margin: 0 auto 1rem; object-fit: contain; }
.age-yesno { justify-content: center; margin-top: 1.2rem; }
.age-rule {
  border: 0;
  border-top: 1px solid var(--card-border);
  margin: 1.35rem 0 0.9rem;
}
.age-looking {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--heading);
}
.age-sister {
  width: 100%;
  max-width: 22rem;
  white-space: normal;
  line-height: 1.25;
  min-height: 2.9rem;
  height: auto;
  padding: 0.65rem 1rem;
  text-decoration: none;
}
.age-panel a.age-sister:hover { color: var(--cedar); }
html[data-theme="dark"] .age-panel a.age-sister:hover { color: var(--heading); }
.age-aside { margin: 0.7rem 0 0; font-size: 0.85rem; }
@media (max-width: 560px) {
  .age-yesno { flex-direction: column; align-items: stretch; }
  .age-yesno .btn { width: 100%; }
  .age-sister { max-width: none; }
}

.page-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--on-ink); padding: 4rem 0; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero .wrap { position: relative; }
.page-hero .heading { color: var(--on-ink); }
.page-hero .kicker { color: var(--brass); }
.page-hero p { color: color-mix(in srgb, var(--on-ink) 88%, transparent); }
.page-hero .muted { color: color-mix(in srgb, var(--on-ink) 72%, transparent); }
html[data-theme="dark"] .page-hero {
  background: var(--page-bg);
  color: var(--text);
}
html[data-theme="dark"] .page-hero .heading { color: var(--heading); }
.page-hero--mural {
  min-height: 22rem;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--on-ink);
  padding: 4.5rem 0;
}
.page-hero--mural img { opacity: 0.32; }
.page-hero--mural .heading {
  color: var(--on-ink);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 0.85rem;
}
.page-hero--mural p { max-width: 40rem; }
html[data-theme="dark"] .page-hero--mural,
html[data-theme="dark"] .page-hero--mural .heading {
  background: var(--forest-deep);
  color: var(--on-ink);
}

.staff-photo { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; border: 4px solid color-mix(in srgb, var(--brass) 40%, var(--surface)); background: var(--sand); }

.live-menu-page { background: var(--page-bg); color: var(--text); padding: 2.2rem 0 4rem; }
.live-menu-page .muted { color: var(--muted); }
.live-title { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--heading); margin: 0 0 .6rem; }
.live-lead { max-width: 38rem; color: var(--muted); }
.live-kicker-row, .live-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.live-kicker-row h2, .live-head h2 { margin: 0; color: var(--heading); font-size: 1.35rem; }
.live-kicker-row a, .live-head > a { color: var(--muted); }
.feat-block { margin: 2rem 0 1.6rem; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: .9rem; }
.feat-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.feat-card:hover { color: inherit; border-color: var(--brass); }
.feat-card img, .mono.tall { width: 100%; height: 160px; object-fit: cover; background: var(--page-bg); }
.mono {
  display: grid; place-items: center;
  background: var(--page-bg); color: var(--brass); font-weight: 800;
}
.feat-copy { padding: .85rem .95rem 1rem; }
.feat-copy h3 { margin: 0; font-size: 1.05rem; color: var(--heading); }
.feat-copy .meta { margin: .25rem 0 0; color: var(--muted); font-size: .85rem; }
.feat-copy .stock-in { color: var(--price); font-weight: 600; margin: .45rem 0 0; }
.feat-copy .stock-low { color: #f0a202; font-weight: 600; margin: .45rem 0 0; }
.feat-copy .price, .live-row b { color: var(--price); font-weight: 800; margin: .45rem 0 0; }
.live-preview {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.1rem 1.2rem 1.2rem;
  margin: 0 0 2rem;
}
.live-store { display: flex; align-items: center; gap: .85rem; }
.live-store img { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; background: var(--page-bg); }
.live-kicker { margin: 0; color: var(--muted); font-size: .78rem; letter-spacing: .04em; }
.live-tabs { display: flex; gap: 1.1rem; border-bottom: 1px solid var(--card-border); margin: .85rem 0 .4rem; overflow-x: auto; }
.live-tabs button {
  appearance: none; background: none; border: 0; border-bottom: 2px solid transparent;
  color: var(--muted); font: inherit; font-weight: 600; padding: 0 0 .55rem; cursor: pointer;
}
.live-tabs button.is-on { color: var(--brass); border-bottom-color: var(--brass); }
.live-list { display: none; }
.live-list.is-on { display: block; }
.live-row {
  display: grid; grid-template-columns: 1fr auto; gap: .75rem; align-items: center;
  padding: .55rem 0; border-bottom: 1px solid var(--card-border); color: inherit;
}
.live-row:hover { color: inherit; }
.live-row-link {
  display: grid; grid-template-columns: 52px 1fr; gap: .75rem; align-items: center;
  color: inherit; min-width: 0;
}
.live-row-link:hover { color: inherit; }
.live-row img, .live-row .mono { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.live-row .mono { display: grid; place-items: center; font-size: 1.05rem; }
.live-row strong { display: block; color: var(--heading); }
.live-row span { color: var(--muted); font-size: .85rem; }
.live-row-meta {
  display: grid;
  justify-items: end;
  gap: 0.15rem;
  min-width: 7.2rem;
}
.live-row-meta .price { margin: 0; font-size: 0.95rem; }
.live-menu-page .filters input, .live-menu-page .filters select {
  background: var(--surface); color: var(--text); border-color: var(--card-border);
}
.live-menu-page .product-card { background: var(--surface); border-color: var(--card-border); color: var(--text); }
.live-menu-page .product-card .heading { color: var(--heading); }

@media (max-width: 860px) {
  .hero-grid, .grid-2, .footer-grid, .grid-3 { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-flex; }
  .print-cart-label { display: none; }
  .print-drawer-foot .btn-row { flex-direction: column; }
  .nav {
    display: none;
    position: absolute;
    top: 4.4rem; left: 0; right: 0;
    background: var(--page-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem 1.2rem;
    border-bottom: 1px solid var(--card-border);
    z-index: 41;
  }
  .nav.open { display: flex; }
  .nav .theme-toggle { align-self: flex-start; }
  .section { padding: 3rem 0; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .live-row { grid-template-columns: 1fr; }
  .live-row-meta { justify-items: stretch; min-width: 0; }
}

/* Print Cart — on-screen drawer */
.print-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--card-border);
  background: var(--surface);
  color: var(--heading);
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
}
.print-cart-btn:hover { border-color: var(--brass); color: var(--brass); }
.print-cart-btn svg { width: 1.1rem; height: 1.1rem; }
.print-cart-badge {
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--brass);
  color: var(--forest-deep);
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}
.print-cart-badge[hidden] { display: none; }
.print-drawer-scrim {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(15, 44, 36, 0.46);
}
.print-drawer-scrim[hidden] { display: none; }
.print-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 71;
  width: min(28.5rem, 100%);
  background: var(--surface);
  color: var(--text);
  border-left: 1px solid var(--card-border);
  box-shadow: -18px 0 40px -24px rgba(15, 44, 36, 0.55);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.print-drawer[hidden] { display: none; }
.print-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.2rem 0.4rem;
}
.print-drawer-head .heading { font-size: 1.85rem; margin: 0; }
.print-drawer-x {
  appearance: none;
  border: 0;
  background: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.print-drawer-explain {
  margin: 0.4rem 1.2rem 0.8rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--sand) 70%, var(--surface));
  border: 1px solid var(--card-border);
  font-size: 0.92rem;
}
html[data-theme="dark"] .print-drawer-explain { background: color-mix(in srgb, var(--brass) 10%, var(--surface)); }
.print-drawer-explain p { margin: 0 0 0.55rem; }
.print-drawer-explain p:last-child { margin: 0; color: var(--muted); }
.print-drawer-items {
  flex: 1;
  overflow: auto;
  padding: 0.2rem 1.2rem 1rem;
}
.print-empty {
  text-align: center;
  padding: 2.2rem 0.6rem;
  color: var(--muted);
}
.print-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.7rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--card-border);
}
.print-line h3 { margin: 0; font-size: 1.02rem; color: var(--heading); }
.print-line .meta { margin: 0.15rem 0 0; font-size: 0.85rem; color: var(--muted); }
.print-line-side { display: grid; justify-items: end; gap: 0.35rem; }
.print-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  overflow: hidden;
}
.print-qty button {
  appearance: none;
  border: 0;
  background: var(--page-bg);
  color: var(--heading);
  width: 1.7rem;
  height: 1.7rem;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.print-qty span { min-width: 1.4rem; text-align: center; font-weight: 700; font-size: 0.88rem; }
.print-remove {
  appearance: none;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
}
.print-drawer-foot {
  padding: 0.9rem 1.2rem 1.2rem;
  border-top: 1px solid var(--card-border);
  background: var(--page-bg);
}
.print-drawer-foot .btn-row { width: 100%; }
.print-drawer-foot .btn { flex: 1; }
.print-ask-total { margin: 0 0 0.75rem; font-weight: 650; }
.print-ask-total span { font-weight: 500; color: var(--muted); font-size: 0.85rem; }
.print-clear {
  appearance: none;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 0.7rem;
  text-decoration: underline;
}
.btn-print-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.35rem;
  min-height: 2.1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1.5px solid var(--cedar);
  background: transparent;
  color: var(--cedar);
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
}
html[data-theme="dark"] .btn-print-add {
  border-color: var(--brass);
  color: var(--heading);
}
.btn-print-add:hover { background: color-mix(in srgb, var(--cedar) 10%, transparent); }
.btn-print-add.is-in {
  background: var(--cedar);
  color: var(--on-ink);
  border-color: var(--cedar);
}
.btn-print-add.is-compact {
  width: 2rem;
  min-height: 2rem;
  margin-top: 0.2rem;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1;
}
.product-detail .btn-print-add { width: auto; min-width: 10.5rem; margin-top: 0; }
.print-toast {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  background: var(--forest-deep);
  color: var(--on-ink);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}
body:has(#print-drawer:not([hidden])) .print-toast {
  bottom: auto;
  top: 1.1rem;
}
.print-toast[hidden] { display: none; }

/* Counter Slip — unique print template */
#print-slip { display: none; }
.print-slip-paper {
  display: grid;
  grid-template-columns: 32px 1fr;
  background: #f4efe4;
  color: #1a3c34;
  min-height: 10in;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
.print-slip-stub {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: #1a3c34;
  color: #f5f0e6;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  position: relative;
}
.print-slip-stub::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 8px;
  bottom: 8px;
  width: 14px;
  background: radial-gradient(circle, #f4efe4 3px, transparent 3.5px) 0 0 / 14px 16px;
}
.print-slip-main { min-width: 0; position: relative; }
.print-slip-banner {
  width: 100%;
  height: 118px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.print-slip-head {
  display: grid;
  grid-template-columns: auto 1fr 92px;
  gap: 12px;
  align-items: center;
  padding: 10px 18px 6px;
}
.print-slip-head img.logo { width: 62px; height: 62px; object-fit: contain; }
.print-slip-head h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 0.95;
  margin: 0;
  letter-spacing: 0.04em;
}
.print-slip-head .kicker-print {
  margin: 0 0 2px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  color: #8a6a2e;
}
.print-slip-head p { margin: 4px 0 0; font-size: 12px; }
.print-slip-wreath-wrap {
  position: relative;
  width: 92px;
  height: 92px;
}
.print-slip-wreath-wrap img { width: 92px; height: 92px; object-fit: contain; }
.print-slip-no {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 24px 16px;
}
.deal-soon {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--cedar) 16%, var(--sand));
  color: var(--cedar);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 650;
  letter-spacing: 0.04em;
}
html[data-theme="dark"] .deal-soon {
  background: var(--surface);
  color: var(--brass);
  border-bottom: 1px solid var(--card-border);
}

.print-slip-banner-note {
  margin: 0 18px 10px;
  padding: 10px 12px;
  border: 1.5px solid #1a3c34;
  border-left-width: 8px;
  background: #fffaf1;
  font-size: 12.5px;
