:root {
  --ink: #1f1d1a;
  --muted: #756d64;
  --paper: #fbf8f2;
  --surface: #ffffff;
  --line: #e7ded1;
  --accent: #8b3f2c;
  --accent-dark: #5d2a1e;
  --green: #263d35;
  --gold: #b88943;
  --charcoal: #181613;
  --shadow: 0 18px 44px rgba(36, 28, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid rgba(231, 222, 209, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: clamp(12px, 2.5vw, 28px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.news-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--charcoal);
}

.news-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.news-strip strong {
  flex: 0 0 auto;
  color: #e8c98d;
  font-size: 15px;
}

.news-strip span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.news-strip a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  align-items: center;
  min-height: clamp(620px, 86vh, 820px);
  overflow: hidden;
  padding: clamp(82px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(70px, 10vw, 120px);
  color: #fff;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 14, 11, 0.78), rgba(18, 14, 11, 0.38) 48%, rgba(18, 14, 11, 0.18)),
    linear-gradient(0deg, rgba(18, 14, 11, 0.34), rgba(18, 14, 11, 0.08));
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  max-width: 680px;
}

.hero .eyebrow {
  color: #e8c98d;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.84);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5.7vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 800;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 800;
}

.lead {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.hero-actions,
.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.map-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.map-links a:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.hero .button {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.hero .button.primary {
  color: var(--charcoal);
  background: #fff;
  border-color: #fff;
}

.hero-image {
  position: relative;
  margin: 0;
}

.hero-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: start;
  background: #fff;
  border-block: 1px solid var(--line);
}

.intro p:last-child,
.split p,
.location p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

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

.menu-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: none;
}

.menu-card.featured {
  grid-column: span 2;
}

.menu-card img {
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.menu-card div {
  padding: 20px;
}

.menu-card p {
  color: var(--muted);
}

.menu-card strong {
  color: var(--charcoal);
  font-size: 20px;
}

.menu-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.split,
.location {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.86fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #f4eee5;
}

.split img,
.location img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.info-panel {
  background: var(--charcoal);
  color: #fff;
}

.info-panel .section-kicker {
  color: #d7b87a;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.info-list div {
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

dt {
  margin-bottom: 8px;
  color: #d7b87a;
  font-weight: 800;
}

dd {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

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

.map-links {
  margin-top: 24px;
}

.map-links a {
  color: #fff;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.faq {
  background: #fff;
  border-top: 1px solid var(--line);
}

.blog {
  background: #fff;
  border-top: 1px solid var(--line);
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

.blog-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.blog-card img {
  aspect-ratio: 1 / 0.68;
  object-fit: cover;
}

.blog-card div {
  padding: 22px;
}

.blog-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.blog-card p {
  color: var(--muted);
}

.article-page {
  padding: clamp(38px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.article {
  max-width: 860px;
  margin: 0 auto;
}

.article h1 {
  font-size: clamp(36px, 5vw, 60px);
}

.article h2 {
  margin-top: 36px;
  font-size: clamp(24px, 3vw, 34px);
}

.article p {
  color: var(--muted);
  font-size: 18px;
}

.article img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: 28px 0;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.article .button {
  margin: 14px 10px 0 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.faq-grid p {
  color: var(--muted);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 28px 18px 36px;
  color: #fff;
  background: var(--charcoal);
  text-align: center;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .split,
  .location {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    padding-top: 92px;
  }

  .menu-grid,
  .blog-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .news-strip,
  .news-strip div {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-strip {
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
  }

  h1 {
    font-size: 40px;
  }

  .menu-grid,
  .blog-grid,
  .faq-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

  .menu-card.featured {
    grid-column: auto;
  }

  .hero-actions .button,
  .menu-more .button,
  .map-links a {
    flex: 1 1 150px;
  }

  .menu-more {
    justify-content: stretch;
  }
}
