:root {
  --charcoal: #1b1714;
  --ink: #2a211c;
  --clay: #8f2f1d;
  --chili: #c34724;
  --gold: #d7a84c;
  --cream: #fff8ed;
  --paper: #f8efe0;
  --sage: #5c6f4a;
  --line: rgba(42, 33, 28, 0.16);
  --shadow: 0 22px 70px rgba(27, 23, 20, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(27, 23, 20, 0.5);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 248, 237, 0.94);
  box-shadow: 0 12px 34px rgba(27, 23, 20, 0.12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--charcoal);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  border-radius: 50%;
  background: var(--gold);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  margin-top: 1px;
  font-size: 11px;
  letter-spacing: 0;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.header-cta:hover,
.btn:hover,
.mobile-actions a:hover {
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  color: var(--charcoal);
  background: var(--gold);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 800;
  border-radius: 7px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta {
  color: var(--charcoal);
  background: var(--gold);
}

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

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(27, 23, 20, 0.88) 0%, rgba(27, 23, 20, 0.64) 42%, rgba(27, 23, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(27, 23, 20, 0.82) 0%, rgba(27, 23, 20, 0.2) 42%, rgba(27, 23, 20, 0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 148px 0 44px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.86);
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn.primary {
  color: var(--charcoal);
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(215, 168, 76, 0.24);
}

.btn.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn.secondary {
  color: var(--clay);
  border: 1px solid rgba(143, 47, 29, 0.24);
  background: white;
}

.btn.full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin: 44px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.trust-strip div {
  padding: 18px;
  background: rgba(27, 23, 20, 0.36);
}

.trust-strip dt {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.58);
}

.trust-strip dd {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.band {
  background: var(--paper);
}

.intro {
  padding: 56px 0;
}

.intro-grid,
.visit-grid,
.experience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.intro h2,
.section-heading h2,
.experience h2,
.visit h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
  word-break: keep-all;
}

.intro p:not(.section-kicker),
.section-heading p,
.experience-copy p,
.visit p {
  margin: 14px 0 0;
  font-size: 18px;
  color: rgba(42, 33, 28, 0.76);
  word-break: keep-all;
}

.menu,
.experience {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-cta {
  display: flex;
  margin-top: 28px;
}

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

.menu-card,
.review-card,
.visit-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 45px rgba(27, 23, 20, 0.08);
}

.menu-card {
  padding: 26px;
}

.menu-card.featured {
  color: white;
  border-color: rgba(143, 47, 29, 0.3);
  background:
    linear-gradient(160deg, rgba(143, 47, 29, 0.98), rgba(27, 23, 20, 0.95)),
    var(--clay);
}

.menu-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 5px 10px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: var(--gold);
}

.menu-card h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0;
}

.menu-card p {
  margin: 12px 0 0;
  color: rgba(42, 33, 28, 0.72);
}

.menu-card .menu-price {
  margin-top: 10px;
  color: var(--clay);
  font-size: 18px;
  font-weight: 900;
}

.menu-card .menu-price small {
  display: block;
  margin-top: 2px;
  color: rgba(42, 33, 28, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.menu-card.featured p,
.menu-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.menu-card.featured .menu-price {
  color: var(--gold);
}

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

.menu-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(42, 33, 28, 0.74);
  font-weight: 700;
}

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

.proof {
  padding: 86px 0;
}

.review-card {
  margin: 0;
  padding: 28px;
}

.review-card blockquote {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  word-break: keep-all;
}

.review-card figcaption {
  margin-top: 18px;
  color: var(--sage);
  font-size: 14px;
  font-weight: 900;
}

.experience {
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  padding: 22px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(27, 23, 20, 0.07);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  font-size: 19px;
}

.feature-list span {
  margin-top: 5px;
  color: rgba(42, 33, 28, 0.68);
}

.visit {
  padding: 84px 0;
}

.visit-panel {
  padding: 28px;
  background: var(--cream);
}

.visit-panel dl {
  display: grid;
  gap: 16px;
  margin: 0 0 24px;
}

.visit-panel div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.visit-panel dt {
  font-weight: 900;
  color: var(--clay);
}

.visit-panel dd {
  margin: 0;
  font-weight: 700;
}

.site-footer {
  padding: 28px 0 96px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--charcoal);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner span,
.footer-inner small {
  display: block;
}

.footer-inner span {
  color: white;
  font-weight: 900;
}

.footer-inner small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 800;
}

.mobile-actions {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 25;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(27, 23, 20, 0.86);
  backdrop-filter: blur(18px);
}

.mobile-actions a {
  display: grid;
  place-items: center;
  min-height: 48px;
  color: var(--charcoal);
  font-weight: 900;
  border-radius: 6px;
  background: var(--gold);
}

.mobile-actions a + a {
  color: white;
  background: rgba(255, 255, 255, 0.14);
}

.page-header {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 248, 237, 0.94);
  box-shadow: 0 12px 34px rgba(27, 23, 20, 0.12);
}

.subhero {
  padding: 174px 0 82px;
  color: white;
  background:
    linear-gradient(110deg, rgba(27, 23, 20, 0.95), rgba(143, 47, 29, 0.76)),
    url("assets/hero-gamjatang.png") center / cover;
}

.subhero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1;
  word-break: keep-all;
}

.subhero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  word-break: keep-all;
}

.visit-subhero {
  background:
    linear-gradient(110deg, rgba(27, 23, 20, 0.95), rgba(92, 111, 74, 0.74)),
    url("assets/hero-gamjatang.png") center / cover;
}

.menu-detail,
.proof-wall,
.visit-detail {
  padding: 82px 0;
}

.dish-spotlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 5vw, 44px);
  color: white;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(143, 47, 29, 0.98), rgba(27, 23, 20, 0.95)),
    var(--clay);
  box-shadow: var(--shadow);
}

.dish-spotlight h2,
.visit-note h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.08;
}

.dish-spotlight p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  word-break: keep-all;
}

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

.dish-points li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.dish-points strong {
  color: var(--gold);
}

.price-board {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.price-board h2 {
  margin: 28px 0 6px;
  color: var(--clay);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(27, 23, 20, 0.06);
}

.price-row.compact {
  padding-block: 15px;
}

.price-row strong,
.price-row span {
  display: block;
}

.price-row strong {
  font-size: 21px;
}

.price-row span {
  margin-top: 4px;
  color: rgba(42, 33, 28, 0.68);
}

.price-row em {
  flex: 0 0 auto;
  min-width: 92px;
  padding: 8px 10px;
  color: var(--clay);
  font-style: normal;
  font-weight: 900;
  text-align: center;
  border-radius: 999px;
  background: var(--paper);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.metric-grid div {
  padding: 22px;
  color: white;
  border-radius: 8px;
  background: var(--charcoal);
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  color: var(--gold);
  font-size: 22px;
}

.metric-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}

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

.visit-detail {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.visit-panel.large {
  padding: clamp(24px, 4vw, 36px);
}

.visit-note {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  background: var(--paper);
}

.visit-note h2 {
  color: var(--clay);
}

.visit-note p {
  margin: 18px 0 0;
  color: rgba(42, 33, 28, 0.76);
  font-size: 17px;
  word-break: keep-all;
}

.split-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: white;
  background:
    linear-gradient(110deg, rgba(27, 23, 20, 0.96), rgba(143, 47, 29, 0.78)),
    url("assets/hero-gamjatang.png") center / cover;
}

.not-found h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
}

.not-found p:not(.section-kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

@media (max-width: 820px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(27, 23, 20, 0.92), rgba(27, 23, 20, 0.58)),
      linear-gradient(0deg, rgba(27, 23, 20, 0.88), rgba(27, 23, 20, 0.18));
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 62px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip,
  .intro-grid,
  .visit-grid,
  .experience,
  .menu-grid,
  .review-grid,
  .dish-spotlight,
  .metric-grid,
  .review-stack,
  .visit-detail {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    padding: 14px;
  }

  .intro,
  .proof,
  .visit,
  .menu-detail,
  .proof-wall,
  .visit-detail {
    padding: 62px 0;
  }

  .subhero {
    padding: 136px 0 62px;
  }

  .subhero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .subhero p:not(.eyebrow) {
    font-size: 17px;
  }

  .section-cta .btn {
    width: 100%;
  }

  .menu,
  .experience {
    padding: 68px 0;
  }

  .menu-card,
  .review-card,
  .visit-panel {
    padding: 22px;
  }

  .visit-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }

  .dish-points li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-actions {
    grid-template-columns: 1fr;
  }

  .mobile-actions {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

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

  .hero-copy,
  .intro p:not(.section-kicker),
  .section-heading p,
  .experience-copy p,
  .visit p {
    font-size: 16px;
  }

  .trust-strip dd {
    font-size: 15px;
  }
}
