:root {
  --ink: #201815;
  --coal: #151313;
  --paper: #fff9ef;
  --cream: #f3e2c5;
  --linen: #fbf0de;
  --olive: #3f654d;
  --olive-dark: #263f33;
  --terracotta: #b84d34;
  --tomato: #d4583f;
  --brass: #c79545;
  --mist: #c7d7d2;
  --white: #ffffff;
  --muted: rgba(32, 24, 21, 0.66);
  --shadow: 0 24px 90px rgba(26, 19, 16, 0.18);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: var(--tomato);
  color: var(--white);
}

.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: var(--coal);
  transform: scaleY(0);
  transform-origin: bottom;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(21, 19, 19, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 239, 0.92);
  color: var(--ink);
  box-shadow: 0 16px 60px rgba(32, 24, 21, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--brass);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-copy small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.main-nav a,
.header-cta,
.button,
.text-link,
.filter-button,
.segmented button {
  touch-action: manipulation;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0.78;
  transition: background 160ms ease, opacity 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a[aria-current="page"] {
  background: rgba(184, 77, 52, 0.1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 0 16px;
  color: var(--ink);
  background: var(--cream);
}

.header-cta svg,
.button svg,
.text-link svg,
.contact-list svg,
.aside-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle i {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.nav-toggle i::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--coal);
}

.sub-hero {
  min-height: 72svh;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  opacity: 0.84;
  transform: scale(1.04);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 19, 19, 0.92), rgba(21, 19, 19, 0.42) 48%, rgba(21, 19, 19, 0.18)),
    linear-gradient(0deg, rgba(21, 19, 19, 0.82), rgba(21, 19, 19, 0) 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 136px 0 9svh;
}

.hero-inner.narrow {
  max-width: 900px;
  margin-left: max(16px, calc((100vw - var(--max)) / 2));
  margin-right: 16px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7.4vw, 6.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.8vw, 5.1rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.34rem);
}

.hero-actions,
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  padding: 0 18px;
  min-width: 148px;
}

.button.primary {
  color: var(--white);
  background: var(--terracotta);
  box-shadow: 0 18px 44px rgba(184, 77, 52, 0.32);
}

.button.secondary {
  color: var(--white);
  background: var(--olive);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.hero-notes {
  margin-top: 20px;
}

.hero-notes span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.marquee-band {
  overflow: hidden;
  color: var(--cream);
  background: var(--olive-dark);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 18px 0;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.marquee-track span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2,
.story-copy h2,
.visit-copy h2,
.rhythm-section h2,
.location-section h2,
.tasting-section h2,
.booking-aside h2 {
  max-width: 820px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--olive);
  font-weight: 900;
}

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

.dish-card {
  overflow: hidden;
  background: var(--linen);
  border: 1px solid rgba(32, 24, 21, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 55px rgba(32, 24, 21, 0.08);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish-card div {
  padding: 22px;
}

.dish-tag,
.menu-item span,
.hours-board span,
.map-panel span,
.rhythm-line span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dish-card p,
.story-copy p,
.visit-copy p,
.menu-item p,
.map-panel p,
.booking-aside p {
  color: var(--muted);
}

.fire-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.story-copy {
  position: sticky;
  top: 116px;
}

.story-rail {
  display: grid;
  gap: 14px;
}

.story-rail article,
.menu-item,
.hours-board,
.map-panel,
.booking-form,
.booking-aside,
.tasting-section {
  border: 1px solid rgba(32, 24, 21, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.story-rail article {
  min-height: 220px;
  padding: 28px;
  background: var(--coal);
  color: var(--white);
  overflow: hidden;
}

.story-rail article:nth-child(2) {
  background: var(--terracotta);
}

.story-rail article:nth-child(3) {
  background: var(--olive-dark);
}

.story-rail article:nth-child(4) {
  background: #294f5c;
}

.story-rail article span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--brass);
  font-weight: 900;
}

.story-rail article p {
  color: rgba(255, 255, 255, 0.78);
}

.visit-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-stack img {
  position: absolute;
  width: 72%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  top: 0;
  left: 0;
  aspect-ratio: 3 / 4;
}

.image-stack img:last-child {
  right: 0;
  bottom: 0;
  aspect-ratio: 4 / 3;
  border: 10px solid var(--paper);
}

.quick-hours {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.quick-hours span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(32, 24, 21, 0.12);
}

.menu-section {
  padding-top: 54px;
}

.menu-toolbar {
  position: sticky;
  top: 96px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  margin-bottom: 24px;
  background: rgba(255, 249, 239, 0.84);
  border: 1px solid rgba(32, 24, 21, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.filter-button,
.segmented button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(32, 24, 21, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  font-weight: 850;
}

.filter-button.is-active,
.segmented button.is-active {
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  min-height: 172px;
  background: var(--linen);
}

.menu-item.featured {
  background: var(--coal);
  color: var(--white);
}

.menu-item.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.menu-item h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.menu-item strong {
  color: var(--brass);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
}

.menu-item.is-hidden {
  display: none;
}

.tasting-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.72fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(34px, 5vw, 54px);
  margin-bottom: clamp(76px, 10vw, 132px);
  color: var(--white);
  background: var(--olive-dark);
}

.tasting-list {
  display: grid;
  gap: 8px;
}

.tasting-list span {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hours-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 34px;
}

.hours-board {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--linen);
}

.hours-board div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(32, 24, 21, 0.12);
}

.hours-board div:last-child {
  border-bottom: 0;
}

.hours-board strong {
  text-align: right;
}

.rhythm-section {
  display: grid;
  gap: 28px;
}

.rhythm-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rhythm-line::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: var(--line-progress, 0%);
  height: 2px;
  background: var(--terracotta);
}

.rhythm-line article {
  position: relative;
  padding: 34px 22px 0 0;
}

.rhythm-line article::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 22px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 1px rgba(32, 24, 21, 0.14);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.map-panel {
  min-height: 420px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(rgba(21, 19, 19, 0.2), rgba(21, 19, 19, 0.82)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1000&q=82") center/cover;
}

.map-panel strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.map-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list,
.aside-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.aside-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(32, 24, 21, 0.12);
  color: var(--olive-dark);
  font-weight: 800;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.62fr);
  gap: 24px;
  align-items: start;
}

.booking-form,
.booking-aside {
  padding: clamp(24px, 4vw, 36px);
  background: var(--linen);
  box-shadow: 0 16px 55px rgba(32, 24, 21, 0.08);
}

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

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--olive-dark);
  font-weight: 850;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  padding: 0 0 10px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(32, 24, 21, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(184, 77, 52, 0.12);
}

.segmented,
.choice-grid {
  display: grid;
  gap: 8px;
}

.segmented {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid label {
  margin: 0;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 12px;
  border: 1px solid rgba(32, 24, 21, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.choice-grid input:checked + span {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--olive-dark);
  font-weight: 800;
}

.booking-aside {
  position: sticky;
  top: 112px;
  background: var(--coal);
  color: var(--white);
}

.booking-aside p {
  color: rgba(255, 255, 255, 0.72);
}

.booking-aside .aside-list span {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--cream);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 16px;
  padding: 28px;
  color: var(--white);
  background: var(--coal);
  border-radius: var(--radius);
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.footer-brand .brand-mark {
  color: var(--brass);
}

.split-words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.split-words .word > span {
  display: inline-block;
  will-change: transform;
}

.reveal-up {
  will-change: transform, opacity;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    inset: 92px 16px auto;
    display: grid;
    justify-items: stretch;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(21, 19, 19, 0.96);
    color: var(--white);
    box-shadow: var(--shadow);
    transform-origin: top right;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

  .main-nav.is-open {
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner,
  .hero-inner.narrow {
    width: min(calc(100% - 32px), var(--max));
    margin-inline: auto;
    padding-top: 128px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 5rem);
  }

  .section-heading,
  .fire-story,
  .visit-preview,
  .hours-layout,
  .location-section,
  .booking-layout,
  .tasting-section {
    grid-template-columns: 1fr;
  }

  .story-copy,
  .booking-aside {
    position: static;
  }

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

  .rhythm-line {
    grid-template-columns: 1fr;
  }

  .rhythm-line::before {
    display: none;
  }

  .image-stack {
    min-height: 460px;
  }

  .tasting-section {
    margin-bottom: 90px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand-copy strong {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-copy small {
    display: none;
  }

  .hero,
  .sub-hero {
    min-height: 82svh;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(21, 19, 19, 0.9), rgba(21, 19, 19, 0.45)),
      linear-gradient(0deg, rgba(21, 19, 19, 0.88), rgba(21, 19, 19, 0.06) 60%);
  }

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

  .section {
    width: min(calc(100% - 24px), var(--max));
    padding: 68px 0;
  }

  .quick-hours span,
  .hours-board div,
  .menu-item {
    display: grid;
    text-align: left;
  }

  .hours-board strong {
    text-align: left;
  }

  .image-stack {
    min-height: 360px;
  }

  .form-grid,
  .segmented,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    width: calc(100% - 24px);
    padding: 22px;
  }
}

@media (max-height: 760px) and (min-width: 760px) {
  .hero-inner {
    padding-top: 112px;
    padding-bottom: 6svh;
  }

  h1 {
    max-width: 880px;
    font-size: clamp(3rem, 6.2vw, 5.35rem);
  }

  .hero-copy {
    max-width: 690px;
    font-size: 1.08rem;
  }

  .hero-notes {
    display: none;
  }
}

@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;
  }
}
