:root {
  --ink: #17130f;
  --ink-soft: #28211b;
  --paper: #f4efe7;
  --paper-deep: #e9e0d3;
  --white: #fffdf8;
  --ember: #c44c22;
  --ember-light: #ea7448;
  --gold: #c8a66a;
  --line: rgba(23, 19, 15, .18);
  --muted: #6f665d;
  --shell: min(1240px, calc(100vw - 96px));
  --serif: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body[data-lang="ko"] h1,
body[data-lang="ko"] h2,
body[data-lang="ko"] h3 { word-break: keep-all; }

body.no-scroll { overflow: hidden; }

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

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

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 22px 42px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: padding .25s ease, background .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(20,17,15,.91);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 21px;
}

.brand-type { display: flex; flex-direction: column; line-height: 1.15; }
.brand-type strong { font-family: var(--serif); font-size: 16px; letter-spacing: -.02em; }
.brand-type small { margin-top: 4px; opacity: .65; font-size: 9px; letter-spacing: .14em; }

.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  opacity: .82;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ember-light);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }

.mobile-column-link {
  display: none;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.language-switcher {
  display: flex;
  gap: 5px;
  justify-self: end;
}

.language-switcher button {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  padding: 7px 8px;
  color: rgba(255,255,255,.65);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}

.language-switcher button span { font-size: 13px; filter: grayscale(.6); }
.language-switcher button b { font-size: 9px; letter-spacing: .05em; }
.language-switcher button[aria-pressed="true"] {
  color: var(--white);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
}
.language-switcher button[aria-pressed="true"] span { filter: none; }

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media, .hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media { object-fit: cover; object-position: 55% center; transform: scale(1.02); }
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(13,10,8,.88) 0%, rgba(13,10,8,.65) 38%, rgba(13,10,8,.18) 72%),
    linear-gradient(0deg, rgba(13,10,8,.8) 0%, transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 80px));
  margin: 0 0 150px 7vw;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow.dark { color: var(--ember); }

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.3vw, 92px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.055em;
  text-shadow: 0 4px 30px rgba(0,0,0,.28);
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 34px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--ember); }
.button-primary:hover { background: #a83d18; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(10,8,6,.14); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button-outline { border-color: var(--ink); }
.button-outline:hover { color: var(--white); background: var(--ink); }

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 38px;
  left: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.3);
}

.hero-meta div {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 18px 20px 0 0;
}
.hero-meta span { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.hero-meta strong { font-size: 12px; font-weight: 500; }

.section-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 150px 0; }

.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 10vw;
  align-items: start;
}

.section-heading h2, .menu-heading h2, .visit-heading h2, .faq-heading h2,
.editorial-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.055em;
}

.intro-body > p {
  max-width: 620px;
  margin: 0 0 54px;
  color: #504941;
  font-size: 18px;
  line-height: 2;
}

.highlight-list { border-top: 1px solid var(--line); }
.highlight-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.highlight-list strong { color: var(--ember); font-family: var(--serif); font-size: 25px; }
.highlight-list span { color: var(--muted); font-size: 14px; }

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
  min-height: 720px;
  margin-top: 130px;
  margin-bottom: 130px;
  background: var(--paper-deep);
}

.editorial-reverse { grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr); }
.editorial-reverse .editorial-image { order: 2; }
.editorial-reverse .editorial-copy { order: 1; }

.editorial-image { min-height: 620px; overflow: hidden; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.editorial:hover .editorial-image img { transform: scale(1.025); }

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(42px, 6vw, 96px);
}

.editorial-copy p:not(.eyebrow) { margin: 30px 0; color: var(--muted); font-size: 16px; line-height: 2; }

.text-link {
  display: flex;
  gap: 20px;
  align-items: center;
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.menu-section { background: var(--white); }
.menu-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 72px;
}
.menu-heading > p { max-width: 520px; margin: 0 0 6px; color: var(--muted); font-size: 14px; }

.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 54px 32px; }
.menu-card { background: transparent; }
.menu-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--paper-deep);
}
.menu-card-body {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  grid-template-areas: "number title price" ". desc price";
  column-gap: 16px;
  align-items: start;
  padding: 20px 0 0;
  border-top: 1px solid var(--ink);
}
.menu-card-body > span { grid-area: number; color: var(--ember); font-size: 11px; font-weight: 700; }
.menu-card-body h3 { grid-area: title; margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.35; }
.menu-card-body p { grid-area: desc; margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.menu-card-body strong { grid-area: price; font-size: 14px; white-space: nowrap; }

.visit { color: var(--white); background: var(--ink); }
.visit-heading { max-width: 760px; margin: 0 auto 82px; text-align: center; }
.visit-heading h2 { font-size: clamp(44px, 5vw, 72px); }
.visit-heading > p:last-child { margin: 24px 0 0; color: rgba(255,255,255,.62); }
.visit-grid { display: grid; grid-template-columns: minmax(380px, .85fr) minmax(0, 1.15fr); gap: 50px; }

.visit-info { padding: 18px 0; }
.visit-facts { margin: 0 0 40px; border-top: 1px solid rgba(255,255,255,.24); }
.visit-fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.visit-fact-label { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.visit-fact-value { color: rgba(255,255,255,.8); font-size: 14px; }
.visit .button-outline { color: var(--white); border-color: rgba(255,255,255,.46); }
.visit .button-outline:hover { color: var(--ink); background: var(--white); }
.map-card { min-height: 610px; overflow: hidden; background: #d7d0c6; }
.map-card iframe { width: 100%; height: 100%; min-height: 610px; border: 0; filter: grayscale(.18) contrast(.95); }

.faq { background: var(--paper); }
.faq-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10vw; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--ember);
  content: "+";
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 700px; margin: -4px 0 28px; color: var(--muted); font-size: 14px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 70px max(42px, calc((100vw - 1240px) / 2));
  color: rgba(255,255,255,.7);
  background: #0d0b09;
}
.footer-brand { display: flex; gap: 18px; align-items: center; }
.footer-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--gold);
  border: 1px solid rgba(200,166,106,.65);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 28px;
}
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--white); font-family: var(--serif); font-size: 21px; }
.footer-brand span:last-child { margin-top: 6px; font-size: 9px; letter-spacing: .12em; }
.footer-info { justify-self: end; max-width: 550px; text-align: right; font-size: 12px; }
.footer-info p { margin: 0 0 8px; }
.footer-business { margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-business p { margin-bottom: 6px; }
.footer-note { color: rgba(255,255,255,.38); font-size: 10px; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  :root { --shell: calc(100vw - 48px); }
  .site-header { grid-template-columns: 1fr auto auto; gap: 14px; padding: 18px 24px; }
  .desktop-nav { display: none; }
  .mobile-column-link { display: inline-flex; }
  .language-switcher button { min-width: auto; padding: 7px; }
  .language-switcher b { display: none; }
  .hero-copy { width: calc(100vw - 48px); margin: 0 24px 190px; }
  .hero-meta { right: 24px; bottom: 24px; left: 24px; grid-template-columns: 1fr; }
  .hero-meta div { padding: 10px 0; border-top: 1px solid rgba(255,255,255,.13); }
  .intro-grid, .menu-heading, .faq-shell { grid-template-columns: 1fr; gap: 50px; }
  .editorial, .editorial-reverse { grid-template-columns: 1fr; min-height: 0; }
  .editorial-reverse .editorial-image, .editorial-reverse .editorial-copy { order: initial; }
  .editorial-image { min-height: 520px; }
  .editorial-copy { padding: 72px 42px; }
  .visit-grid { grid-template-columns: 1fr; }
  .map-card, .map-card iframe { min-height: 480px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 36px); }
  body { font-size: 15px; }
  .site-header { gap: 8px; padding: 14px 16px; }
  .brand-mark { width: 37px; height: 37px; font-size: 18px; }
  .brand-type strong { font-size: 13px; }
  .brand-type small { display: none; }
  .language-switcher { gap: 1px; }
  .language-switcher button span { font-size: 15px; }
  .hero { min-height: 820px; }
  .hero-media { object-position: 90% center; }
  .hero-scrim { background: linear-gradient(0deg, rgba(13,10,8,.94) 0%, rgba(13,10,8,.54) 60%, rgba(13,10,8,.35) 100%); }
  .hero-copy { width: calc(100vw - 36px); margin: 0 18px 260px; }
  .hero h1 { font-size: clamp(40px, 12vw, 60px); }
  .hero-lead { margin: 20px 0 26px; font-size: 14px; line-height: 1.8; }
  .hero-actions .button { flex: 1 1 auto; white-space: nowrap; }
  .hero-meta { right: 18px; bottom: 18px; left: 18px; }
  .hero-meta div { display: grid; grid-template-columns: 62px 1fr; gap: 12px; }
  .hero-meta strong { font-size: 11px; }
  .section-pad { padding: 100px 0; }
  .section-heading h2, .menu-heading h2, .visit-heading h2, .faq-heading h2, .editorial-copy h2 { font-size: 36px; }
  .intro-body > p { font-size: 16px; }
  .highlight-list div { grid-template-columns: 70px 1fr; gap: 12px; }
  .editorial { width: 100%; margin-top: 70px; margin-bottom: 70px; }
  .editorial-image { min-height: 380px; }
  .editorial-copy { padding: 56px 24px 64px; }
  .menu-heading { margin-bottom: 48px; }
  .menu-grid { grid-template-columns: 1fr; gap: 34px; }
  .menu-card-body { grid-template-columns: 30px 1fr auto; column-gap: 10px; padding-top: 14px; }
  .menu-card-body h3 { font-size: 18px; }
  .visit-heading { margin-bottom: 55px; }
  .visit-grid { gap: 32px; }
  .visit-fact { grid-template-columns: 86px 1fr; gap: 12px; }
  .visit-actions .button { width: 100%; }
  .map-card, .map-card iframe { min-height: 400px; }
  .faq-list summary { font-size: 17px; }
  .site-footer { grid-template-columns: 1fr; padding: 54px 18px; }
  .footer-info { justify-self: start; text-align: left; }
}
