:root {
  --black: #111;
  --gray: #8a8a8a;
  --line: #111;
  --bg: #fff;
  --tile: #f3f3f1;
  --sans: "Inter", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --bar-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

html[lang="ko"] body { font-family: "Noto Sans KR", var(--sans); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
}
.header-bar {
  height: var(--bar-h);
  display: flex; align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: 48px; }
.brand-logo { height: 36px; width: auto; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.site-nav { display: flex; gap: 40px; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.site-nav a:hover { color: var(--gray); }
.lang-switch { margin-left: auto; display: flex; gap: 18px; font-size: 14px; letter-spacing: 0.06em; }
.lang-switch button {
  background: none; border: 0; cursor: pointer; font: inherit; color: var(--gray); padding: 4px 0;
}
.lang-switch button.active { color: var(--black); border-bottom: 1px solid var(--black); }
.header-sub {
  height: 48px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: flex-end; justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    url("images/hero.jpg") center/cover no-repeat,
    linear-gradient(180deg, #f7f7f5 0%, #ebebe7 100%);
}
.hero-text {
  position: relative; text-align: center;
  padding: 0 24px 56px;
  max-width: 820px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
html[lang="ko"] .hero-title { font-family: "Noto Sans KR", var(--sans); font-weight: 400; letter-spacing: -0.02em; }
.hero-sub { font-size: 15px; letter-spacing: 0.02em; margin-bottom: 28px; color: #333; }

.pill {
  display: inline-block;
  padding: 11px 26px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: #fff;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.pill:hover, .pill.dark { background: var(--black); color: #fff; }
.pill.dark:hover { background: #fff; color: var(--black); }

/* ---------- Page title row ---------- */
.page-title {
  height: 56px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

/* ---------- Categories ---------- */
.categories {
  display: flex; justify-content: center; gap: 48px;
  padding: 56px 24px 48px;
  border-bottom: 1px solid var(--line);
}
.cat { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cat-circle {
  width: 128px; height: 128px; border-radius: 50%;
  background: var(--tile);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid transparent;
  transition: border-color .2s;
  overflow: hidden;
}
.cat-circle img { width: 62%; height: 62%; object-fit: contain; }
.cat:hover .cat-circle, .cat.active .cat-circle { border-color: var(--black); }
.cat-label { font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Menu grid ---------- */
.menu-section { border-bottom: 1px solid var(--line); }
.menu-head {
  height: 56px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.menu-head .count { color: var(--black); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.tile {
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.tile:nth-child(3n) { border-right: 0; }
.tile-media {
  aspect-ratio: 1 / 1;
  background: var(--tile);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.tile-media img { width: 100%; height: 100%; object-fit: cover; }
.tile-media img.placeholder { width: 44%; height: 44%; object-fit: contain; opacity: .55; }
.tile-text { padding: 20px 16px 24px; text-align: center; }
.tile-name { font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; }
html[lang="ko"] .tile-name { text-transform: none; letter-spacing: 0; font-weight: 500; }
.tile-sub { margin-top: 6px; font-size: 13px; color: var(--gray); }
.tile-price { margin-top: 8px; font-size: 14px; letter-spacing: 0.04em; }
.tile-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--black); border-radius: 999px; background: #fff;
}

/* ---------- About ---------- */
.about { border-bottom: 1px solid var(--line); }
.about-inner { max-width: 760px; margin: 0 auto; padding: 96px 24px; text-align: center; }
.about-lead {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; margin-bottom: 24px;
}
html[lang="ko"] .about-lead { font-family: "Noto Sans KR", var(--sans); font-weight: 400; letter-spacing: -0.02em; }
.about-body { font-size: 16px; line-height: 1.8; color: #333; }

/* ---------- Location ---------- */
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.location-info { padding: 56px 40px; border-right: 1px solid var(--line); }
.loc-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.loc-value { font-size: 16px; line-height: 1.6; margin-bottom: 32px; }
.contact-list { margin-bottom: 32px; }
.contact-list li { font-size: 16px; line-height: 1.9; }
.contact-list a { border-bottom: 1px solid var(--black); }
#contact-block.empty { display: none; }
.map-wrap { min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(1); }

/* ---------- Footer ---------- */
.site-footer { padding: 32px 40px 40px; }
.footer-links { display: flex; gap: 40px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.footer-links:empty { display: none; }
.footer-info { display: flex; flex-direction: column; gap: 4px; font-size: 11px; color: var(--gray); letter-spacing: 0.02em; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-info { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 680px) {
  :root { --bar-h: 56px; }
  .header-bar { padding: 0 20px; }
  .brand { margin-right: 0; }
  .brand-name { font-size: 22px; }
  .site-nav { display: none; }
  .lang-switch { gap: 14px; font-size: 13px; }
  .hero { min-height: 62vh; }
  .categories { gap: 22px; padding: 36px 16px 32px; }
  .cat-circle { width: 92px; height: 92px; }
  .cat-label { font-size: 13px; }
  .menu-head { padding: 0 20px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .tile:nth-child(3n) { border-right: 1px solid var(--line); }
  .tile:nth-child(2n) { border-right: 0; }
  .tile-text { padding: 16px 10px 20px; }
  .tile-name { font-size: 14px; }
  .about-inner { padding: 64px 24px; }
  .location-info { padding: 40px 20px; }
  .site-footer { padding: 28px 20px 36px; }
  .footer-links { gap: 24px; flex-wrap: wrap; }
}
