:root {
  color-scheme: dark;
  --ink: #0e0d0b;
  --surface: #171512;
  --surface-2: #211d18;
  --cream: #f6f0e5;
  --muted: #b9b0a2;
  --gold: #d6ae62;
  --gold-bright: #f1cf84;
  --line: rgba(214, 174, 98, .24);
  --naver: #03c75a;
  --max: 1120px;
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(circle at 8% 5%, rgba(214, 174, 98, .1), transparent 28rem), var(--ink);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}
a { color: inherit; }
img { max-width: 100%; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip {
  position: fixed;
  z-index: 100;
  top: -5rem;
  left: 1rem;
  padding: .8rem 1rem;
  border-radius: .45rem;
  background: var(--cream);
  color: var(--ink);
}
.skip:focus { top: 1rem; }
.site-header { position: relative; z-index: 20; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(14,13,11,.94); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--cream);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1.1;
  text-decoration: none;
}
.brand > span:last-child { display: flex; flex-direction: column; }
.brand small { margin-top: .28rem; color: var(--gold); font-family: Arial, sans-serif; font-size: .55rem; letter-spacing: .18em; }
.seal { width: 2.55rem; height: 2.55rem; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-bright); font-size: 1.2rem; }
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a, .site-footer nav a { color: var(--muted); font-size: .93rem; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible, .site-footer nav a:hover, .site-footer nav a:focus-visible { color: var(--gold-bright); }
h1, h2, h3, p { word-break: keep-all; }
h1, h2 { margin: 0; font-family: "Nanum Myeongjo", "AppleMyungjo", Georgia, serif; font-weight: 700; letter-spacing: -.045em; }
h1 { font-size: clamp(2.75rem, 7vw, 5.8rem); line-height: 1.06; }
h2 { font-size: clamp(2rem, 4.7vw, 3.5rem); line-height: 1.18; }
h3 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.25rem); letter-spacing: -.035em; }
h1 em { color: var(--gold-bright); font-style: normal; }
.eyebrow { margin: 0 0 .9rem; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .19em; }
.lede { max-width: 650px; margin: 1.5rem 0 0; color: #d8d0c4; font-size: clamp(1.03rem, 2vw, 1.2rem); }
.lede strong { color: var(--cream); font-weight: 700; }
.home-hero { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); align-items: center; gap: clamp(2.5rem, 7vw, 6rem); }
.hero-actions, .card-actions, .detail-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .78rem 1rem;
  border: 1px solid transparent;
  border-radius: .6rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); filter: brightness(1.08); }
.button-gold { background: var(--gold); color: #171007; }
.button-outline { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.035); color: var(--cream); }
.button-naver { background: var(--naver); color: #06140b; }
.button-naver span { font-family: Arial, sans-serif; font-size: 1.08rem; font-weight: 900; }
.hero-image { position: relative; margin: 0; }
.hero-image::before { content: ""; position: absolute; inset: -1rem 1rem 1rem -1rem; border: 1px solid var(--line); border-radius: .4rem; }
.hero-image img { position: relative; width: 100%; aspect-ratio: 1; display: block; object-fit: cover; border-radius: .4rem; filter: saturate(.9) contrast(1.04); }
.hero-image figcaption { position: absolute; right: .8rem; bottom: .8rem; padding: .45rem .7rem; background: rgba(14,13,11,.78); color: var(--muted); font-size: .75rem; backdrop-filter: blur(8px); }
.proof { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof p { min-height: 110px; margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--line); text-align: center; }
.proof p:last-child { border-right: 0; }
.proof strong { color: var(--gold-bright); font: 700 1.45rem/1.2 Georgia, serif; }
.proof span { margin-top: .25rem; color: var(--muted); font-size: .82rem; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-muted { border-block: 1px solid var(--line); background: var(--surface); }
.section-heading { max-width: 720px; margin-bottom: 2.2rem; }
.section-heading > p:last-child { margin: .9rem 0 0; color: var(--muted); }
.branch-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.branch-card { padding: clamp(1.4rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: .85rem; background: linear-gradient(145deg, rgba(39,34,27,.92), rgba(20,18,15,.98)); }
.branch-area { margin: 0 0 .45rem; color: var(--gold); font-size: .83rem; font-weight: 800; }
.answer { min-height: 5.8rem; margin: 1rem 0 1.45rem; color: var(--muted); }
.answer strong { color: var(--cream); }
.facts { display: grid; margin: 0; }
.facts div { display: grid; grid-template-columns: 5.4rem 1fr; gap: .9rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.075); }
.facts dt { color: var(--gold); font-weight: 800; }
.facts dd { margin: 0; color: #e9e1d5; }
.card-actions .button:first-child { flex: 1; }
.card-actions .button-naver { min-width: 7rem; }
.split { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2rem, 8vw, 7rem); }
.story-copy > p { margin: 0; color: #d3cabd; font-size: 1.05rem; }
.feature-list { margin: 2rem 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: minmax(8.5rem, .5fr) 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.feature-list strong { color: var(--gold-bright); }
.feature-list span { color: var(--muted); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
details { border: 1px solid var(--line); border-radius: .65rem; background: var(--surface); }
summary { padding: 1rem 1.1rem; cursor: pointer; color: var(--cream); font-weight: 800; }
details p { margin: 0; padding: 0 1.1rem 1.1rem; color: var(--muted); }
.breadcrumb { padding: 1rem 0; color: var(--muted); font-size: .84rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.detail-hero { padding: clamp(2.8rem, 7vw, 5.8rem) 0; border-bottom: 1px solid var(--line); }
.detail-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.detail-kicker { margin: 0 0 .7rem; color: var(--gold); font-weight: 800; }
.detail-summary { margin: 1.3rem 0 0; color: #d8d0c4; font-size: 1.08rem; }
.detail-panel { padding: 1.25rem; border: 1px solid var(--line); border-radius: .8rem; background: var(--surface); }
.detail-panel .facts div:first-child { padding-top: 0; }
.detail-panel .facts div:last-child { padding-bottom: 0; border-bottom: 0; }
.answer-box { padding: clamp(1.4rem, 4vw, 2.4rem); border-left: 4px solid var(--gold); background: linear-gradient(90deg, rgba(214,174,98,.11), rgba(214,174,98,.025)); }
.answer-box h2 { font-family: inherit; font-size: 1.15rem; letter-spacing: -.02em; }
.answer-box p { margin: .6rem 0 0; color: #e0d8cc; font-size: 1.03rem; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr); gap: 1rem; }
.content-card { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: .75rem; background: var(--surface); }
.content-card h2 { margin-bottom: 1.1rem; font-family: inherit; font-size: 1.5rem; letter-spacing: -.03em; }
.content-card p { color: var(--muted); }
.menu-table { width: 100%; border-collapse: collapse; }
.menu-table th, .menu-table td { padding: .8rem .2rem; border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; vertical-align: top; }
.menu-table th { color: var(--cream); font-weight: 700; }
.menu-table td { color: var(--gold-bright); text-align: right; white-space: nowrap; }
.menu-note { margin: .9rem 0 0; color: var(--muted); font-size: .84rem; }
.plain-list { margin: 0; padding-left: 1.15rem; color: var(--muted); }
.plain-list li + li { margin-top: .65rem; }
.nearby-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.nearby-list span { padding: .35rem .6rem; border: 1px solid var(--line); border-radius: 999px; color: #dbc79e; font-size: .82rem; }
.branch-switch { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.branch-switch a { padding: 1rem; border: 1px solid var(--line); border-radius: .65rem; background: var(--surface); text-decoration: none; }
.branch-switch strong, .branch-switch span { display: block; }
.branch-switch span { margin-top: .2rem; color: var(--muted); font-size: .85rem; }
.site-footer { padding: 2.4rem 0; border-top: 1px solid var(--line); background: #0a0908; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-grid p { margin: 0; }
.footer-grid p span { margin-left: .7rem; color: var(--muted); }
.site-footer nav { display: flex; gap: 1.2rem; }
.source-note { margin-top: 1rem; color: #827a6f; font-size: .78rem; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
@media (max-width: 820px) {
  .hero-grid, .detail-hero-grid, .split, .content-grid { grid-template-columns: 1fr; }
  .hero-image { width: min(540px, 100%); margin-inline: auto; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof p:nth-child(2) { border-right: 0; }
  .proof p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .branch-grid, .faq-grid { grid-template-columns: 1fr; }
  .answer { min-height: 0; }
}
@media (max-width: 560px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .header-inner { min-height: 72px; }
  .site-nav { gap: .8rem; }
  .site-nav a { font-size: .84rem; }
  .brand small { display: none; }
  .hero-actions, .detail-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button, .detail-actions .button { width: 100%; }
  .hero-image::before { inset: -.55rem .55rem .55rem -.55rem; }
  .proof p { min-height: 92px; }
  .facts div { grid-template-columns: 4.6rem 1fr; gap: .55rem; }
  .feature-list li { grid-template-columns: 1fr; gap: .2rem; }
  .footer-grid { display: grid; }
  .footer-grid p span { display: block; margin: .2rem 0 0; }
  .branch-switch { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
