:root {
  --bg: #f5f0eb;
  --surface: rgba(255, 251, 247, 0.94);
  --ink: #21191d;
  --muted: #6e6167;
  --accent: #b58a5b;
  --accent-dark: #8b6840;
  --line: rgba(139, 104, 64, 0.18);
  --dark: #151114;
  --radius: 20px;
  --shadow: 0 22px 54px rgba(32, 20, 25, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top right, rgba(181, 138, 91, 0.2), transparent 24%),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.56), transparent 18%),
    linear-gradient(180deg, #fbf6f1 0%, var(--bg) 52%, #eee4dc 100%);
  color: var(--ink);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)),
    repeating-linear-gradient(90deg, transparent 0, transparent 110px, rgba(139,104,64,0.03) 110px, rgba(139,104,64,0.03) 111px);
  opacity: 0.55;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.section-pad { padding: clamp(2rem, 4.2vw, 4.8rem) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(19, 15, 18, 0.9);
  border-bottom: 1px solid rgba(255, 239, 225, 0.1);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  object-fit: contain;
  background: transparent;
  padding: 1px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  border-radius: 10px;
  padding: .45rem .68rem;
}

.site-nav {
  display: inline-flex;
  justify-self: end;
  gap: 1rem;
  margin-right: .8rem;
}

.site-nav a {
  color: #f8ede3;
  font-weight: 600;
  opacity: .9;
}

.site-nav a[aria-current="page"] { opacity: 1; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .92rem 1.3rem;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, #8b6840 0%, #c09a68 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(139, 104, 64, .28);
}

.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border: 1px solid rgba(214, 205, 194, 0.8);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid #d6cdc2;
}

.btn-chip {
  background: var(--accent);
  color: #fff;
  min-width: 124px;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(214, 183, 135, 0.22), transparent 28%),
    linear-gradient(135deg, #151114 0%, #24191f 54%, #36272a 100%);
  color: #fff;
}

.hero-grid,
.split-card,
.footer-grid,
.review-grid,
.food-grid,
.why-grid,
.list-grid {
  display: grid;
  gap: 1rem;
}

.hero-grid {
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 .65rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #f0dcc4;
  font-size: .79rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -.03em;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
}

h3 { margin: .3rem 0 .35rem; font-size: 1.15rem; }

.hero-sub {
  margin-top: .9rem;
  color: #e4d7d1;
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero h1,
.hero h2,
.hero p,
.hero .eyebrow {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.15rem;
}

.venue-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.venue-badges span {
  border: 1px solid rgba(255, 234, 206, 0.2);
  background: rgba(255,255,255,0.06);
  color: #f6e4cc;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-image-wrap,
.split-media,
.food-card,
.review-card,
.why-card,
.menu-list-card,
.final-card,
.split-content {
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image-wrap {
  border: 1px solid rgba(255, 244, 231, .18);
  box-shadow: 0 28px 54px rgba(14, 10, 9, .34);
  position: relative;
  border-radius: 26px;
}

.food-card,
.why-card,
.review-card,
.ordering-card,
.final-card,
.menu-list-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,240,232,0.96));
  border: 1px solid rgba(181,138,91,0.18);
}

.menu-list-card .price {
  font-size: 1.02rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.why-card h3,
.food-card h3,
.ordering-card h3 {
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.venue-visual-panel,
.venue-scene-panel,
.venue-tile-image,
.review-shot {
  background:
    radial-gradient(circle at top left, rgba(255, 234, 208, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(107, 76, 49, 0.94), rgba(40, 27, 24, 0.98));
  border: 1px solid rgba(255, 244, 231, .14);
}

.venue-visual-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 420px;
  padding: 16px;
}

.venue-visual-card {
  display: flex;
  align-items: end;
  min-height: 150px;
  border-radius: 18px;
  padding: 18px;
  color: #fff8ef;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.18)),
    radial-gradient(circle at top right, rgba(227, 179, 118, 0.25), transparent 32%),
    rgba(255,255,255,0.05);
}

.venue-visual-card--tall {
  grid-row: 1 / span 2;
}

.venue-scene-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.venue-scene-copy {
  display: grid;
  gap: 10px;
  text-align: center;
  padding: 28px;
  color: #fff6ec;
}

.venue-scene-copy strong {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.02;
}

.venue-scene-copy span,
.venue-tile-image span,
.review-shot span {
  font-size: .84rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 241, 224, 0.84);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 8, 9, 0.48) 0%, rgba(18, 12, 15, 0.28) 55%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.destination-hook,
.location-section {
  background: var(--bg);
}

.split-card {
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split-content {
  padding: 1.8rem;
}

.split-content p { color: var(--muted); }
.contact-block { color: var(--ink) !important; }

.contact-layout { display: grid; gap: 1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.map-card,
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.map-card p,
.contact-form-card p { color: #63574d; }

.map-placeholder {
  margin: 0.9rem 0;
  min-height: 200px;
  border-radius: 12px;
  border: 1px dashed #c8b59d;
  background: repeating-linear-gradient(
    -45deg,
    #f5ecdf,
    #f5ecdf 14px,
    #f1e4d2 14px,
    #f1e4d2 28px
  );
  display: grid;
  place-items: center;
  color: #756659;
  font-weight: 700;
}

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

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 650;
  color: #2e2925;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9c9b4;
  border-radius: 10px;
  background: #fffdf9;
  color: #1f1a17;
  font: inherit;
  padding: 0.7rem 0.8rem;
}

.trust-section {
  background: var(--bg);
}

.ordering-options {
  background: var(--bg);
}

.ordering-sub {
  color: var(--muted);
  margin-top: -0.25rem;
  margin-bottom: 1rem;
}

.ordering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ordering-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.ordering-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.ordering-card h3 {
  margin-top: 0.75rem;
}

.ordering-card p {
  color: var(--muted);
}

.toast-connect-link {
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
}

.toast-connect-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.ordering-brand-logo {
  width: 96px !important;
  height: 96px;
  object-fit: cover;
  border-radius: 18px !important;
  margin-bottom: 0.5rem;
}

.payment-note {
  margin-top: .6rem;
  font-size: .9rem;
}

.review-grid { grid-template-columns: repeat(3, 1fr); margin-top: .8rem; }

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.review-card p { margin: 0; }
.review-card span { display: block; margin-top: .7rem; font-weight: 600; color: #6f6258; }

.review-shot-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.review-shot-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e5d3bf;
}

.review-shot {
  height: 240px;
  border-radius: 14px;
  display: grid;
  place-items: end start;
  padding: 16px;
}

.featured-food { background: var(--bg); }
.food-grid { grid-template-columns: repeat(2, 1fr); }

.food-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .7rem;
  box-shadow: var(--shadow);
}

.food-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.venue-tile-image {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  display: grid;
  place-items: end start;
  padding: 16px;
  margin-bottom: 12px;
}

.venue-tile-image--large {
  height: 320px;
  margin-bottom: 0;
}

.food-card p { color: #60554d; }
.center-cta { text-align: center; margin-top: 1rem; }

.why-grid { grid-template-columns: repeat(4, 1fr); }

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.why-card p { color: #665a51; }

.final-cta { background: #151217; color: #fff; }
.final-card {
  text-align: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  padding: 1.35rem;
}

.final-card p { color: #f2ddd0; }
.final-card h2 { color: #fff; }

.bonus-cta {
  background: var(--bg);
}

.bonus-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  text-align: center;
}

.bonus-card p {
  color: var(--muted);
}

.menu-page h1 { margin: 0; }
.menu-lead { color: #65584f; margin-top: .6rem; }
.menu-images {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.menu-images img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #dfcfb8;
  cursor: zoom-in;
}

.menu-lists h2 { margin: 1.5rem 0 .6rem; }

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

.menu-list-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.price {
  color: var(--accent);
  font-weight: 800;
  margin: .4rem 0 .7rem;
}

.site-footer {
  background: #121212;
  color: #f4e3cf;
  padding: 2rem 0 1rem;
}

.footer-grid {
  grid-template-columns: 1fr auto auto;
  align-items: start;
}

.footer-grid a {
  display: block;
  color: #f7e8d6;
  margin-bottom: .4rem;
}

.footer-brand {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.copyright {
  margin: 1rem 0 0;
  text-align: center;
  color: #d7c2ab;
  font-size: .92rem;
}

.direct-only[hidden] { display: none !important; }

.menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.menu-lightbox[hidden] {
  display: none !important;
}

.menu-lightbox img {
  max-width: 96vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  transform-origin: center center;
  transition: transform .12s ease;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  cursor: zoom-in;
}

.menu-lightbox.is-zoomed img {
  cursor: grab;
}

.menu-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 1020px) {
  .hero-grid,
  .split-card,
  .footer-grid,
  .food-grid,
  .why-grid,
  .review-grid,
  .ordering-grid,
  .list-grid,
  .menu-images,
  .contact-grid { grid-template-columns: 1fr 1fr; }

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

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    grid-template-areas:
      "brand toggle cta"
      "nav nav nav";
    gap: .6rem;
    padding: .58rem 0;
  }
  .brand { grid-area: brand; }
  .nav-toggle { display: inline-flex; grid-area: toggle; }
  .header-inner > .order-link { grid-area: cta; justify-self: end; }

  .site-nav {
    grid-area: nav;
    display: none;
    margin: 0;
    justify-self: start;
    width: 100%;
    gap: .85rem;
    flex-wrap: wrap;
  }
  .site-nav.is-open { display: inline-flex; }

  .hero-grid,
  .split-card,
  .contact-grid,
  .food-grid,
  .why-grid,
  .review-grid,
  .ordering-grid,
  .list-grid,
  .menu-images,
  .review-shot-strip { grid-template-columns: 1fr; }

  .hero-image-wrap img,
  .split-media img,
  .review-shot-strip img,
  .food-card img { height: auto; min-height: 0; }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name { font-size: .92rem; }
}
