:root {
  --white: #ffffff;
  --paper: #f8f6f1;
  --paper-strong: #efe9dd;
  --ink: #17130f;
  --muted: #6f675e;
  --brown: #8b5e34;
  --brown-deep: #5b381f;
  --gold: #c8a46a;
  --charcoal: #211d19;
  --sage: #7f8a72;
  --red: #8f2f26;
  --line: rgba(23, 19, 15, 0.13);
  --shadow: 0 22px 70px rgba(26, 20, 14, 0.16);
  --header-height: 78px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  word-break: keep-all;
  overflow-wrap: anywhere;
  opacity: 0;
  transition: opacity 320ms ease;
}

body.is-ready {
  opacity: 1;
}

body.is-leaving {
  opacity: 0;
}

img,
svg,
iframe {
  display: block;
}

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

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

button {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--brown);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: #050403;
  transition:
    opacity 280ms ease,
    visibility 280ms ease;
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  display: grid;
  gap: 14px;
  justify-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.loader-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(248, 246, 241, 0.42);
  border-radius: 50%;
  font-size: 28px;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
  height: var(--header-height);
  padding: 0 42px;
  color: var(--paper);
  background: rgba(17, 13, 10, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition:
    background 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 246, 241, 0.94);
  border-color: rgba(23, 19, 15, 0.12);
  box-shadow: 0 10px 30px rgba(26, 20, 14, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: currentColor;
}

.brand-logo {
  display: block;
  width: 258px;
  height: auto;
  color: currentColor;
  overflow: visible;
}

.brand-logo-title,
.brand-logo-subtitle {
  fill: currentColor;
  letter-spacing: 0;
}

.brand-logo-title {
  font-family: var(--font-en);
  font-size: 31px;
  font-weight: 600;
}

.brand-logo-subtitle {
  font-family: var(--font-ko);
  font-size: 9.8px;
  font-weight: 500;
  letter-spacing: -0.03rem;
  opacity: 0.72;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 800;
}

.brand-text small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: currentColor;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  opacity: 0.84;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  cursor: pointer;
  background: var(--brown-deep);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.reserve-button svg {
  width: 18px;
  height: 18px;
}

.reserve-button:hover,
.reserve-button:focus-visible {
  background: var(--brown);
  box-shadow: 0 12px 26px rgba(91, 56, 31, 0.24);
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: currentColor;
  cursor: pointer;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.mobile-menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  position: absolute;
  top: var(--header-height);
  right: 18px;
  left: 18px;
  display: none;
  padding: 12px;
  color: var(--ink);
  background: rgba(248, 246, 241, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 800;
  border-bottom: 1px solid rgba(23, 19, 15, 0.08);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.site-header.is-open .mobile-nav {
  display: block;
}

main {
  overflow: hidden;
}

section {
  position: relative;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  color: var(--paper);
  background: var(--charcoal);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--brown);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark .section-kicker {
  color: var(--gold);
}

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

h1,
h2 {
  line-height: 1.05;
}

h1 {
  margin-bottom: 24px;
  font-size: 72px;
  font-weight: 850;
}

h1 span {
  display: block;
  margin-top: 14px;
  font-size: 32px;
  font-weight: 700;
}

h2 {
  margin-bottom: 26px;
  font-size: 50px;
  font-weight: 840;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
}

.section-dark p {
  color: rgba(248, 246, 241, 0.76);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 150px 42px 96px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  --hero-scale: 1;
  --hero-y: 0px;
  inset: -2%;
  background-image: url("assets/images/hero-omakase.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateY(var(--hero-y, 0)) scale(var(--hero-scale, 1));
  transform-origin: center;
  transition: transform 120ms linear;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(8, 6, 4, 0.58) 0%,
      rgba(8, 6, 4, 0.3) 48%,
      rgba(8, 6, 4, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 6, 4, 0.34) 0%,
      rgba(8, 6, 4, 0.05) 42%,
      rgba(8, 6, 4, 0.58) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-copy {
  max-width: 690px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
}

.hero-reserve {
  min-height: 52px;
  padding: 0 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--paper);
  font-size: 15px;
  font-weight: 800;
  border-bottom: 1px solid rgba(248, 246, 241, 0.6);
}

.hero-rail {
  position: absolute;
  right: 42px;
  bottom: 32px;
  left: 42px;
  z-index: 1;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  color: rgba(248, 246, 241, 0.68);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.craft {
  min-height: 1180px;
  padding: 118px 42px;
}

.craft > .section-kicker {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.craft-stage {
  position: sticky;
  top: 104px;
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(360px, 1fr) minmax(
      180px,
      300px
    );
  gap: 48px;
  align-items: center;
  max-width: 1220px;
  min-height: 680px;
  margin: 0 auto;
}

.craft-image {
  height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.craft-image-left {
  align-self: start;
}

.craft-image-right {
  align-self: end;
  margin-top: 140px;
}

.craft-copy {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.menu-scene {
  min-height: 1000px;
  display: grid;
  align-items: center;
  padding: 130px 42px;
}

.scene-bg,
.scene-overlay {
  position: absolute;
  inset: 0;
}

.scene-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(9, 6, 4, 0.88),
      rgba(9, 6, 4, 0.54) 52%,
      rgba(9, 6, 4, 0.2)
    ),
    linear-gradient(180deg, rgba(9, 6, 4, 0.5), rgba(9, 6, 4, 0.78));
}

.scene-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.scene-content h2 {
  max-width: 820px;
}

.scene-lead {
  max-width: 660px;
}

.menu-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 46px 0 34px;
  border: 1px solid rgba(248, 246, 241, 0.22);
}

.menu-summary article {
  min-height: 172px;
  padding: 28px;
  background: rgba(248, 246, 241, 0.08);
}

.menu-summary span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.menu-summary strong {
  display: block;
  margin-bottom: 14px;
  font-size: 30px;
}

.menu-summary p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

.soft-list {
  display: grid;
  gap: 12px;
  max-width: 720px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.soft-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(248, 246, 241, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.soft-list li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
}

.fresh {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 68px;
  align-items: center;
  padding: 130px 42px;
}

.fresh-copy {
  max-width: 590px;
  justify-self: end;
}

.fresh-image {
  height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
}

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

.fresh-metrics span {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.fresh-metrics strong {
  color: var(--brown-deep);
  font-size: 28px;
}

.space {
  padding: 130px 42px;
  background: var(--white);
}

.space > .section-kicker,
.space-grid {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}

.space-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(420px, 1.16fr);
  gap: 58px;
  align-items: center;
}

.space-copy {
  max-width: 520px;
}

.notice-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.notice-line span {
  padding: 10px 14px;
  color: var(--brown-deep);
  background: var(--paper);
  border: 1px solid rgba(139, 94, 52, 0.22);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.space-images {
  position: relative;
  min-height: 620px;
}

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

.space-image.first {
  top: 0;
  right: 0;
  width: 76%;
  height: 390px;
}

.space-image.second {
  bottom: 0;
  left: 0;
  width: 64%;
  height: 310px;
}

.video-section {
  padding: 130px 42px;
  background:
    linear-gradient(135deg, rgba(33, 29, 25, 0.94), rgba(91, 56, 31, 0.72)),
    var(--charcoal);
}

.video-section > .section-kicker,
.video-layout {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(440px, 1.25fr);
  gap: 58px;
  align-items: center;
}

.video-copy {
  max-width: 520px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #070604;
  border: 1px solid rgba(248, 246, 241, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.video-frame::before {
  position: absolute;
  inset: 18px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(248, 246, 241, 0.12);
  pointer-events: none;
}

.video-frame iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

.plates {
  padding: 130px 42px;
}

.plates-head {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.plate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.plate-grid figure {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 8px;
}

.plate-grid img {
  transition: transform 500ms ease;
}

.plate-grid figure:hover img {
  transform: scale(1.06);
}

.plate-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(23, 19, 15, 0.56);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.price {
  padding: 130px 42px;
  background: var(--white);
}

.price-head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.price-table-wrap {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--paper);
}

.price-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.price-table th,
.price-table td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(23, 19, 15, 0.1);
  vertical-align: top;
}

.price-table thead th {
  color: var(--white);
  background: var(--brown-deep);
  font-size: 14px;
}

.price-table tbody th {
  width: 170px;
  color: var(--brown-deep);
  font-size: 17px;
}

.price-table td {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: 0;
}

.chefs {
  padding: 130px 42px;
}

.chefs > .section-kicker,
.chefs-layout {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}

.chefs-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(320px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.chefs-image {
  height: 640px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.chef-list article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chef-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chef-list p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.75;
}

.info {
  padding: 130px 42px 150px;
  background: var(--paper-strong);
}

.info-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
}

.map-box {
  min-height: 520px;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(0.84) contrast(1.02);
}

.info-panel {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.info-panel dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 19, 15, 0.09);
}

.info-panel dl > div:first-child {
  padding-top: 0;
}

.info-panel dt {
  color: var(--brown-deep);
  font-weight: 900;
}

.info-panel dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.info-reserve {
  width: 100%;
}

.site-footer {
  color: rgba(248, 246, 241, 0.76);
  background: #15110e;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 1220px;
  padding: 46px 42px;
  margin: 0 auto;
}

.footer-brand {
  color: var(--paper);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.footer-nav a {
  opacity: 0.76;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  background: rgba(248, 246, 241, 0.08);
  border: 1px solid rgba(248, 246, 241, 0.12);
  border-radius: 4px;
}

.social-links svg {
  width: 21px;
  height: 21px;
}

.footer-bottom {
  padding: 18px 42px 24px;
  text-align: center;
  border-top: 1px solid rgba(248, 246, 241, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: rgba(248, 246, 241, 0.62);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--paper);
  font-weight: 800;
}

.top-button {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  display: grid;
  gap: 3px;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  cursor: pointer;
  background: var(--brown-deep);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(23, 19, 15, 0.28);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.top-button.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.top-button svg {
  width: 22px;
  height: 22px;
}

.top-button span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.mobile-fixed-reserve {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  color: var(--white);
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  background: var(--brown-deep);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(23, 19, 15, 0.32);
}

.mobile-fixed-reserve svg {
  width: 19px;
  height: 19px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}

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

.has-gsap-motion [data-reveal],
.has-gsap-motion .hero-bg,
.has-gsap-motion .craft-image,
.has-gsap-motion .plate-grid figure {
  transition: none;
  will-change: opacity, transform;
}

.craft-image-left[data-reveal] {
  transform: translate(-36px, 54px);
}

.craft-image-right[data-reveal] {
  transform: translate(36px, 54px);
}

.craft-image-left[data-reveal].is-visible,
.craft-image-right[data-reveal].is-visible {
  transform: translate(0, 0);
}

.page-shell {
  min-height: 100svh;
  padding-top: var(--header-height);
  background: var(--paper);
}

.subpage-hero {
  padding: 118px 42px 64px;
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(23, 19, 15, 0.94), rgba(91, 56, 31, 0.78)),
    var(--charcoal);
}

.subpage-hero-inner,
.policy-content {
  max-width: 980px;
  margin: 0 auto;
}

.subpage-hero h1 {
  margin-bottom: 18px;
  font-size: 54px;
}

.subpage-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(248, 246, 241, 0.76);
}

.policy-content {
  padding: 78px 42px 110px;
}

.policy-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.policy-block h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.policy-block p,
.policy-block li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.policy-block ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}

.policy-actions {
  margin-top: 42px;
}

.policy-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--brown-deep);
  border-radius: 4px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 60px;
  }

  h1 span {
    font-size: 28px;
  }

  h2 {
    font-size: 42px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .craft-stage {
    grid-template-columns: minmax(160px, 240px) minmax(320px, 1fr) minmax(
        160px,
        240px
      );
    gap: 32px;
  }

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

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    padding: 0 22px;
  }

  .desktop-nav,
  .header-reserve {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
    justify-self: end;
  }

  .hero {
    min-height: 92svh;
    padding: 136px 24px 88px;
  }

  h1 {
    font-size: 48px;
  }

  h1 span {
    font-size: 24px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-rail {
    right: 24px;
    left: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .craft {
    min-height: auto;
    padding: 92px 24px;
  }

  .craft-stage {
    position: static;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .craft-image {
    height: 430px;
  }

  .craft-image-right {
    margin-top: 0;
  }

  .craft-copy {
    order: -1;
    text-align: left;
  }

  .menu-scene,
  .video-section,
  .plates,
  .price,
  .chefs,
  .info {
    padding: 96px 24px;
  }

  .fresh,
  .space {
    padding: 96px 24px;
  }

  .menu-summary,
  .fresh,
  .space-grid,
  .video-layout,
  .chefs-layout,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .fresh-copy {
    justify-self: start;
  }

  .fresh-image {
    height: 430px;
    border-radius: 8px;
  }

  .space-images {
    min-height: 560px;
  }

  .chefs-image,
  .map-box,
  .map-box iframe {
    min-height: 420px;
    height: 420px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    font-size: 10px;
  }

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

  .hero {
    min-height: 90svh;
    padding: 118px 18px 88px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 6, 4, 0.84), rgba(8, 6, 4, 0.54)),
      linear-gradient(180deg, rgba(8, 6, 4, 0.38), rgba(8, 6, 4, 0.74));
  }

  h1 {
    font-size: 38px;
  }

  h1 span {
    font-size: 20px;
    line-height: 1.3;
  }

  h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  p,
  .hero-copy {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-reserve {
    display: none;
  }

  .hero-rail {
    display: none;
  }

  .craft,
  .menu-scene,
  .fresh,
  .space,
  .video-section,
  .plates,
  .price,
  .chefs,
  .info {
    padding-right: 18px;
    padding-left: 18px;
  }

  .craft-image,
  .fresh-image,
  .chefs-image {
    height: 360px;
  }

  .menu-summary article {
    min-height: 0;
    padding: 22px;
  }

  .fresh-metrics {
    grid-template-columns: 1fr;
  }

  .space-images {
    min-height: 510px;
  }

  .space-image.first,
  .space-image.second {
    width: 100%;
  }

  .space-image.first {
    height: 300px;
  }

  .space-image.second {
    height: 250px;
  }

  .plate-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .plate-grid figure:last-child {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }

  .price-table-wrap {
    margin-right: -18px;
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .info-panel {
    padding: 24px;
  }

  .info-panel dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-main {
    padding: 40px 18px;
  }

  .footer-nav {
    gap: 12px 16px;
  }

  .top-button {
    display: none;
  }

  .mobile-fixed-reserve {
    display: flex;
  }

  .subpage-hero {
    padding: 106px 18px 54px;
  }

  .subpage-hero h1 {
    font-size: 34px;
  }

  .policy-content {
    padding: 54px 18px 90px;
  }
}

/* Onnydesign-inspired refinement: white fixed header, giant canvas typography,
   restrained section furniture, and corner-floating images. */
:root {
  --header-height: 58px;
  --onny-accent: #9a5128;
  --onny-soft: #f3eee7;
}

body {
  background: var(--white);
}

.site-header,
.site-header.is-scrolled,
.site-header.is-open {
  height: var(--header-height);
  padding: 0 42px;
  color: #111;
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero::after,
.craft::before,
.fresh::before,
.space::before,
.plates::before,
.price::before,
.chefs::before,
.info::before {
  position: absolute;
  z-index: 0;
  right: 4vw;
  bottom: 4vh;
  color: rgba(154, 81, 40, 0.07);
  font-size: 188px;
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.hero::after {
  content: none;
  right: 6vw;
  bottom: 8vh;
  color: rgba(191, 108, 54, 0.12);
}

.craft::before {
  content: "MASTER COUNTER";
  right: auto;
  left: 4vw;
  bottom: 9vh;
}

.fresh::before {
  content: "AGING FRESH";
  top: 18vh;
  right: 2vw;
  bottom: auto;
}

.space::before {
  content: "MAPO PLACE";
  left: 3vw;
  right: auto;
  bottom: 10vh;
}

.plates::before {
  content: "SEASONAL";
  right: 3vw;
  bottom: 18vh;
}

.price::before {
  content: "PRICE GUIDE";
  top: 10vh;
  right: 3vw;
  bottom: auto;
}

.chefs::before {
  content: "TWO CHEFS";
  left: 3vw;
  right: auto;
  bottom: 7vh;
}

.info::before {
  content: "RESERVE";
  right: 3vw;
  bottom: 8vh;
}

.craft > *,
.fresh > *,
.space > *,
.plates > *,
.price > *,
.chefs > *,
.info > * {
  position: relative;
  z-index: 1;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.brand-text strong {
  font-size: 17px;
  letter-spacing: 0;
}

.brand-text small {
  color: #111;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.desktop-nav {
  gap: 34px;
  font-size: 13px;
  font-weight: 800;
  color: var(--onny-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  padding: 21px 0;
}

.desktop-nav a::after {
  bottom: 16px;
  background: var(--onny-accent);
}

.header-reserve {
  min-height: 38px;
  padding: 0 16px;
  color: var(--onny-accent);
  background: transparent;
  border: 1px solid rgba(154, 81, 40, 0.42);
}

.header-reserve:hover,
.header-reserve:focus-visible {
  color: var(--white);
  background: var(--onny-accent);
  box-shadow: none;
}

.hero {
  min-height: 100svh;
  align-items: end;
  padding: 210px 42px 54px;
  color: var(--white);
}

.hero-bg {
  inset: var(--header-height) 0 0;
  filter: saturate(0.82) contrast(1.08);
}

.hero-overlay {
  inset: var(--header-height) 0 0;
  background:
    linear-gradient(
      180deg,
      rgba(12, 8, 5, 0.06) 0%,
      rgba(12, 8, 5, 0.08) 40%,
      rgba(12, 8, 5, 0.72) 100%
    ),
    linear-gradient(
      90deg,
      rgba(12, 8, 5, 0.28),
      rgba(12, 8, 5, 0.06) 44%,
      rgba(12, 8, 5, 0.1)
    );
}

.hero-content {
  max-width: none;
  width: 100%;
  margin-bottom: 22px;
  text-align: center;
}

.hero-content .eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.hero h1 {
  margin: 0 auto 22px;
  color: #bf6c36;
  font-size: 162px;
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  margin-top: 26px;
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: none;
}

.hero-copy {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.hero-reserve {
  color: var(--onny-accent);
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.hero-reserve:hover,
.hero-reserve:focus-visible {
  color: var(--white);
  background: var(--onny-accent);
}

.text-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-rail {
  display: none;
}

.section-kicker,
.eyebrow {
  color: var(--onny-accent);
}

.craft,
.fresh,
.space,
.plates,
.price,
.chefs,
.info {
  background: var(--white);
}

.craft {
  min-height: 1420px;
  padding: 180px 0 120px;
}

.craft > .section-kicker {
  max-width: none;
  padding: 0 42px;
  margin-bottom: 0;
  text-align: center;
}

.craft-stage {
  top: 92px;
  grid-template-columns: minmax(180px, 32vw) minmax(420px, 1fr) minmax(
      180px,
      32vw
    );
  gap: 2.4vw;
  max-width: none;
  min-height: 980px;
  padding: 0 22px;
}

.craft-image {
  height: 360px;
  border-radius: 4px;
  box-shadow: none;
}

.craft-image-left {
  align-self: start;
  margin-top: 70px;
}

.craft-image-right {
  align-self: center;
  margin-top: 0;
}

.craft-copy h2,
.space-copy h2,
.video-copy h2,
.fresh-copy h2,
.plates-head h2,
.price-head h2,
.chefs-copy h2,
.info-head h2 {
  color: var(--onny-accent);
  font-size: 48px;
  font-weight: 850;
  letter-spacing: 0;
}

.craft-copy h2 {
  font-size: 54px;
  line-height: 1.06;
}

.craft-copy {
  max-width: 720px;
}

.craft-copy p,
.space-copy p,
.video-copy p,
.fresh-copy p,
.plates-head p,
.price-head p,
.chefs-copy p,
.info-head p {
  color: #7e7771;
}

.menu-scene {
  min-height: 1120px;
  padding: 180px 42px;
}

.scene-bg {
  filter: saturate(0.85) contrast(1.04);
}

.scene-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0) 30%,
      rgba(15, 11, 8, 0.7) 100%
    ),
    linear-gradient(
      90deg,
      rgba(15, 11, 8, 0.78),
      rgba(15, 11, 8, 0.28) 54%,
      rgba(15, 11, 8, 0.08)
    );
}

.scene-content {
  display: grid;
  align-content: center;
  min-height: 720px;
}

.scene-content h2 {
  color: var(--white);
  font-size: 92px;
  font-weight: 520;
  letter-spacing: 0;
}

.menu-summary {
  max-width: 980px;
  gap: 22px;
  margin: 52px 0 32px;
  border: 0;
}

.menu-summary article {
  min-height: 0;
  padding: 20px 0 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.menu-summary strong {
  color: var(--white);
  font-size: 34px;
  font-weight: 750;
}

.fresh {
  min-height: 980px;
  grid-template-columns: minmax(420px, 0.82fr) minmax(440px, 1.18fr);
  padding: 210px 0 160px 42px;
}

.fresh-image {
  height: 680px;
  border-radius: 4px 0 0 4px;
  box-shadow: none;
}

.fresh-metrics span {
  background: var(--onny-soft);
  border: 0;
  border-radius: 4px;
}

.space {
  min-height: 1140px;
  padding: 210px 22px 170px;
}

.space-grid {
  grid-template-columns: minmax(340px, 0.8fr) minmax(520px, 1.2fr);
  max-width: none;
}

.space-copy {
  justify-self: center;
  text-align: center;
}

.space-images {
  min-height: 720px;
}

.space-image {
  border-radius: 4px;
  box-shadow: none;
}

.space-image.first {
  width: 72%;
  height: 410px;
}

.space-image.second {
  width: 52%;
  height: 300px;
}

.notice-line {
  justify-content: center;
}

.notice-line span {
  color: var(--onny-accent);
  background: transparent;
  border-color: rgba(154, 81, 40, 0.38);
  border-radius: 999px;
}

.video-section {
  min-height: 980px;
  padding: 170px 42px;
  background: #14110e;
}

.video-section::before {
  position: absolute;
  right: 3vw;
  bottom: 8vh;
  z-index: 0;
  color: rgba(255, 255, 255, 0.08);
  content: "QUIET MOMENT";
  font-size: 170px;
  font-weight: 500;
  line-height: 0.88;
  white-space: nowrap;
  pointer-events: none;
}

.video-section > * {
  position: relative;
  z-index: 1;
}

.video-layout {
  grid-template-columns: minmax(340px, 0.72fr) minmax(520px, 1.28fr);
  max-width: 1280px;
}

.video-frame {
  border-radius: 4px;
  box-shadow: none;
}

.plates {
  padding: 210px 0 170px;
}

.plates-head {
  max-width: 760px;
}

.plate-grid {
  max-width: none;
  grid-template-columns: repeat(5, minmax(260px, 1fr));
  gap: 16px;
  padding: 0 22px;
}

.plate-grid figure {
  border-radius: 4px;
}

.price {
  padding: 210px 42px 170px;
}

.price-table-wrap {
  max-width: 1160px;
  border-color: rgba(154, 81, 40, 0.18);
  border-radius: 4px;
  box-shadow: none;
}

.price-table thead th {
  background: var(--onny-accent);
}

.chefs {
  padding: 210px 42px 170px;
}

.chefs-layout {
  grid-template-columns: minmax(420px, 1.15fr) minmax(340px, 0.85fr);
  max-width: 1280px;
}

.chefs-image {
  height: 680px;
  border-radius: 4px;
  box-shadow: none;
}

.chef-list article {
  background: var(--onny-soft);
  border: 0;
  border-radius: 4px;
}

.info {
  padding: 210px 42px 170px;
  background: #f5f1eb;
}

.map-box,
.info-panel {
  border-radius: 4px;
  box-shadow: none;
}

.mobile-fixed-reserve {
  right: 26px;
  bottom: 96px;
  left: auto;
  display: flex;
  width: auto;
  min-width: 210px;
  height: 64px;
  padding: 0 28px;
  color: var(--onny-accent);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(154, 81, 40, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

.top-button {
  color: var(--white);
  background: var(--onny-accent);
}

@media (max-width: 960px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    padding: 0 18px;
  }

  .hero {
    min-height: 92svh;
    padding: 122px 18px 92px;
  }

  .hero h1 {
    font-size: 78px;
  }

  .hero h1 span {
    font-size: 22px;
  }

  .craft,
  .menu-scene,
  .fresh,
  .space,
  .video-section,
  .plates,
  .price,
  .chefs,
  .info {
    min-height: auto;
    padding: 94px 18px;
  }

  .craft-stage,
  .fresh,
  .space-grid,
  .video-layout,
  .chefs-layout,
  .info-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .craft-image,
  .craft-image-left,
  .craft-image-right,
  .fresh-image,
  .chefs-image {
    height: 370px;
    margin-top: 0;
    border-radius: 4px;
  }

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

  .space-images {
    min-height: 560px;
  }

  .plate-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 22px;
  }

  .hero h1 span {
    margin-top: 16px;
    font-size: 19px;
    line-height: 1.34;
  }

  .hero-copy {
    font-size: 15px;
  }

  .mobile-fixed-reserve {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    min-width: 0;
    height: 54px;
    color: var(--white);
    background: var(--brown-deep);
    border-radius: 4px;
  }
}

/* Luxury typography and tone pass */
:root {
  --paper: #faf8f3;
  --paper-strong: #f1ece4;
  --ink: #191512;
  --muted: #756d64;
  --brown: #76523a;
  --brown-deep: #3a2519;
  --gold: #b89a65;
  --charcoal: #15110e;
  --line: rgba(58, 37, 25, 0.16);
  --shadow: 0 24px 80px rgba(25, 21, 18, 0.11);
  --font-ko:
    "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-en: "Cormorant Garamond", Georgia, serif;
  --onny-accent: #76523a;
  --onny-soft: #f4efe7;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-ko);
  letter-spacing: 0px;
}

* {
  letter-spacing: 0px;
}

body {
  color: var(--ink);
  font-weight: 500;
  background:
    linear-gradient(180deg, rgba(250, 248, 243, 0.98), rgba(250, 248, 243, 1)),
    var(--paper);
}

.brand-text strong,
.desktop-nav,
.mobile-nav,
.reserve-button,
.mobile-fixed-reserve,
.top-button,
.price-table,
.info-panel,
.footer-nav {
  font-family: var(--font-ko);
  letter-spacing: 0;
}

.brand-text strong {
  font-weight: 700;
}

.brand-text small,
.eyebrow,
.section-kicker,
.hero h1,
.hero-rail,
.menu-summary span,
.plate-grid figcaption,
.chef-list span,
.loader-logo {
  font-family: var(--font-en);
  letter-spacing: 0;
}

.site-header,
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(58, 37, 25, 0.09);
}

.desktop-nav {
  color: var(--brown-deep);
  font-size: 14px;
  font-weight: 600;
}

.header-reserve {
  color: #fffaf0;
  background: var(--brown-deep);
  border-color: rgba(58, 37, 25, 0.28);
}

.reserve-button,
.header-reserve:hover,
.header-reserve:focus-visible,
.top-button {
  background: var(--brown-deep);
}

.reserve-button {
  border-color: rgba(255, 255, 255, 0.32);
  font-weight: 600;
}

.header-reserve svg,
.header-reserve span {
  color: #fffaf0;
}

.hero {
  background: var(--charcoal);
}

.hero-bg {
  filter: saturate(0.72) contrast(1.04) brightness(0.9);
}

.hero-overlay {
  background:
    radial-gradient(
      circle at 52% 48%,
      rgba(184, 154, 101, 0.1),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      rgba(9, 7, 5, 0.1) 0%,
      rgba(9, 7, 5, 0.14) 42%,
      rgba(9, 7, 5, 0.82) 100%
    ),
    linear-gradient(
      90deg,
      rgba(9, 7, 5, 0.38),
      rgba(9, 7, 5, 0.08) 46%,
      rgba(9, 7, 5, 0.18)
    );
}

.hero-content .eyebrow,
.section-dark .eyebrow,
.section-dark .section-kicker {
  color: rgba(225, 203, 160, 0.86);
  font-size: 17px;
  font-weight: 600;
}

.hero h1 {
  color: #c9a879;
  font-size: 162px;
  font-weight: 500;
  line-height: 0.78;
}

.hero h1 span {
  color: #fffaf0;
  font-family: var(--font-ko);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.42;
}

.hero-copy {
  color: rgba(255, 250, 240, 0.78);
  font-size: 18px;
  font-weight: 400;
  line-height: 2.05;
}

.hero-reserve,
.mobile-fixed-reserve {
  color: var(--brown-deep);
  background: rgba(255, 252, 246, 0.94);
  border: 1px solid rgba(184, 154, 101, 0.28);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.14);
}

.hero-reserve:hover,
.hero-reserve:focus-visible,
.mobile-fixed-reserve:hover,
.mobile-fixed-reserve:focus-visible {
  color: #fffaf0;
  background: var(--brown-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-ko);
  letter-spacing: 0;
}

h2,
.craft-copy h2,
.space-copy h2,
.video-copy h2,
.fresh-copy h2,
.plates-head h2,
.price-head h2,
.chefs-copy h2,
.info-head h2 {
  color: var(--brown-deep);
  font-weight: 700;
  line-height: 1.24;
}

.scene-content h2 {
  color: #fffaf0;
  font-family: var(--font-ko);
  font-weight: 600;
  line-height: 1.18;
}

p,
.price-table td,
.info-panel dd,
.policy-block p,
.policy-block li {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.95;
}

.craft-image,
.fresh-image,
.space-image,
.chefs-image,
.plate-grid figure,
.video-frame,
.map-box,
.info-panel,
.price-table-wrap {
  border-radius: 2px;
}

.craft-image img,
.fresh-image img,
.space-image img,
.chefs-image img,
.plate-grid img,
.scene-bg {
  filter: saturate(0.82) contrast(1.02);
}

.craft::before,
.fresh::before,
.space::before,
.plates::before,
.price::before,
.chefs::before,
.info::before,
.video-section::before {
  color: rgba(58, 37, 25, 0.045);
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0;
}

.video-section::before {
  color: rgba(255, 250, 240, 0.06);
}

.menu-summary article {
  border-top-color: rgba(255, 250, 240, 0.24);
}

.menu-summary strong {
  color: #fffaf0;
  font-family: var(--font-en);
  font-weight: 600;
}

.soft-list li {
  color: rgba(255, 250, 240, 0.8);
  font-weight: 400;
}

.soft-list li::before {
  background: var(--gold);
}

.fresh-metrics span,
.chef-list article {
  background: linear-gradient(180deg, #fbf8f1, var(--onny-soft));
}

.fresh-metrics strong,
.price-table tbody th,
.info-panel dt,
.chef-list span,
.notice-line span {
  color: var(--brown-deep);
}

.price-table {
  background: #fbf8f1;
}

.price-table thead th {
  color: #fffaf0;
  background: var(--brown-deep);
  font-weight: 600;
}

.price-table th,
.price-table td {
  border-bottom-color: rgba(58, 37, 25, 0.1);
}

.price-head,
.plates-head,
.info-head {
  max-width: 860px;
}

.info {
  background: linear-gradient(180deg, #f8f4ed, #eee7dc);
}

.site-footer {
  background: #11100e;
}

.footer-bottom a {
  color: #e5d2ad;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero h1 span {
    font-size: 18px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.9;
  }

  .mobile-fixed-reserve {
    color: #fffaf0;
    background: var(--brown-deep);
    border-radius: 2px;
  }
}

/* Revision pass requested: Pretendard base, refined logo, quick menu, premium sections */
body,
button,
input,
textarea,
select,
h1,
h2,
h3,
p,
th,
td,
dt,
dd,
.brand-text strong,
.desktop-nav,
.mobile-nav,
.reserve-button,
.quick-action,
.price-table,
.info-panel,
.footer-nav {
  font-family: var(--font-ko);
}

.hero h1,
.hero-content .eyebrow,
.brand-text small,
.section-kicker,
.eyebrow,
.video-section::before,
.price::before {
  font-family: var(--font-en);
}

.brand {
  gap: 11px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  color: #1b1511;
}

.brand-text {
  gap: 0;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 800;
}

.brand-text small {
  font-size: 11px;
  font-weight: 600;
  color: #3c2b20;
}

.header-reserve {
  min-height: 40px;
  padding: 0 18px;
  color: #f8efe2;
  background: #2f1f16;
  border: 1px solid #2f1f16;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(47, 31, 22, 0.14);
}

.header-reserve:hover,
.header-reserve:focus-visible {
  color: #2f1f16;
  background: #f7efe4;
  border-color: rgba(47, 31, 22, 0.25);
  box-shadow: none;
}

.hero-reserve {
  border-radius: 999px;
}

.mobile-fixed-reserve,
.top-button {
  display: none !important;
}

.quick-menu {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 130;
  display: grid;
  gap: 10px;
}

.quick-action {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: #f8efe2;
  cursor: pointer;
  background: rgba(47, 31, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.quick-action:hover,
.quick-action:focus-visible {
  color: #2f1f16;
  background: #fbf5eb;
  transform: translateY(-2px);
}

.quick-action svg {
  width: 20px;
  height: 20px;
}

.quick-action span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.quick-reserve {
  background: #7a563d;
}

.fresh-metrics {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(47, 31, 22, 0.18);
}

.fresh-metrics article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(47, 31, 22, 0.12);
}

.fresh-metrics strong {
  color: #2f1f16;
  font-size: 18px;
  font-weight: 700;
}

.fresh-metrics span {
  padding: 0;
  color: #786d62;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
}

.space-copy {
  justify-self: start;
  max-width: 580px;
  text-align: left;
}

.notice-line {
  justify-content: flex-start;
}

.video-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 72% 24%,
      rgba(190, 154, 100, 0.16),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(18, 13, 10, 0.98),
      rgba(45, 31, 23, 0.94) 46%,
      rgba(11, 9, 8, 0.98)
    ),
    #120d0a;
}

.video-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}

.video-layout {
  position: relative;
  z-index: 1;
}

.video-copy h2 {
  color: #f8efe2;
}

.video-copy p {
  color: rgba(248, 239, 226, 0.68);
}

.video-frame {
  border: 1px solid rgba(218, 187, 132, 0.24);
  border-radius: 2px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.36);
}

.video-frame::before {
  inset: 12px;
  border-color: rgba(248, 239, 226, 0.08);
}

.plates {
  overflow: hidden;
}

.plate-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 18px;
  align-items: center;
  padding: 50px 34px 80px;
}

.plate-grid figure {
  position: relative;
  aspect-ratio: 0.78;
  border-radius: 2px;
  transform: translateY(calc(var(--plate-y, 0px) + var(--plate-reveal-y, 0px)));
  transition: transform 160ms linear;
  box-shadow: 0 20px 56px rgba(47, 31, 22, 0.11);
}

.plate-grid figure:nth-child(2),
.plate-grid figure:nth-child(4) {
  margin-top: 90px;
}

.plate-grid figcaption {
  right: auto;
  bottom: 14px;
  left: 14px;
  width: auto;
  padding: 7px 12px;
  color: #2f1f16;
  background: rgba(255, 250, 242, 0.9);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0px;
}

.price::before {
  top: 78px;
  right: 50%;
  bottom: auto;
  color: rgba(47, 31, 22, 0.04);
  transform: translateX(50%);
}

.price-table-wrap {
  max-width: 1120px;
  background: #fffaf2;
  border: 1px solid rgba(47, 31, 22, 0.14);
  box-shadow: 0 28px 80px rgba(47, 31, 22, 0.08);
}

.price-table {
  min-width: 760px;
  background: transparent;
}

.price-table thead {
  display: none;
}

.price-table tr {
  display: grid;
  grid-template-columns: 170px 260px 1fr 220px;
  align-items: center;
  border-bottom: 1px solid rgba(47, 31, 22, 0.09);
}

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

.price-table th,
.price-table td {
  padding: 24px 26px;
  border-bottom: 0;
}

.price-table tbody th {
  color: #2f1f16;
  font-size: 17px;
  font-weight: 600;
}

.price-table td {
  color: #74685d;
  font-size: 15px;
}

.price-table td:nth-child(2) {
  color: #2f1f16;
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 19px;
  font-weight: 650;
}

.chefs-layout {
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.92fr);
  gap: 82px;
  align-items: end;
}

.chefs-copy {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: 42px 0 42px 48px;
  border-left: 1px solid rgba(47, 31, 22, 0.18);
}

.chef-list {
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(47, 31, 22, 0.16);
}

.chef-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(47, 31, 22, 0.12);
  border-radius: 0;
}

.chef-list span {
  color: #8c6a4a;
  font-size: 13px;
  font-weight: 800;
}

.chef-list h3 {
  margin-bottom: 8px;
  color: #2f1f16;
  font-size: 25px;
  font-weight: 800;
}

.chef-list p {
  margin-bottom: 0;
  color: #74685d;
  font-size: 15px;
}

.chef-note {
  margin-top: 24px;
  padding: 22px 24px;
  color: #f8efe2;
  background: #2f1f16;
  border-radius: 2px;
  font-size: 15px;
  line-height: 1.8;
}

.info {
  background:
    linear-gradient(180deg, rgba(20, 15, 12, 0.92), rgba(20, 15, 12, 0.92)),
    url("assets/images/mapo-exterior.jpg") center / cover fixed;
}

.info-head h2,
.info-head p,
.info .section-kicker {
  color: #f8efe2;
}

.info-head p {
  color: rgba(248, 239, 226, 0.7);
}

.info-grid {
  gap: 0;
  border: 1px solid rgba(248, 239, 226, 0.14);
  background: rgba(255, 250, 242, 0.06);
  backdrop-filter: blur(10px);
}

.map-box {
  min-height: 560px;
  border-radius: 0;
  box-shadow: none;
}

.info-panel {
  padding: 46px;
  color: #f8efe2;
  background: rgba(18, 13, 10, 0.78);
  border: 0;
  border-left: 1px solid rgba(248, 239, 226, 0.14);
  border-radius: 0;
  box-shadow: none;
}

.info-panel dl > div {
  grid-template-columns: 92px 1fr;
  padding: 21px 0;
  border-bottom-color: rgba(248, 239, 226, 0.12);
}

.info-panel dt {
  color: #d5b985;
}

.info-panel dd {
  color: rgba(248, 239, 226, 0.78);
}

.info-reserve {
  min-height: 52px;
  color: #2f1f16;
  background: #f8efe2;
  border: 0;
  border-radius: 999px;
}

.site-footer {
  color: rgba(248, 239, 226, 0.72);
  background: linear-gradient(180deg, #17110d, #0e0b09);
}

.footer-main {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 34px;
  max-width: 1180px;
  padding: 86px 42px 58px;
  text-align: center;
}

.footer-brand {
  transform: scale(1.1);
}

.footer-nav {
  max-width: 720px;
  justify-content: center;
  gap: 18px 30px;
}

.social-links {
  gap: 14px;
}

.social-links a {
  width: 46px;
  height: 46px;
  color: #f8efe2;
  background: rgba(248, 239, 226, 0.06);
  border-color: rgba(248, 239, 226, 0.18);
  border-radius: 50%;
}

.footer-bottom {
  padding: 26px 42px 38px;
}

@media (max-width: 960px) {
  .quick-menu {
    right: 12px;
    bottom: 14px;
    gap: 8px;
  }

  .quick-action {
    width: 52px;
    height: 52px;
  }

  .quick-action svg {
    width: 17px;
    height: 17px;
  }

  .quick-action span {
    font-size: 10px;
  }

  .fresh-metrics article,
  .chef-list article,
  .price-table tr {
    grid-template-columns: 1fr;
  }

  .space-copy {
    max-width: none;
  }

  .plate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px 0 60px;
  }

  .plate-grid figure:nth-child(2),
  .plate-grid figure:nth-child(4) {
    margin-top: 52px;
  }

  .plate-grid figure:last-child {
    grid-column: span 2;
    aspect-ratio: 1.5;
  }

  .chefs-copy {
    padding: 0;
    border-left: 0;
  }

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

  .info-panel {
    border-left: 0;
    border-top: 1px solid rgba(248, 239, 226, 0.14);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .header-reserve {
    display: none;
  }

  .plate-grid figure {
    transform: none !important;
  }

  .price-table {
    min-width: 0;
  }

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

  .price-table tr {
    padding: 18px 0;
  }

  .info-panel {
    padding: 30px 24px;
  }

  .info-panel dl > div {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding: 70px 22px 46px;
  }
}

/* Final luxury tuning: stronger contrast, refined menu board, chef profile panel */
section {
  scroll-margin-top: var(--header-height);
}

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

.header-reserve {
  min-height: 42px;
  padding: 0 19px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0)),
    #2f1f16;
  border-color: rgba(47, 31, 22, 0.9);
}

.quick-action {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0)),
    #2f1f16;
}

.quick-reserve {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.12), rgba(255, 250, 242, 0)),
    #7b573d;
}

.fresh {
  grid-template-columns: minmax(360px, 0.84fr) minmax(420px, 1.16fr);
  padding: 112px 42px 124px;
  background: linear-gradient(
    90deg,
    #fbfaf7 0%,
    #fbfaf7 44%,
    #f4efe6 44%,
    #f4efe6 100%
  );
}

.fresh::before {
  top: 84px;
  right: 42px;
  color: rgba(47, 31, 22, 0.035);
  font-size: clamp(86px, 12vw, 172px);
}

.fresh-copy {
  max-width: 620px;
}

.fresh-copy h2 {
  color: #2f1f16;
  font-size: clamp(36px, 4.1vw, 58px);
  font-weight: 700;
}

.fresh-copy p {
  color: #5f554c;
  font-size: 16px;
}

.fresh-image {
  height: min(640px, 70vh);
  border: 1px solid rgba(47, 31, 22, 0.1);
  box-shadow: 0 28px 90px rgba(47, 31, 22, 0.13);
}

.fresh-image img {
  filter: saturate(0.9) contrast(1.05) brightness(0.98);
}

.fresh-metrics {
  max-width: 560px;
  margin-top: 46px;
  border-top-color: rgba(47, 31, 22, 0.24);
}

.fresh-metrics article {
  grid-template-columns: 116px 1fr;
  padding: 22px 0;
}

.fresh-metrics strong {
  font-size: 18px;
}

.fresh-metrics span {
  color: #4f463e;
  line-height: 1.75;
}

.video-section {
  background:
    radial-gradient(
      circle at 72% 18%,
      rgba(202, 171, 116, 0.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(13, 10, 8, 0.99),
      rgba(44, 30, 22, 0.96) 46%,
      rgba(9, 7, 6, 1)
    ),
    #100c09;
}

.video-frame {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.06), rgba(255, 250, 242, 0)),
    #181513;
  border-color: rgba(218, 187, 132, 0.34);
}

.price {
  padding: 142px 42px 150px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f6f1e9 100%);
}

.price::before {
  top: 58px;
  font-size: clamp(76px, 13vw, 192px);
}

.price-head {
  margin-bottom: 54px;
}

.price-table-wrap {
  max-width: 1140px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.price-table {
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.price-table tr {
  grid-template-columns: 160px 250px minmax(0, 1fr) 210px;
  min-height: 96px;
  background: rgba(255, 252, 246, 0.86);
  border: 1px solid rgba(47, 31, 22, 0.12);
  box-shadow: 0 18px 52px rgba(47, 31, 22, 0.07);
}

.price-table tr:nth-child(-n + 3) {
  background: #fffaf2;
  border-color: rgba(122, 86, 61, 0.22);
}

.price-table tbody th {
  position: relative;
  display: grid;
  align-items: center;
  padding-left: 30px;
  color: #2f1f16;
}

.price-table tbody th::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  content: "";
  background: #2f1f16;
}

.price-table td {
  display: grid;
  align-items: center;
  color: #5f554c;
}

.price-table td:nth-child(2) {
  color: #231912;
  font-size: 24px;
  line-height: 1.5;
}

.chefs {
  padding: 150px 42px;
  background: linear-gradient(
    90deg,
    #fbfaf7 0%,
    #fbfaf7 52%,
    #ede3d5 52%,
    #ede3d5 100%
  );
}

.chefs-layout {
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.94fr);
  gap: 0;
  align-items: stretch;
}

.chefs-image {
  height: 700px;
  border: 1px solid rgba(47, 31, 22, 0.12);
  box-shadow: 0 32px 90px rgba(47, 31, 22, 0.14);
}

.chefs-copy {
  position: relative;
  align-content: center;
  padding: 62px 58px;
  color: #f8efe2;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.05), rgba(255, 250, 242, 0)),
    #211711;
  border: 0;
}

.chefs-copy::before {
  position: absolute;
  top: 28px;
  right: 32px;
  color: rgba(248, 239, 226, 0.08);
  content: "TWO CHEFS";
  font-family: var(--font-en);
  font-size: 74px;
  line-height: 0.86;
  pointer-events: none;
}

.chefs-copy h2 {
  position: relative;
  color: #f8efe2;
}

.chef-list {
  position: relative;
  z-index: 1;
  counter-reset: chef-profile;
  border-top-color: rgba(248, 239, 226, 0.16);
}

.chef-list article {
  counter-increment: chef-profile;
  grid-template-columns: 58px 1fr;
  gap: 20px 26px;
  padding: 30px 0;
  border-bottom-color: rgba(248, 239, 226, 0.14);
}

.chef-list article::before {
  grid-row: 1 / span 2;
  color: #d5b985;
  content: "0" counter(chef-profile);
  font-family: var(--font-en);
  font-size: 42px;
  line-height: 1;
}

.chef-list span {
  color: #d5b985;
  font-family: var(--font-ko);
  font-size: 12px;
}

.chef-list h3 {
  color: #fffaf2;
  font-size: 26px;
}

.chef-list p {
  color: rgba(248, 239, 226, 0.72);
}

.chef-note {
  margin-top: 30px;
  color: #2f1f16;
  background: #f8efe2;
}

.info {
  padding: 150px 42px 160px;
  background:
    linear-gradient(180deg, rgba(12, 9, 7, 0.86), rgba(12, 9, 7, 0.94)),
    url("assets/images/mapo-exterior.jpg") center / cover fixed;
}

.info-grid {
  max-width: 1160px;
  border-color: rgba(218, 187, 132, 0.22);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
}

.map-box iframe {
  filter: saturate(0.72) contrast(1.04);
}

.info-panel {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.055), rgba(255, 250, 242, 0)),
    rgba(18, 13, 10, 0.88);
}

.info-panel dl > div {
  grid-template-columns: 76px 1fr;
}

.info-panel dd {
  color: rgba(248, 239, 226, 0.82);
  overflow-wrap: normal;
}

.info-reserve {
  margin-top: 8px;
  background: #fff7ea;
}

.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 94, 52, 0.16), transparent 34%),
    linear-gradient(180deg, #17110d, #0d0a08);
}

.footer-main {
  padding-top: 104px;
}

@media (max-width: 960px) {
  .fresh,
  .chefs {
    background: #fbfaf7;
  }

  .fresh {
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .fresh-copy {
    justify-self: start;
  }

  .fresh-image {
    height: 520px;
  }

  .price-table {
    border-spacing: 0 10px;
  }

  .price-table tr {
    gap: 8px;
    padding: 22px 24px;
  }

  .price-table tbody th,
  .price-table th,
  .price-table td {
    padding: 3px 0;
  }

  .price-table tbody th::before {
    display: none;
  }

  .chefs-layout {
    grid-template-columns: 1fr;
  }

  .chefs-image {
    height: 560px;
  }

  .chefs-copy {
    padding: 46px 34px;
  }
}

@media (max-width: 640px) {
  .quick-menu {
    right: 10px;
    bottom: 12px;
  }

  .quick-action {
    width: 50px;
    height: 50px;
  }

  .fresh {
    padding: 78px 22px 90px;
  }

  .fresh-metrics article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .fresh-image {
    height: 420px;
  }

  .price {
    padding: 104px 22px 118px;
  }

  .price-table tr {
    min-height: 0;
    padding: 20px;
  }

  .price-table td:nth-child(2) {
    font-size: 22px;
  }

  .chefs {
    padding: 104px 22px;
  }

  .chefs-copy::before {
    display: none;
  }

  .chef-list article {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .chef-list article::before {
    font-size: 30px;
  }

  .info {
    padding: 104px 22px 120px;
    background-attachment: scroll;
  }
}

/* Re-revision: English-first logo, menu font lock, card price guide, new chef/info sections */
.brand-text strong {
  color: #1b1511;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-text small {
  color: #5d4a3b;
  font-family: var(--font-ko);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-brand .brand-text strong {
  color: #f8efe2;
}

.footer-brand .brand-text small {
  color: rgba(248, 239, 226, 0.72);
}

.menu-summary,
.menu-summary article,
.menu-summary span,
.menu-summary strong,
.menu-summary p,
.soft-list {
  font-family: var(--font-ko);
  letter-spacing: 0;
}

.menu-summary span {
  font-weight: 700;
}

.menu-summary strong {
  font-family: var(--font-ko);
  font-size: clamp(21px, 1.75vw, 28px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0;
}

.menu-summary p {
  font-size: 15px;
  font-weight: 400;
}

.space-copy .section-kicker {
  margin-bottom: 20px;
}

.notice-line {
  gap: 8px;
}

.notice-line span {
  white-space: nowrap;
}

.video-copy {
  max-width: 470px;
}

.video-copy h2 {
  max-width: 460px;
}

.price-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  font-family: var(--font-ko);
}

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

.price-card {
  display: grid;
  min-height: 310px;
  padding: 34px;
  color: #2f1f16;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.62),
      rgba(255, 255, 255, 0.28)
    ),
    #f7efe4;
  border: 1px solid rgba(47, 31, 22, 0.14);
  box-shadow: 0 24px 70px rgba(47, 31, 22, 0.08);
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0)),
    #2f1f16;
  color: #f8efe2;
}

.price-card span,
.drink-prices span {
  color: inherit;
  font-size: 15px;
  font-weight: 600;
}

.price-card strong {
  align-self: center;
  color: inherit;
  font-family: var(--font-ko);
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
}

.price-card p {
  margin: 0;
  color: currentColor;
  opacity: 0.7;
}

.price-card em {
  align-self: end;
  color: currentColor;
  font-style: normal;
  font-weight: 700;
  opacity: 0.86;
}

.drink-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(47, 31, 22, 0.16);
  border: 1px solid rgba(47, 31, 22, 0.14);
}

.drink-prices article {
  display: grid;
  gap: 12px;
  min-height: 148px;
  padding: 26px 28px;
  background: rgba(255, 252, 246, 0.86);
}

.drink-prices strong {
  color: #2f1f16;
  font-family: var(--font-ko);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.drink-prices p {
  margin: 0;
  color: #70645a;
  font-size: 14px;
}

.chefs {
  padding: 140px 42px 156px;
  background: linear-gradient(
    180deg,
    #15100d 0%,
    #211711 50%,
    #f6f1e9 50%,
    #f6f1e9 100%
  );
}

.chefs-head {
  max-width: 920px;
  margin: 0 auto 54px;
  text-align: center;
}

.chefs-head .section-kicker,
.chefs-head h2,
.chefs-head p {
  color: #f8efe2;
}

.chefs-head h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 700;
}

.chefs-head p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(248, 239, 226, 0.7);
}

.chefs-showcase {
  max-width: 1180px;
  margin: 0 auto;
}

.chefs-showcase .chefs-image {
  height: 620px;
  margin: 0;
  border: 1px solid rgba(248, 239, 226, 0.14);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.26);
}

.chef-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: -110px auto 0;
  padding: 0 24px;
}

.chef-profile {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 34px;
  background: rgba(255, 252, 246, 0.94);
  border: 1px solid rgba(47, 31, 22, 0.14);
  box-shadow: 0 26px 70px rgba(47, 31, 22, 0.13);
}

.chef-profile::before {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(47, 31, 22, 0.08);
  content: "職";
  font-size: 68px;
  line-height: 1;
}

.chef-profile span {
  color: #8c6a4a;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
}

.chef-profile h3 {
  margin: 0;
  color: #2f1f16;
  font-size: 32px;
  font-weight: 800;
}

.chef-profile p {
  margin: 0;
  color: #5f554c;
  font-size: 15px;
}

.chef-profile ul {
  display: grid;
  gap: 7px;
  padding: 18px 0 0;
  margin: 8px 0 0;
  border-top: 1px solid rgba(47, 31, 22, 0.12);
  list-style: none;
}

.chef-profile li {
  color: #2f1f16;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
}

.info {
  padding: 146px 42px 156px;
}

.info-head {
  margin-bottom: 46px;
}

.info-grid {
  display: block;
  max-width: 1040px;
  border: 1px solid rgba(218, 187, 132, 0.22);
  background: rgba(255, 250, 242, 0.055);
}

.map-box {
  display: none;
}

.info-panel {
  display: grid;
  gap: 34px;
  padding: 46px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.07), rgba(255, 250, 242, 0)),
    rgba(18, 13, 10, 0.86);
}

.info-panel dl {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(248, 239, 226, 0.13);
}

.info-panel dl > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-height: 190px;
  padding: 28px;
  background: rgba(18, 13, 10, 0.74);
  border: 0;
}

.info-panel dt {
  color: #d5b985;
  font-size: 15px;
  font-weight: 800;
}

.info-panel dd {
  color: rgba(248, 239, 226, 0.82);
  font-size: 15px;
  line-height: 1.8;
}

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

.info-actions .reserve-button {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
}

.map-direct {
  color: #f8efe2;
  background: transparent;
  border: 1px solid rgba(248, 239, 226, 0.28);
}

.map-direct:hover,
.map-direct:focus-visible {
  color: #2f1f16;
  background: #f8efe2;
}

@media (max-width: 960px) {
  .course-prices,
  .drink-prices,
  .chef-profiles {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 250px;
  }

  .chefs {
    background: linear-gradient(
      180deg,
      #15100d 0%,
      #211711 58%,
      #f6f1e9 58%,
      #f6f1e9 100%
    );
  }

  .chefs-showcase .chefs-image {
    height: 520px;
  }

  .chef-profiles {
    margin-top: -80px;
  }

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

@media (max-width: 640px) {
  .brand-text strong {
    font-size: 18px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .price-card,
  .drink-prices article,
  .chef-profile,
  .info-panel {
    padding: 24px;
  }

  .price-card strong {
    font-size: 34px;
  }

  .chefs-showcase .chefs-image {
    height: 430px;
  }

  .chef-profiles {
    padding: 0;
    margin-top: -46px;
  }

  .info-panel dl,
  .info-actions {
    grid-template-columns: 1fr;
  }

  .info-panel dl > div {
    min-height: 0;
  }
}

/* Latest revision: tighter typography, craft parallax, refined price table and info grid */
body,
body * {
  letter-spacing: -0.03rem !important;
}

.craft-image[data-reveal] {
  --craft-reveal-y: 44px;
  transform: translateY(calc(var(--craft-reveal-y, 0px) + var(--craft-y, 0px)));
  transition:
    opacity 760ms ease,
    transform 160ms linear;
  will-change: transform;
}

.craft-image[data-reveal].is-visible {
  --craft-reveal-y: 0px;
}

.craft-image-left[data-reveal],
.craft-image-right[data-reveal],
.craft-image-left[data-reveal].is-visible,
.craft-image-right[data-reveal].is-visible {
  transform: translateY(calc(var(--craft-reveal-y, 0px) + var(--craft-y, 0px)));
}

.video-section::before {
  content: "PRIVATE MOMENT";
}

.plates::before {
  top: 92px;
  right: 50%;
  bottom: auto;
  transform: translateX(50%);
}

.price-board {
  gap: 26px;
  max-width: 1160px;
}

.price-table-group {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  overflow: hidden;
  background: #fffaf2;
  border: 1px solid rgba(47, 31, 22, 0.16);
  box-shadow: 0 28px 86px rgba(47, 31, 22, 0.09);
}

.price-table-title {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: 30px;
  color: #f8efe2;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0)),
    #2f1f16;
}

.price-table-title span {
  color: #d5b985;
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 700;
}

.price-table-title strong {
  align-self: end;
  color: #fffaf2;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.15;
}

.price-lux-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-lux-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.price-lux-table tr {
  border-bottom: 1px solid rgba(47, 31, 22, 0.1);
}

.price-lux-table tr:last-child {
  border-bottom: 0;
}

.price-lux-table th,
.price-lux-table td {
  padding: 26px 28px;
  color: #5f554c;
  font-family: var(--font-ko);
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
  vertical-align: middle;
  border-right: 1px solid rgba(47, 31, 22, 0.08);
}

.price-lux-table th {
  width: 18%;
  color: #2f1f16;
  font-size: 17px;
  font-weight: 600;
}

.price-lux-table td:last-child {
  border-right: 0;
}

.price-lux-table .price-amount {
  width: 26%;
  color: #2f1f16;
  font-family: var(--font-ko);
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 650;
  line-height: 1.28;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.drink-table-group {
  grid-template-columns: 230px minmax(0, 1fr);
  box-shadow: 0 18px 54px rgba(47, 31, 22, 0.06);
}

.drink-table-group .price-table-title {
  color: #2f1f16;
  background: #eee3d2;
}

.drink-table-group .price-table-title span {
  color: #8c6a4a;
}

.drink-table-group .price-table-title strong {
  color: #2f1f16;
}

.drink-lux-table th {
  width: 18%;
}

.drink-lux-table .price-amount {
  width: 34%;
  font-size: clamp(16px, 1.25vw, 20px);
}

.info-grid {
  max-width: 1100px;
}

.info-panel dl {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.info-panel dl > .info-item {
  align-content: start;
  grid-template-rows: 24px 1fr;
  min-height: 150px;
  padding: 26px;
}

.info-panel dl > .info-item.info-address,
.info-panel dl > .info-item.info-hours {
  padding-top: 26px;
}

.info-address {
  order: 1;
  grid-column: span 3;
}

.info-hours {
  order: 2;
  grid-column: span 3;
}

.info-reserve-item {
  order: 3;
  grid-column: span 2;
}

.info-seat {
  order: 4;
  grid-column: span 2;
}

.info-parking {
  order: 5;
  grid-column: span 2;
}

.info-actions {
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .price-table-group,
  .drink-table-group {
    grid-template-columns: 1fr;
  }

  .price-table-title {
    min-height: 130px;
  }

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

  .info-address,
  .info-hours,
  .info-reserve-item,
  .info-seat,
  .info-parking {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .craft-image[data-reveal],
  .craft-image-left[data-reveal],
  .craft-image-right[data-reveal] {
    transform: none !important;
  }

  .price-lux-table,
  .price-lux-table tbody,
  .price-lux-table tr,
  .price-lux-table th,
  .price-lux-table td {
    display: block;
    width: 100%;
  }

  .price-lux-table tr {
    padding: 22px 24px;
  }

  .price-lux-table th,
  .price-lux-table td {
    padding: 4px 0;
    border-right: 0;
  }

  .price-lux-table .price-amount {
    margin: 6px 0;
    font-size: 28px;
  }

  .info-panel dl {
    grid-template-columns: 1fr;
  }

  .info-panel dl > .info-item {
    min-height: 0;
  }
}

/* Price guide redesign: menu-board layout without vertical table borders */
.price-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 36px);
  width: min(100%, 1320px);
  max-width: 1320px;
  align-items: stretch;
}

.price-table-group,
.drink-table-group {
  --price-glow-x: 50%;
  --price-glow-y: 18%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  min-height: 580px;
  padding: clamp(24px, 2vw, 34px);
  background:
    linear-gradient(
      145deg,
      rgba(255, 252, 246, 0.92),
      rgba(239, 227, 213, 0.86)
    ),
    #f7f1e9;
  border: 0;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(122, 86, 61, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 30px 88px rgba(47, 31, 22, 0.08);
}

.price-table-group::before,
.drink-table-group::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: radial-gradient(
    480px circle at var(--price-glow-x) var(--price-glow-y),
    rgba(198, 158, 103, 0.28),
    rgba(198, 158, 103, 0.12) 34%,
    transparent 66%
  );
  opacity: 0.42;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.price-table-group:hover::before,
.drink-table-group:hover::before {
  opacity: 0.86;
}

.price-table-group::after,
.drink-table-group::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.price-table-title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 16px;
  min-height: 0;
  padding: 0 0 22px;
  color: #2f1f16;
  background: transparent;
  border-bottom: 1px solid rgba(122, 86, 61, 0.58);
}

.drink-table-group .price-table-title {
  background: transparent;
}

.price-table-title strong,
.drink-table-group .price-table-title strong {
  align-self: auto;
  color: #2f1f16;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 650;
  line-height: 1.2;
}

.price-table-title span,
.drink-table-group .price-table-title span {
  color: #9a7553;
  font-family: var(--font-en);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
}

.price-lux-table,
.drink-lux-table {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  table-layout: auto;
}

.price-lux-table tbody {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.price-lux-table tr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 4px 24px;
  min-height: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(122, 86, 61, 0.16);
}

.price-lux-table tr:last-child {
  border-bottom: 0;
}

.price-lux-table th,
.price-lux-table td {
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  color: #7b7168;
  font-family: var(--font-ko);
  text-align: left;
  vertical-align: top;
}

.price-lux-table th {
  grid-column: 1;
  grid-row: 1;
  color: #2f1f16;
  font-size: 20px;
  font-weight: 600;
}

.price-lux-table .price-amount {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  width: auto;
  min-width: max-content;
  color: #73573d;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 650;
  line-height: 1.35;
  text-align: right;
}

.price-lux-table td:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  max-width: 310px;
  color: #91877e;
  font-size: 15px;
}

.price-lux-table td:nth-child(4) {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 6px;
  color: #73573d;
  font-size: 14px;
  font-weight: 500;
}

.drink-lux-table .price-amount {
  grid-row: 1;
  max-width: 260px;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.45;
}

.drink-lux-table td:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.price::before {
  top: 54%;
  right: 50%;
  bottom: auto;
  color: rgba(47, 31, 22, 0.038);
  font-size: clamp(98px, 15vw, 224px);
  transform: translate(50%, -8%);
}

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

  .price-table-group,
  .drink-table-group {
    min-height: 0;
    height: auto;
  }

  .price-lux-table,
  .drink-lux-table {
    flex: initial;
  }

  .price-lux-table tbody {
    display: block;
  }
}

@media (max-width: 640px) {
  .price-board {
    gap: 24px;
  }

  .price-table-group,
  .drink-table-group {
    padding: 26px 22px;
    border-radius: 8px;
  }

  .price-table-title {
    display: grid;
    gap: 8px;
    padding-bottom: 24px;
  }

  .price-lux-table tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 24px 0;
  }

  .price-lux-table th,
  .price-lux-table td,
  .price-lux-table .price-amount,
  .price-lux-table td:nth-child(3),
  .price-lux-table td:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .price-lux-table .price-amount {
    margin: 4px 0;
    font-size: 22px;
  }

  .drink-lux-table .price-amount {
    font-size: 18px;
  }
}

.price-head h2 {
  font-weight: 650;
}

.price-head p,
.price-lux-table td {
  font-weight: 400;
}

/* Final typography and interaction polish */
.header-reserve {
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-reserve:hover,
.header-reserve:focus-visible {
  color: #fffaf0;
  background: #7a563d;
  border-color: #7a563d;
  box-shadow: 0 14px 34px rgba(47, 31, 22, 0.18);
  transform: translateY(-1px);
}

.header-reserve:hover svg,
.header-reserve:focus-visible svg,
.header-reserve:hover span,
.header-reserve:focus-visible span {
  color: currentColor;
}

.plate-grid figcaption {
  font-family: var(--font-ko);
  font-weight: 600;
  letter-spacing: -0.03rem;
}

.info-head p {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.85;
}

.info-panel dt {
  display: flex;
  align-items: center;
  min-height: 24px;
  font-size: clamp(17px, 1.15vw, 18px);
  line-height: 1.25;
}

.info-panel dd {
  font-size: clamp(17px, 1.18vw, 19px);
  line-height: 1.85;
}

/* Mobile navigation and heading refinement */
@media (max-width: 960px) {
  .hero h1 {
    font-size: clamp(42px, 8.6vw, 58px);
    line-height: 1.04;
  }

  .hero h1 span {
    font-size: clamp(16px, 2.8vw, 20px);
    line-height: 1.42;
  }

  h2,
  .craft-copy h2,
  .space-copy h2,
  .video-copy h2,
  .fresh-copy h2,
  .plates-head h2,
  .price-head h2,
  .chefs-copy h2,
  .chefs-head h2,
  .info-head h2,
  .scene-content h2 {
    font-size: clamp(32px, 5.8vw, 42px);
    line-height: 1.18;
  }

  .mobile-menu-button {
    position: relative;
    z-index: 4;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center end;
    align-content: center;
    gap: 7px;
    color: #2f1f16;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .mobile-menu-button span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: currentColor;
    transform-origin: center;
    transition:
      width 180ms ease,
      transform 180ms ease,
      opacity 180ms ease;
  }

  .mobile-menu-button span:nth-child(2) {
    width: 17px;
  }

  .mobile-menu-button:focus,
  .mobile-menu-button:focus-visible {
    outline: 0;
    box-shadow: none;
  }

  .site-header.is-open .mobile-menu-button span:nth-child(1) {
    width: 24px;
    transform: translateY(4.25px) rotate(45deg);
  }

  .site-header.is-open .mobile-menu-button span:nth-child(2) {
    width: 24px;
    transform: translateY(-4.25px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    width: 100vw;
    height: calc(100svh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    align-content: start;
    justify-items: start;
    gap: 0;
    overflow-y: auto;
    padding: clamp(58px, 11vh, 94px) 30px 48px;
    color: #f8efe2;
    text-align: left;
    visibility: hidden;
    background:
      linear-gradient(180deg, rgba(18, 13, 10, 0.98), rgba(34, 23, 16, 0.98)),
      #17110d;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .site-header.is-open .mobile-nav {
    display: grid;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav a {
    display: block;
    width: min(100%, 360px);
    padding: 18px 0;
    color: #f8efe2;
    font-size: clamp(24px, 7vw, 34px);
    font-weight: 500;
    line-height: 1.15;
    text-align: left;
    border-bottom: 1px solid rgba(248, 239, 226, 0.15);
  }

  .mobile-nav a:last-child {
    border-bottom: 1px solid rgba(248, 239, 226, 0.15);
  }

  .quick-menu,
  .site-header.is-open ~ .quick-menu {
    right: 12px;
    bottom: 14px;
    z-index: 140;
    gap: 7px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .quick-action {
    width: 46px;
    height: 46px;
    gap: 2px;
  }

  .quick-action svg {
    width: 15px;
    height: 15px;
  }

  .quick-action span {
    font-size: 9px;
    line-height: 1;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(32px, 9.6vw, 38px);
    line-height: 1.08;
  }

  .hero h1 span {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
  }

  h2,
  .craft-copy h2,
  .space-copy h2,
  .video-copy h2,
  .fresh-copy h2,
  .plates-head h2,
  .price-head h2,
  .chefs-copy h2,
  .chefs-head h2,
  .info-head h2,
  .scene-content h2 {
    font-size: clamp(26px, 7.6vw, 31px);
    line-height: 1.22;
  }

  .mobile-nav {
    padding: 54px 28px 44px;
  }

  .mobile-nav a {
    width: min(100%, 310px);
    padding: 16px 0;
    font-size: clamp(23px, 7.4vw, 30px);
  }

  .quick-menu,
  .site-header.is-open ~ .quick-menu {
    right: 10px;
    bottom: 12px;
    gap: 6px;
  }

  .quick-action {
    width: 42px;
    height: 42px;
  }

  .quick-action svg {
    width: 14px;
    height: 14px;
  }

  .quick-action span {
    font-size: 8.5px;
  }
}

/* Final mobile/footer refinements */
.craft-images-scroll {
  display: contents;
}

.craft::before {
  content: none;
}

.craft-copy {
  grid-column: 2;
  grid-row: 1;
}

.craft-copy .eyebrow {
  margin-bottom: 16px;
  color: var(--brown);
  font-family: var(--font-ko);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.03rem;
}

.craft-image-left {
  grid-column: 1;
  grid-row: 1;
}

.craft-image-right {
  grid-column: 3;
  grid-row: 1;
}

.footer-legal {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 42px 22px;
  text-align: center;
}

.site-header .brand-logo {
  color: #1b1511;
}

.site-header .brand {
  padding-top: 7px;
  padding-bottom: 7px;
}

.desktop-nav a {
  font-size: 16px;
}

.site-footer .brand-logo {
  color: #f8efe2;
}

.site-footer .footer-brand,
.site-footer .footer-brand .brand-mark {
  color: #f8efe2;
}

.site-footer .footer-brand .brand-mark [stroke] {
  stroke: #f8efe2;
}

.site-footer .footer-brand .brand-mark [fill]:not([fill="none"]) {
  fill: #f8efe2;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03rem;
}

.footer-policy-links a {
  color: rgba(248, 246, 241, 0.82);
  font-weight: 500;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible,
.footer-sample-note a:hover,
.footer-sample-note a:focus-visible {
  color: var(--paper);
}

.footer-sample-note {
  max-width: 760px;
  margin: 12px auto 0;
  color: rgba(248, 246, 241, 0.58);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.03rem;
}

.footer-sample-note a {
  color: rgba(248, 246, 241, 0.82);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 960px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 14px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-copy {
    margin-right: 0;
    margin-left: 0;
  }

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

  .mobile-nav a {
    width: min(100%, 330px);
    padding: 15px 0;
    font-size: clamp(18px, 4.8vw, 23px);
  }

  .mobile-menu-button {
    grid-column: 2;
    position: fixed;
    top: calc(var(--header-height) / 2);
    right: 20px;
    z-index: 220;
    display: block !important;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #2f1f16;
    visibility: visible !important;
    background: transparent;
    border: 0;
    opacity: 1 !important;
    transform: translateY(-50%);
  }

  .mobile-menu-button span {
    display: none;
  }

  .mobile-menu-button::before,
  .mobile-menu-button::after {
    content: "";
    position: absolute;
    right: 0;
    display: block;
    height: 1.7px;
    background: currentColor;
    transform-origin: center;
    transition:
      width 180ms ease,
      transform 180ms ease;
  }

  .mobile-menu-button::before {
    top: 16px;
    width: 25px;
  }

  .mobile-menu-button::after {
    top: 25px;
    width: 18px;
  }

  .site-header.is-open .mobile-menu-button::before {
    top: 21px;
    width: 25px;
    transform: rotate(45deg);
  }

  .site-header.is-open .mobile-menu-button::after {
    top: 21px;
    width: 25px;
    transform: rotate(-45deg);
  }

  .craft {
    min-height: auto;
    padding-bottom: 118px;
  }

  .craft-stage {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-brand .brand-text {
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .mobile-menu-button {
    right: 18px;
  }

  .site-header .brand-logo {
    width: min(232px, calc(100vw - 116px));
  }

  .site-footer .brand-logo {
    width: min(232px, calc(100vw - 116px));
  }

  .hero-content {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .hero-copy {
    max-width: 100%;
  }

  .mobile-nav {
    padding: 50px 28px 44px;
  }

  .mobile-nav a {
    width: min(100%, 292px);
    padding: 14px 0;
    font-size: clamp(17px, 5.2vw, 20px);
    line-height: 1.2;
  }

  .craft {
    padding-bottom: 124px;
  }

  .craft-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    overflow: visible;
  }

  .craft-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    padding: 0 4px;
    text-align: left;
  }

  .craft-copy .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .craft-images-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(258px, 78vw);
    grid-column: 1;
    grid-row: 2;
    gap: 14px;
    width: auto;
    margin: 30px -22px 0;
    padding: 0 22px 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .craft-images-scroll::-webkit-scrollbar {
    display: none;
  }

  .craft-image,
  .craft-image-left,
  .craft-image-right {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    width: 100%;
    height: 330px;
    margin: 0;
    scroll-snap-align: start;
  }

  .footer-main {
    padding: 54px 24px 30px;
  }

  .footer-brand {
    display: inline-flex;
    justify-content: center;
    justify-self: center;
  }

  .footer-nav {
    gap: 12px 18px;
  }

  .footer-legal {
    padding: 0 24px 22px;
  }

  .footer-policy-links {
    gap: 8px 18px;
    font-size: 13px;
  }

  .footer-sample-note {
    font-size: 13px;
    line-height: 1.65;
  }
}

/* Header fit correction after enlarged logo */
:root {
  --header-height: 86px;
}

.site-header,
.site-header.is-scrolled,
.site-header.is-open {
  min-height: var(--header-height);
  overflow: visible;
}

.site-header .brand {
  padding-top: 7px;
  padding-bottom: 7px;
}

.desktop-nav a {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    min-height: var(--header-height);
  }
}

@media (max-width: 640px) {
  .site-header .brand {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

.home-page .hero-bg {
  inset: -2%;
}

/* Transparent hero header on the home page */
.home-page .hero-overlay {
  inset: 0;
}

.home-page .site-header:not(.is-scrolled):not(.is-open) {
  color: #fffaf0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .site-header:not(.is-scrolled):not(.is-open) .brand-logo,
.home-page .site-header:not(.is-scrolled):not(.is-open) .desktop-nav {
  color: #fffaf0;
}

.home-page .site-header:not(.is-scrolled):not(.is-open) .desktop-nav a {
  opacity: 0.92;
}

.home-page .site-header:not(.is-scrolled):not(.is-open) .desktop-nav a::after {
  background: rgba(255, 250, 240, 0.78);
}

.home-page .site-header:not(.is-scrolled):not(.is-open) .header-reserve {
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.1);
  border-color: rgba(255, 250, 240, 0.52);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.home-page .site-header:not(.is-scrolled):not(.is-open) .header-reserve:hover,
.home-page .site-header:not(.is-scrolled):not(.is-open) .header-reserve:focus-visible {
  color: #2f1f16;
  background: #fffaf0;
  border-color: #fffaf0;
}

.home-page .site-header.is-scrolled,
.home-page .site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(58, 37, 25, 0.09);
  box-shadow: 0 10px 30px rgba(26, 20, 14, 0.08);
  backdrop-filter: blur(14px);
}

.home-page .site-header.is-scrolled .brand-logo,
.home-page .site-header.is-open .brand-logo {
  color: #1b1511;
}

.home-page .site-header.is-scrolled .desktop-nav,
.home-page .site-header.is-open .desktop-nav {
  color: var(--brown-deep);
}

.home-page .site-header.is-scrolled .header-reserve,
.home-page .site-header.is-open .header-reserve {
  color: #fffaf0;
  background: var(--brown-deep);
  border-color: rgba(91, 56, 31, 0.24);
}

/* Final hero visibility tuning */
.home-page .hero-bg {
  inset: -3%;
  background-position: center 48%;
  filter: saturate(0.9) contrast(1.03) brightness(1);
}

.home-page .hero-overlay {
  background:
    radial-gradient(
      circle at 52% 48%,
      rgba(184, 154, 101, 0.08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(9, 7, 5, 0.12) 0%,
      rgba(9, 7, 5, 0.08) 42%,
      rgba(9, 7, 5, 0.5) 100%
    ),
    linear-gradient(
      90deg,
      rgba(9, 7, 5, 0.5),
      rgba(9, 7, 5, 0.16) 48%,
      rgba(9, 7, 5, 0.06)
    );
}

@media (max-width: 960px) {
  .home-page .site-header:not(.is-scrolled):not(.is-open) .mobile-menu-button {
    color: #fffaf0;
    background: transparent;
  }

  .home-page .site-header:not(.is-scrolled):not(.is-open) .mobile-menu-button::before,
  .home-page .site-header:not(.is-scrolled):not(.is-open) .mobile-menu-button::after,
  .home-page .site-header:not(.is-scrolled):not(.is-open) .mobile-menu-button span {
    background: #fffaf0;
  }

  .home-page .site-header.is-scrolled .mobile-menu-button,
  .home-page .site-header.is-open .mobile-menu-button {
    color: #2f1f16;
  }

  .home-page .site-header.is-scrolled .mobile-menu-button::before,
  .home-page .site-header.is-scrolled .mobile-menu-button::after,
  .home-page .site-header.is-scrolled .mobile-menu-button span,
  .home-page .site-header.is-open .mobile-menu-button::before,
  .home-page .site-header.is-open .mobile-menu-button::after,
  .home-page .site-header.is-open .mobile-menu-button span {
    background: #2f1f16;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
