:root {
  --ink: #181512;
  --muted: #6d6258;
  --line: #e8ddd2;
  --paper: #fffaf4;
  --white: #ffffff;
  --red: #b5251d;
  --red-dark: #871910;
  --green: #1d7d4d;
  --gold: #d79a2b;
  --shadow: 0 18px 50px rgba(41, 24, 12, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  background: var(--paper);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(15, 12, 10, 0.72), rgba(15, 12, 10, 0));
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(181, 37, 29, 0.9);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 110px clamp(20px, 6vw, 92px) 72px;
  color: var(--white);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 11, 7, 0.88), rgba(17, 11, 7, 0.56) 42%, rgba(17, 11, 7, 0.12)),
    linear-gradient(0deg, rgba(17, 11, 7, 0.52), rgba(17, 11, 7, 0.05) 45%);
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(181, 37, 29, 0.34);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button.full {
  width: 100%;
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 92px);
}

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

.section-heading h2,
.visit-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
}

.section-heading p:not(.eyebrow),
.visit-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.event-grid,
.menu-grid {
  display: grid;
  gap: 18px;
}

.event-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.event-card,
.menu-item,
.visit-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-card {
  padding: clamp(24px, 4vw, 38px);
}

.event-card.highlight {
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, var(--red), #5d140d);
}

.event-card h3,
.menu-item h3 {
  margin: 12px 0;
  font-size: 26px;
}

.event-card ul,
.event-card ol {
  margin: 18px 0;
  padding-left: 20px;
  line-height: 1.9;
}

.event-card p {
  color: inherit;
  line-height: 1.7;
}

.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--red-dark);
  background: #ffe5c2;
  font-size: 13px;
  font-weight: 900;
}

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

.menu-item {
  min-height: 220px;
  padding: 24px;
}

.menu-item span {
  color: var(--green);
  font-weight: 900;
}

.menu-item p {
  color: var(--muted);
  line-height: 1.7;
}

.visit-section {
  background: #f4ebdf;
}

.visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 28px;
  padding: clamp(26px, 5vw, 48px);
}

.address {
  font-weight: 800;
}

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

.info-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf4;
}

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

.info-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.info-list strong {
  margin-top: 6px;
  font-size: 19px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.82);
  background: #181512;
}

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

  .event-grid,
  .visit-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .nav {
    width: 100%;
    justify-content: space-between;
    font-size: 14px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 148px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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