:root {
  --ink: #fff8ef;
  --muted: #c8b8a2;
  --soft: #8f7d66;
  --dark: #0b0704;
  --panel: rgba(26, 18, 12, 0.72);
  --panel-strong: rgba(39, 27, 18, 0.82);
  --line: rgba(255, 248, 239, 0.12);
  --gold: #d7a85f;
  --gold-soft: #f3d49a;
  --terracotta: #a84f32;
  --sage: #94a77b;
  --cream: #fff3df;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 168, 95, 0.14), transparent 30rem),
    radial-gradient(circle at 90% 10%, rgba(168, 79, 50, 0.16), transparent 26rem),
    linear-gradient(180deg, #0b0704 0%, #140d08 48%, #090604 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.nav {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 7, 4, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    top 0.25s var(--ease);
}

.nav.is-scrolled {
  top: 10px;
  background: rgba(11, 7, 4, 0.82);
  border-color: rgba(255, 248, 239, 0.18);
}

.brand,
.brand-mark,
.nav-links,
.quick-info,
.hero-actions,
.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, #fff8ef, transparent 14%),
    linear-gradient(135deg, var(--gold), var(--terracotta));
  box-shadow: 0 12px 34px rgba(215, 168, 95, 0.24);
}

.brand-mark span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(11, 7, 4, 0.8);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.045);
}

.nav-links a,
.nav-cta,
.mobile-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.nav-links a:hover,
.mobile-menu a:hover {
  color: var(--ink);
  background: rgba(255, 248, 239, 0.08);
}

.nav-cta {
  color: #150d07;
  background: linear-gradient(135deg, var(--cream), var(--gold-soft));
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 248, 239, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  top: 84px;
  left: 16px;
  right: 16px;
  display: none;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(11, 7, 4, 0.94);
  backdrop-filter: blur(20px);
}

.mobile-menu.is-open {
  display: grid;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 84px;
}

.hero-bg,
.grain,
.hero-orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.44;
}

.hero-orb-a {
  left: -12rem;
  top: 8rem;
  background: rgba(215, 168, 95, 0.26);
}

.hero-orb-b {
  right: -12rem;
  top: 4rem;
  background: rgba(168, 79, 50, 0.24);
}

.grain {
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 790px;
  font-size: clamp(3.1rem, 7vw, 7.1rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h3 {
  font-size: 1.35rem;
}

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

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s var(--ease),
    border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}

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

.btn-primary {
  color: #140d08;
  background: linear-gradient(135deg, var(--cream), var(--gold-soft));
  box-shadow: 0 20px 54px rgba(215, 168, 95, 0.2);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 248, 239, 0.065);
}

.hero-card,
.reservation-panel,
.event-card,
.hours-card,
.metric-card,
.menu-card,
.gallery-item {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.09), rgba(255, 248, 239, 0.035)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 24px;
}

.card-top,
.hero-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card-top span,
.hero-card-footer span,
.quick-info span,
.menu-card span,
.hours-card span,
.metric-card span {
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plate-scene {
  position: absolute;
  inset: 74px 20px 76px;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.plate {
  width: min(80%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 248, 239, 0.2), transparent 30%),
    radial-gradient(circle, #f6ead8 0 38%, #d2b68a 39% 44%, rgba(255, 248, 239, 0.1) 45% 100%);
  box-shadow:
    inset -34px -48px 80px rgba(61, 34, 18, 0.22),
    0 30px 80px rgba(0, 0, 0, 0.34);
  transform: rotateX(60deg) rotateZ(-8deg);
}

.dish {
  position: absolute;
  border-radius: 50%;
  transform: rotateX(60deg);
}

.dish-a {
  width: 90px;
  height: 90px;
  background: var(--terracotta);
}

.dish-b {
  width: 62px;
  height: 62px;
  margin: 48px 0 0 90px;
  background: var(--sage);
}

.dish-c {
  width: 46px;
  height: 46px;
  margin: -80px 0 0 -96px;
  background: var(--gold);
}

.steam {
  position: absolute;
  bottom: 62%;
  width: 2px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 248, 239, 0.44), transparent);
  animation: steam 4s ease-in-out infinite;
}

.steam-a {
  margin-left: -50px;
}

.steam-b {
  animation-delay: -1.2s;
}

.steam-c {
  margin-left: 50px;
  animation-delay: -2.2s;
}

.quick-info {
  position: relative;
  z-index: 3;
  gap: 12px;
  justify-content: space-between;
  margin-top: -36px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(11, 7, 4, 0.72);
  backdrop-filter: blur(18px);
}

.quick-info div {
  flex: 1;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 248, 239, 0.035);
}

.quick-info strong {
  display: block;
  margin-top: 5px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.6fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--ink);
}

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

.feature-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 239, 0.035);
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
}

.menu-section {
  background: rgba(255, 248, 239, 0.025);
}

.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.menu-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-filter {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 248, 239, 0.035);
}

.menu-filter.is-active {
  color: #140d08;
  background: var(--gold-soft);
}

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

.menu-card {
  min-height: 230px;
  padding: 22px;
  border-radius: 28px;
}

.menu-card h3 {
  margin: 18px 0 10px;
}

.menu-card .price {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-soft);
  font-weight: 800;
}

.private-dining {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.event-card,
.hours-card,
.reservation-panel {
  border-radius: var(--radius-xl);
}

.event-card {
  padding: clamp(28px, 5vw, 54px);
}

.event-card p {
  max-width: 640px;
  margin: 18px 0 28px;
}

.event-stats {
  display: grid;
  gap: 14px;
}

.metric-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.metric-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 16px;
}

.gallery-item {
  min-height: 260px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--x) var(--y), rgba(255, 248, 239, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(215, 168, 95, 0.22), rgba(168, 79, 50, 0.16)),
    var(--panel);
}

.gallery-item:nth-child(2) {
  min-height: 360px;
}

.reservation-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(420px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(28px, 5vw, 54px);
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 248, 239, 0.07);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-soft);
}

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

.visit-copy {
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 168, 95, 0.13), transparent 36%),
    rgba(255, 248, 239, 0.03);
  border: 1px solid var(--line);
}

.visit-copy p {
  margin: 20px 0 28px;
}

.hours-card {
  padding: 28px;
}

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

.footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  justify-content: space-between;
  gap: 24px;
}

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

.footer-links {
  gap: 16px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes steam {
  50% {
    transform: translateY(-24px) scaleY(1.2);
    opacity: 0.45;
  }
}

@media (max-width: 920px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .story-layout,
  .private-dining,
  .reservation-panel,
  .visit {
    grid-template-columns: 1fr;
  }

  .menu-head {
    align-items: start;
    flex-direction: column;
  }

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

  .quick-info {
    display: grid;
  }

  .hero-card {
    min-height: 420px;
  }

  .reservation-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.6rem);
  }

  .section {
    padding: 84px 0;
  }
}
