:root {
  --ink: #1d242c;
  --muted: #5c6570;
  --line: rgba(25, 33, 42, 0.1);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --bg: #f4efe8;
  --warm: #efe6db;
  --blue: #204b83;
  --blue-deep: #15345c;
  --red: #9d2f32;
  --shadow: 0 18px 50px rgba(20, 26, 34, 0.12);
  --shadow-soft: 0 10px 24px rgba(20, 26, 34, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(157, 47, 50, 0.08), transparent 22%),
    radial-gradient(circle at 92% 2%, rgba(32, 75, 131, 0.08), transparent 18%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
  font-family: "Noto Sans KR", system-ui, sans-serif;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1224px, calc(100vw - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(25, 33, 42, 0.08);
}

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

.brand img {
  width: min(228px, 44vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.8vw, 34px);
  font-size: clamp(0.98rem, 0.28vw + 0.96rem, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(29, 36, 44, 0.8);
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--red);
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: min(88vh, 960px);
  overflow: hidden;
  border-bottom: 1px solid rgba(25, 33, 42, 0.08);
  background: #1c2128;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.78) 0%, rgba(13, 16, 19, 0.44) 34%, rgba(13, 16, 19, 0.08) 62%, rgba(13, 16, 19, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 23, 29, 0.1), rgba(18, 23, 29, 0.16));
}

.hero::before {
  content: "";
  position: absolute;
  right: -10vw;
  top: 8%;
  width: min(32vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(157, 47, 50, 0.78), rgba(157, 47, 50, 0.18) 48%, transparent 72%);
  filter: blur(2px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: 72px;
}

.hero-copy {
  width: min(640px, 52vw);
  color: #fff;
  animation: rise 720ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  opacity: 0.9;
}

.eyebrow--dark {
  color: var(--red);
}

.hero h1,
.section h2,
.menu-card h3,
.footer-title,
.fact-card strong {
  font-family: "Noto Serif KR", Georgia, serif;
}

.hero h1 {
  margin: 0;
  max-width: 9.5ch;
  font-size: clamp(3.1rem, 5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 36rem;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 0.55vw + 0.95rem, 1.2rem);
  line-height: 1.72;
}

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

.pill-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red) 0%, #7f2325 100%);
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.pill-button {
  min-width: 144px;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 1.02rem;
}

.pill-button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.pill-button--small {
  min-height: 42px;
  min-width: 122px;
}

.cta-button {
  margin-top: 24px;
  min-width: 152px;
  font-size: 1rem;
}

.pill-button:hover,
.cta-button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.hero-pills li {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  backdrop-filter: blur(10px);
}

.section {
  padding: 84px 0;
}

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

.section-head--left {
  text-align: left;
}

.section h2 {
  margin: 0;
  color: #223953;
  font-size: clamp(2.45rem, 3.8vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.intro-grid,
.chef-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}

.intro-copy p,
.chef-copy p,
.info-card p,
.menu-card li,
.site-footer p {
  color: var(--muted);
  font-size: clamp(1rem, 0.35vw + 0.98rem, 1.13rem);
  line-height: 1.72;
}

.intro-copy p {
  margin: 18px 0 0;
}

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

.fact-card,
.info-card,
.menu-card {
  background: var(--surface);
  border: 1px solid rgba(25, 33, 42, 0.08);
  border-radius: 28px;
  padding: clamp(22px, 2.5vw, 32px);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.fact-card {
  min-height: 180px;
}

.fact-card:first-child {
  grid-column: 1 / -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(32, 75, 131, 0.08), rgba(157, 47, 50, 0.08));
}

.fact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.fact-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.45rem, 1.5vw + 0.95rem, 2.1rem);
  line-height: 1.1;
}

.fact-card p {
  margin: 10px 0 0;
}

.chef {
  padding-top: 18px;
}

.chef-copy h2 {
  max-width: 9ch;
  margin-bottom: 20px;
}

.chef-copy p + p {
  margin-top: 16px;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 700;
}

.chef-image {
  margin: 0;
  justify-self: end;
  width: min(100%, 560px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners .section-head h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.partner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.partner-row a {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(25, 33, 42, 0.08);
}

.partner-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.info-card h3,
.menu-card h3 {
  margin: 0 0 12px;
  color: #274a73;
  font-size: clamp(1.7rem, 1.7vw + 1rem, 2.7rem);
  line-height: 1.06;
}

.menu-card h4 {
  margin: 0 0 10px;
  color: var(--red);
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: clamp(1.15rem, 0.8vw + 0.95rem, 1.55rem);
}

.menu-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(25, 33, 42, 0.08);
}

.menu-card li:last-child {
  border-bottom: 0;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.dish-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  padding: 52px 0 26px;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(25, 33, 42, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.5rem, 1.7vw, 2.2rem);
  line-height: 1.03;
}

.footer-title--spaced {
  margin-top: 18px;
}

.footer-block p {
  margin: 0 0 6px;
}

.footer-block a {
  color: var(--blue);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.socials img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copyright {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(25, 33, 42, 0.08);
  color: #737a83;
  font-size: 0.96rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0 18px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.95rem;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-copy {
    width: min(620px, 78vw);
  }

  .intro-grid,
  .chef-grid,
  .catering-grid,
  .menu-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .chef-image {
    justify-self: stretch;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100vw - 20px, 1240px);
  }

  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: 186px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 10, 12, 0.84) 0%, rgba(13, 16, 19, 0.48) 52%, rgba(13, 16, 19, 0.12) 100%),
      linear-gradient(180deg, rgba(18, 23, 29, 0.1), rgba(18, 23, 29, 0.22));
  }

  .hero-copy {
    width: min(100%, 86vw);
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .section {
    padding: 64px 0;
  }

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

  .fact-card:first-child {
    grid-column: auto;
  }

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

  .partner-row a {
    width: 84px;
    height: 84px;
  }
}
