:root {
  --indigo: #2b4c7e;
  --indigo-d: #1f3a63;
  --wood: #8b7355;
  --wood-l: #b59b7e;
  --ink: #2a2c30;
  --cream: #f6f2ea;
  --white: #ffffff;
  --grey: #73767c;
  --line: #e8e2d6;
  --serif: "Noto Serif TC", serif;
  --sans: "Noto Sans TC", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.9;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.fiu { animation: fadeInUp 1s ease both; }
.fiu.d1 { animation-delay: .15s; }
.fiu.d2 { animation-delay: .3s; }
.fiu.d3 { animation-delay: .45s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fiu { animation: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img { width: 148px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .88rem;
  font-weight: 500;
}
.nav-links a {
  padding: 5px 0;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--indigo); }
.nav-cta {
  background: var(--indigo);
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--indigo-d); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--cream);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--indigo);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 34, 50, .42), rgba(31, 58, 99, .76)),
    radial-gradient(circle at 50% 35%, rgba(0, 0, 0, .05), rgba(0, 0, 0, .32));
}
.hero-inner { position: relative; z-index: 2; }
.kicker,
.en {
  display: block;
  color: var(--wood);
  font-size: .74rem;
  letter-spacing: .42em;
  text-transform: uppercase;
}
.hero .kicker { color: #d8cfc0; margin-bottom: 22px; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5.4vw, 4.4rem);
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.55;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .36);
}
.hero-copy {
  max-width: 680px;
  margin: 20px auto 0;
  color: #eee7da;
  font-weight: 300;
  letter-spacing: .18em;
}
.hero-actions,
.final-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 42px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 34px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .14em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-fill { background: var(--indigo); color: #fff; }
.btn-fill:hover { background: var(--indigo-d); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, .78); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--indigo); }

.sec { padding: 96px 0; }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .en { margin-bottom: 12px; }
.sec-head h2,
.atmosphere h2,
.partner h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.2vw, 2.22rem);
  font-weight: 900;
  letter-spacing: .2em;
  color: var(--ink);
}

.story,
.shops { background: var(--white); }
.story-grid,
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.photo-frame {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(43, 76, 126, .16);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.story-copy h3 {
  margin-bottom: 18px;
  color: var(--indigo);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.story-copy p,
.atmosphere p,
.partner p,
.partner li {
  color: #4c4e52;
  font-size: .95rem;
}
.story-copy p + p { margin-top: 14px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.stats div {
  background: var(--cream);
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
}
.stats b {
  display: block;
  color: var(--indigo);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 900;
}
.stats span {
  color: var(--grey);
  font-size: .74rem;
  letter-spacing: .12em;
}

.quote {
  padding: 104px 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(43, 76, 126, .84), rgba(31, 58, 99, .9)),
    url("../images/quote-store.jpg") center / cover;
}
.quote .q {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: .24em;
  line-height: 2.1;
}
.quote .who {
  margin-top: 22px;
  color: #c9d2e2;
  font-size: .82rem;
  letter-spacing: .3em;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card,
.shop,
.news-item {
  overflow: hidden;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover,
.shop:hover,
.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(43, 76, 126, .17);
}
.card-photo,
.shop-photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.card-photo img,
.shop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-info,
.shop-info { padding: 24px 26px 28px; }
.tag {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--wood);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.card h3,
.shop h3,
.news-item h3 {
  margin-bottom: 8px;
  color: var(--indigo);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.card p,
.shop p,
.news-item p {
  color: #5c5e62;
  font-size: .86rem;
}
.card-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--indigo);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ---- 子頁：飲品 / 餐食 / 甜點 gallery ---- */
.subpage-hero {
  padding: 64px 0 20px;
  text-align: center;
}
.subpage-hero .en { display: block; margin-bottom: 10px; }
.subpage-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--indigo);
}
.subpage-hero p {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--grey);
}
.back-link {
  display: inline-block;
  margin-top: 18px;
  font-size: .82rem;
  letter-spacing: .08em;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--indigo);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 0 70px;
}
.gallery-grid figure {
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-grid figcaption {
  padding: 12px 16px 16px;
  font-size: .82rem;
  color: var(--grey);
}
.menu-section {
  background: var(--white);
  padding: 60px 0 80px;
}
.menu-section .sec-head { text-align: center; margin-bottom: 34px; }
.menu-figure {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(43, 76, 126, .13);
}
.menu-figure img { width: 100%; }
.menu-figure figcaption {
  text-align: center;
  padding: 10px 0 0;
  color: var(--grey);
  font-size: .8rem;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.atmosphere {
  background: linear-gradient(180deg, var(--cream), #eee7da);
}
.atmosphere-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.atmosphere .en,
.partner .en { margin-bottom: 14px; }
.atmosphere p { margin-top: 18px; max-width: 520px; }
.mini-gallery {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}
.mini-gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(43, 76, 126, .13);
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-item {
  display: block;
  padding: 28px;
  border: 1px solid rgba(232, 226, 214, .7);
}
.news-item time {
  display: block;
  margin-bottom: 16px;
  color: var(--wood);
  font-family: var(--serif);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.shop {
  background: var(--cream);
}
.shop p b { color: var(--ink); }

.partner {
  background: var(--white);
}
.partner-copy ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 30px;
  padding-left: 1.2rem;
}
.partner-link { margin-bottom: 14px; }
.note {
  color: var(--grey);
  font-size: .78rem;
  letter-spacing: .05em;
}
.menu-disclaimer {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--indigo, #1c2c4c);
  background: #fdf1e0;
  border: 1px solid #e8c98a;
  border-radius: 8px;
  padding: 14px 20px;
  margin: 0 0 32px;
  letter-spacing: .03em;
}
.partner-slogan {
  margin-top: 22px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: .16em;
  color: var(--indigo);
}
.story-close {
  margin-top: 22px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .12em;
  color: var(--indigo);
}
.foot-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.foot-social a {
  display: inline;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.partner-photo img { aspect-ratio: 3 / 4; }

footer {
  background: var(--indigo-d);
  color: #b9c3d6;
  padding: 56px 0 36px;
  font-size: .85rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.foot-logo {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.foot-grid h4 {
  margin-bottom: 14px;
  color: #fff;
  font-size: .9rem;
  letter-spacing: .2em;
}
.foot-grid a { display: block; padding: 4px 0; }
.foot-grid a:hover { color: #fff; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 22px;
  color: #7e8ca5;
  font-size: .72rem;
  letter-spacing: .12em;
}

@media (max-width: 980px) {
  .nav-cta { display: none; }
  .nav-links { gap: 16px; }
  .menu-grid,
  .shop-grid,
  .news-list { grid-template-columns: 1fr 1fr; }
  .story-grid,
  .partner-grid,
  .atmosphere-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .nav { min-height: 66px; }
  .logo img { width: 128px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px 22px;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 24px rgba(0, 0, 0, .08);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; padding: 11px 0; }
  .hero { min-height: 76vh; }
  .hero h1 { letter-spacing: .12em; }
  .hero-copy { font-size: .92rem; letter-spacing: .08em; }
  .btn { width: 100%; max-width: 320px; }
  .sec { padding: 74px 0; }
  .sec-head { margin-bottom: 38px; }
  .menu-grid,
  .shop-grid,
  .news-list,
  .stats,
  .mini-gallery,
  .foot-grid { grid-template-columns: 1fr; }
  .mini-gallery img { min-height: 260px; }
  .quote .q { letter-spacing: .12em; }
  .foot-grid { gap: 28px; }
}
