:root {
  --bg: #060606;
  --bg-soft: #101010;
  --panel: #131313;
  --panel-strong: #1a1a1a;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(198, 160, 102, 0.24);
  --text: #f3ede6;
  --text-soft: rgba(243, 237, 230, 0.8);
  --text-muted: rgba(243, 237, 230, 0.56);
  --gold: #c6a066;
  --gold-soft: #9e7a48;
  --terracotta: #8f4f34;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(198, 160, 102, 0.12), transparent 26%),
    radial-gradient(circle at left 20%, rgba(143, 79, 52, 0.12), transparent 30%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: var(--text);
  font-family: "Manrope", "Noto Sans JP", "Noto Sans TC", sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 86%);
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(18px);
  background: rgba(6, 6, 6, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner,
.section-inner,
.footer-inner {
  width: var(--container);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 46px;
}

.brand-word {
  width: 122px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.site-nav a {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: var(--gold);
}

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

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.lang-switch a {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.lang-switch a[aria-current="page"] {
  background: var(--text);
  color: #111;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.button-primary {
  color: #120e08;
  background: linear-gradient(135deg, #d2ae77 0%, #a97c43 100%);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.button-ghost {
  color: var(--text-soft);
  background: transparent;
  border-color: var(--line);
}

main {
  overflow: clip;
}

.section {
  padding: 76px 0;
}

main > .hero + .section {
  padding-top: 46px;
}

main > .section + .section {
  padding-top: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

.hero h1,
.section-title,
.card-title,
.quote-text,
.footer-title {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero {
  padding: 32px 0 24px;
}

.hero-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 22px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 26px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 640px;
  padding: 60px 54px;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.48) 44%, rgba(8, 8, 8, 0.72) 100%),
    url("./images/exterior-hero.jpg") center/cover no-repeat;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

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

.home-hero .hero-copy {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: center;
  padding-top: 42px;
  padding-bottom: 38px;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(4rem, 7vw, 6.7rem);
  line-height: 0.92;
}

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.92;
  color: var(--text-soft);
}

.hero-actions,
.contact-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-copy > .hero-actions {
  gap: 12px 16px;
}

.home-hero .hero-copy > .hero-actions {
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.hero-social-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 4px;
  margin-top: 8px;
}

.home-hero .hero-social-links {
  flex-basis: 100%;
  margin-top: 2px;
}

.hero-social-links::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(198, 160, 102, 0.48);
}

.hero-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(198, 160, 102, 0.28);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-social-links svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-social-links svg path:first-child,
.hero-social-links svg rect,
.hero-social-links svg circle {
  vector-effect: non-scaling-stroke;
}

.hero-social-links a[href*="facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.hero-social-links a:hover,
.hero-social-links a:focus-visible {
  color: var(--gold);
  border-color: rgba(198, 160, 102, 0.52);
  background: rgba(198, 160, 102, 0.1);
  transform: translateY(-1px);
}

.hero-side {
  display: grid;
  gap: 18px;
}

.stack-card,
.story-panel,
.editorial-panel,
.menu-panel,
.gallery-card,
.product-card,
.contact-panel,
.map-panel,
.footer-shell {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.stack-card {
  padding: 24px;
}

.stack-photo {
  overflow: hidden;
  min-height: 260px;
  border-radius: 24px;
}

.stack-photo img,
.gallery-card img,
.product-photo img,
.wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.mini-note {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-note-wide {
  grid-column: 1 / -1;
}

.mini-note strong,
.meta-item strong,
.product-meta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-note span,
.meta-item span,
.product-meta span,
.card-copy p,
.story-panel p,
.editorial-panel p,
.menu-panel p,
.contact-panel p,
.footer-copy {
  color: var(--text-soft);
  line-height: 1.85;
}

.mini-note a {
  color: var(--text);
  text-decoration: none;
}

.mini-note a:hover,
.mini-note a:focus-visible {
  color: var(--gold);
}

.section-title {
  font-size: clamp(2.45rem, 5vw, 4.15rem);
  line-height: 0.96;
}

.section-title + p {
  margin-top: 22px;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-soft);
}

.story-grid,
.editorial-grid,
.contact-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.story-panel,
.editorial-panel,
.menu-panel,
.contact-panel,
.map-panel {
  padding: 34px;
}

.concept-panel {
  position: relative;
  overflow: hidden;
}

.concept-panel::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: min(520px, 78vw);
  aspect-ratio: 527 / 632;
  background: url("/assets/icon-white.svg") center/contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.concept-panel > * {
  position: relative;
  z-index: 1;
}

.wide-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 420px;
  box-shadow: var(--shadow);
}

.quote-text {
  margin-top: 26px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  color: var(--text);
}

.story-columns {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.story-columns p,
.editorial-panel p,
.menu-panel p {
  margin: 0;
}

.meta-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.meta-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chef-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
}

.chef-visual {
  display: grid;
  grid-template-rows: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 18px;
  min-height: 820px;
}

.chef-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.chef-photo-main {
  height: 100%;
}

.chef-photo-small {
  height: 100%;
}

.chef-panel {
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at right top, rgba(198, 160, 102, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.chef-copy {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.chef-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.chef-copy a {
  color: var(--gold);
  border-bottom: 1px solid rgba(198, 160, 102, 0.45);
}

.chef-moments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.chef-moments figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 260px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chef-moments img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-moments figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(6, 6, 6, 0.58);
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.chef-certification {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(198, 160, 102, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(198, 160, 102, 0.24);
}

.chef-certification img {
  width: 100%;
  max-width: 260px;
}

.chef-certification strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chef-certification span {
  display: block;
  color: var(--text-soft);
  line-height: 1.65;
}

.chef-certification a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  border-bottom: 1px solid rgba(198, 160, 102, 0.45);
}

.chef-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.chef-facts div {
  min-height: 112px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.chef-facts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chef-facts span {
  color: var(--text-soft);
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.85fr;
  gap: 20px;
}

.space-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.space-intro p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.space-intro .hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.gallery-column {
  display: grid;
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card.tall {
  min-height: 560px;
}

.gallery-card.medium {
  min-height: 320px;
}

.gallery-card.small {
  min-height: 240px;
}

.gallery-card img {
  min-height: inherit;
}

.gallery-card .card-copy {
  padding: 22px 22px 24px;
}

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

.gallery-page-grid .gallery-card:nth-child(1),
.gallery-page-grid .gallery-card:nth-child(6),
.gallery-page-grid .gallery-card:nth-child(9) {
  grid-row: span 2;
}

.gallery-page-grid .gallery-card {
  min-height: 340px;
}

.gallery-page-grid .gallery-card img {
  min-height: 340px;
}

.card-title {
  font-size: 1.9rem;
}

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

.cuisine-flow {
  display: grid;
  gap: 22px;
}

.cuisine-kicker {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 10px;
}

.cuisine-kicker p {
  margin: 18px 0 0;
  max-width: 820px;
  color: var(--text-soft);
  line-height: 1.9;
}

.cuisine-kicker .hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  grid-auto-flow: dense;
}

.cuisine-text,
.cuisine-grid .wide-photo {
  min-height: 280px;
}

.cuisine-grid .editorial-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.cuisine-grid .wide-photo {
  height: 335px;
  min-height: 0;
  border-radius: var(--radius-xl);
}

.cuisine-grid .wide-photo img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.cuisine-text {
  grid-column: span 4;
}

.cuisine-text-large {
  grid-column: span 7;
}

.cuisine-text-wide {
  grid-column: span 5;
}

.cuisine-final {
  grid-column: span 4;
}

.cuisine-photo {
  grid-column: span 4;
}

.cuisine-grid .cuisine-photo-hero {
  grid-column: span 5;
  height: 335px;
}

.cuisine-grid .cuisine-photo-small {
  grid-column: span 3;
  height: 385px;
}

.cuisine-story {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.62fr);
  gap: 22px;
  align-items: stretch;
}

.cuisine-story.is-reversed {
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 0.76fr);
}

.cuisine-story .editorial-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cuisine-story .wide-photo {
  min-height: 390px;
}

.cuisine-story .wide-photo img {
  min-height: 390px;
}

.cuisine-story .eyebrow {
  margin-bottom: 14px;
}

.cuisine-story h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.menu-panel {
  min-height: 100%;
}

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

.menu-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.7;
  color: var(--text-soft);
}

.menu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.products-cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: stretch;
}

.restaurant-mosaic {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(220px, 0.72fr) minmax(220px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  grid-auto-flow: dense;
}

.restaurant-copy {
  grid-row: span 2;
  padding-bottom: 34px;
}

.restaurant-card {
  min-height: 100%;
}

.restaurant-card-vip {
  grid-row: span 2;
}

.restaurant-card-wine {
  display: grid;
  grid-column: 1 / 4;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.restaurant-mosaic .product-photo {
  height: 218px;
}

.restaurant-card-vip .product-photo {
  height: 430px;
}

.restaurant-card-wine .product-photo {
  height: 340px;
}

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

.product-card {
  overflow: hidden;
}

.product-photo {
  height: 280px;
}

.product-copy {
  padding: 22px 22px 26px;
}

.product-name {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-size: 2rem;
}

.product-meta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.product-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(198, 160, 102, 0.12);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-grid {
  align-items: stretch;
}

.map-frame {
  overflow: hidden;
  border-radius: 24px;
  margin-top: 22px;
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(0.85);
}

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

.career-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(198, 160, 102, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(198, 160, 102, 0.22);
  box-shadow: var(--shadow);
}

.career-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.career-card p {
  margin: 0;
}

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

.career-form label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.career-form input,
.career-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font: inherit;
  letter-spacing: 0;
  padding: 13px 14px;
  text-transform: none;
}

.career-form textarea {
  resize: vertical;
}

.career-form label:has(textarea),
.career-form .form-note,
.career-form .button {
  grid-column: 1 / -1;
}

.career-form input::placeholder,
.career-form textarea::placeholder {
  color: var(--text-muted);
}

.form-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer {
  padding: 24px 0 44px;
}

.footer-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 42px;
}

.footer-brand .brand-word {
  width: 120px;
}

.footer-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.84rem;
}

.page-hero {
  padding-top: 28px;
}

.page-hero .hero-copy {
  min-height: 460px;
}

.product-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.product-hero-copy h1 {
  max-width: 740px;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
}

.product-hero-notes {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-hero-notes span,
.product-hero-notes a {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.38);
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-hero-notes a {
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-hero-notes a:hover,
.product-hero-notes a:focus-visible {
  background: rgba(198, 160, 102, 0.16);
  border-color: rgba(198, 160, 102, 0.48);
  color: var(--text);
  transform: translateY(-1px);
}

.alcohol-notice {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(198, 160, 102, 0.28);
  background: rgba(6, 6, 6, 0.5);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-list-section {
  padding-top: 46px;
}

.product-purchase-section {
  padding: 34px 0;
}

.purchase-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: stretch;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at left top, rgba(198, 160, 102, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.purchase-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.purchase-intro .section-title {
  font-size: clamp(3.2rem, 5vw, 6.4rem);
}

:lang(ja) .purchase-intro .section-title,
:lang(zh-Hant) .purchase-intro .section-title {
  font-size: clamp(2.55rem, 4.2vw, 4.9rem);
  line-height: 1.05;
}

html[lang="ja"] .product-hero-copy h1,
html[lang="zh-Hant"] .product-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.35rem, 5.8vw, 6.6rem);
  line-height: 1.02;
}

html[lang="ja"] .purchase-intro .section-title,
html[lang="zh-Hant"] .purchase-intro .section-title,
html[lang="ja"] .product-detail-heading .section-title,
html[lang="zh-Hant"] .product-detail-heading .section-title {
  font-size: clamp(2.85rem, 4.4vw, 5.15rem);
  line-height: 1.08;
}

.purchase-intro p {
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.9;
}

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

.purchase-steps article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.purchase-steps strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purchase-steps span {
  color: var(--text-soft);
  line-height: 1.7;
}

.imported-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.products-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.products-page-grid .product-photo {
  background:
    radial-gradient(circle at center, rgba(198, 160, 102, 0.14), transparent 58%),
    #080706;
}

.products-page-grid .product-photo img {
  object-fit: contain;
  padding: 18px;
}

.product-feature-card .product-photo {
  height: 330px;
}

.product-photo-link {
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.product-photo-link:hover,
.product-photo-link:focus-visible {
  filter: brightness(1.08);
  transform: scale(1.01);
}

.product-button {
  margin-top: 20px;
}

.product-detail-section {
  padding-top: 34px;
}

.product-detail-heading {
  margin-bottom: 28px;
}

.product-detail-heading p {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.product-placeholder-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(198, 160, 102, 0.12), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(198, 160, 102, 0.18);
  box-shadow: var(--shadow);
}

.menu-hero .product-hero-copy h1 {
  max-width: 920px;
}

.menu-logo-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(198, 160, 102, 0.18), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(143, 79, 52, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(5, 5, 5, 0.9));
}

.menu-logo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/logo-white.svg") right 7% center / min(520px, 48vw) auto no-repeat;
  opacity: 0.12;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.menu-logo-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(198, 160, 102, 0.16);
  border-radius: 28px;
  pointer-events: none;
}

.menu-experience-section {
  padding-bottom: 48px;
}

.menu-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.58fr);
  gap: 22px;
  align-items: stretch;
}

.menu-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-feature-copy .section-title {
  margin-bottom: 24px;
}

.menu-feature-copy p {
  max-width: 820px;
  margin-top: 0;
  margin-bottom: 14px;
}

.menu-feature-copy p + p {
  margin-top: 4px;
}

.menu-feature-copy .hero-actions {
  margin-top: 24px;
}

.menu-chef-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(198, 160, 102, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(198, 160, 102, 0.22);
  box-shadow: var(--shadow);
}

.menu-chef-card::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(198, 160, 102, 0.14);
  border-radius: 26px;
  pointer-events: none;
}

.menu-chef-card span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-chef-card h3 {
  margin: 18px 0 20px;
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.9;
}

.menu-chef-options-card {
  display: flex;
  flex-direction: column;
}

.menu-experience-options {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.menu-option-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 12px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-option-card > img,
.menu-option-card > a {
  height: clamp(170px, 16vw, 220px);
  min-height: 170px;
  border-radius: 18px;
  overflow: hidden;
}

.menu-option-card > a {
  display: block;
}

.menu-option-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.1) brightness(0.92) sepia(0.06);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.menu-option-card > a img {
  object-position: center top;
}

.menu-option-card:hover img {
  filter: saturate(0.98) contrast(1.14) brightness(1) sepia(0.04);
  transform: scale(1.025);
}

.menu-option-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 600;
  line-height: 0.92;
}

.menu-option-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.94rem;
}

.menu-option-card strong {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-chef-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-chef-card li {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.menu-chef-image-card {
  display: flex;
  flex-direction: column;
}

.menu-chef-image-card a {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
}

.menu-chef-image-card img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 22px;
  background: #f4efe8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.menu-chef-image-card a:hover img,
.menu-chef-image-card a:focus-visible img {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.menu-section-heading {
  margin-bottom: 26px;
}

.menu-section-heading p {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.chef-menu-detail-section .menu-section-heading p {
  margin-top: 28px;
}

.menu-section-heading-compact {
  margin-bottom: 18px;
}

.tasting-menu-section,
.chef-menu-detail-section {
  padding-top: 34px;
}

.tasting-menu-intro,
.chef-menu-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: 22px;
  align-items: stretch;
}

.tasting-menu-copy,
.chef-menu-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chef-menu-detail-copy .section-title {
  margin-top: 18px;
}

.tasting-menu-copy .section-title,
.chef-menu-detail-copy .section-title {
  margin-bottom: 24px;
}

.tasting-menu-copy p,
.chef-menu-detail-copy p {
  max-width: 860px;
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--text-soft);
  line-height: 1.9;
}

.tasting-menu-copy .hero-actions,
.chef-menu-detail-copy .hero-actions {
  margin-top: 24px;
}

.tasting-menu-print-card,
.chef-menu-examples-card {
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(198, 160, 102, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(198, 160, 102, 0.18);
  box-shadow: var(--shadow);
}

.menu-document-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 54ch;
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-document-intro::before {
  content: "";
  flex: 0 0 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.tasting-menu-print-card a,
.chef-menu-example-grid a {
  display: block;
  margin-top: 14px;
}

.tasting-menu-print-card img,
.chef-menu-example-grid img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  border-radius: 22px;
  background: #f4efe8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.tasting-menu-print-card a:hover img,
.tasting-menu-print-card a:focus-visible img,
.chef-menu-example-grid a:hover img,
.chef-menu-example-grid a:focus-visible img {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.chef-menu-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.chef-menu-example-grid a {
  margin-top: 0;
}

.chef-menu-example-grid img {
  aspect-ratio: 0.74;
  max-height: none;
}

.chef-menu-gallery-cta,
.tasting-menu-gallery-cta {
  margin-top: 22px;
}

.chef-menu-gallery-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(198, 160, 102, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(198, 160, 102, 0.18);
  box-shadow: var(--shadow);
}

.chef-menu-gallery-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.tasting-steps-grid,
.chef-menu-dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.tasting-step-card,
.chef-menu-dish-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin: 0;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.tasting-step-card::before,
.tasting-step-card::after,
.chef-menu-dish-card::before,
.chef-menu-dish-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.tasting-step-card::before,
.chef-menu-dish-card::before {
  background:
    radial-gradient(circle at 50% 34%, transparent 30%, rgba(0, 0, 0, 0.54) 100%),
    linear-gradient(135deg, rgba(198, 160, 102, 0.26), transparent 44%),
    linear-gradient(180deg, rgba(255, 236, 202, 0.1), rgba(0, 0, 0, 0.34));
  mix-blend-mode: multiply;
}

.tasting-step-card::after,
.chef-menu-dish-card::after {
  background:
    linear-gradient(90deg, rgba(12, 8, 5, 0.34), transparent 30%, transparent 68%, rgba(12, 8, 5, 0.38)),
    linear-gradient(180deg, rgba(198, 160, 102, 0.11), transparent 28%, rgba(0, 0, 0, 0.48));
}

.tasting-step-card img,
.chef-menu-dish-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.2) brightness(0.84) sepia(0.16);
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.tasting-steps-grid .tasting-step-card:nth-child(2) img {
  object-position: 68% 40%;
}

.tasting-steps-grid .tasting-step-card:nth-child(5) img {
  object-position: 50% 58%;
  transform: scale(1);
}

.tasting-steps-grid .tasting-step-card:nth-child(9) img {
  object-position: 50% 38%;
}

.tasting-steps-grid .tasting-step-card:nth-child(13) img {
  object-position: 50% 32%;
}

.tasting-steps-grid .tasting-step-card:nth-child(14) img {
  object-position: 50% 68%;
}

.chef-menu-dish-card img[src$="chef-menu-picanha.jpg"] {
  padding: 14px;
  object-fit: contain;
  background:
    radial-gradient(circle at center, rgba(198, 160, 102, 0.12), transparent 54%),
    #070604;
}

.tasting-step-card:hover img,
.chef-menu-dish-card:hover img {
  filter: saturate(0.9) contrast(1.23) brightness(0.94) sepia(0.12);
  transform: scale(1.045);
}

.tasting-step-card:hover img[src$="tasting-step-05-bread-olive-oil-cinematic.png"] {
  transform: scale(1.02);
}

.chef-menu-dish-card:hover img[src$="chef-menu-picanha.jpg"] {
  transform: scale(1.015);
}

.tasting-step-card figcaption,
.chef-menu-dish-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 64px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  z-index: 2;
}

.tasting-step-card figcaption span,
.chef-menu-dish-card figcaption span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 999px;
  border: 1px solid rgba(198, 160, 102, 0.34);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tasting-step-card figcaption strong,
.chef-menu-dish-card figcaption strong {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.02;
}

.chef-menu-dish-card figcaption small {
  display: block;
  max-width: 24ch;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.menu-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.menu-jump-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-cards-section {
  padding-top: 38px;
}

.menu-document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.menu-document-grid-centered {
  grid-template-columns: minmax(280px, 420px);
  justify-content: center;
}

.menu-document-grid-balanced {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wine-document-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-document-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.menu-document-card-wide {
  grid-column: span 2;
}

.menu-document-copy {
  padding: 24px 24px 18px;
}

.menu-document-copy h3 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
}

.menu-document-card a {
  display: block;
  padding: 0 18px 18px;
}

.menu-document-card img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  border-radius: 22px;
  background: #f4efe8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.menu-document-card a:hover img,
.menu-document-card a:focus-visible img {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.menu-document-grid-balanced .menu-document-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.menu-document-grid-balanced .menu-document-card a {
  display: flex;
  flex: 1;
  align-items: flex-end;
}

.menu-document-grid-balanced .menu-document-card img {
  max-height: 540px;
}

.menu-photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.menu-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  margin: 0;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.menu-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.menu-photo-card:hover img {
  filter: brightness(1.05);
  transform: scale(1.045);
}

.menu-photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 52px 20px 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.menu-photo-card figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-photo-card figcaption strong {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}

.menu-lunch-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: stretch;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at right top, rgba(198, 160, 102, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(198, 160, 102, 0.2);
  box-shadow: var(--shadow);
}

.menu-lunch-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-lunch-copy p {
  max-width: 820px;
  color: var(--text-soft);
  line-height: 1.9;
}

.menu-lunch-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(198, 160, 102, 0.14), rgba(255, 255, 255, 0.026)),
    rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(198, 160, 102, 0.18);
}

.menu-lunch-card span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-lunch-card strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--text);
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 0.9;
}

.menu-lunch-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.menu-lunch-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.menu-lunch-visuals figure {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  margin: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-lunch-visuals figure:first-child {
  grid-column: 1 / -1;
  min-height: 150px;
}

.menu-lunch-visuals img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
}

.menu-lunch-visuals figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 12px 10px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.menu-lunch-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-lunch-card li {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-drinks-layout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(280px, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at right top, rgba(198, 160, 102, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #050505;
  border: 1px solid rgba(198, 160, 102, 0.18);
  box-shadow: var(--shadow);
}

.menu-drinks-layout .menu-document-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.46);
}

.menu-drinks-layout .menu-document-card a {
  display: flex;
  flex: 1;
  align-items: flex-end;
}

.menu-drinks-layout .menu-document-card img {
  max-height: 520px;
}

.menu-drinks-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
}

.menu-drinks-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  margin: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.menu-drinks-card.is-featured {
  display: block;
}

.menu-drinks-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.menu-drinks-card:hover img {
  filter: brightness(1.04);
  transform: scale(1.04);
}

.menu-drinks-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.menu-drinks-card figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-drinks-card figcaption strong {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Serif TC", serif;
  font-size: clamp(1.28rem, 1.7vw, 1.72rem);
  font-weight: 600;
  line-height: 1;
}

.menu-reservation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at right top, rgba(198, 160, 102, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(198, 160, 102, 0.18);
  box-shadow: var(--shadow);
}

.menu-reservation-panel p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.menu-reservation-panel .hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-grid,
  .story-grid,
  .editorial-grid,
  .cuisine-kicker,
  .cuisine-story,
  .cuisine-story.is-reversed,
  .products-cta,
  .restaurant-mosaic,
  .chef-grid,
  .contact-grid,
  .footer-grid,
  .product-grid,
  .imported-products-grid,
  .products-page-grid,
  .purchase-panel,
  .menu-feature-grid,
  .tasting-menu-intro,
  .chef-menu-detail-intro,
  .menu-lunch-panel,
  .menu-drinks-layout,
  .menu-reservation-panel {
    grid-template-columns: 1fr;
  }

  .purchase-steps {
    grid-template-columns: 1fr;
  }

  .menu-document-grid,
  .wine-document-grid,
  .menu-photo-gallery,
  .tasting-steps-grid,
  .chef-menu-dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .menu-drinks-card.is-featured {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .menu-document-card-wide {
    grid-column: span 1;
  }

  .menu-reservation-panel .hero-actions {
    justify-content: flex-start;
  }

  .chef-visual {
    min-height: 620px;
  }

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

  .restaurant-copy,
  .restaurant-card-vip,
  .restaurant-card-wine {
    grid-column: auto;
    grid-row: span 1;
  }

  .restaurant-card-wine {
    display: block;
  }

  .restaurant-card-wine .product-photo {
    height: 280px;
  }

  .hero-copy {
    min-height: 560px;
  }

  .gallery-grid,
  .gallery-page-grid,
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cuisine-kicker,
  .cuisine-grid,
  .cuisine-story,
  .cuisine-story.is-reversed {
    grid-template-columns: 1fr;
  }

  .cuisine-text,
  .cuisine-text-large,
  .cuisine-text-wide,
  .cuisine-final,
  .cuisine-photo,
  .cuisine-photo-hero,
  .cuisine-photo-small {
    grid-column: auto;
  }

  .cuisine-kicker .hero-actions {
    justify-content: flex-start;
  }

  .space-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .space-intro .hero-actions {
    justify-content: flex-start;
  }

  .career-card,
  .career-form {
    grid-template-columns: 1fr;
  }

  .chef-facts {
    grid-template-columns: 1fr;
  }

  .chef-moments {
    grid-template-columns: 1fr;
  }

  .chef-certification {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
    background: rgba(12, 12, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions .button {
    display: none;
  }

  .chef-menu-gallery-card {
    grid-template-columns: 1fr;
  }

  .chef-menu-gallery-card .button {
    justify-self: flex-start;
  }

  .gallery-grid,
  .gallery-page-grid,
  .menu-grid,
  .menu-document-grid,
  .wine-document-grid,
  .menu-photo-gallery,
  .tasting-steps-grid,
  .chef-menu-dish-grid,
  .product-preview {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 520px;
    padding: 42px 28px;
  }

  .home-hero .hero-copy {
    min-height: 500px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  main > .hero + .section,
  main > .section + .section {
    padding-top: 30px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 32px;
    height: 38px;
  }

  .brand-word {
    width: 104px;
  }

  .lang-switch a {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .hero-shell,
  .hero-copy,
  .story-panel,
  .editorial-panel,
  .menu-panel,
  .contact-panel,
  .map-panel,
  .footer-shell {
    border-radius: 26px;
  }

  .hero-shell {
    padding: 14px;
  }

  .hero-copy {
    min-height: 500px;
    padding: 36px 22px;
  }

  .home-hero .hero-copy {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-social-links {
    width: 100%;
    padding-left: 0;
  }

  .hero-social-links::before {
    display: none;
  }

  .hero-social-links a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .hero p,
  .lead,
  .story-panel p,
  .editorial-panel p,
  .menu-panel p,
  .contact-panel p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .section-title {
    font-size: 2.55rem;
  }

  .stack-card,
  .story-panel,
  .editorial-panel,
  .menu-panel,
  .menu-chef-card,
  .menu-reservation-panel,
  .contact-panel,
  .map-panel,
  .product-copy,
  .gallery-card .card-copy {
    padding-left: 22px;
    padding-right: 22px;
  }

  .wide-photo {
    min-height: 300px;
  }

  .cuisine-grid .wide-photo,
  .cuisine-grid .cuisine-photo-hero,
  .cuisine-grid .cuisine-photo-small {
    height: 260px;
  }

  .gallery-card.tall {
    min-height: 360px;
  }

  .gallery-card.medium {
    min-height: 280px;
  }

  .gallery-card.small {
    min-height: 220px;
  }

  .menu-document-card a {
    padding: 0 12px 12px;
  }

  .menu-document-copy {
    padding: 22px 18px 16px;
  }

  .menu-chef-card h3 {
    font-size: 3rem;
  }

  .menu-option-card h3 {
    font-size: 2.45rem;
  }

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

  .menu-option-card > img,
  .menu-option-card > a {
    height: 240px;
    min-height: 0;
  }

  .tasting-menu-print-card,
  .chef-menu-examples-card {
    padding: 18px;
  }

  .tasting-step-card,
  .tasting-step-card img,
  .chef-menu-dish-card,
  .chef-menu-dish-card img {
    min-height: 330px;
  }
}
