:root {
  --paper: #f6efe2;
  --paper-deep: #ebe1cb;
  --cream: #fff8e8;
  --bean: #2a1810;
  --bean-soft: #4a2f22;
  --terracotta: #b85c38;
  --terracotta-deep: #8d3f24;
  --caramel: #c89352;
  --moss: #6a7a48;
  --muted: #8a7a6a;
  --line: #d8c8a8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: var(--bean);
  background: var(--paper);
  line-height: 1.6;
}

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

.display {
  font-family: "Playfair Display", "EB Garamond", "Noto Serif TC", "Songti TC", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.kicker {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}

.cafe-nav {
  position: sticky;
  top: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 60px);
  background: rgba(246, 239, 226, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.cafe-nav .back-link {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}

.cafe-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.bean-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--terracotta) 0%, var(--bean) 75%);
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  font-style: italic;
}

.cafe-brand .name strong {
  display: block;
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 600;
}

.cafe-brand .name span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.cafe-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.92rem;
  color: var(--bean-soft);
  font-weight: 500;
}

.cafe-links a:hover { color: var(--terracotta); }
.cafe-links a.active { color: var(--terracotta); }

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--bean);
  font-size: 0.86rem;
  font-weight: 600;
  background: var(--cream);
}

.cart-btn::before {
  content: "☕";
  font-size: 1.05rem;
}

main { padding-bottom: 80px; }

.cafe-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 9vw, 110px) clamp(20px, 5vw, 80px);
  overflow: hidden;
}

.cafe-hero::before {
  content: "";
  position: absolute;
  right: -20%;
  top: -20%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 92, 56, 0.16) 0%, rgba(184, 92, 56, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.cafe-hero > * { position: relative; z-index: 1; }

.cafe-hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: var(--bean);
}

.cafe-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-family: "Playfair Display", Georgia, serif;
}

.cafe-hero .lead {
  font-size: 1.1rem;
  color: var(--bean-soft);
  max-width: 480px;
  margin: 0 0 32px;
}

.cafe-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 200ms ease, background 200ms ease;
}

.btn-primary {
  background: var(--bean);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--bean);
  color: var(--bean);
}

.btn-ghost:hover {
  background: var(--bean);
  color: var(--cream);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
}

.hero-stats div strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  color: var(--terracotta);
  font-weight: 600;
}

.hero-stats div span {
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(42, 24, 16, 0.5);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1000ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.hero-photo:hover img {
  transform: scale(1.04);
}

.hero-photo-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(255, 248, 232, 0.96);
  color: var(--bean);
  padding: 14px 20px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.hero-photo-tag span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-photo-tag strong {
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.cafe-section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}

.cafe-section.tone-dark {
  background: var(--bean);
  color: var(--cream);
}

.cafe-section.tone-dark .kicker { color: var(--caramel); }
.cafe-section.tone-dark h2 { color: var(--cream); }

.cafe-section h2 {
  margin: 12px 0 22px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bean);
  max-width: 760px;
  line-height: 1.15;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.story-grid p { font-size: 1rem; color: var(--bean-soft); }

.story-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: var(--bean);
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(42, 24, 16, 0.45);
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1200ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.story-visual:hover img {
  transform: scale(1.05);
}

.story-pill {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 248, 232, 0.94);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.story-pill strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: var(--bean);
}

.story-pill span {
  font-size: 0.84rem;
  color: var(--terracotta);
  font-weight: 600;
}

.beans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.bean-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.bean-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -25px rgba(42, 24, 16, 0.3);
}

.bean-card .swatch {
  aspect-ratio: 1;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.bean-card .swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 60%, transparent 0%, transparent 36%, rgba(42, 24, 16, 0.18) 60%, rgba(42, 24, 16, 0.4) 100%),
    radial-gradient(circle at 30% 30%, rgba(255, 248, 232, 0.3) 0%, transparent 25%);
}

.bean-card.b-a .swatch { background: linear-gradient(160deg, #6a7a48 0%, #2a1810 100%); }
.bean-card.b-b .swatch { background: linear-gradient(160deg, #d18a55 0%, #6a3520 100%); }
.bean-card.b-c .swatch { background: linear-gradient(160deg, #b8945a 0%, #5a3a1c 100%); }
.bean-card.b-d .swatch { background: linear-gradient(160deg, #c2a06a 0%, #4a2f22 100%); }
.bean-card.b-e .swatch { background: linear-gradient(160deg, #e8c08a 0%, #8d5320 100%); }
.bean-card.b-f .swatch { background: linear-gradient(160deg, #845640 0%, #1a0e08 100%); }

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

.bean-head h3 {
  margin: 0;
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.bean-head .origin {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

.bean-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--bean-soft);
  white-space: nowrap;
}

.bean-tag.light { background: #f6e9c8; color: #8d6a20; }
.bean-tag.medium { background: #f0d2a8; color: #8d4a20; }
.bean-tag.dark { background: #3a2418; color: #f6efe2; }

.bean-card .notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bean-card .notes span {
  font-size: 0.78rem;
  color: var(--bean-soft);
  background: var(--paper);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.bean-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.bean-foot .price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--terracotta);
}

.bean-foot button {
  border: 0;
  background: var(--bean);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease;
}

.bean-foot button:hover { background: var(--terracotta); }

.brew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.brew-card {
  border-radius: 22px;
  background: rgba(255, 248, 232, 0.06);
  border: 1px solid rgba(255, 248, 232, 0.18);
  padding: 28px 24px;
  display: grid;
  gap: 14px;
}

.brew-card .glyph {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 248, 232, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.brew-card h3 {
  margin: 0;
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1.4rem;
}

.brew-card p {
  color: rgba(255, 248, 232, 0.78);
  margin: 0;
  font-size: 0.96rem;
}

.brew-meta {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  color: rgba(255, 248, 232, 0.6);
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 248, 232, 0.18);
}

.brew-meta strong {
  display: block;
  color: var(--caramel);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
}

.sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.sub-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  position: relative;
}

.sub-card.featured {
  background: var(--bean);
  color: var(--cream);
  border: 0;
  transform: translateY(-12px);
}

.sub-card.featured h3,
.sub-card.featured .price { color: var(--caramel); }
.sub-card.featured ul li { color: rgba(255, 248, 232, 0.85); }
.sub-card.featured ul li::before { color: var(--caramel); }
.sub-card.featured .btn-primary { background: var(--terracotta); }

.sub-card .tag-featured {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.sub-card h3 {
  margin: 0;
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1.5rem;
}

.sub-card .price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--terracotta);
}

.sub-card .price small {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 400;
}

.sub-card ul {
  list-style: none;
  margin: 6px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sub-card ul li {
  font-size: 0.94rem;
  position: relative;
  padding-left: 22px;
}

.sub-card ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.7rem;
  top: 6px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.visit-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
}

.visit-card h3 {
  margin: 0 0 18px;
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1.6rem;
}

.visit-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.visit-row:last-child { border-bottom: 0; }
.visit-row span { color: var(--muted); font-size: 0.92rem; }
.visit-row strong { font-weight: 600; color: var(--bean); }

.cafe-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(42, 24, 16, 0.45);
}

.cafe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cafe-photo-pin {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255, 248, 232, 0.96);
  color: var(--bean);
  padding: 12px 18px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.cafe-photo-pin strong {
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.cafe-photo-pin span {
  font-size: 0.78rem;
  color: var(--terracotta);
  font-weight: 600;
}

.cafe-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--bean);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
  z-index: 30;
}

.cafe-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cafe-foot {
  background: var(--bean);
  color: rgba(255, 248, 232, 0.7);
  padding: 56px clamp(20px, 5vw, 80px) 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

.cafe-foot h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin: 0 0 8px;
}

.cafe-foot a { display: block; padding: 4px 0; }
.cafe-foot a:hover { color: var(--caramel); }

.back-link {
  font-size: 0.86rem;
  color: var(--bean-soft);
  letter-spacing: 0.02em;
}
.back-link:hover { color: var(--terracotta); }

.bean-hero {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  background: var(--paper);
}

.bean-hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(42, 24, 16, 0.5);
}

.bean-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bean-hero-copy .uppercase {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
}

.bean-buy {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 32px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.bean-price {
  display: flex;
  flex-direction: column;
}

.bean-price span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.bean-price strong {
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.bean-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bean-tags li {
  font-size: 0.82rem;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--bean-soft);
}

.bean-section {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
}

.cup-profile-head .uppercase {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
}

.cup-bars {
  margin-top: 36px;
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.cup-bars .bar {
  display: grid;
  grid-template-columns: 140px 1fr 50px;
  gap: 18px;
  align-items: center;
}

.cup-bars .bar span {
  font-size: 0.88rem;
  color: var(--bean-soft);
  letter-spacing: 0.04em;
}

.cup-bars .track {
  position: relative;
  height: 6px;
  background: var(--paper-deep);
  border-radius: 999px;
  overflow: hidden;
}

.cup-bars .track i {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--caramel), var(--terracotta));
  border-radius: 999px;
}

.cup-bars .bar strong {
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
}

.bean-origin {
  background: var(--paper-deep);
  max-width: none;
}

.bean-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.origin-specs {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}

.origin-specs > div { border-top: 1px solid var(--line); padding-top: 12px; }

.origin-specs dt {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.origin-specs dd {
  margin: 0;
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.bean-origin-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(42, 24, 16, 0.45);
}

.bean-origin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bean-brew .brew-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brew-card {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brew-card .brew-num {
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.4rem;
  font-weight: 500;
}

.brew-card h3 {
  margin: 0;
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
}

.brew-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  font-size: 0.92rem;
}

.brew-card dt { color: var(--muted); }
.brew-card dd { margin: 0; font-weight: 600; }
.brew-card p { margin: 4px 0 0; font-size: 0.92rem; color: var(--bean-soft); }

.related-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(42, 24, 16, 0.3);
}

.related-card .swatch {
  display: block;
  height: 70px;
  border-radius: 8px;
}

.related-card .swatch-1 { background: linear-gradient(160deg, #c89352 0%, #6b3a18 100%); }
.related-card .swatch-2 { background: linear-gradient(160deg, #c4a878 0%, #3d2510 100%); }
.related-card .swatch-3 { background: linear-gradient(160deg, #8a4a25 0%, #2a1810 100%); }

.related-card strong {
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.related-card .serif-it {
  font-family: "Playfair Display", "Noto Serif TC", Georgia, serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--terracotta);
}

@media (max-width: 900px) {
  .cafe-nav { grid-template-columns: 1fr auto; row-gap: 12px; }
  .cafe-links { grid-column: 1 / -1; order: 4; flex-wrap: wrap; }
  .cafe-hero { grid-template-columns: 1fr; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .story-grid { grid-template-columns: 1fr; }
  .beans,
  .brew-grid,
  .sub-grid { grid-template-columns: 1fr; }
  .sub-card.featured { transform: none; }
  .visit-grid { grid-template-columns: 1fr; }
  .cafe-foot { grid-template-columns: 1fr; }
  .bean-hero,
  .bean-origin-grid { grid-template-columns: 1fr; }
  .cup-bars .bar { grid-template-columns: 110px 1fr 40px; gap: 12px; }
  .bean-brew .brew-grid,
  .related-grid { grid-template-columns: 1fr; }
}

.yuwai-back {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
}

.yuwai-back:hover {
  color: var(--bean);
}
