:root {
  --bg: #f3efe7;
  --panel: #fbf7f0;
  --text: #1d1b18;
  --muted: #5d564d;
  --line: rgba(29, 27, 24, 0.12);
  --cool-deep: #244354;
  --warm-deep: #6f3420;
  --shadow: 0 24px 50px rgba(22, 18, 14, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

p {
  margin: 0;
  line-height: 1.85;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1;
}

h1 {
  font-size: clamp(54px, 8vw, 104px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.4vw, 58px);
}

h3 {
  margin-bottom: 12px;
  font-size: 31px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5vw;
  background: rgba(243, 239, 231, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header--light {
  position: absolute;
  width: 100%;
  background: transparent;
  border-bottom: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand img {
  width: 72px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.08;
}

.brand__text strong {
  font-size: 15px;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.brand__text span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.84;
}

.brand__text--dark {
  color: var(--text);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fffaf2;
}

.detail-page .site-nav {
  color: #231e18;
}

.site-nav a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(17, 27, 35, 0.74), rgba(17, 27, 35, 0.3) 56%, rgba(17, 27, 35, 0.18));
}

.hero-content,
.editorial-section,
.module-section,
.cta-band,
.page-hero__content,
.story-section,
.table-section,
.support-section,
.booking-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #f8f5ef;
}

.hero-content--editorial {
  max-width: 760px;
}

.hero-text {
  max-width: 620px;
  margin-top: 22px;
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button--primary {
  background: var(--cool-deep);
  color: #fff;
}

.detail-page--yakiniku .button--primary {
  background: var(--warm-deep);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.editorial-section,
.story-section {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  padding: 88px 0 56px;
}

.editorial-section--home {
  padding-bottom: 96px;
}

.editorial-note,
.story-side {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.editorial-note strong,
.story-side strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.editorial-note p,
.story-side p {
  margin-bottom: 20px;
  color: var(--muted);
}

.story-side--warm {
  background: #fbf3ee;
}

.module-section {
  padding: 20px 0 56px;
}

.module-block {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.module-block:last-child {
  border-bottom: 1px solid var(--line);
}

.module-block__copy {
  max-width: 760px;
}

.simple-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
}

.cta-band {
  padding: 28px 0 90px;
}

.page-hero {
  padding: 112px 0 28px;
}

.page-hero--brand {
  padding-bottom: 16px;
}

.page-hero__content {
  padding: 58px 0 28px;
  border-bottom: 1px solid var(--line);
}

.page-hero__content--minimal {
  max-width: 960px;
}

.table-section,
.support-section {
  padding: 30px 0 24px;
}

.table-section--refined {
  padding-top: 18px;
}

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

.table-card,
.booking-form,
.booking-result {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.table-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.support-section {
  border-top: 1px solid var(--line);
}

.support-section--warm {
  border-top: 1px solid rgba(111, 52, 32, 0.18);
}

.support-section--minimal {
  border-top: 1px solid var(--line);
}

.support-copy {
  max-width: 780px;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.8fr;
  gap: 24px;
  padding: 46px 0 90px;
}

.booking-section--stacked {
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

.booking-result {
  color: var(--muted);
}

.booking-result strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

@media (max-width: 980px) {
  .editorial-section,
  .story-section,
  .table-grid,
  .booking-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-header--light {
    position: static;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(243, 239, 231, 0.97);
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 60px;
  }

  .brand__text strong {
    font-size: 13px;
  }

  .brand__text span {
    font-size: 9px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content,
  .editorial-section,
  .module-section,
  .cta-band,
  .page-hero__content,
  .story-section,
  .table-section,
  .support-section,
  .booking-section {
    width: min(100% - 32px, 1180px);
  }
}
