:root {
  --ink: #1a1815;
  --paper: #f7f0e7;
  --paper-deep: #ebe0d2;
  --tomato: #b9432f;
  --olive: #53633c;
  --sage: #a5b59a;
  --wine: #4a1d2a;
  --brass: #d7a94f;
  --cream: rgba(255, 250, 242, 0.86);
  --shadow: 0 24px 80px rgba(26, 24, 21, 0.2);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.cursor-light {
  position: fixed;
  z-index: 5;
  width: 26rem;
  height: 26rem;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0.28;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(215, 169, 79, 0.32), rgba(215, 169, 79, 0) 62%);
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: #fff8ed;
  transition: background 300ms ease, color 300ms ease, box-shadow 300ms ease, padding 300ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.7rem;
  background: rgba(247, 240, 231, 0.86);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(26, 24, 21, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.nav-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.3rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.nav {
  gap: clamp(1rem, 3vw, 2.2rem);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a,
.footer a {
  position: relative;
}

.nav a::after,
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.nav a:hover::after,
.footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  justify-self: end;
  min-height: 2.7rem;
  padding: 0 1.1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff8ed;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(var(--parallax, 0));
  filter: saturate(0.96) contrast(1.04);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(19, 13, 10, 0.34), rgba(19, 13, 10, 0.12) 42%, rgba(19, 13, 10, 0.58)),
    linear-gradient(0deg, rgba(19, 13, 10, 0.72), rgba(19, 13, 10, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 2rem));
  margin-left: clamp(1rem, 7vw, 6rem);
  padding-top: 5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
}

h1 {
  max-width: 7ch;
  font-size: clamp(4.5rem, 15vw, 12rem);
}

h2 {
  font-size: clamp(2.6rem, 7vw, 6.2rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.hero-copy {
  max-width: 35rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 248, 237, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  background: var(--tomato);
  color: #fff8ed;
  box-shadow: 0 16px 40px rgba(185, 67, 47, 0.32);
}

.button.ghost {
  border-color: rgba(255, 248, 237, 0.7);
  color: #fff8ed;
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 5vw, 3rem);
  z-index: 1;
  width: min(18rem, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 248, 237, 0.28);
  border-radius: 8px;
  background: rgba(21, 18, 15, 0.36);
  backdrop-filter: blur(14px);
}

.hero-note span {
  display: block;
  color: rgba(255, 248, 237, 0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-note strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.2rem;
}

.ticker {
  overflow: hidden;
  background: var(--wine);
  color: #fff8ed;
  padding: 0.9rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  white-space: nowrap;
}

.section,
.feature,
.reservation-band,
.visit {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem);
}

.section-heading {
  max-width: 980px;
}

.section-heading h2 {
  max-width: 14ch;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: rgba(26, 24, 21, 0.18);
  border: 1px solid rgba(26, 24, 21, 0.18);
}

.menu-card {
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 2rem);
  background: var(--paper);
  transition: background 280ms ease, color 280ms ease, transform 280ms ease;
}

.menu-card:hover {
  background: var(--olive);
  color: #fff8ed;
  transform: translateY(-0.45rem);
}

.course {
  width: fit-content;
  padding: 0.35rem 0.6rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-card p,
.feature-copy p,
.reservation-copy p,
.visit-panel p,
dd {
  color: rgba(26, 24, 21, 0.68);
  line-height: 1.7;
}

.menu-card:hover p {
  color: rgba(255, 248, 237, 0.75);
}

.menu-card strong {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.feature,
.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  background: #fdf8ef;
}

.feature-media,
.visit-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-media img,
.visit-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-media:hover img,
.visit-image:hover img {
  transform: scale(1.06);
}

.feature-copy {
  max-width: 43rem;
}

.feature-copy p,
.reservation-copy p,
.visit-panel p {
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: rgba(26, 24, 21, 0.16);
}

.stats span {
  display: grid;
  gap: 0.35rem;
  min-height: 7rem;
  padding: 1rem;
  background: #fdf8ef;
}

.stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.reservation-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  background: var(--ink);
  color: #fff8ed;
}

.reservation-copy p {
  color: rgba(255, 248, 237, 0.72);
}

.reserve-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 237, 0.08);
}

.reserve-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 248, 237, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reserve-form input,
.reserve-form select {
  min-width: 0;
  min-height: 3.2rem;
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 999px;
  padding: 0 0.95rem;
  background: rgba(255, 248, 237, 0.95);
  color: var(--ink);
}

.reserve-form .button {
  align-self: end;
  width: 100%;
  border: 0;
}

.visit {
  grid-template-columns: minmax(20rem, 0.82fr) minmax(0, 1fr);
  background: var(--paper-deep);
}

.visit-image {
  order: 2;
}

.visit-panel {
  max-width: 48rem;
}

dl {
  display: grid;
  gap: 1px;
  margin: 2rem 0 0;
  background: rgba(26, 24, 21, 0.15);
}

dl div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  background: var(--paper-deep);
}

dt {
  font-weight: 900;
}

dd {
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  background: var(--wine);
  color: #fff8ed;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  filter: blur(10px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 720ms ease;
}

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

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .menu-grid,
  .feature,
  .reservation-band,
  .visit,
  .reserve-form {
    grid-template-columns: 1fr 1fr;
  }

  .menu-card {
    min-height: 18rem;
  }

  .feature,
  .reservation-band,
  .visit {
    align-items: start;
  }

  .feature-copy,
  .reservation-copy,
  .visit-panel {
    grid-column: 1 / -1;
  }

  .feature-media,
  .visit-image {
    grid-column: 1 / -1;
  }

  .visit-image {
    order: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 0.8rem;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-action {
    min-height: 2.4rem;
    padding-inline: 0.9rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    margin-inline: 1rem;
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(4.2rem, 22vw, 7.5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    margin: 1rem;
  }

  .menu-grid,
  .reserve-form,
  .stats {
    grid-template-columns: 1fr;
  }

  .feature,
  .reservation-band,
  .visit {
    grid-template-columns: 1fr;
  }

  .reserve-form {
    padding: 0.8rem;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .footer {
    flex-direction: column;
  }
}

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

  .cursor-light {
    display: none;
  }

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