:root {
  --ink: #15110d;
  --black: #050504;
  --green: #173e2a;
  --green-2: #265c3d;
  --leaf: #6f8b48;
  --red: #c93b2a;
  --red-dark: #9d2b20;
  --gold: #d0a246;
  --paper: #f7f0e4;
  --paper-2: #ede0cd;
  --card: #fffaf2;
  --muted: #665c50;
  --line: rgba(21, 17, 13, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.section {
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  font-weight: 700;
  line-height: 1.03;
}

.lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.78rem 1.1rem;
  font-weight: 900;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button.primary {
  background: var(--red);
  color: #fff;
}

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

.button.dark {
  background: var(--ink);
  color: var(--paper);
}

.button.light {
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(21, 17, 13, 0.14);
  background: rgba(255, 250, 242, 0.76);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.button.rewards-points-chip {
  display: grid;
  gap: 0.05rem;
  min-width: 86px;
  padding-block: 0.48rem;
  line-height: 1;
}

.button.rewards-points-chip span {
  font-size: 1rem;
}

.button.rewards-points-chip small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(21, 17, 13, 0.1);
  background: rgba(255, 250, 242, 0.95);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 76px;
}

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

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.87rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  padding: 0.6rem 0.1rem;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--card);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}

.hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 300%;
  height: 100%;
  transform: translateX(calc(var(--hero-index, 0) * -33.3333%));
  transition: transform 800ms ease;
}

.hero-track img {
  width: 33.3333%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.88), rgba(5, 5, 4, 0.52) 48%, rgba(5, 5, 4, 0.12)),
    linear-gradient(0deg, rgba(5, 5, 4, 0.75), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 86vh;
  max-width: 760px;
  padding: 7.5rem 0 8rem;
}

.hero .eyebrow {
  color: #e7bd65;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 11vw, 9.8rem);
  font-weight: 700;
  line-height: 0.88;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-status {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  color: rgba(255, 250, 242, 0.9);
}

.hero-status span {
  color: #f1cf83;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-status strong {
  font-size: 0.95rem;
}

.intro-band {
  background: var(--green);
  color: #fff;
}

.intro-band .eyebrow {
  color: #f0c979;
}

.intro-band .lead {
  color: rgba(255, 250, 242, 0.78);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
}

.intro-copy {
  max-width: 650px;
}

.intro-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.22);
}

.menu-price {
  display: none !important;
}

.dish-info > span {
  display: none !important;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-head > div {
  max-width: 760px;
}

.featured-section {
  background: var(--paper);
}

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

.dish-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.dish-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.dish-card:hover img {
  transform: scale(1.035);
}

.dish-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 4, 0.92), rgba(5, 5, 4, 0.12) 62%);
}

.dish-info {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.dish-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.1;
}

.dish-info p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.menu-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.menu-copy {
  position: sticky;
  top: 104px;
}

.menu-browser {
  min-width: 0;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.menu-tab {
  min-height: 40px;
  border: 1px solid rgba(21, 17, 13, 0.13);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.66);
  color: var(--ink);
  cursor: pointer;
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.menu-tab:hover,
.menu-tab.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.menu-list {
  display: grid;
  gap: 0.7rem;
}

.menu-category-note {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.menu-item {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(21, 17, 13, 0.12);
  border-radius: 8px;
  background: var(--card);
  padding: 0.65rem;
}

.menu-item img {
  width: 94px;
  height: 78px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--paper-2);
}

.menu-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  line-height: 1.2;
}

.menu-item p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.story-section {
  background: var(--black);
  color: #fff;
}

.story-section .eyebrow {
  color: #f0c979;
}

.story-section .lead {
  color: rgba(255, 250, 242, 0.75);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story-media {
  position: relative;
  min-height: 560px;
}

.story-main,
.story-side {
  position: absolute;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.story-main {
  inset: 0 12% 16% 0;
  width: 88%;
  height: 84%;
}

.story-side {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 48%;
  border: 8px solid var(--black);
}

.service-section {
  background: var(--paper);
}

.reviews-section {
  background:
    linear-gradient(90deg, rgba(23, 62, 42, 0.1), transparent 34%),
    var(--paper);
}

.review-section {
  --review-height: clamp(340px, 32vw, 390px);
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: stretch;
}

.review-intro {
  display: grid;
  grid-template-rows: 1fr 140px;
  align-content: space-between;
  min-height: 0;
  height: var(--review-height);
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.review-intro > div {
  padding: clamp(1.1rem, 3vw, 1.65rem);
}

.review-intro .title {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.review-intro .eyebrow {
  color: #f0c979;
}

.review-intro .lead {
  color: rgba(255, 250, 242, 0.76);
}

.review-intro img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.review-stage {
  position: relative;
  display: grid;
  align-content: stretch;
  gap: 0.85rem;
}

.review-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.review-carousel {
  position: relative;
  height: var(--review-height);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 62, 42, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(237, 224, 205, 0.72)),
    var(--card);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(21, 17, 13, 0.08);
}

.review-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 1.1rem;
  padding: clamp(1.4rem, 5vw, 3rem);
  padding-right: clamp(1.4rem, 12vw, 8rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.review-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.stars {
  color: var(--red-dark);
  letter-spacing: 0.08em;
}

.review-slide blockquote {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.16;
}

.review-slide p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.review-dots {
  display: flex;
  gap: 0.45rem;
  padding-left: 0.15rem;
}

.review-dots button {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 17, 13, 0.18);
  cursor: pointer;
}

.review-dots button.active {
  background: var(--green);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 1.1rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.service-card p {
  min-height: 4.5rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--red-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catering-section {
  background: var(--paper-2);
}

.catering-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.catering-copy {
  position: sticky;
  top: 110px;
}

.catering-prompt {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}

.catering-prompt span {
  color: var(--red-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catering-prompt p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.catering-form {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.form-group {
  display: grid;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(21, 17, 13, 0.1);
  padding-bottom: 1rem;
}

.form-group:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.form-group h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
}

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

.catering-form label,
.wide-field {
  display: grid;
  gap: 0.42rem;
}

.catering-form label > span,
.wide-field > span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.catering-form input,
.catering-form select,
.catering-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 17, 13, 0.16);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.82rem 0.9rem;
}

.catering-form textarea {
  resize: vertical;
}

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

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

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 50px;
  border: 1px solid rgba(21, 17, 13, 0.14);
  border-radius: 8px;
  background: rgba(247, 240, 228, 0.72);
  cursor: pointer;
  padding: 0.75rem;
}

.choice-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.choice-card span {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-submit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-submit-row a {
  color: var(--red-dark);
  font-weight: 900;
}

.rewards-section {
  background: var(--black);
  color: #fff;
}

.rewards-section .eyebrow {
  color: #f0c979;
}

.rewards-section .lead {
  color: rgba(255, 250, 242, 0.76);
}

.rewards-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.reward-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.reward-preview {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: var(--green);
}

.reward-preview img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.reward-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 4, 0.04), rgba(5, 5, 4, 0.62));
}

.reward-ticket {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  width: min(240px, calc(100% - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.reward-ticket span,
.reward-ticket b {
  color: var(--muted);
  font-weight: 900;
}

.reward-ticket span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reward-ticket strong {
  margin: 0.25rem 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 0.95;
}

.rewards-page {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(247, 240, 228, 0.96), rgba(237, 224, 205, 0.88)),
    var(--paper);
}

.rewards-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.74fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.rewards-page-copy {
  max-width: 650px;
}

.benefit-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.benefit-list article {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  padding: 1rem;
}

.benefit-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.rewards-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 30px 70px rgba(21, 17, 13, 0.16);
}

.rewards-card h2 {
  margin: 0.35rem 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

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

.rewards-form {
  display: none;
}

.rewards-form.active {
  display: grid;
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-group label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field-group input {
  width: 100%;
  border: 1px solid rgba(21, 17, 13, 0.16);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.9rem;
}

.rewards-status {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.9rem 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.rewards-status[data-tone="success"] {
  border-color: rgba(23, 62, 42, 0.24);
  background: rgba(23, 62, 42, 0.08);
  color: var(--green);
}

.rewards-status[data-tone="error"] {
  border-color: rgba(201, 59, 42, 0.24);
  background: rgba(201, 59, 42, 0.08);
  color: var(--red-dark);
}

.rewards-status[data-tone="info"] {
  background: rgba(208, 162, 70, 0.12);
  color: var(--muted);
}

.points-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.25rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 1.1rem;
}

.points-panel span {
  color: var(--muted);
  font-weight: 900;
}

.points-panel strong {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-section {
  background: var(--green);
  color: #fff;
}

.gallery-section .eyebrow {
  color: #f0c979;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  grid-auto-rows: 230px;
  gap: 0.75rem;
}

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

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.visit-section {
  background: var(--paper);
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(280px, 0.5fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.visit-copy {
  min-width: 0;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hours-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: 1.25rem;
}

.hours-panel h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.hours-panel dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.hours-panel dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(21, 17, 13, 0.1);
  padding-bottom: 0.75rem;
}

.hours-panel dt {
  font-weight: 900;
}

.hours-panel dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.hours-panel p {
  margin: 1.1rem 0 0;
  color: var(--green);
  font-weight: 900;
  line-height: 1.7;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.contact-section {
  background: var(--green);
  color: #fff;
}

.contact-section .eyebrow {
  color: #f0c979;
}

.contact-section .lead {
  color: rgba(255, 250, 242, 0.76);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-links {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: #f0c979;
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(5, 5, 4, 0.28);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 7px;
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.9rem;
}

.contact-form textarea {
  resize: vertical;
}

.message-field,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: start;
}

.site-footer {
  background: var(--black);
  color: rgba(255, 250, 242, 0.72);
  padding: 56px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(130px, 0.6fr));
  gap: 1.4rem;
}

.footer-logo {
  max-width: 210px;
  margin-bottom: 1rem;
  filter: invert(1) brightness(2.3);
}

.site-footer h4 {
  margin: 0 0 0.8rem;
  color: #fff;
}

.site-footer a {
  display: block;
  margin: 0 0 0.5rem;
}

.site-footer a:hover {
  color: #f0c979;
}

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

  .brand {
    width: 178px;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    border-bottom: 1px solid var(--line);
    background: var(--card);
    padding: 1rem 20px;
  }

  body.menu-open .nav-links {
    display: grid;
  }

  .nav-actions {
    justify-content: end;
  }

  .nav-actions .button.ghost {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .intro-grid,
  .menu-shell,
  .story-grid,
  .review-section,
  .catering-layout,
  .rewards-cta,
  .rewards-shell,
  .visit-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-copy,
  .catering-copy,
  .contact-copy {
    position: static;
  }

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

  .story-media {
    min-height: 440px;
  }

  .rewards-page {
    align-items: start;
  }

  .review-section {
    --review-height: auto;
  }

  .review-intro,
  .review-carousel {
    height: auto;
  }

  .review-intro {
    grid-template-rows: auto 180px;
  }

  .review-carousel {
    min-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

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

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

  .section {
    padding: 62px 0;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 6.8rem;
  }

  .hero-status {
    right: 14px;
    left: 14px;
    bottom: 18px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .featured-grid,
  .service-grid,
  .gallery-grid,
  .contact-form,
  .form-row,
  .choice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    display: grid;
    justify-items: start;
  }

  .dish-card,
  .dish-card img {
    min-height: 300px;
  }

  .menu-item {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .menu-item img {
    width: 78px;
    height: 74px;
  }

  .story-media {
    min-height: auto;
  }

  .story-main,
  .story-side {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border: 0;
  }

  .story-media {
    display: grid;
    gap: 0.75rem;
  }

  .review-carousel {
    min-height: 320px;
  }

  .review-slide {
    padding-right: clamp(1.4rem, 5vw, 3rem);
  }

  .reward-preview,
  .reward-preview img {
    min-height: 300px;
  }

  .hours-panel dl div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}
