:root {
  --parchment: #f5eedf;
  --surface: #fbf7ee;
  --ink: #0b231a;
  --moss: #143a2b;
  --tomato: #c9432f;
  --tomato-dark: #9f2f21;
  --ochre: #f2b233;
  --sage: #c8d6b4;
  --mist: #9dc9e5;
  --hairline: #d9cfb8;
  --muted: #5f6757;
  --shadow: 0 24px 70px rgba(20, 58, 43, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 20px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(20, 58, 43, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 58, 43, 0.035) 1px, transparent 1px),
    var(--parchment);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--parchment);
  border-radius: 999px;
}

.concept-bar {
  padding: 9px 18px;
  background: var(--moss);
  color: var(--parchment);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(245, 238, 223, 0.88);
  border-bottom: 1px solid rgba(20, 58, 43, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(136px, 15vw, 188px);
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
}

.site-nav a:hover {
  background: rgba(20, 58, 43, 0.08);
  text-decoration: none;
}

.site-nav .nav-cta {
  background: var(--tomato);
  color: var(--surface);
}

.site-nav .nav-cta:hover {
  background: var(--tomato-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.nav-toggle__line::before {
  transform: translateY(-6px);
}

.nav-toggle__line::after {
  transform: translateY(4px);
}

main {
  overflow: hidden;
}

.hero,
.quick-strip,
.hours-board,
.menu-section,
.booking-path,
.feature-pair,
.gallery-section,
.site-footer {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(38px, 6vw, 76px) 0 28px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 590px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--moss);
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 800;
  line-height: 0.9;
}

.hero__lead {
  max-width: 58ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--primary {
  background: var(--tomato);
  color: var(--surface);
}

.button--primary:hover {
  background: var(--tomato-dark);
}

.button--secondary {
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--moss);
}

.button--secondary:hover {
  background: var(--sage);
}

.button--light {
  background: var(--parchment);
  color: var(--moss);
}

.hero__media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--moss);
  box-shadow: var(--shadow);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 35, 26, 0) 42%, rgba(11, 35, 26, 0.62) 100%);
  content: "";
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.reservation-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: 310px;
  padding: 20px;
  background: rgba(251, 247, 238, 0.94);
  border-radius: 18px;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(11, 35, 26, 0.22);
}

.reservation-card strong {
  color: var(--moss);
  font-size: 1.08rem;
  line-height: 1.25;
}

.reservation-card__label {
  color: var(--tomato);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0 clamp(54px, 8vw, 86px);
}

.quick-card {
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.quick-card strong {
  display: block;
  color: var(--moss);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.05;
}

.quick-card a {
  color: var(--tomato);
  font-weight: 800;
}

.quick-card--accent {
  background: var(--ochre);
  border-color: rgba(11, 35, 26, 0.16);
}

.hours-board {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  padding: clamp(30px, 5vw, 50px);
  background: var(--moss);
  border-radius: 30px;
  color: var(--parchment);
}

.hours-board h2,
.hours-board .eyebrow {
  color: var(--parchment);
}

.hours-board h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
}

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

.hours-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) 1fr;
  gap: 16px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(245, 238, 223, 0.18);
}

.hours-list div.is-today {
  padding-inline: 16px;
  background: rgba(242, 178, 51, 0.18);
  border-radius: 14px;
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  color: rgba(245, 238, 223, 0.78);
}

.menu-section,
.booking-path,
.feature-pair,
.gallery-section {
  padding: clamp(62px, 9vw, 108px) 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading--compact {
  display: block;
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.94;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

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

.menu-card {
  display: grid;
  grid-template-rows: 210px auto;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.menu-card--large {
  grid-column: span 2;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card > div {
  padding: 22px;
}

.menu-card h3,
.feature-tile h3,
.path-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.03;
}

.menu-card p,
.feature-tile p,
.path-grid p {
  color: var(--muted);
}

.menu-card--dark {
  display: flex;
  min-height: 100%;
  background: var(--moss);
  color: var(--parchment);
}

.menu-card--dark h3,
.menu-card--dark .card-label {
  color: var(--parchment);
}

.menu-card--dark p {
  color: rgba(245, 238, 223, 0.76);
}

.price {
  display: inline-block;
  margin-top: 4px;
  color: var(--tomato);
  font-weight: 800;
}

.section-actions {
  margin-top: 24px;
}

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

.path-grid article {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.path-grid a {
  color: var(--tomato);
  font-weight: 800;
}

.step {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  background: var(--ochre);
  border-radius: 50%;
  color: var(--moss);
  font-family: var(--font-display);
  font-weight: 800;
}

.feature-pair__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-tile {
  min-height: 340px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
}

.feature-tile--private {
  background: var(--tomato);
  color: var(--surface);
}

.feature-tile--private h3,
.feature-tile--private .card-label {
  color: var(--surface);
}

.feature-tile--private p {
  color: rgba(251, 247, 238, 0.82);
}

.feature-tile--gift {
  background: var(--sage);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1.05fr;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface);
}

.gallery-grid figure:nth-child(2) {
  margin-top: 56px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  background: rgba(251, 247, 238, 0.9);
  border-radius: 999px;
  color: var(--moss);
  font-size: 0.85rem;
  font-weight: 800;
}

.site-footer {
  margin-top: clamp(70px, 10vw, 120px);
  padding: 34px 0 36px;
  border-top: 1px solid var(--hairline);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
  mix-blend-mode: multiply;
}

.site-footer p {
  margin-bottom: 8px;
  color: var(--muted);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-actions a {
  padding: 9px 12px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-actions a:last-child {
  background: var(--moss);
  color: var(--parchment);
}

.disclaimer {
  max-width: 760px;
  margin-top: 26px;
  font-size: 0.88rem;
}

@media (max-width: 960px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 92px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 16px;
  }

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

  .hero__copy,
  .hero__media {
    min-height: auto;
  }

  .hero__media {
    aspect-ratio: 5 / 4;
  }

  .quick-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours-board,
  .section-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .path-grid,
  .feature-pair__grid {
    grid-template-columns: 1fr;
  }

  .menu-card--large {
    grid-column: auto;
  }

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

  .gallery-grid figure,
  .gallery-grid figure:nth-child(2) {
    min-height: auto;
    margin-top: 0;
    aspect-ratio: 4 / 3;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero,
  .quick-strip,
  .hours-board,
  .menu-section,
  .booking-path,
  .feature-pair,
  .gallery-section,
  .site-footer {
    width: min(100% - 24px, var(--container));
  }

  .concept-bar {
    padding-inline: 12px;
    font-size: 0.72rem;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3.4rem, 17vw, 5.25rem);
  }

  .hero__copy {
    padding: 24px;
    border-radius: 24px;
  }

  .hero__media {
    border-radius: 24px;
  }

  .reservation-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    padding: 16px;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: 140px;
  }

  .hours-board {
    padding: 24px;
    border-radius: 24px;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section-heading h2,
  .hours-board h2 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
  }

  .menu-card {
    grid-template-rows: 190px auto;
  }

  .button {
    width: 100%;
  }
}

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

  .button:hover {
    transform: none;
  }
}
