:root {
  --ink: #f4efe6;
  --muted: #b9aa96;
  --soft: #e0cfb4;
  --paper: #15120f;
  --panel: #201a15;
  --panel-2: #2b221a;
  --line: rgba(244, 239, 230, 0.18);
  --accent: #c89a52;
  --accent-2: #9e3f32;
  --shadow: rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(158, 63, 50, 0.16), transparent 28rem),
    linear-gradient(180deg, #0d0b09 0%, var(--paper) 42%, #100d0b 100%);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 11, 9, 0.84);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--soft);
}

.site-nav a {
  opacity: 0.82;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
  opacity: 1;
}

.reserve-link {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(32, 26, 21, 0.86);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.section-pad {
  padding-inline: clamp(18px, 4vw, 54px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: 106px;
  padding-bottom: clamp(22px, 5vw, 58px);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.72);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 11, 9, 0.88) 0%, rgba(13, 11, 9, 0.62) 36%, rgba(13, 11, 9, 0.18) 100%),
    linear-gradient(180deg, rgba(13, 11, 9, 0.16), rgba(13, 11, 9, 0.82));
}

.hero-content {
  width: min(680px, 100%);
  margin-bottom: clamp(24px, 8vw, 86px);
}

.eyebrow,
.feature,
.section-number,
.course-meta,
.note {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature {
  color: var(--muted);
  margin: 48px 0 14px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 11vw, 9.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.8rem, 7vw, 6.7rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(2rem, 3vw, 3.6rem);
}

p {
  color: var(--muted);
  line-height: 1.74;
}

.lede {
  width: min(570px, 100%);
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #d8c8b3;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #17100b;
}

.button.ghost {
  background: rgba(244, 239, 230, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), 100%);
  border: 1px solid var(--line);
  background: rgba(16, 13, 11, 0.58);
  backdrop-filter: blur(18px);
}

.hero-stats article {
  padding: clamp(18px, 3vw, 28px);
  border-right: 1px solid var(--line);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.84rem;
}

.section {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 108px)));
  margin: 0 auto;
  padding-top: clamp(76px, 13vw, 150px);
  padding-bottom: clamp(76px, 13vw, 150px);
  border-top: 1px solid var(--line);
}

.section-number {
  margin-bottom: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(32px, 8vw, 96px);
  align-items: start;
}

.copy-stack p:first-child {
  margin-top: 0;
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(30px, 7vw, 88px);
  align-items: end;
  margin-bottom: 34px;
}

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

.course-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px var(--shadow);
  overflow: hidden;
}

.course-card img {
  aspect-ratio: 1.18;
  width: 100%;
  object-fit: cover;
}

.course-body {
  padding: 22px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--muted);
}

.course-body h3 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.jp {
  color: var(--accent);
  margin: 8px 0 12px;
}

.menu-card-section {
  width: min(1280px, calc(100% - clamp(36px, 8vw, 108px)));
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-top: clamp(42px, 8vw, 86px);
  margin-bottom: 28px;
}

.card-head p {
  max-width: 520px;
}

.tabs {
  display: inline-flex;
  padding: 5px;
  border: 1px solid var(--line);
  background: rgba(244, 239, 230, 0.06);
  border-radius: 999px;
  flex-shrink: 0;
}

.tab {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.tab.is-active {
  background: var(--accent);
  color: #17100b;
}

.menu-panel {
  border: 1px solid var(--line);
  background: rgba(32, 26, 21, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
  padding: clamp(22px, 4vw, 42px);
}

.sitting-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.sitting-heading h3 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.price-list {
  align-self: end;
}

.price-list p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 13px 0;
}

.price-list strong {
  color: var(--ink);
  white-space: nowrap;
}

.menu-columns {
  columns: 3 260px;
  column-gap: 34px;
}

.menu-group {
  break-inside: avoid;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.11);
}

.menu-group h4 {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-group li {
  color: var(--muted);
  padding: 7px 0;
  line-height: 1.42;
}

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

.experience-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(43, 34, 26, 0.72), rgba(21, 18, 15, 0.9));
}

.experience-grid span {
  display: block;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  margin-bottom: 48px;
}

.experience-grid h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr) minmax(260px, 0.6fr);
  gap: 28px;
  align-items: stretch;
}

.visit h2 {
  margin-bottom: 32px;
}

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.visit-details div,
.map-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px;
}

.visit-details span,
.map-panel span {
  display: block;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-details p {
  margin-bottom: 0;
}

.map-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(158, 63, 50, 0.34), rgba(200, 154, 82, 0.13)),
    var(--panel-2);
  transition: transform 160ms ease, border-color 160ms ease;
}

.map-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 154, 82, 0.7);
}

.map-panel strong {
  margin-top: 80px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.site-footer {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 108px)));
  margin: 0 auto;
  padding: 38px 0 54px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.site-footer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
}

.site-footer p {
  margin: 8px 0 0;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(13, 11, 9, 0.82);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

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

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(13, 11, 9, 0.96);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-content {
    margin-bottom: 34px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats article:nth-child(2) {
    border-right: 0;
  }

  .hero-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .menu-intro,
  .sitting-heading,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .course-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .course-card img {
    aspect-ratio: 1.7;
  }

  .card-head {
    display: grid;
  }

  .tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .tab {
    padding-inline: 8px;
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
  }

  .brand {
    font-size: 1.7rem;
  }

  .site-nav {
    inset: 68px 14px auto 14px;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .section,
  .menu-card-section,
  .site-footer {
    width: calc(100% - 36px);
  }

  .menu-panel {
    padding: 18px;
  }

  .menu-columns {
    columns: 1;
  }

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