:root {
  --gold: #cba135;
  --gold-dark: #74550f;
  --cocoa: #211410;
  --cocoa-2: #3a2118;
  --ink: #221c19;
  --cream: #f7f1e6;
  --paper: #fffaf1;
  --mist: #e4ded2;
  --sage: #72806c;
  --plum: #674245;
  --line: rgba(33, 20, 16, 0.16);
  --shadow: 0 18px 50px rgba(25, 12, 8, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Microsoft JhengHei", "PingFang TC", "Noto Sans TC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.nav {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 70px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 250, 241, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(28, 16, 10, 0.1);
}

.nav.scrolled {
  box-shadow: 0 14px 40px rgba(28, 16, 10, 0.18);
}

.logo {
  width: 132px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(34, 28, 25, 0.82);
  font-size: 0.92rem;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  min-width: 82px;
}

.mobile-menu-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav.menu-open .mobile-menu-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.mobile-menu-panel {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #1d130d;
}

.btn-primary:hover {
  background: #d9b95a;
}

.btn-ghost {
  border-color: rgba(33, 20, 16, 0.18);
  background: rgba(255, 250, 241, 0.64);
  color: var(--ink);
}

.btn-dark {
  background: var(--cocoa);
  color: var(--paper);
}

.section {
  padding: 92px 26px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
.serif {
  font-family: var(--serif);
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: 4.15rem;
  line-height: 1.06;
  font-weight: 600;
}

h2 {
  margin-top: 14px;
  font-size: 2.72rem;
  line-height: 1.12;
  font-weight: 600;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.35;
}

.lead {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 1.08rem;
}

.lead.dark {
  color: rgba(34, 28, 25, 0.72);
}

.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 132px 26px 56px;
  color: var(--paper);
  background: var(--cocoa);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 11, 7, 0.88), rgba(22, 11, 7, 0.56) 44%, rgba(22, 11, 7, 0.16)),
    linear-gradient(0deg, rgba(20, 10, 6, 0.9), rgba(20, 10, 6, 0.1) 44%);
}

.hero-gift::before {
  background-image: url("assets/hero-gift.webp");
}

.hero-origin::before {
  background-image: url("assets/hero-origin.webp");
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.8fr);
  gap: 36px;
  align-items: end;
}

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

.hero-copy.reveal,
.hero-note.reveal {
  opacity: 1;
  transform: none;
}

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

.hero-panel {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: end center;
  padding: 30px;
}

.floating-product {
  position: absolute;
  right: 34px;
  bottom: 52px;
  width: min(230px, 48%);
  height: auto;
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.42));
  transition: transform 240ms ease;
}

.floating-product.alt {
  right: auto;
  left: 30px;
  bottom: 118px;
  width: min(190px, 40%);
  opacity: 0.9;
}

.hero-note {
  width: min(360px, 100%);
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(203, 161, 53, 0.42);
  background: rgba(19, 11, 7, 0.64);
  backdrop-filter: blur(12px);
}

.hero-note strong {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
}

.hero-note span {
  color: rgba(255, 250, 241, 0.7);
  font-size: 0.92rem;
}

.hero-refined .hero-copy {
  max-width: 740px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  padding: 7px 12px;
  border: 1px solid rgba(203, 161, 53, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.08);
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.refined-products .floating-product {
  width: min(220px, 46%);
}

.refined-products .floating-product.alt {
  width: min(170px, 34%);
  bottom: 120px;
}

.refined-quick .quick-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0)),
    var(--paper);
}

.quick-row {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 52px));
  margin: -38px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(203, 161, 53, 0.32);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quick-item {
  min-height: 116px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item b {
  display: block;
  color: var(--gold-dark);
  font-size: 1.18rem;
}

.quick-item span {
  color: rgba(34, 28, 25, 0.68);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-stack .photo {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-large {
  inset: 0 60px 82px 0;
}

.photo-small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 48%;
  border: 8px solid var(--paper);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header p {
  max-width: 460px;
  color: rgba(34, 28, 25, 0.7);
}

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

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

.product-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: #fbf3e5;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card::before {
  content: attr(data-note);
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 10px;
  border: 1px solid rgba(203, 161, 53, 0.45);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(255, 250, 241, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-card figure {
  display: grid;
  height: 270px;
  place-items: center;
  margin: 0;
  padding: 34px 24px 18px;
  background:
    radial-gradient(circle at 52% 74%, rgba(203, 161, 53, 0.2), transparent 34%),
    linear-gradient(180deg, #fff7e9, #efe2cf);
}

.product-card img {
  max-height: 220px;
  filter: drop-shadow(0 22px 24px rgba(61, 34, 20, 0.24));
  transition: transform 220ms ease;
}

.product-card:hover img {
  transform: rotate(-3deg) scale(1.04);
}

.product-card .content {
  padding: 18px;
}

.product-card p {
  margin-top: 8px;
  color: rgba(34, 28, 25, 0.68);
  font-size: 0.92rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(114, 128, 108, 0.14);
  color: #51604b;
  font-size: 0.74rem;
  font-weight: 800;
}

.gift-finder {
  background: var(--cocoa);
  color: var(--paper);
}

.gift-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
}

.gift-controls {
  display: grid;
  gap: 12px;
  align-content: start;
}

.gift-btn {
  min-height: 68px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.06);
  color: var(--paper);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gift-btn:hover,
.gift-btn.active {
  border-color: rgba(203, 161, 53, 0.8);
  background: rgba(203, 161, 53, 0.14);
  transform: translateX(4px);
}

.gift-result {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 28px;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(203, 161, 53, 0.34);
  background: #f7f1e6;
  color: var(--ink);
}

.gift-result figure {
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf1, #e9ddcc);
}

.gift-result img {
  max-height: 310px;
  filter: drop-shadow(0 30px 34px rgba(42, 22, 12, 0.24));
}

.gift-copy {
  align-self: center;
}

.gift-copy .pill {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(203, 161, 53, 0.16);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.gift-copy p {
  margin-top: 14px;
  color: rgba(34, 28, 25, 0.7);
}

.pairing-band {
  background: #ede5d8;
}

.channel-proof {
  background:
    linear-gradient(180deg, rgba(33, 20, 16, 0.04), rgba(33, 20, 16, 0)),
    #f5ecde;
}

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

.channel-card {
  overflow: hidden;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(42, 22, 12, 0.1);
}

.channel-card figure {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(203, 161, 53, 0.18), transparent 46%),
    #fbf3e5;
}

.channel-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  padding: 28px;
  object-fit: contain;
}

.channel-card div {
  padding: 20px;
}

.channel-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(203, 161, 53, 0.14);
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.channel-card p {
  margin-top: 10px;
  color: rgba(34, 28, 25, 0.68);
  font-size: 0.92rem;
}

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

.pairing {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.68);
}

.pairing .number {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 2rem;
}

.dark-band {
  background: var(--cocoa);
  color: var(--paper);
}

.dark-band .section-header p,
.dark-band .lead.dark {
  color: rgba(255, 250, 241, 0.72);
}

.b2b-catalog-page .dark-band {
  background: #fff8ed;
  color: var(--ink);
  border-top: 1px solid rgba(33, 20, 16, 0.1);
  border-bottom: 1px solid rgba(33, 20, 16, 0.1);
}

.b2b-catalog-page .dark-band .eyebrow,
.b2b-catalog-page .dark-band h2 {
  color: var(--ink);
}

.b2b-catalog-page .dark-band .section-header p,
.b2b-catalog-page .dark-band .lead.dark {
  color: rgba(34, 28, 25, 0.68);
}

.story-track {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.story-visual {
  position: sticky;
  top: 126px;
  overflow: hidden;
  border-radius: 8px;
  min-height: 560px;
}

.story-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 12, 8, 0.7), transparent 54%);
}

.story-visual .caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--paper);
}

.story-list {
  display: grid;
  gap: 18px;
}

.story-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.06);
}

.story-card b {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.1rem;
}

.story-card p {
  color: rgba(255, 250, 241, 0.72);
}

.origin-refined .story-card {
  background:
    linear-gradient(135deg, rgba(203, 161, 53, 0.1), rgba(255, 250, 241, 0.035)),
    rgba(255, 250, 241, 0.055);
}

.taste-studio {
  background: #f7f1e6;
}

.taste-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: center;
}

.taste-picker {
  display: grid;
  gap: 12px;
}

.taste-btn {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border: 1px solid rgba(33, 20, 16, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.76);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.taste-btn:hover {
  transform: translateX(4px);
  border-color: rgba(203, 161, 53, 0.54);
}

.taste-btn.active {
  border-color: rgba(203, 161, 53, 0.8);
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.taste-btn span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.taste-result {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 28px;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: var(--paper);
}

.refined-taste .taste-result {
  box-shadow: 0 24px 60px rgba(40, 24, 14, 0.12);
}

.taste-product {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(203, 161, 53, 0.18), transparent 38%),
    linear-gradient(180deg, #fff8ed, #e9dccd);
}

.taste-product img {
  width: auto;
  height: auto;
  max-height: 360px;
  filter: drop-shadow(0 28px 32px rgba(42, 22, 12, 0.26));
}

.taste-copy {
  align-self: center;
}

.meter-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.meter {
  display: grid;
  gap: 8px;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  color: rgba(34, 28, 25, 0.72);
  font-size: 0.86rem;
}

.meter-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(33, 20, 16, 0.12);
}

.meter-fill {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width 260ms ease;
}

.route {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.route-step {
  position: relative;
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.06);
}

.route-step::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -14px;
  width: 28px;
  height: 1px;
  background: rgba(203, 161, 53, 0.8);
}

.route-step:last-child::before {
  content: none;
}

.route-step span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.route-step p {
  margin-top: 10px;
  color: rgba(255, 250, 241, 0.7);
}

.refined-route .route-step {
  background:
    linear-gradient(180deg, rgba(203, 161, 53, 0.09), rgba(255, 250, 241, 0.035)),
    rgba(255, 250, 241, 0.045);
}

.cta {
  padding: 88px 26px;
  background: var(--ink);
  color: var(--paper);
}

.cta-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.cta p {
  max-width: 530px;
  color: rgba(255, 250, 241, 0.7);
}

.footer {
  padding: 32px 26px;
  background: #15100e;
  color: rgba(255, 250, 241, 0.62);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 0.9rem;
}

.seo-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.seo-footer a {
  color: rgba(255, 250, 241, 0.78);
}

.seo-footer a:hover {
  color: var(--gold);
}

.inner-page {
  background: var(--paper);
}

.inner-page .nav {
  position: sticky;
  top: 18px;
}

.page-hero {
  padding: 138px 26px 78px;
  background:
    linear-gradient(120deg, rgba(247, 241, 230, 0.94), rgba(237, 229, 216, 0.88)),
    url("assets/hero-gift.webp") center/cover;
}

.page-hero h1 {
  color: var(--ink);
}

.catalog-hero {
  padding-bottom: 64px;
  background:
    linear-gradient(120deg, rgba(247, 241, 230, 0.96), rgba(237, 229, 216, 0.9)),
    url("assets/craft.webp") center/cover;
}

.catalog-hero .section-inner {
  display: grid;
  gap: 24px;
}

.catalog-hero h1 {
  max-width: 860px;
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin-top: 4px;
}

.catalog-stats div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(33, 20, 16, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.76);
}

.catalog-stats b {
  display: block;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.catalog-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(34, 28, 25, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-control-band {
  padding-top: 38px;
  padding-bottom: 38px;
  border-top: 1px solid rgba(33, 20, 16, 0.1);
  border-bottom: 1px solid rgba(33, 20, 16, 0.1);
  background: #fff7e9;
}

.catalog-notice {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(203, 161, 53, 0.36);
  border-radius: 8px;
  background: rgba(203, 161, 53, 0.1);
}

.catalog-notice strong {
  color: var(--gold-dark);
}

.catalog-notice p {
  color: rgba(34, 28, 25, 0.72);
}

.catalog-tools {
  margin-bottom: 0;
}

.catalog-section {
  padding-top: 78px;
}

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

.catalog-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(42, 22, 12, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-card:hover {
  border-color: rgba(203, 161, 53, 0.42);
  box-shadow: 0 24px 60px rgba(42, 22, 12, 0.16);
  transform: translateY(-4px);
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card figure {
  display: grid;
  min-height: 100%;
  place-items: center;
  margin: 0;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 60%, rgba(203, 161, 53, 0.1), transparent 42%),
    linear-gradient(180deg, #fffdf8, #f6ecdf);
  box-shadow: inset 0 0 0 1px rgba(203, 161, 53, 0.12);
}

.catalog-card figure img {
  width: auto;
  height: auto;
  max-height: 260px;
  filter: drop-shadow(0 22px 24px rgba(111, 72, 42, 0.18));
}

.catalog-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.catalog-type {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(203, 161, 53, 0.14);
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card-body p {
  color: rgba(34, 28, 25, 0.68);
  font-size: 0.92rem;
}

.catalog-card dl {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px 12px;
  margin: 2px 0 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(33, 20, 16, 0.12);
}

.catalog-card dt,
.catalog-card dd {
  margin: 0;
  font-size: 0.86rem;
}

.catalog-card dt {
  color: rgba(34, 28, 25, 0.5);
  font-weight: 900;
}

.catalog-card dd {
  color: rgba(34, 28, 25, 0.78);
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
}

.catalog-actions .btn {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.88rem;
}

.sku-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 46px rgba(42, 22, 12, 0.08);
}

.sku-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  text-align: left;
}

.sku-table th,
.sku-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(33, 20, 16, 0.1);
  vertical-align: top;
}

.sku-table th {
  background: #f4eadb;
  color: var(--gold-dark);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sku-table td {
  color: rgba(34, 28, 25, 0.76);
  font-size: 0.92rem;
}

.sku-table a {
  color: var(--ink);
  font-weight: 900;
}

.sku-table a:hover {
  color: var(--gold-dark);
}

.sku-table tr:last-child td {
  border-bottom: 0;
}

.product-hero {
  background:
    linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(237, 229, 216, 0.9)),
    url("/assets/craft.webp") center/cover;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 44px;
  align-items: center;
}

.product-hero h1 {
  max-width: 860px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.product-visual {
  display: grid;
  min-height: 430px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(203, 161, 53, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 60%, rgba(203, 161, 53, 0.18), transparent 42%),
    #fffdf8;
  box-shadow: 0 24px 60px rgba(42, 22, 12, 0.12);
}

.product-visual img {
  width: auto;
  height: auto;
  max-height: 350px;
  filter: drop-shadow(0 26px 30px rgba(111, 72, 42, 0.2));
}

.product-detail-band,
.reviews-band {
  background: #f6ecdf;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.detail-panel {
  padding: 28px;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 46px rgba(42, 22, 12, 0.08);
}

.facts-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.facts-grid div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(33, 20, 16, 0.1);
}

.facts-grid span {
  color: rgba(34, 28, 25, 0.54);
  font-size: 0.86rem;
  font-weight: 900;
}

.facts-grid strong {
  color: rgba(34, 28, 25, 0.8);
  font-size: 0.95rem;
}

.occasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.occasion-tags span {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(203, 161, 53, 0.14);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.cta-panel {
  padding: 34px;
  border: 1px solid rgba(203, 161, 53, 0.28);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 46px rgba(42, 22, 12, 0.08);
}

.cta-panel p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 24px;
  color: rgba(34, 28, 25, 0.68);
}

.review-hero {
  background:
    linear-gradient(120deg, rgba(255, 250, 241, 0.96), rgba(237, 229, 216, 0.88)),
    url("/assets/hero-gift.webp") center/cover;
}

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

.review-card {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 290px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 46px rgba(42, 22, 12, 0.08);
}

.review-card figure {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(203, 161, 53, 0.16), transparent 45%),
    #f4eadb;
}

.review-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card-content {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.review-platform {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(203, 161, 53, 0.14);
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card p {
  color: rgba(34, 28, 25, 0.68);
  font-size: 0.94rem;
}

.review-card small {
  color: rgba(34, 28, 25, 0.54);
  font-weight: 800;
}

.source-credit {
  padding-top: 12px;
  border-top: 1px solid rgba(33, 20, 16, 0.1);
  color: rgba(34, 28, 25, 0.54) !important;
  font-size: 0.78rem !important;
  line-height: 1.55;
}

.review-card .btn {
  width: fit-content;
  align-self: end;
  margin-top: auto;
}

.stores-hero {
  background:
    linear-gradient(120deg, rgba(247, 241, 230, 0.97), rgba(255, 250, 241, 0.9)),
    url("assets/hero-gift.webp") center/cover;
}

.stores-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 42px;
  align-items: center;
}

.stores-hero-product {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 420px;
  border: 1px solid rgba(203, 161, 53, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 58%, rgba(203, 161, 53, 0.12), transparent 46%),
    #fffdf8;
}

.stores-hero-product img {
  width: auto;
  height: auto;
  max-height: 360px;
  filter: drop-shadow(0 24px 28px rgba(111, 72, 42, 0.18));
}

.stores-band {
  background: #f6ecdf;
}

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

.store-card {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 46px rgba(42, 22, 12, 0.09);
}

.store-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-card h3 {
  margin-bottom: 10px;
}

.store-card p {
  margin-bottom: 18px;
  color: rgba(34, 28, 25, 0.68);
}

.store-mark {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(203, 161, 53, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.store-logo {
  display: block;
  width: 100%;
  max-width: 118px;
  height: auto;
}

.momo-logo {
  max-width: 126px;
}

.shopee-logo {
  max-width: 124px;
}

.stores-page .light-cta {
  background: var(--paper);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(42, 22, 12, 0.1);
}

.blog-card a {
  display: block;
  height: 100%;
}

.blog-card figure {
  height: 230px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8ed, #e7d8c5);
}

.blog-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 220ms ease;
}

.blog-card:hover figure img {
  transform: scale(1.035);
}

.blog-card div {
  padding: 20px;
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(203, 161, 53, 0.14);
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.blog-card p {
  margin-top: 10px;
  color: rgba(34, 28, 25, 0.68);
  font-size: 0.92rem;
}

.blog-tools {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 26px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(33, 20, 16, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.7);
  cursor: pointer;
  font-weight: 800;
}

.filter-btn.active {
  border-color: rgba(203, 161, 53, 0.8);
  background: var(--gold);
  color: #1d130d;
}

.search-box {
  display: grid;
  min-width: 280px;
  gap: 8px;
  color: rgba(34, 28, 25, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
}

.search-box input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(33, 20, 16, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.86);
  color: var(--ink);
}

.search-box input {
  min-height: 44px;
  padding: 10px 12px;
}

.empty-state {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: var(--paper);
}

.contact-band {
  background: #ede5d8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: start;
}

.contact-aside {
  padding: 28px;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: var(--paper);
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: rgba(34, 28, 25, 0.72);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(34, 28, 25, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 46px;
  padding: 11px 12px;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-line {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-note {
  color: rgba(34, 28, 25, 0.62);
  font-size: 0.86rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 26px;
  background: #f7f1e6;
}

.thanks-page .logo {
  margin-bottom: 34px;
}

.article-page {
  padding: 138px 26px 82px;
  background: #f7f1e6;
}

.article-wrap {
  width: min(820px, 100%);
  margin: 0 auto;
}

.article-wrap h1 {
  color: var(--ink);
}

.article-meta {
  margin-top: 18px;
  color: rgba(34, 28, 25, 0.58);
}

.article-cover {
  margin: 36px 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(33, 20, 16, 0.1);
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(232, 217, 196, 0.78));
}

.article-cover img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  padding: 22px;
}

.article-wrap h2 {
  margin-top: 34px;
  font-size: 1.8rem;
}

.article-wrap p {
  margin-top: 16px;
  color: rgba(34, 28, 25, 0.72);
}

.article-lead {
  font-size: 1.12rem;
  line-height: 1.9;
  color: rgba(34, 28, 25, 0.82) !important;
}

.article-cover figcaption {
  padding: 10px 14px 14px;
  color: rgba(34, 28, 25, 0.52);
  font-size: 0.82rem;
}

.article-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 6px;
  padding: 18px;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.article-toc a {
  color: var(--ink);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(159, 122, 33, 0.36);
}

.related-articles {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(33, 20, 16, 0.12);
}

.related-articles h2 {
  margin-top: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.related-card {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
  border-color: rgba(159, 122, 33, 0.38);
  box-shadow: 0 16px 34px rgba(42, 22, 12, 0.1);
  transform: translateY(-2px);
}

.related-card span {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(203, 161, 53, 0.14);
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.related-card strong {
  font-size: 1.02rem;
  line-height: 1.45;
}

.related-card small {
  color: rgba(34, 28, 25, 0.66);
  font-size: 0.88rem;
  line-height: 1.65;
}

.article-callout,
.article-disclaimer,
.article-cta {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(159, 122, 33, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.article-callout strong,
.article-cta strong {
  display: block;
  color: var(--ink);
}

.article-callout span,
.article-cta span {
  display: block;
  margin-top: 6px;
  color: rgba(34, 28, 25, 0.68);
}

.article-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid rgba(33, 20, 16, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(33, 20, 16, 0.1);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(247, 241, 230, 0.72);
}

.article-table td {
  color: rgba(34, 28, 25, 0.74);
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table a,
.article-source-list a,
.article-wrap p a {
  color: #7b5b16;
  text-decoration-color: rgba(159, 122, 33, 0.4);
  text-underline-offset: 3px;
}

.faq-list {
  margin-top: 18px;
}

.faq-list h3 {
  margin-top: 22px;
  font-size: 1.08rem;
  color: var(--ink);
}

.article-disclaimer {
  color: rgba(34, 28, 25, 0.7);
  font-size: 0.95rem;
}

.article-source-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: rgba(34, 28, 25, 0.72);
}

.article-source-list li + li {
  margin-top: 8px;
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
}

.index-page {
  background: #f7f1e6;
}

.index-hero {
  min-height: 100vh;
  padding: 120px 26px 64px;
  display: grid;
  place-items: center;
}

.index-inner {
  width: min(1100px, 100%);
}

.concept-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.concept-card {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(33, 20, 16, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.concept-card figure {
  height: 220px;
  margin: 0;
  overflow: hidden;
}

.concept-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.concept-card:hover img {
  transform: scale(1.04);
}

.concept-card .content {
  padding: 24px;
}

.concept-card p {
  margin: 12px 0 20px;
  color: rgba(34, 28, 25, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-actions .btn:not(.mobile-menu-toggle) {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(33, 20, 16, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.98);
    box-shadow: 0 18px 46px rgba(28, 16, 10, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav.menu-open .mobile-menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-panel a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ink);
    font-weight: 800;
  }

  .mobile-menu-panel a:hover,
  .mobile-menu-panel a[aria-current="page"] {
    background: rgba(203, 161, 53, 0.14);
    color: var(--gold-dark);
  }

  .mobile-menu-panel a.primary {
    background: var(--gold);
    color: #1d130d;
  }

  .hero-inner,
  .split,
  .gift-layout,
  .story-track,
  .taste-layout,
  .taste-result,
  .gift-result {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-panel {
    min-height: 340px;
  }

  .quick-row,
  .product-grid,
  .pairing-grid,
  .channel-grid,
  .blog-grid,
  .catalog-stats,
  .catalog-grid,
  .route,
  .concept-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .story-visual {
    position: relative;
    top: auto;
  }

  .contact-layout,
  .form-grid,
  .stores-hero-grid,
  .store-grid,
  .product-hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-card figure {
    min-height: 280px;
  }

  .stores-hero-product {
    min-height: 320px;
  }

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

}

@media (max-width: 640px) {
  .nav {
    inset: 10px 10px auto;
    min-height: 62px;
    padding: 10px 12px;
  }

  .logo {
    width: 108px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-actions .btn:not(.mobile-menu-toggle) {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(33, 20, 16, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.98);
    box-shadow: 0 18px 46px rgba(28, 16, 10, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav.menu-open .mobile-menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-panel a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ink);
    font-weight: 800;
  }

  .mobile-menu-panel a:hover,
  .mobile-menu-panel a[aria-current="page"] {
    background: rgba(203, 161, 53, 0.14);
    color: var(--gold-dark);
  }

  .mobile-menu-panel a.primary {
    background: var(--gold);
    color: #1d130d;
  }

  .btn {
    min-height: 40px;
    padding: 8px 13px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 108px 18px 34px;
  }

  .hero-inner {
    gap: 8px;
  }

  h1 {
    font-size: 2.62rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-panel {
    padding: 12px 0 0;
    min-height: 290px;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .hero-note {
    width: 100%;
  }

  .floating-product {
    right: 24px;
    width: 120px;
  }

  .floating-product.alt {
    left: 10px;
    width: 104px;
  }

  .refined-products .floating-product {
    width: 118px;
  }

  .refined-products .floating-product.alt {
    width: 96px;
  }

  .quick-row,
  .product-grid,
  .pairing-grid,
  .channel-grid,
  .blog-grid,
  .catalog-stats,
  .catalog-grid,
  .route,
  .concept-cards {
    grid-template-columns: 1fr;
  }

  .product-grid-five {
    grid-template-columns: 1fr;
  }

  .quick-row {
    width: calc(100% - 28px);
    margin-top: 16px;
  }

  .quick-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 18px;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 14px;
  }

  .image-stack {
    min-height: 390px;
  }

  .photo-large {
    inset: 0 24px 76px 0;
  }

  .photo-small {
    width: 58%;
  }

  .product-card {
    min-height: auto;
  }

  .product-card figure {
    height: 236px;
  }

  .story-visual {
    min-height: 300px;
  }

  .story-visual img {
    height: 300px;
  }

  .story-card,
  .route-step,
  .pairing {
    min-height: auto;
    padding: 22px;
  }

  .route-step::before {
    content: none;
  }

  .gift-result,
  .taste-result {
    min-height: auto;
    padding: 18px;
    gap: 18px;
  }

  .gift-result figure,
  .taste-product {
    min-height: 270px;
  }

  .gift-result img,
  .taste-product img {
    max-height: 250px;
  }

  .cta-inner,
  .footer-inner {
    display: block;
  }

  .seo-footer nav {
    justify-content: center;
    margin-top: 14px;
  }

  .cta .btn {
    margin-top: 24px;
  }

  .inner-page .nav {
    top: 10px;
  }

  .page-hero,
  .article-page {
    padding: 108px 18px 62px;
  }

  .blog-tools {
    display: grid;
  }

  .catalog-hero {
    padding-bottom: 48px;
  }

  .catalog-hero h1 {
    font-size: 2.34rem;
    line-height: 1.08;
  }

  .catalog-stats div {
    min-height: 92px;
  }

  .catalog-control-band {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .catalog-card-body {
    padding: 20px;
  }

  .catalog-card figure {
    min-height: 240px;
  }

  .catalog-card figure img {
    max-height: 210px;
  }

  .catalog-card dl {
    grid-template-columns: 74px 1fr;
  }

  .catalog-actions,
  .product-detail-actions {
    display: grid;
  }

  .catalog-actions .btn,
  .product-detail-actions .btn {
    width: 100%;
  }

  .product-visual {
    min-height: 300px;
  }

  .product-visual img {
    max-height: 250px;
  }

  .facts-grid div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }

  .store-card {
    grid-template-columns: 1fr;
  }

  .store-mark {
    width: 118px;
  }

  .search-box {
    min-width: 0;
  }

  .contact-form,
  .contact-aside {
    padding: 20px;
  }

  .blog-card figure {
    height: 210px;
  }

  .blog-card figure img {
    padding: 14px;
  }

  .article-cover img {
    max-height: 430px;
    padding: 14px;
  }

  .article-toc {
    display: grid;
    padding: 16px;
  }

  .article-table {
    min-width: 620px;
  }

  .article-table th,
  .article-table td {
    padding: 12px;
  }

  .article-cta {
    display: grid;
  }

  .article-cta .btn {
    width: 100%;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-card {
    min-height: auto;
  }
}


/* ═══════════════════════════════════════════════════════
   DARK LUXURY OVERRIDE — benns-chocolate-taiwan
   Version: dark-luxury-20260605
   Strategy: colour/type override only, no layout changes
   ═══════════════════════════════════════════════════════ */

/* 1. Root variable override */
:root {
  --gold:      #C8960E;
  --gold-dark: #9A7010;
  --gold-lt:   #E0B030;
  --cocoa:     #0E0600;
  --cocoa-2:   #1A0900;
  --ink:       #F0E8D4;
  --cream:     #F0E8D4;
  --paper:     #0E0600;
  --mist:      #2A1800;
  --line:      rgba(200,150,14,0.20);
  --shadow:    0 18px 60px rgba(0,0,0,.65);
  --serif:     'Playfair Display', Georgia, "Times New Roman", serif;
  --sans:      'Inter', 'Microsoft JhengHei', 'PingFang TC', Arial, sans-serif;
}

/* 2. Body */
body { background: #0E0600; color: #F0E8D4; }

/* 3. NAV */
.nav {
  border-color: rgba(200,150,14,0.25);
  background: rgba(8,3,0,0.82);
}
.nav.scrolled {
  background: rgba(6,2,0,0.96);
  border-color: rgba(200,150,14,0.30);
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.nav-links { color: rgba(240,232,212,0.72); }
.nav-links a:hover { color: var(--gold); }

/* 4. Buttons */
.btn-ghost {
  border-color: rgba(200,150,14,0.40);
  background: rgba(200,150,14,0.08);
  color: #F0E8D4;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(200,150,14,0.16);
  color: var(--gold);
}

/* 5. Typography */
.eyebrow { color: var(--gold); }
h1 { color: #F0E8D4; font-weight: 900; }
h1 em { font-style: italic; color: var(--gold); }
h2 { color: #F0E8D4; font-weight: 900; }
h3 { color: #F0E8D4; }
.lead { color: rgba(240,232,212,0.70); }
.lead.dark { color: rgba(240,232,212,0.70); }

/* 6. Hero */
.hero { background: #080300; }
.hero::after {
  background:
    linear-gradient(90deg, rgba(4,1,0,.93) 0%, rgba(4,1,0,.62) 44%, rgba(4,1,0,.18) 100%),
    linear-gradient(0deg, rgba(4,1,0,.96) 0%, rgba(4,1,0,.10) 44%);
}
.hero-note {
  border-color: rgba(200,150,14,0.40);
  background: rgba(6,2,0,0.80);
}
.hero-badges span {
  border-color: rgba(200,150,14,0.30);
  background: rgba(200,150,14,0.07);
  color: rgba(240,232,212,0.82);
}

/* 7. Award pill (new) */
.award-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,150,14,0.10);
  border: 1px solid rgba(200,150,14,0.32);
  border-radius: 2px;
  padding: .30rem .85rem;
  font-size: .63rem;
  color: #E0B030;
  letter-spacing: .06em;
  margin-bottom: .9rem;
  font-family: var(--sans);
}

/* 8. Hero flavor pills (new) */
.hero-flavor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin-top: 1.1rem;
}
.flavor-pill {
  padding: .23rem .72rem;
  border: 1px solid rgba(200,150,14,0.22);
  border-radius: 1px;
  font-size: .63rem;
  color: rgba(240,232,212,0.52);
  letter-spacing: .05em;
  cursor: pointer;
  font-family: var(--sans);
  transition: all .22s ease;
}
.flavor-pill:hover, .flavor-pill.active {
  background: rgba(200,150,14,0.14);
  border-color: var(--gold);
  color: var(--gold);
}

/* 9. Hero stats row (new) */
.hero-stats-row {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,150,14,0.16);
}
.hero-stat { flex: 1; }
.hero-stat-sep {
  width: 1px; height: 30px;
  background: rgba(200,150,14,0.18);
  margin: 0 1.3rem;
}
.hero-stat-n {
  font-family: var(--serif);
  font-size: 1.9rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.hero-stat-l {
  font-size: .60rem; letter-spacing: .12em;
  color: rgba(240,232,212,0.45);
  margin-top: .22rem; text-transform: uppercase;
  font-family: var(--sans);
}

/* 10. Marquee (new) */
.marquee-bar {
  overflow: hidden;
  border-top: 1px solid rgba(200,150,14,0.12);
  border-bottom: 1px solid rgba(200,150,14,0.12);
  background: rgba(200,150,14,0.04);
  padding: .62rem 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 1.4rem;
  width: max-content;
  animation: mTrack 30s linear infinite;
  font-size: .60rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(200,150,14,0.58); font-family: var(--sans); white-space: nowrap;
}
.mq-dot { font-size: .38rem; color: rgba(200,150,14,0.30); }
@keyframes mTrack { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 11. Awards strip (new) */
.awards-strip {
  background: rgba(200,150,14,0.04);
  border-top: 1px solid rgba(200,150,14,0.14);
  border-bottom: 1px solid rgba(200,150,14,0.14);
  padding: 1.5rem 26px;
}
.awards-inner {
  width: min(1180px,100%); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2.4rem; flex-wrap: wrap;
}
.award-item { display: flex; align-items: center; gap: .72rem; }
.award-icon { font-size: 1.3rem; }
.award-item div { display: flex; flex-direction: column; gap: .16rem; }
.award-item strong { font-size: .74rem; color: #E0B030; font-family: var(--sans); font-weight: 700; }
.award-item span   { font-size: .64rem; color: rgba(240,232,212,0.48); font-family: var(--sans); }
.award-sep { width: 1px; height: 26px; background: rgba(200,150,14,0.20); flex-shrink: 0; }

/* 12. Quick row */
.quick-row { border-color: rgba(200,150,14,0.26); background: #180900; }
.refined-quick .quick-item { background: #180900; }
.quick-item { border-color: rgba(200,150,14,0.14); }
.quick-item b     { color: var(--gold); }
.quick-item span  { color: rgba(240,232,212,0.55); }
.quick-item:hover { background: rgba(200,150,14,0.06); }

/* 13. Sections */
.taste-studio { background: #120700; }
.pairing-band { background: #0E0600; }
.dark-band    { background: #1A0900; }
.section-header p { color: rgba(240,232,212,0.62); }
.dark-band .section-header p { color: rgba(240,232,212,0.62); }

/* 14. Taste buttons */
.taste-btn {
  border-color: rgba(200,150,14,0.18);
  background: rgba(200,150,14,0.04);
  color: rgba(240,232,212,0.70);
}
.taste-btn span { color: var(--gold); font-size: 1.5rem; }
.taste-btn:hover {
  border-color: rgba(200,150,14,0.42);
  background: rgba(200,150,14,0.09);
  color: #F0E8D4;
}
.taste-btn.active {
  border-color: var(--gold);
  background: rgba(200,150,14,0.13);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

/* 15. Taste result */
.taste-result {
  border-color: rgba(200,150,14,0.20);
  background: #1A0A00;
}
.refined-taste .taste-result { box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.taste-product {
  background:
    radial-gradient(circle at center, rgba(200,150,14,.12), transparent 38%),
    linear-gradient(180deg, #251000, #140800);
}
.taste-product img { filter: drop-shadow(0 28px 32px rgba(0,0,0,.55)); }
.taste-copy .lead.dark { color: rgba(240,232,212,0.68); }

/* 16. Meters */
.meter-label { color: rgba(240,232,212,0.60); }
.meter-track  { background: rgba(200,150,14,0.12); }
.meter-fill   { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }

/* 17. Route steps */
.route-step {
  border-color: rgba(200,150,14,0.14);
  background: rgba(200,150,14,0.04);
  transition: all .28s ease;
}
.route-step::before { background: rgba(200,150,14,0.60); }
.route-step span { color: var(--gold); }
.route-step p    { color: rgba(240,232,212,0.62); }
.route-step:hover {
  background: rgba(200,150,14,0.08);
  border-color: rgba(200,150,14,0.35);
  transform: translateY(-4px);
}
.refined-route .route-step { background: rgba(200,150,14,0.05); }

/* 18. Blog grid & cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.blog-card {
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(200,150,14,0.14);
  background: #1A0900;
  transition: all .35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,150,14,0.38);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.blog-card a { display: block; color: #F0E8D4; }
.blog-card figure { margin: 0; height: 200px; overflow: hidden; }
.blog-card figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover figure img { transform: scale(1.06); }
.blog-card div { padding: 1.3rem; }
.blog-card > a > div > span {
  font-size: .60rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-family: var(--sans);
}
.blog-card h3 { font-size: .95rem; line-height: 1.38; margin: .55rem 0 .55rem; }
.blog-card p  { font-size: .75rem; color: rgba(240,232,212,0.52); line-height: 1.62; }

/* 19. CTA */
.cta { background: #1E0B00; position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,150,14,.07), transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 { color: #F0E8D4; }
.cta p  { color: rgba(240,232,212,0.62); }

/* 20. Footer */
.footer { background: #080300; border-top: 1px solid rgba(200,150,14,.10); }
.seo-footer a       { color: rgba(240,232,212,0.50); }
.seo-footer a:hover { color: var(--gold); }

/* 21. Reveal animation */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .70s ease, transform .70s ease;
}
.reveal.in { opacity: 1; transform: none; }
.hero-copy.reveal, .hero-note.reveal { opacity: 1; transform: none; }

/* 22. Scroll progress (new) */
#scrollProgress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 9999; transform-origin: left;
  transform: scaleX(0); transition: transform .08s linear;
}

/* 23. LINE float (new) */
.line-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 50px; height: 50px; border-radius: 50%;
  background: #06C755;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(6,199,85,.42);
  animation: lfAnim 3.5s ease-in-out infinite;
}
.line-float:hover { animation: none; transform: scale(1.12); }
@keyframes lfAnim { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-6px); } }

/* 24. Catalog page */
.catalog-card {
  border-color: rgba(200,150,14,0.16);
  background: #1A0900;
  box-shadow: 0 18px 46px rgba(0,0,0,.4);
}
.catalog-card:hover {
  border-color: rgba(200,150,14,0.40);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.catalog-card figure {
  background:
    radial-gradient(circle at 50% 60%, rgba(200,150,14,.10), transparent 42%),
    linear-gradient(180deg, #251000, #140800);
}
.catalog-card-body p { color: rgba(240,232,212,.62); }
.catalog-card dt     { color: rgba(240,232,212,.45); }
.catalog-card dd     { color: rgba(240,232,212,.75); }
.catalog-card dl     { border-color: rgba(200,150,14,.14); }
.catalog-type { background: rgba(200,150,14,.14); color: var(--gold); }

/* 25. Inner pages */
.inner-page { background: #0E0600; color: #F0E8D4; }
.page-hero {
  background:
    linear-gradient(120deg, rgba(14,6,0,.94), rgba(26,9,0,.88)),
    url("assets/hero-gift.webp") center/cover;
  color: #F0E8D4;
}
.page-hero h1 { color: #F0E8D4; }
.catalog-hero {
  background:
    linear-gradient(120deg, rgba(14,6,0,.96), rgba(26,9,0,.90)),
    url("assets/craft.webp") center/cover;
}
.catalog-stats div { border-color: rgba(200,150,14,.18); background: rgba(200,150,14,.06); }
.catalog-stats b   { color: var(--gold); }
.catalog-stats span{ color: rgba(240,232,212,.62); }
.catalog-control-band { background: #180900; border-color: rgba(200,150,14,.14); }

/* 26. Contact form */
#contact-form input,
#contact-form textarea,
#contact-form select {
  background: #1A0900;
  border: 1px solid rgba(200,150,14,.22);
  color: #F0E8D4; border-radius: 2px;
}
#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus { outline: none; border-color: var(--gold); }

/* 27. Filter buttons */
[data-catalog-filter], [data-blog-filter] {
  background: rgba(200,150,14,.05);
  border: 1px solid rgba(200,150,14,.18);
  color: rgba(240,232,212,.65);
  border-radius: 2px; cursor: pointer; transition: all .22s;
}
[data-catalog-filter]:hover, [data-blog-filter]:hover,
[data-catalog-filter].active, [data-blog-filter].active {
  background: rgba(200,150,14,.12); border-color: var(--gold); color: var(--gold);
}
[data-catalog-search], [data-blog-search] {
  background: #1A0900; border: 1px solid rgba(200,150,14,.20); color: #F0E8D4;
}

/* 28. SKU table */
.sku-table-wrap { border-color: rgba(200,150,14,.14); background: #180900; }
.sku-table th   { background: #251000; color: var(--gold); }
.sku-table td   { color: rgba(240,232,212,.72); }
.sku-table th, .sku-table td { border-color: rgba(200,150,14,.12); }
.sku-table a       { color: #F0E8D4; }
.sku-table a:hover { color: var(--gold); }

/* 29. Mobile */
@media (max-width: 700px) {
  .hero-flavor-pills { display: none; }
  .hero-stats-row { flex-wrap: wrap; gap: .8rem; }
  .hero-stat-sep  { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .awards-inner { gap: 1.2rem; }
  .award-sep { display: none; }
}
