:root {
  --bg-deep: #fbf9f4;
  --bg-panel: rgba(255, 255, 255, 0.86);
  --gold: #c9a23a;
  --sand: #f5ead6;
  --text-primary: #2c2318;
  --text-muted: rgba(75, 60, 44, 0.7);
  --accent: #b57a2b;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 6.5rem;
}

body.menu-page {
  background-image: none;
}


body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}

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

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

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem) 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background-image:
   
    url('images/hero.png?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero-logo {
  width: auto;
  max-width: clamp(90px, 12vw, 140px);
  height: auto;
  margin-bottom: 1.5rem;

  align-self: flex-start;
  grid-column: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 212, 112, 0.12), transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(93, 50, 16, 0.48), transparent 60%),
    linear-gradient(180deg, rgba(7, 4, 2, 0.6), rgba(7, 4, 2, 0.35) 40%, rgba(7, 4, 2, 0.75));
  pointer-events: none;
  z-index: -1;
}

.hero-copy {
  grid-column: 1;
}

.hero .booking {
  grid-column: 2;
  align-self: start;
  justify-self: end;
  background: none;
  padding: 0;
  margin-top: clamp(0.5rem, 3vh, 2rem);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    align-self: center;
    justify-self: center;
  }

  .hero .booking {
    grid-column: 1;
    justify-self: center;
  }

  .hero-copy {
    text-align: center;
    margin-top: 0;
  }

  .booking-panel {
    justify-items: center;
  }

  .booking-form {
    width: min(420px, 100%);
  }
}

.nav-dock {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(201, 162, 58, 0.25);
  border-radius: 999px;
  padding: 0.35rem;
  box-shadow: 0 20px 40px rgba(117, 87, 26, 0.18);
  z-index: 40;
  backdrop-filter: blur(10px);
  width: min(480px, 92vw);
  justify-content: space-between;
}

@media (max-width: 767px) {
  .nav-dock {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
    padding: 0.45rem 0.6rem;
  }

  .gallery-head {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.site-logo {
  position: fixed;
  top: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2rem);
  z-index: 50;
  display: inline-flex;
}

.menu-page .site-logo {
  position: absolute;
}

body.menu-page {
  padding-top: clamp(5.5rem, 12vw, 8.5rem);
}

.site-logo img {
  width: clamp(80px, 10vw, 120px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

@media (max-width: 768px) {
  .menu-page .site-logo {
    left: 50%;
    transform: translateX(-50%);
  }

  .concierge-card p,
  .concierge-card a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

.dock-btn {
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.dock-logo {
  text-transform: none;
  letter-spacing: 0;
  padding: 0.4rem 0.8rem;
  gap: 0;
}

.dock-logo img {
  width: 32px;
  height: 32px;
  display: block;
}

.dock-btn .dock-icon {
  font-size: 0.9rem;
}

.dock-btn:hover {
  background: rgba(201, 162, 58, 0.15);
}

.dock-btn.emphasis {
  background: var(--gold);
  color: #20150b;
}

.dock-btn-explore {
  border: 1px solid rgba(201, 162, 58, 0.35);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(63, 46, 20, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 30;
}

.nav-panel {
  position: fixed;
  bottom: 6.5rem;
  left: 50%;
  transform: translate(-50%, 20px);
  width: min(420px, 92vw);
  border-radius: 28px;
  border: 1px solid rgba(201, 162, 58, 0.35);
  background: rgba(255, 255, 255, 0.96);
  padding: 1.75rem;
  box-shadow: 0 25px 50px rgba(117, 87, 26, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 41;
}

.nav-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.nav-links {
  display: grid;
  gap: 0.4rem;
}

.nav-link {
  border: none;
  background: rgba(201, 162, 58, 0.08);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}

.nav-link:hover {
  background: rgba(201, 162, 58, 0.18);
}

.nav-link[aria-current="page"] {
  display: flex;
  justify-content: center;
  text-align: center;
}

.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.nav-open .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}


.logo {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-copy {
  max-width: 600px;
  margin-top: clamp(0.5rem, 3vh, 2rem);
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  align-self: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  margin-top: 0;
  line-height: 1.2;
}

.hero h1 {
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.hero h1.hero-title {
  font-size: clamp(2rem, 6vw, 3.6rem);
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.hero .eyebrow {
  color: var(--gold);
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.dimsum-highlights {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--text-primary);
}

.dimsum-highlights li {
  margin-bottom: 0.35rem;
}

.dimsum-carousel {
  position: relative;
  display: grid;
  align-items: center;
}

.dimsum-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.4rem 0.15rem 0.6rem;
}

.dimsum-track::-webkit-scrollbar {
  height: 6px;
}

.dimsum-track::-webkit-scrollbar-thumb {
  background: rgba(181, 122, 43, 0.3);
  border-radius: 999px;
}

.dimsum-track figure {
  margin: 0;
  scroll-snap-align: center;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20, 14, 8, 0.16);
  cursor: pointer;
  outline: none;
}

.no-carousel-radius .dimsum-track figure {
  border-radius: 0;
}

.no-carousel-radius .dimsum-track img {
  border-radius: 0;
}

.dimsum-track figure:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 162, 58, 0.4), 0 18px 40px rgba(20, 14, 8, 0.16);
}

.dimsum-track img {
  width: 100%;
  height: clamp(240px, 32vw, 360px);
  object-fit: cover;
  display: block;
}

.dimsum-track figcaption {
  padding: 0.65rem 0.85rem 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 58, 0.3);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(20, 14, 8, 0.2);
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 16px 36px rgba(20, 14, 8, 0.24);
}

.carousel-btn.prev {
  left: -0.5rem;
}

.carousel-btn.next {
  right: -0.5rem;
}

@media (max-width: 720px) {
  .carousel-btn {
    display: none;
  }
}


.btn,
.nav-cta {
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn.primary {
  background: var(--gold);
  color: #19140a;
}

.btn.ghost:hover,
.nav-cta:hover {
  background: rgba(212, 175, 55, 0.2);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 6rem);
  max-width: none;
  position: relative;
  z-index: 0;
}

.story {
  background: #ffffff;
}

.story-visual {
  margin: 2rem auto 0;
  max-width: 520px;
  text-align: left;
}

.story-visual img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  display: block;
  box-shadow: 0 24px 60px rgba(117, 87, 26, 0.2);
}

.story-visual figcaption {
  margin-top: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.section-intro,
.menu-text,
.booking-copy,
.concierge-card,
.gallery-head {
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery {
  background: radial-gradient(circle at top, rgba(201, 162, 58, 0.18), transparent 60%),
    linear-gradient(180deg, #fffaf1, #f6eddc);
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

.gallery-head {
  text-align: left;
}

.concierge {
  background: linear-gradient(140deg, #fff7ea, #f6ecd8);
}

.concierge-card {
  border: 1px solid rgba(201, 162, 58, 0.35);
  border-radius: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 60px rgba(117, 87, 26, 0.18);
  backdrop-filter: blur(8px);
}

.concierge-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.concierge-card p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.concierge-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.concierge-meta > div {
  border: 1px solid rgba(201, 162, 58, 0.2);
  border-radius: 1.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.concierge-photo {
  justify-content: center;
  align-items: center;
  padding: 0;
}

.concierge-photo img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 1.1rem;
  display: block;
}

.concierge-meta p {
  margin: 0.25rem 0;
}

.map-embed {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 58, 0.2);
  box-shadow: 0 15px 40px rgba(117, 87, 26, 0.2);
}

.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.gallery-slider {
  position: relative;
  margin: 2.5rem 0 0;
  max-width: none;
  width: 100%;
  padding: 0;
}

.gallery-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0;
  scrollbar-width: none;
}

.gallery-track figure {
  flex: 0 0 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 58, 0.2);
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 25px 50px rgba(117, 87, 26, 0.2);
  scroll-snap-align: center;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  cursor: zoom-in;
}

.gallery-track figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.15), transparent 45%);
  opacity: 1;
  pointer-events: none;
}

.gallery-track figure.is-center {
  transform: scale(1.02);
  box-shadow: 0 40px 90px rgba(117, 87, 26, 0.35);
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  width: 100%;
  height: clamp(320px, 55vw, 520px);
  object-fit: cover;
  display: block;
}

.gallery-track figcaption {
  margin: 0;
  padding: 1rem 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #fffaf1;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 9, 4, 0.8) 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 6, 3, 0.6);
  color: #fffaf1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.6rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.slider-btn:hover {
  background: rgba(10, 6, 3, 0.8);
  transform: translateY(calc(-50% - 2px));
}

.slider-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.tasting {
  background: radial-gradient(circle at top, rgba(201, 162, 58, 0.22), transparent),
    linear-gradient(180deg, #fffaf3, #f6eddc);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.experience-grid article {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(201, 162, 58, 0.28);
  padding: 1.25rem;
  border-radius: 1.2rem;
  backdrop-filter: blur(4px);
}

.menu-path {
  display: grid;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 240, 224, 0.9));
  z-index: 2;
}

.menu-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.menu-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.menu-tab {
  border: 1px solid rgba(201, 162, 58, 0.45);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-primary);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-tab.is-active {
  background: var(--gold);
  color: #20150b;
  border-color: rgba(201, 162, 58, 0.6);
}

.menu-card.is-hidden {
  display: none;
}

.menu-card {
  background: var(--bg-panel);
  border: 1px solid rgba(201, 162, 58, 0.3);
  border-radius: 1.8rem;
  padding: 2rem;
  backdrop-filter: blur(6px);
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.menu-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  border-bottom: 1px solid rgba(155, 125, 70, 0.2);
  padding: 0.75rem 0;
  font-size: 1.1rem;
}

.menu-card li div span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
}

.menu-card li div p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.menu-card a.btn {
  margin-top: 1.5rem;
  width: fit-content;
}

.menu-legend {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(201, 162, 58, 0.25);
  border-radius: 1.75rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(4px);
  max-width: var(--max-width);
  margin: 0 auto 2rem;
}

.legend-grid {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.legend-grid li {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(201, 162, 58, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
}

.legend-grid p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.dish-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.menu-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 58, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.9);
}

.menu-icon::before {
  display: block;
}

.menu-icon[data-icon='veg']::before {
  content: '🌿';
}

.menu-icon[data-icon='plant']::before {
  content: '🌱';
}

.menu-icon[data-icon='seafood']::before {
  content: '🐟';
}

.menu-icon[data-icon='chef']::before {
  content: '✦';
}

.menu-icon[data-icon='spicy']::before {
  content: '🌶';
}

.booking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(246, 236, 218, 0.88)),
    url('images/CD03.jpg') top/cover;
  background-blend-mode: overlay;
}

.booking-panel {
  display: grid;
  gap: 1.5rem;
}

.booking-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.booking-highlights li {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.booking-highlights li::before {
  content: '•';
  color: var(--gold);
  font-size: 1rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
  background: rgba(20, 14, 8, 0.55);
  border: 1px solid rgba(201, 162, 58, 0.4);
  border-radius: 1.5rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.booking-field input,
.booking-field select {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 58, 0.4);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  font-size: 1rem;
}

.time-selects {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time-selects select {
  flex: 0 0 auto;
  min-width: 70px;
}

.time-selects span {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.booking-meta {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.booking-meta ul {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: grid;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.booking-meta a {
  color: var(--gold);
  text-decoration: none;
}

.booking-preview {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
  word-break: break-all;
}

.booking-preview a {
  color: var(--gold);
  text-decoration: underline;
  display: inline-block;
  margin-top: 0.25rem;
}

.booking-card {
  border: 1px solid rgba(201, 162, 58, 0.3);
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.michelin-page {
  background: linear-gradient(180deg, #fff8ef, #f3e7d4);
}

.michelin-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 162, 58, 0.22), transparent 45%),
    linear-gradient(180deg, #fff9f1, #f7ecdc);
  text-align: left;
}

.michelin-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.event-highlight {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(143, 99, 31, 0.45);
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 238, 214, 0.92));
  box-shadow: 0 12px 24px rgba(117, 87, 26, 0.12);
}

.event-highlight-title {
  margin-top: 0;
  font-weight: 600;
  color: #7a5218;
}

.event-highlight p {
  margin: 0.35rem 0;
}

.event-highlight p:last-child {
  margin-bottom: 0;
}

.michelin-chefs {
  background: #ffffff;
}

.michelin-menu {
  background:
    radial-gradient(circle at 50% -10%, rgba(201, 162, 58, 0.22), transparent 55%),
    linear-gradient(180deg, #fff8ef 0%, #f8ecdb 100%);
  border-top: 1px solid rgba(201, 162, 58, 0.35);
  border-bottom: 1px solid rgba(201, 162, 58, 0.35);
}

.michelin-menu .section-intro {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(201, 162, 58, 0.35);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(117, 87, 26, 0.12);
}

.michelin-menu .section-intro h2 {
  color: #8f631f;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.michelin-menu .eyebrow {
  color: #8f631f;
}

.michelin-menu-list {
  max-width: 900px;
  margin: 1.75rem auto 0;
  display: grid;
  gap: 1rem;
}

.menu-course {
  background: #ffffff;
  border: 1px solid rgba(201, 162, 58, 0.4);
  border-radius: 1rem;
  padding: 1.05rem 1.2rem;
  box-shadow: 0 12px 28px rgba(117, 87, 26, 0.1);
}

.menu-course p {
  margin: 0;
}

.menu-course p + p {
  margin-top: 0.3rem;
}

.menu-en {
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.menu-zh {
  font-family: "PingFang TC", "Microsoft JhengHei", "Noto Sans TC", sans-serif;
  color: rgba(44, 35, 24, 0.88);
}

.chef-grid {
  max-width: var(--max-width);
  margin: 1.75rem auto 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.chef-card {
  background: #fffdf9;
  border: 1px solid rgba(201, 162, 58, 0.28);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(117, 87, 26, 0.14);
}

.chef-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.chef-card-copy {
  padding: 1.1rem 1.15rem 1.25rem;
}

.chef-card-copy h3 {
  margin-bottom: 0.25rem;
  font-size: 1.8rem;
}

.chef-role {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.michelin-chef-host .chef-grid {
  max-width: 560px;
  grid-template-columns: minmax(260px, 560px);
  justify-content: center;
}

.dish-link {
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.dish-link:hover {
  color: var(--gold);
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 5rem;
  }

  body {
    padding-bottom: 0;
  }

  .nav-dock {
    position: fixed;
    top: 1.5rem;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, 70vw);
  }

  .nav-panel {
    top: 6rem;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -10px);
    width: min(420px, 50vw);
  }

  .nav-open .nav-panel {
    transform: translate(-50%, 0);
  }

  .gallery-track figure {
    min-width: 45vw;
    flex: 0 0 45vw;
  }

  .booking-form {
    padding: 2.25rem;
  }

  .hero {
    padding-top: 6rem;
  }

  .menu-panels {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .story {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .story .section-intro {
    max-width: none;
    margin: 0;
  }

  .story-visual {
    margin: 0 0 0 auto;
    max-width: 420px;
  }

  .hero {
    padding-bottom: 8rem;
    padding-top: 7rem;
  }

  .hero-copy {
    margin-top: 6rem;
  }

  .gallery-track img {
    height: 460px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(63, 46, 20, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 60;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-dialog {
  position: relative;
  max-width: 640px;
  width: 100%;
  background: #fffdf7;
  border-radius: 1.5rem;
  border: 1px solid rgba(201, 162, 58, 0.3);
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(117, 87, 26, 0.25);
}

.lightbox-dialog img {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.lightbox-caption {
  margin: 0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.75rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(201, 162, 58, 0.4);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.3rem;
}

.lightbox-prev {
  left: 0.5rem;
}

.lightbox-next {
  right: 0.5rem;
}

.footer {
  background: linear-gradient(180deg, #fffaf3, #f2e6d2);
  border-top: 1px solid rgba(201, 162, 58, 0.2);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 6vw, 4rem);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin: 0 0 0.5rem;
}

.footer-copy {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.footer-meta {
  margin: 0;
  color: rgba(99, 77, 49, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links button,
.footer-links a {
  border: none;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
  padding: 0;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--gold);
}

.footer-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  color: var(--text-muted);
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-links a.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.4rem;
}

.social-icons .social-link {
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
}

.footer-top {
  margin-top: 1rem;
  width: 100%;
}
