:root {
  --bg: #121110;
  --bg-alt: #1a1816;
  --text: #f3ede1;
  --text-muted: #a89e8c;
  --accent: #c9962c;
  --line: rgba(243, 237, 225, 0.12);
  --serif: "Noto Serif KR", serif;
  --sans: "Noto Sans KR", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(18, 17, 16, 0.92);
  backdrop-filter: blur(6px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links a {
  opacity: 1;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 6px 26px 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 9px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.lang-select:hover {
  border-color: var(--accent);
}

.lang-select option {
  background: var(--bg-alt);
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("../images/spicy-hotplate.jpg") center 40% / cover no-repeat;
  transform: scale(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 17, 16, 0.35) 0%,
    rgba(18, 17, 16, 0.35) 40%,
    rgba(18, 17, 16, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 110px;
  width: 100%;
}

.hero-content .eyebrow {
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 16px;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: var(--text-muted);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.4; }
}

/* ---------- Section common ---------- */
section {
  padding: 130px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 18px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* ---------- About ---------- */
.about {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 15.5px;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 2px;
}

.since-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--serif);
  font-weight: 700;
  text-align: center;
  padding: 20px 22px;
  line-height: 1.2;
}

.since-badge .year {
  font-size: 26px;
  display: block;
}

.since-badge .label {
  font-size: 11px;
  letter-spacing: 0.15em;
  font-family: var(--sans);
  font-weight: 500;
}

.press {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.press-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.press-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
}

.press-list li {
  font-family: var(--serif);
  font-size: 14.5px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.feature {
  text-align: center;
  padding: 0 12px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.feature p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ---------- Menu ---------- */
.menu {
  background: var(--bg-alt);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.menu-item {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-item:hover img {
  transform: scale(1.06);
}

.menu-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 17, 16, 0) 45%, rgba(18, 17, 16, 0.92) 100%);
}

.menu-item-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.menu-item-info h3 {
  font-size: 21px;
  margin-bottom: 6px;
}

.menu-item-info .desc {
  color: var(--text-muted);
  font-size: 13.5px;
}

.menu-item-info .desc-note {
  color: var(--text-muted);
  font-size: 11.5px;
  opacity: 0.75;
  margin-top: 2px;
}

.menu-item-info .price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent);
  white-space: nowrap;
}

.menu-note {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}

.menu-note strong {
  color: var(--text);
  font-weight: 500;
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.info-list {
  list-style: none;
  margin-bottom: 34px;
}

.info-list li {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list .k {
  flex: none;
  width: 70px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.1em;
  padding-top: 2px;
}

.info-list .v {
  font-size: 15.5px;
}

.info-list .v small {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--bg);
}

.btn.filled {
  background: var(--accent);
  color: var(--bg);
}

.btn.filled:hover {
  opacity: 0.88;
}

.location-media {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.location-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 17, 16, 0) 55%, rgba(18, 17, 16, 0.9) 100%);
}

.location-caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  z-index: 2;
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ---------- Footer ---------- */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}

footer .logo {
  display: block;
  margin-bottom: 14px;
}

footer p {
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(160px, 46vw);
    background: var(--bg-alt);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: block;
  }

  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: -1;
  }

  .location-media {
    height: 340px;
  }

  .since-badge {
    left: 16px;
    bottom: -20px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  section {
    padding: 90px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 22px;
  }

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