﻿:root {
  --ink: #171413;
  --ink-soft: #3a302c;
  --paper: #f7f0e3;
  --paper-deep: #ead9bb;
  --rice: #fffaf0;
  --vermilion: #b6252a;
  --vermilion-dark: #7f171e;
  --jade: #1d5c51;
  --indigo: #263f63;
  --gold: #c28b38;
  --ash: #786b5d;
  --line: rgba(23, 20, 19, 0.14);
  --shadow: 0 22px 55px rgba(23, 20, 19, 0.18);
  --radius: 8px;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgba(29, 92, 81, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(178, 37, 42, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  color: var(--ink);
  font-family:
    "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
    "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

body.panel-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.promo-marquee {
  height: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--vermilion);
  color: #fff4d8;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.promo-track {
  display: flex;
  width: max-content;
  animation: promoScroll 24s linear infinite;
}

.promo-track span {
  padding: 0 34px;
}

@keyframes promoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.age-ribbon {
  min-height: 58px;
  padding: 12px clamp(16px, 4vw, 44px);
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  background: var(--ink);
  color: #f9e9ca;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  padding: 0 clamp(16px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(23, 20, 19, 0.94);
  color: var(--rice);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-logo {
  width: 112px;
  height: 78px;
  flex: 0 0 auto;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(255, 250, 240, 0.28);
  background: #fff;
  border-radius: 7px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 18px;
}

.brand-copy small {
  color: rgba(255, 250, 240, 0.66);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 22px);
  flex: 1;
}

.sgdc-menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 25px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 13px;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--rice);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-toggle,
.cart-trigger {
  border: 1px solid rgba(255, 250, 240, 0.24);
  background: rgba(255, 250, 240, 0.08);
  color: var(--rice);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.icon-button:hover,
.menu-toggle:hover,
.cart-trigger:hover,
.icon-button:focus-visible,
.menu-toggle:focus-visible,
.cart-trigger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 250, 240, 0.52);
  background: rgba(255, 250, 240, 0.14);
  outline: none;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}

.cart-trigger {
  height: 40px;
  padding: 0 10px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  font-size: 13px;
}

.cart-trigger strong {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
}

.menu-toggle {
  width: 42px;
  height: 40px;
  display: none;
  place-items: center;
  border-radius: 6px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 2px 0;
  background: currentColor;
}

.mobile-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 28;
  padding: 10px 16px 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: rgba(23, 20, 19, 0.97);
  color: var(--rice);
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 11px 10px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.07);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 600px;
  height: calc(100svh - 112px);
  max-height: 780px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(44px, 6vw, 80px) clamp(18px, 6vw, 78px);
  color: var(--rice);
  background:
    linear-gradient(90deg, rgba(23, 20, 19, 0.94) 0%, rgba(23, 20, 19, 0.78) 38%, rgba(23, 20, 19, 0.28) 74%),
    linear-gradient(180deg, rgba(23, 20, 19, 0.3), rgba(23, 20, 19, 0.16)),
    url("../images/theme-bg.png") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent 0 48px, rgba(255, 250, 240, 0.12) 49px 50px, transparent 51px),
    linear-gradient(180deg, transparent 0 48px, rgba(255, 250, 240, 0.1) 49px 50px, transparent 51px);
  background-size: 104px 104px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--vermilion);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.5;
}

.hero .eyebrow {
  color: #ffc764;
}

.hero h1,
.night-copy h2 {
  color: #ffc764;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

p {
  line-height: 1.8;
}

.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(15px, 1.4vw, 18px);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(23, 20, 19, 0.2);
  outline: none;
}

.button.primary {
  border-color: var(--vermilion);
  background: var(--vermilion);
  color: var(--rice);
}

.button.secondary {
  border-color: #f3cf82;
  background: #f3cf82;
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 250, 240, 0.45);
  background: rgba(255, 250, 240, 0.08);
  color: var(--rice);
}

.button.dark {
  background: var(--ink);
  color: var(--rice);
}

.button.full {
  width: 100%;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: none;
}

.window-grid {
  position: absolute;
  right: 0;
  top: 0;
  width: min(56vw, 760px);
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 240, 0.07) 1px, transparent 1px);
  background-size: 78px 92px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
}

.signboard {
  position: absolute;
  right: clamp(34px, 11vw, 150px);
  top: clamp(62px, 10vh, 112px);
  width: clamp(88px, 12vw, 136px);
  min-height: 210px;
  padding: 18px 12px;
  display: grid;
  place-items: center;
  writing-mode: vertical-rl;
  border: 1px solid rgba(255, 219, 141, 0.58);
  background:
    linear-gradient(180deg, rgba(178, 37, 42, 0.94), rgba(84, 19, 20, 0.94)),
    #8a1f23;
  color: #ffeab0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  box-shadow: 0 0 36px rgba(178, 37, 42, 0.45);
}

.lantern {
  position: absolute;
  width: 72px;
  height: 92px;
  border-radius: 36px 36px 30px 30px;
  background:
    linear-gradient(90deg, rgba(255, 247, 204, 0.18), transparent 18%, transparent 82%, rgba(255, 247, 204, 0.16)),
    #d74a2f;
  box-shadow: 0 0 42px rgba(215, 74, 47, 0.5);
}

.lantern::before,
.lantern::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 8px;
  border-radius: 99px;
  background: #d9ae58;
}

.lantern::before {
  top: -8px;
}

.lantern::after {
  bottom: -8px;
}

.lantern-one {
  right: clamp(210px, 28vw, 410px);
  top: 74px;
}

.lantern-two {
  right: clamp(70px, 8vw, 120px);
  bottom: 178px;
  width: 54px;
  height: 70px;
  opacity: 0.82;
}

.shelf {
  position: absolute;
  right: clamp(38px, 8vw, 120px);
  width: clamp(280px, 42vw, 560px);
  height: 118px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(16px, 2vw, 26px);
  border-bottom: 12px solid rgba(92, 48, 28, 0.92);
  background: linear-gradient(180deg, transparent, rgba(255, 250, 240, 0.04));
}

.shelf-top {
  top: clamp(180px, 28vh, 260px);
}

.shelf-bottom {
  bottom: clamp(125px, 18vh, 190px);
}

.bottle {
  position: relative;
  display: inline-block;
  width: 44px;
  border-radius: 13px 13px 9px 9px;
  box-shadow: inset 8px 0 rgba(255, 255, 255, 0.16);
}

.bottle::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  width: 18px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 7px 7px 0 0;
  background: inherit;
}

.bottle::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 18px;
  height: 28px;
  border: 1px solid rgba(255, 250, 240, 0.56);
  background: rgba(255, 250, 240, 0.14);
}

.bottle.tall {
  height: 96px;
}

.bottle.short {
  height: 72px;
}

.bottle.round {
  width: 58px;
  height: 76px;
  border-radius: 26px 26px 12px 12px;
}

.bottle.vermilion {
  background: #9f2024;
}

.bottle.jade {
  background: #1d5c51;
}

.bottle.porcelain {
  background: #f2e6c9;
}

.bottle.gold {
  background: #c28b38;
}

.cup,
.bowl,
.menu-card {
  display: inline-block;
}

.cup {
  width: 52px;
  height: 54px;
  border-radius: 8px 8px 17px 17px;
  border: 4px solid #e9dfc9;
  background: #1d5c51;
}

.cup.ceramic {
  width: 42px;
  height: 42px;
  background: #f2e6c9;
  border-color: #b6252a;
}

.bowl {
  width: 74px;
  height: 38px;
  border-radius: 0 0 44px 44px;
  background: #d6b166;
  box-shadow: inset 0 8px rgba(255, 250, 240, 0.2);
}

.menu-card {
  width: 62px;
  height: 82px;
  padding-top: 16px;
  text-align: center;
  border: 2px solid #c28b38;
  background: #f7f0e3;
  color: #7f171e;
  font-weight: 900;
}

.counter {
  position: absolute;
  right: 0;
  left: 44%;
  bottom: 0;
  height: 112px;
  background:
    linear-gradient(180deg, rgba(102, 53, 31, 0.96), rgba(48, 31, 24, 0.98)),
    #4f2a21;
  box-shadow: 0 -18px 48px rgba(23, 20, 19, 0.3);
}

.plate {
  position: absolute;
  bottom: 36px;
  width: 118px;
  height: 32px;
  border-radius: 50%;
  background: #f2e6c9;
  border: 6px solid #bb342d;
}

.plate-one {
  right: 250px;
}

.plate-two {
  right: 90px;
  width: 92px;
  border-color: #1d5c51;
}

.steam {
  position: absolute;
  bottom: 72px;
  width: 24px;
  height: 70px;
  border-left: 3px solid rgba(255, 250, 240, 0.34);
  border-radius: 50%;
}

.steam-one {
  right: 292px;
}

.steam-two {
  right: 118px;
  height: 54px;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 78px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 640px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow),
.world-copy p,
.night-copy p,
.gift-band p,
.restaurant-section p,
.split-section p {
  color: var(--ink-soft);
}

.band-recommend {
  background: var(--rice);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-panel {
  min-height: 312px;
  display: grid;
  grid-template-rows: 148px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 12px 28px rgba(23, 20, 19, 0.08);
}

.feature-panel.has-feature-image {
  grid-template-rows: auto 1fr;
}

.feature-visual,
.scene-visual,
.product-visual {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(178, 37, 42, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(29, 92, 81, 0.16), rgba(194, 139, 56, 0.16)),
    #ead9bb;
}

.feature-visual::before,
.feature-visual::after,
.scene-visual::before,
.scene-visual::after,
.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  display: block;
}

.feature-visual.first-set::before {
  width: 52px;
  height: 92px;
  left: 44%;
  bottom: 25px;
  border-radius: 14px 14px 9px 9px;
  background: #f2e6c9;
  border: 4px solid #b6252a;
}

.feature-visual.first-set::after {
  width: 148px;
  height: 30px;
  left: 24%;
  bottom: 18px;
  border-radius: 50%;
  background: rgba(29, 92, 81, 0.5);
}

.feature-visual.solo-set::before {
  width: 72px;
  height: 96px;
  left: 24%;
  bottom: 26px;
  border-radius: 36px 36px 10px 10px;
  background: #d75a36;
  box-shadow: 78px 18px 0 -18px #1d5c51;
}

.feature-visual.solo-set::after {
  width: 118px;
  height: 22px;
  right: 24px;
  bottom: 26px;
  background: #3a302c;
  border-radius: 7px;
}

.feature-visual.tavern-set::before {
  width: 150px;
  height: 86px;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  background: #b6252a;
  border: 7px solid #c28b38;
}

.feature-visual.tavern-set::after {
  width: 220px;
  height: 16px;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  background: #5e3324;
}

.feature-visual.has-image {
  aspect-ratio: 48 / 29;
  display: grid;
  place-items: center;
  background: #fffaf0;
}

.feature-visual.has-image::before,
.feature-visual.has-image::after {
  content: none;
}

.feature-visual.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.feature-visual.has-image.image-fit-cover img {
  object-fit: cover;
}

.tag {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(178, 37, 42, 0.12);
  color: var(--vermilion-dark);
  font-size: 12px;
  font-weight: 800;
}

.text-link {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--jade);
  cursor: pointer;
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.shop-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-filter {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 8px;
}

.filter-chip {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.filter-chip small {
  min-width: 24px;
  min-height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(23, 20, 19, 0.08);
  color: inherit;
  font-size: 12px;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateX(2px);
  outline: none;
}

.filter-chip.active {
  background: var(--ink);
  color: var(--rice);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr));
  gap: 18px;
  align-items: start;
}

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 174px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--rice);
  box-shadow: 0 12px 28px rgba(23, 20, 19, 0.08);
}

.product-visual {
  border-radius: 0;
}

.product-visual.has-image {
  display: grid;
  place-items: center;
  background: #fffaf0;
}

.product-visual.has-image::before,
.product-visual.has-image::after {
  content: none;
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 12px;
  display: block;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
}

.product-visual.kind-bottle::before {
  width: 48px;
  height: 96px;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  border-radius: 14px 14px 8px 8px;
  background: #f5e7cd;
  border: 4px solid #b6252a;
  box-shadow: 62px 18px 0 -10px #1d5c51, -58px 20px 0 -12px #c28b38;
}

.product-visual.kind-bottle::after {
  width: 148px;
  height: 25px;
  left: 50%;
  bottom: 27px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(23, 20, 19, 0.17);
}

.product-visual.kind-snack::before {
  width: 148px;
  height: 68px;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  border-radius: 0 0 72px 72px;
  background: #c28b38;
  border: 6px solid #7f171e;
}

.product-visual.kind-snack::after {
  width: 132px;
  height: 24px;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #8c4b28;
  box-shadow:
    18px -5px 0 -6px #e6bf6e,
    -24px -2px 0 -8px #e6bf6e,
    42px 3px 0 -8px #e6bf6e;
}

.product-visual.kind-lamp::before {
  width: 76px;
  height: 92px;
  left: 30%;
  bottom: 48px;
  border-radius: 38px 38px 14px 14px;
  background: #d75a36;
  box-shadow: 0 0 40px rgba(215, 90, 54, 0.58);
}

.product-visual.kind-lamp::after {
  width: 132px;
  height: 28px;
  right: 22px;
  bottom: 44px;
  border-radius: 6px;
  background: #2d2927;
}

.product-visual.kind-cup::before {
  width: 92px;
  height: 88px;
  left: 48%;
  bottom: 40px;
  transform: translateX(-50%);
  border: 8px solid #f2e6c9;
  border-radius: 10px 10px 24px 24px;
  background: #1d5c51;
}

.product-visual.kind-cup::after {
  width: 74px;
  height: 28px;
  left: 57%;
  bottom: 68px;
  border: 7px solid #f2e6c9;
  border-left: 0;
  border-radius: 0 30px 30px 0;
}

.product-visual.kind-gift::before {
  width: 128px;
  height: 92px;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  background: #b6252a;
  border: 6px solid #c28b38;
}

.product-visual.kind-gift::after {
  width: 16px;
  height: 104px;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  background: #f3cf82;
  box-shadow: 0 -52px 0 36px rgba(0, 0, 0, 0);
}

.product-visual.kind-tea::before {
  width: 118px;
  height: 76px;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  border-radius: 0 0 70px 70px;
  background: #e6d6b7;
  border: 6px solid #1d5c51;
}

.product-visual.kind-tea::after {
  width: 44px;
  height: 80px;
  left: 54%;
  bottom: 90px;
  border-left: 4px solid rgba(23, 20, 19, 0.24);
  border-radius: 50%;
}

.product-body {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ash);
  font-size: 12px;
}

.product-body h3 {
  margin: 0;
  font-size: 18px;
}

.product-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  margin-top: 3px;
}

.product-actions .button {
  min-height: 42px;
  padding: 0 12px;
}

.product-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--ash);
  text-align: center;
}

.product-empty strong {
  color: var(--ink);
}

.quick-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.quick-button:hover,
.quick-button:focus-visible {
  border-color: var(--ink);
  outline: none;
}

.world-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #efe2ca;
}

.world-copy {
  max-width: 620px;
}

.world-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.world-mosaic article {
  min-height: 260px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 20, 19, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.06), rgba(255, 250, 240, 0.72)),
    #d8bf93;
}

.world-mosaic article:nth-child(2) {
  transform: translateY(28px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.05), rgba(255, 250, 240, 0.7)),
    #d7a462;
}

.world-mosaic article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.04), rgba(255, 250, 240, 0.68)),
    #94a69a;
}

.world-mosaic span {
  margin-bottom: auto;
  color: rgba(23, 20, 19, 0.44);
  font-size: 38px;
  font-weight: 900;
}

.world-mosaic p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.night-section {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23, 20, 19, 0.88), rgba(23, 20, 19, 0.8)),
    #1f2025;
  color: var(--rice);
}

.night-copy p {
  color: rgba(255, 250, 240, 0.72);
}

.night-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.04), transparent 32%),
    linear-gradient(135deg, #2a2525, #101112 66%, #3a1d1f);
}

.night-visual.has-image {
  min-height: 0;
  aspect-ratio: 1000 / 563;
  display: grid;
  place-items: center;
  background: #171413;
}

.night-visual.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.night-visual.has-image.image-fit-contain img {
  object-fit: contain;
}

.lamp {
  position: absolute;
  left: 18%;
  bottom: 100px;
  width: 110px;
  height: 142px;
  border-radius: 55px 55px 12px 12px;
  background: #d65a3e;
  box-shadow: 0 0 76px rgba(214, 90, 62, 0.68);
}

.lamp::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -86px;
  height: 86px;
  background: #64402e;
}

.radio {
  position: absolute;
  right: 16%;
  bottom: 92px;
  width: 180px;
  height: 102px;
  border-radius: 7px;
  background: #d5b16a;
  border: 8px solid #30231f;
}

.radio::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 42%, rgba(23, 20, 19, 0.7) 42% 58%, transparent 58%),
    #1d5c51;
}

.radio::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 28px;
  width: 72px;
  height: 8px;
  background: #30231f;
  box-shadow: 0 18px 0 #30231f, 0 36px 0 #30231f;
}

.small-cup {
  position: absolute;
  left: 45%;
  bottom: 78px;
  width: 58px;
  height: 48px;
  border-radius: 8px 8px 18px 18px;
  background: #f2e6c9;
  border: 5px solid #b6252a;
}

.smoke-line {
  position: absolute;
  border-left: 3px solid rgba(255, 250, 240, 0.2);
  border-radius: 50%;
}

.smoke-line.one {
  left: 49%;
  bottom: 145px;
  width: 32px;
  height: 120px;
}

.smoke-line.two {
  left: 54%;
  bottom: 142px;
  width: 24px;
  height: 96px;
}

.tavern-section {
  background: var(--paper);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.scene-grid article {
  min-height: 330px;
  display: grid;
  grid-template-rows: 168px auto 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--rice);
}

.scene-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.scene-bottle::before {
  width: 54px;
  height: 100px;
  left: 52%;
  bottom: 34px;
  transform: translateX(-50%);
  border-radius: 16px 16px 8px 8px;
  background: #b6252a;
  box-shadow: -58px 18px 0 -12px #f2e6c9, 58px 18px 0 -12px #1d5c51;
}

.scene-cup::before {
  width: 98px;
  height: 80px;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  border-radius: 8px 8px 24px 24px;
  background: #f2e6c9;
  border: 8px solid #1d5c51;
}

.scene-food::before {
  width: 142px;
  height: 56px;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  border-radius: 0 0 70px 70px;
  background: #d8a056;
  border: 6px solid #7f171e;
}

.scene-paper::before {
  width: 118px;
  height: 136px;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent 48%, rgba(127, 23, 30, 0.9) 48% 54%, transparent 54%),
    #f1dfbd;
  border: 5px solid #b6252a;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(29, 92, 81, 0.12), rgba(194, 139, 56, 0.08)),
    var(--rice);
}

.quote-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gear-button {
  margin-top: 24px;
}

.quote-wall button {
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #171413;
  color: var(--rice);
  cursor: pointer;
  text-align: left;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.35;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.quote-wall button:nth-child(2) {
  background: #7f171e;
}

.quote-wall button:nth-child(3) {
  background: #1d5c51;
}

.quote-wall button:nth-child(4) {
  background: #263f63;
}

.quote-wall button:hover,
.quote-wall button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.gift-section {
  background: #efe2ca;
}

.gift-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(23, 20, 19, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.5)),
    linear-gradient(90deg, rgba(178, 37, 42, 0.2), rgba(38, 63, 99, 0.18));
}

.gift-band > div {
  max-width: 760px;
}

.content-section {
  background: var(--rice);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-grid article {
  min-height: 260px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(23, 20, 19, 0.1), rgba(23, 20, 19, 0.02)),
    #f7f0e3;
}

.story-grid p {
  color: var(--vermilion-dark);
  font-weight: 900;
}

.story-grid a {
  width: fit-content;
  color: var(--jade);
  font-weight: 900;
}

.restaurant-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(23, 20, 19, 0.06), transparent),
    var(--paper);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--rice);
  box-shadow: 0 12px 28px rgba(23, 20, 19, 0.08);
}

.contact-form label,
.search-box label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.search-box input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 150px;
  padding-block: 12px;
  line-height: 1.7;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.search-box input:focus {
  border-color: var(--jade);
  outline: 3px solid rgba(29, 92, 81, 0.12);
}

.contact-notice {
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}

.contact-notice.success {
  border: 1px solid rgba(29, 92, 81, 0.24);
  background: rgba(29, 92, 81, 0.1);
}

.contact-notice.error {
  border: 1px solid rgba(144, 24, 32, 0.22);
  background: rgba(144, 24, 32, 0.1);
}

.sgdc-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 42px clamp(18px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
  background: var(--ink);
  color: var(--rice);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.68);
}

.site-footer .footer-legal {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  text-align: left;
  line-height: 1.85;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.site-footer a {
  color: rgba(255, 250, 240, 0.72);
  font-size: 13px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--rice);
  outline: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(23, 20, 19, 0.48);
}

.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100svh;
  padding: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 16px;
  background: var(--rice);
  color: var(--ink);
  box-shadow: -24px 0 60px rgba(23, 20, 19, 0.28);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.drawer-head .icon-button,
.search-box .icon-button,
.quick-view .icon-button {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.drawer-head h2 {
  margin-bottom: 0;
  font-size: 26px;
}

.cart-items {
  min-height: 0;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(178, 37, 42, 0.28), transparent),
    #ead9bb;
}

.cart-thumb.has-image {
  background: #fffaf0;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  padding: 4px;
  display: block;
  object-fit: contain;
}

.cart-line h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.cart-line p {
  margin: 0;
  color: var(--ash);
  font-size: 12px;
}

.qty-tools {
  display: flex;
  align-items: center;
  gap: 5px;
}

.qty-tools button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.cart-empty {
  display: grid;
  place-items: center;
  color: var(--ash);
}

.cart-empty[hidden] {
  display: none;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 20px;
  font-weight: 900;
}

.cart-note {
  margin: 0;
  color: var(--ash);
  font-size: 12px;
  line-height: 1.7;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  place-items: start center;
  padding: 9vh 18px 24px;
  background: rgba(23, 20, 19, 0.62);
}

.search-panel.open {
  display: grid;
}

.search-box {
  width: min(760px, 100%);
  padding: 22px;
  border-radius: var(--radius);
  background: var(--rice);
  box-shadow: var(--shadow);
}

.search-box > .icon-button {
  float: right;
}

.search-results {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.search-result {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
  cursor: pointer;
  text-align: left;
}

.search-result strong {
  display: block;
}

.search-result span {
  color: var(--ash);
  font-size: 13px;
}

.search-empty {
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: var(--ash);
  text-align: center;
}

.quick-view {
  width: min(760px, calc(100vw - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--rice);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quick-view::backdrop {
  background: rgba(23, 20, 19, 0.52);
}

.quick-view[open] {
  display: grid;
}

.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
}

.quick-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
}

.quick-content .product-visual {
  min-height: 360px;
}

.quick-content .product-image {
  padding: 22px;
}

.quick-copy {
  padding: 34px 30px;
}

.quick-copy .price {
  margin: 12px 0 22px;
  color: var(--vermilion-dark);
  font-size: 24px;
  font-weight: 900;
}

.toast {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 24px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 16px;
  transform: translate(-50%, 120px);
  border-radius: 999px;
  background: var(--ink);
  color: var(--rice);
  box-shadow: 0 18px 40px rgba(23, 20, 19, 0.22);
  transition: transform 220ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

.header-link {
  min-height: 42px;
}

.info-main {
  background: var(--rice);
}

.info-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  padding: 84px clamp(18px, 5vw, 72px) 52px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 20, 19, 0.9), rgba(23, 20, 19, 0.54)),
    url("../images/theme-bg.png") center center / cover no-repeat;
  color: var(--rice);
}

.info-hero > div {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.info-hero h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 76px);
  letter-spacing: 0;
}

.info-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

.info-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 880px);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  justify-content: center;
}

.info-side-nav {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 8px;
}

.info-side-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  font-weight: 800;
}

.info-side-nav a.active,
.info-side-nav a:hover,
.info-side-nav a:focus-visible {
  background: var(--ink);
  color: var(--rice);
  outline: none;
}

.info-article {
  min-width: 0;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--vermilion);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 12px 28px rgba(23, 20, 19, 0.08);
}

.info-meta {
  margin: 0 0 22px;
  color: var(--ash);
  font-size: 12px;
  font-weight: 800;
}

.info-content {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.9;
}

.info-content > *:first-child {
  margin-top: 0;
}

.info-content > *:last-child {
  margin-bottom: 0;
}

.info-content p {
  margin: 0 0 18px;
}

.info-content h2,
.info-content h3 {
  margin: 30px 0 12px;
}

.info-content a {
  color: var(--jade);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-content figure {
  margin: 0 0 24px;
}

.info-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.info-content hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.admin-bar .site-header {
  top: 32px;
}

.admin-bar .mobile-nav {
  top: calc(var(--header-height) + 32px);
}

.info-side-nav a.active {
  background: var(--ink);
  color: var(--rice);
}

.archive-lead p,
.archive-lead {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.8;
}

.sgdc-wc-products {
  min-width: 0;
}

.woocommerce .sgdc-wc-products .woocommerce-result-count,
.woocommerce .sgdc-wc-products .woocommerce-ordering {
  margin: 0 0 16px;
}

.woocommerce .sgdc-wc-products .woocommerce-ordering select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--rice);
  color: var(--ink);
}

.woocommerce ul.products.product-grid {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr));
  gap: 18px;
  align-items: start;
  list-style: none;
}

.woocommerce ul.products.product-grid::before,
.woocommerce ul.products.product-grid::after {
  content: none;
}

.woocommerce ul.products.product-grid li.product.product-card,
.woocommerce-page ul.products.product-grid li.product.product-card {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 174px 1fr;
}

.woocommerce ul.products.product-grid li.product.product-card a img {
  width: 100%;
  height: 100%;
  margin: 0;
}

.woocommerce .product-card .price,
.woocommerce .product-card .button {
  margin: 0;
}

.woocommerce .product-card .button {
  display: inline-grid;
  place-items: center;
  border: 0;
  line-height: 1.2;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 26px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: inline-flex;
  gap: 6px;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--rice);
  color: var(--ink);
  font-weight: 800;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ink);
  color: var(--rice);
}

.sgdc-single-product-shell .section {
  max-width: 1180px;
  margin: 0 auto;
}

.sgdc-single-product-shell div.product {
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--rice);
  box-shadow: 0 18px 42px rgba(23, 20, 19, 0.08);
}

.sgdc-single-product-shell div.product .product_title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.sgdc-single-product-shell div.product p.price,
.sgdc-single-product-shell div.product span.price {
  color: var(--vermilion-dark);
  font-size: 24px;
  font-weight: 900;
}

.sgdc-single-product-shell div.product form.cart .button,
.woocommerce div.product form.cart .button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--vermilion);
  color: #fffaf0;
  font-weight: 900;
}

.sgdc-post-cover {
  margin: 0 0 24px;
}

.sgdc-post-cover img,
.sgdc-story-thumb img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.sgdc-story-list article {
  min-height: 280px;
}

.sgdc-story-thumb {
  display: block;
  margin: -4px -4px 18px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-deep);
}

.sgdc-story-excerpt p {
  color: var(--ink-soft);
  font-size: 14px;
}

.sgdc-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.sgdc-pagination .page-numbers {
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--rice);
  color: var(--ink);
  font-weight: 800;
}

.sgdc-pagination .page-numbers.current {
  background: var(--ink);
  color: var(--rice);
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .feature-strip,
  .scene-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-layout,
  .info-layout,
  .world-section,
  .night-section,
  .split-section,
  .restaurant-section {
    grid-template-columns: 1fr;
  }

  .shop-filter {
    position: static;
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .filter-chip {
    min-width: max-content;
  }

  .info-side-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .info-side-nav a {
    min-width: max-content;
  }

  .night-visual {
    order: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 80px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .mobile-nav {
    top: calc(var(--header-height) + 46px);
  }

  .age-ribbon {
    display: grid;
    gap: 2px;
    text-align: center;
    font-size: 21px;
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 72px;
    height: 54px;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .cart-trigger span {
    display: none;
  }

  .header-link {
    display: none;
  }

  .hero {
    min-height: 580px;
    height: calc(100svh - 104px);
    padding: 36px 18px;
    align-items: end;
  }

  .hero::before {
    opacity: 0.16;
  }

  .hero-copy {
    padding-bottom: 28px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .hero-scene {
    opacity: 0.84;
  }

  .signboard {
    right: 24px;
    top: 38px;
    min-height: 164px;
  }

  .lantern-one {
    right: 150px;
    top: 70px;
    width: 54px;
    height: 70px;
  }

  .shelf {
    right: 22px;
    width: 78vw;
    transform: scale(0.86);
    transform-origin: right center;
  }

  .counter {
    left: 0;
  }

  .section {
    padding: 52px 18px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce ul.products.product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ast-container .woocommerce ul.products.product-grid,
  .woocommerce-page ul.products.product-grid,
  .woocommerce.mobile-columns-2 ul.products.product-grid,
  .woocommerce-page.mobile-columns-2 ul.products.product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card,
  .woocommerce ul.products.product-grid li.product.product-card,
  .woocommerce-page ul.products.product-grid li.product.product-card {
    grid-template-rows: auto 1fr;
  }

  .product-visual.has-image {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .product-image {
    padding: 16px;
  }

  .info-hero {
    min-height: 280px;
    padding: 58px 18px 36px;
  }

  .info-hero p:not(.eyebrow) {
    font-size: 14px;
  }

  .feature-strip,
  .scene-grid,
  .story-grid,
  .quote-wall,
  .world-mosaic {
    grid-template-columns: 1fr;
  }

  .world-mosaic article:nth-child(2) {
    transform: none;
  }

  .feature-panel,
  .scene-grid article {
    min-height: auto;
  }

  .gift-band,
  .site-footer {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .quick-content {
    grid-template-columns: 1fr;
  }

  .quick-content .product-visual {
    min-height: 230px;
  }

  .quick-copy {
    padding: 24px 18px;
  }
}

@media (max-width: 480px) {
  .product-grid,
  .woocommerce ul.products.product-grid,
  .ast-container .woocommerce ul.products.product-grid,
  .woocommerce-page ul.products.product-grid,
  .woocommerce.mobile-columns-2 ul.products.product-grid,
  .woocommerce-page.mobile-columns-2 ul.products.product-grid {
    grid-template-columns: 1fr;
  }

  .product-visual.has-image {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .promo-track {
    animation: none !important;
  }
}

