:root {
  --ink: #090807;
  --ink-2: #141210;
  --ink-3: #1d1a16;
  --bone: #efe6d6;
  --bone-dim: #cfc4b0;
  --ember: #c24a2a;
  --ember-soft: #e07a4a;
  --brass: #c4a574;
  --muted: #9a9186;
  --line: rgba(239, 230, 214, 0.12);
  --serif: "Noto Serif KR", "Cormorant Garamond", serif;
  --sans: "Noto Sans KR", sans-serif;
  --display: "Cormorant Garamond", "Noto Serif KR", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--display);
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 12px 22px;
  cursor: pointer;
  transition: 0.25s ease;
  letter-spacing: 0.04em;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-ember {
  background: var(--ember);
  color: #fff;
}

.btn-ember:hover {
  background: #a83b20;
}

.btn-ghost {
  border-color: var(--bone-dim);
  background: transparent;
  color: var(--bone);
}

.btn-ghost:hover {
  border-color: var(--bone);
  background: rgba(239, 230, 214, 0.06);
}

.btn-naver {
  background: #03c75a;
  color: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 8, 7, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark-en {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  color: var(--brass);
}

.wordmark-ko {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.42em;
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  color: var(--bone-dim);
}

.nav a:hover {
  color: var(--bone);
}

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

.nav-toggle {
  display: none;
  min-width: 64px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--bone);
  background: rgba(9, 8, 7, 0.45);
  color: var(--bone);
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.25) 0%, rgba(9, 8, 7, 0.55) 45%, rgba(9, 8, 7, 0.92) 100%);
}

.hero-vertical {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--serif);
  letter-spacing: 0.6em;
  color: rgba(239, 230, 214, 0.45);
  font-size: 1.1rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 36px;
  padding-left: 48px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 8px 0 18px;
}

.hero-lead {
  max-width: 36rem;
  color: var(--bone-dim);
  font-weight: 300;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-meta {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(9, 8, 7, 0.55);
  list-style: none;
}

.hero-meta li {
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line);
}

.hero-meta li:last-child {
  border-right: 0;
}

.hero-meta span {
  font-size: 0.75rem;
  color: var(--brass);
  letter-spacing: 0.16em;
}

.section {
  padding: 108px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.story-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.lede {
  font-size: 1.12rem;
  margin-bottom: 16px;
}

.story-copy p + p {
  color: var(--muted);
}

.story-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.story-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.principle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 72px;
}

.principle-row article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.principle-row span {
  color: var(--ember-soft);
  font-family: var(--display);
  letter-spacing: 0.16em;
}

.principle-row h3 {
  margin: 10px 0 8px;
  font-size: 1.25rem;
}

.principle-row p {
  color: var(--muted);
  font-size: 0.95rem;
}

.fire {
  background: var(--ink-2);
}

.fire-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.fire-photos {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
}

.fire-photos img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.fire-photos img:first-child {
  margin-top: 48px;
  height: 360px;
}

.fire-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.fire-copy p {
  color: var(--muted);
}

.tick-list {
  list-style: none;
  margin: 22px 0 28px;
}

.tick-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--bone-dim);
}

.tick-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--ember);
  position: absolute;
  left: 0;
  top: 16px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone-dim);
  padding: 8px 16px;
  cursor: pointer;
}

.tab.is-on,
.tab:hover {
  border-color: var(--brass);
  color: var(--bone);
}

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

.menu-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.menu-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-img em {
  position: absolute;
  top: 12px;
  left: 12px;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: var(--ember);
  color: #fff;
  padding: 4px 8px;
}

.tag-premium {
  background: var(--brass) !important;
  color: var(--ink) !important;
}

.menu-card-body {
  padding: 18px 18px 22px;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 8px;
}

.menu-card-top h3 {
  font-size: 1.15rem;
}

.price {
  color: var(--brass);
  white-space: nowrap;
}

.price span {
  color: var(--muted);
  font-size: 0.78rem;
  margin-left: 2px;
}

.menu-card-body p {
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-card-body small {
  display: block;
  margin-top: 10px;
  color: var(--brass);
}

.space {
  padding-top: 0;
}

.space-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}

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

.space-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.15), rgba(9, 8, 7, 0.82));
}

.space-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 48px;
}

.space-hero-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.space-hero-copy p:last-child {
  max-width: 32rem;
  color: var(--bone-dim);
}

.space-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.space-cards article {
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.space-cards img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.space-cards div {
  padding: 18px;
}

.space-cards p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

.amenity-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.amenity-row div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.amenity-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.quotes {
  background: var(--ink-2);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

blockquote {
  border-top: 1px solid var(--brass);
  padding-top: 22px;
}

blockquote p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.75;
}

blockquote footer {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.86rem;
}

.reserve-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 48px;
}

.reserve-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.reserve-info > p {
  color: var(--muted);
  margin-bottom: 24px;
}

.reserve-info dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.reserve-info dt {
  color: var(--brass);
}

.reserve-info a {
  color: var(--bone);
}

.reserve-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.reserve-form h3 {
  margin-bottom: 16px;
}

.reserve-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--bone-dim);
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 12px 12px;
  outline: none;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  border-color: var(--brass);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.visit-map {
  position: relative;
  min-height: 420px;
}

.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}

.map-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(9, 8, 7, 0.88);
  border: 1px solid var(--line);
  padding: 18px 20px;
  max-width: 320px;
}

.map-card p {
  color: var(--muted);
  margin: 8px 0 12px;
  font-size: 0.92rem;
}

.map-links {
  display: flex;
  gap: 8px;
}

.map-links a {
  border: 1px solid var(--line);
  padding: 6px 10px;
  font-size: 0.82rem;
}

.map-links a:hover {
  border-color: var(--brass);
}

.visit-facts {
  display: grid;
  gap: 16px;
}

.visit-facts article {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.visit-facts p {
  color: var(--bone-dim);
}

.visit-facts small {
  color: var(--brass);
}

.visit-facts a:hover {
  color: var(--brass);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 56px;
}

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

.footer-mark {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.32em;
  margin-bottom: 8px;
}

.footer-mark i {
  font-style: normal;
  color: var(--brass);
  letter-spacing: 0.16em;
  font-size: 0.9rem;
}

.footer-inner p {
  color: var(--muted);
}

.copy {
  margin-top: 12px;
  font-size: 0.82rem;
}

.footer-nav {
  display: flex;
  gap: 18px;
  color: var(--bone-dim);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--bone);
  color: var(--ink);
  padding: 14px 18px;
  max-width: min(520px, calc(100% - 32px));
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 50;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 960px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(9, 8, 7, 0.97);
    flex-direction: column;
    padding: 18px 24px 28px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    z-index: 50;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-vertical {
    display: none;
  }

  .story-grid,
  .fire-split,
  .menu-grid,
  .space-cards,
  .amenity-row,
  .quote-grid,
  .reserve-box,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .principle-row {
    grid-template-columns: 1fr;
  }

  .fire-photos {
    grid-template-columns: 1fr 1fr;
  }

  .fire-photos img,
  .fire-photos img:first-child,
  .story-photo img {
    height: 280px;
    margin-top: 0;
  }

  .reserve-box {
    padding: 28px 22px;
  }

  .footer-inner,
  .header-inner {
    gap: 12px;
  }

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

  .space-hero {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1120px, calc(100% - 28px));
  }

  .hero-meta,
  .form-row,
  .fire-photos {
    grid-template-columns: 1fr;
  }

  .hero-meta li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .header-actions .btn {
    display: none;
  }

  .section {
    padding: 72px 0;
  }
}
