:root {
  --ink: #17120e;
  --muted: #6b6259;
  --paper: #f2eadc;
  --paper-strong: #fff8ec;
  --wood: #382014;
  --wood-2: #6f3d24;
  --line: rgba(37, 26, 17, 0.16);
  --accent: #b94726;
  --accent-dark: #8f2f18;
  --green: #32402c;
  --radius: 10px;
  --shadow: 0 28px 80px rgba(52, 29, 13, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
}

body::selection {
  color: var(--paper-strong);
  background: var(--accent-dark);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  transform: translateY(-160%);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--paper-strong);
  background: linear-gradient(to bottom, rgba(23, 18, 14, 0.82), rgba(23, 18, 14, 0));
}

.site-header.solid {
  position: sticky;
  color: var(--ink);
  background: rgba(242, 234, 220, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.desktop-nav,
.header-call {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--paper-strong);
  background: var(--accent);
  border-radius: 8px;
  letter-spacing: 0;
}

.desktop-nav {
  justify-self: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.desktop-nav a,
.header-call {
  min-height: 44px;
}

.desktop-nav a {
  display: flex;
  align-items: center;
  opacity: 0.88;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-call {
  justify-self: end;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-strong);
  background: var(--wood);
}

.hero picture,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero picture {
  opacity: 0.92;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 18, 14, 0.9), rgba(23, 18, 14, 0.46) 48%, rgba(23, 18, 14, 0.18)),
    linear-gradient(to top, rgba(23, 18, 14, 0.88), rgba(23, 18, 14, 0.1) 62%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  padding: 146px 0 118px clamp(22px, 5vw, 74px);
}

.kicker {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(54px, 9vw, 118px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 6vw, 76px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.1;
}

.hero-copy p:not(.kicker),
.feature-copy p,
.room-story p,
.menu-hero p,
.daily-builder p,
.visit-panel p {
  max-width: 58ch;
  color: color-mix(in srgb, currentColor 78%, transparent);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions,
.special-tabs,
.filter-row,
.preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.special-tabs button,
.filter-row button,
.preset-row button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.button:hover,
.special-tabs button:hover,
.filter-row button:hover,
.preset-row button:hover,
.menu-line:hover,
.contact-grid a:hover {
  transform: translateY(-2px);
}

.button:active,
.special-tabs button:active,
.filter-row button:active,
.preset-row button:active,
.menu-line:active,
.contact-grid a:active {
  transform: translateY(1px);
}

.primary,
.dock-primary {
  color: var(--paper-strong);
  background: var(--accent);
  border-color: var(--accent);
}

.ghost {
  color: var(--paper-strong);
  background: rgba(255, 248, 236, 0.1);
  border-color: rgba(255, 248, 236, 0.5);
}

.inline {
  width: fit-content;
  color: var(--paper-strong);
  background: var(--wood);
  border-color: var(--wood);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(96px, 9vw, 128px);
  width: min(310px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 248, 236, 0.32);
  border-radius: var(--radius);
  background: rgba(23, 18, 14, 0.5);
  backdrop-filter: blur(16px);
}

.hero-card span,
.hero-card small,
.intro-grid span,
.menu-grid span,
.contact-grid span {
  display: block;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-card strong {
  display: block;
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.05;
}

.hero-card small {
  line-height: 1.55;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 130px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.intro-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.intro-grid article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid p,
.menu-grid p,
.check-list,
.special-result span {
  color: var(--muted);
  line-height: 1.62;
}

.feature-band,
.room-story,
.daily-builder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.feature-band {
  width: 100%;
  max-width: none;
  padding: clamp(66px, 8vw, 104px) clamp(18px, 5vw, 70px);
  background: var(--green);
  color: var(--paper-strong);
}

.feature-copy {
  max-width: 560px;
  justify-self: end;
}

.feature-image,
.room-story figure,
.daily-builder figure,
.menu-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image {
  height: clamp(420px, 55vw, 680px);
  margin: 0;
}

figcaption {
  position: absolute;
  pointer-events: none;
}

.special-tabs,
.preset-row {
  margin: 28px 0 18px;
}

.special-tabs button,
.filter-row button,
.preset-row button {
  padding: 0 16px;
  color: currentColor;
  background: transparent;
  border-color: color-mix(in srgb, currentColor 28%, transparent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.special-tabs button.is-active,
.filter-row button.is-active,
.preset-row button.is-active {
  color: var(--paper-strong);
  background: var(--accent);
  border-color: var(--accent);
}

.special-result {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
  border-radius: var(--radius);
}

.special-result strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.menu-preview {
  display: grid;
  gap: 34px;
}

.split-heading {
  max-width: 820px;
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
}

.menu-photo {
  min-height: 520px;
}

.menu-lines {
  display: grid;
  align-content: center;
  gap: 12px;
}

.menu-line {
  display: grid;
  gap: 8px;
  width: 100%;
  min-height: 94px;
  padding: 20px;
  text-align: left;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.menu-line.is-active {
  background: var(--paper-strong);
  border-color: rgba(185, 71, 38, 0.42);
}

.menu-line span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.menu-line small {
  color: var(--muted);
  font-size: 14px;
}

.room-story {
  border-top: 1px solid var(--line);
}

.room-story figure {
  height: 620px;
  margin: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding-left: 18px;
}

.visit {
  padding-top: 40px;
}

.visit-panel {
  padding: clamp(28px, 5vw, 56px);
  color: var(--paper-strong);
  background:
    linear-gradient(135deg, rgba(185, 71, 38, 0.22), transparent 42%),
    var(--wood);
  border-radius: var(--radius);
}

.visit-panel.compact {
  background: var(--wood);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: rgba(255, 248, 236, 0.18);
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-grid a {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
  background: rgba(23, 18, 14, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-grid a:hover {
  background: rgba(255, 248, 236, 0.08);
}

.menu-page {
  background: var(--paper);
}

.menu-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 130px) 0 46px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
}

.menu-hero h1 {
  color: var(--ink);
  font-size: clamp(44px, 7vw, 94px);
}

.menu-hero img {
  height: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-board {
  padding-top: 28px;
}

.filter-row {
  position: sticky;
  z-index: 6;
  top: 72px;
  padding: 14px 0;
  margin-bottom: 20px;
  background: rgba(242, 234, 220, 0.9);
  backdrop-filter: blur(14px);
}

.filter-row button {
  color: var(--ink);
}

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

.menu-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.menu-grid article[hidden] {
  display: none;
}

.menu-grid h2 {
  margin-top: 18px;
  font-size: 32px;
}

.daily-builder {
  border-top: 1px solid var(--line);
}

.daily-builder figure {
  height: 520px;
  margin: 0;
}

.special-result.large {
  background: var(--paper-strong);
}

.mobile-dock {
  position: fixed;
  z-index: 30;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 4px;
  background: rgba(23, 18, 14, 0.88);
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(23, 18, 14, 0.36);
}

.mobile-dock a {
  min-height: 52px;
  display: grid;
  place-items: center;
  color: var(--paper-strong);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 900px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    padding: 12px 18px;
  }

  .desktop-nav {
    display: none;
  }

  .header-call {
    padding: 0 14px;
  }

  .brand {
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-shade {
    background:
      linear-gradient(to top, rgba(23, 18, 14, 0.94), rgba(23, 18, 14, 0.28) 68%),
      linear-gradient(90deg, rgba(23, 18, 14, 0.54), rgba(23, 18, 14, 0.12));
  }

  .hero-copy {
    width: calc(100% - 28px);
    padding: 118px 0 198px 14px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .hero-card {
    left: 14px;
    right: 14px;
    bottom: 98px;
    width: auto;
    padding: 16px;
  }

  .hero-card strong {
    font-size: 20px;
  }

  .section {
    width: min(100% - 28px, 720px);
    padding: 72px 0;
  }

  .intro,
  .feature-band,
  .room-story,
  .menu-preview-grid,
  .daily-builder,
  .menu-hero {
    grid-template-columns: 1fr;
  }

  .intro-grid article {
    grid-template-columns: 44px 1fr;
  }

  .feature-band {
    padding: 70px 14px;
  }

  .feature-copy {
    justify-self: start;
  }

  .feature-image,
  .room-story figure,
  .daily-builder figure,
  .menu-photo,
  .menu-hero img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .menu-line {
    min-height: 82px;
  }

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

  .menu-hero {
    width: min(100% - 28px, 720px);
    padding-top: 92px;
  }

  .menu-hero h1 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .filter-row {
    top: 64px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .filter-row button {
    flex: 0 0 auto;
  }

  .mobile-dock {
    display: grid;
  }
}

@media (max-width: 460px) {
  .hero-copy p:not(.kicker),
  .feature-copy p,
  .room-story p,
  .menu-hero p,
  .daily-builder p,
  .visit-panel p {
    font-size: 15px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .button {
    width: 100%;
  }

  .special-tabs button,
  .preset-row button {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
