:root {
  --ink: #072b22;
  --muted: #5f746c;
  --paper: #eef3e6;
  --panel: #fff8ed;
  --line: #d7c0a7;
  --charcoal: #021c15;
  --tomato: #c82936;
  --mint: #063f31;
  --saffron: #b89074;
  --cream: #e4d7c8;
  --logo-green: #003f31;
  --logo-deep: #002a21;
  --logo-soft: #0b5644;
  --logo-gold: #b89074;
  --logo-blush: #e4d7c8;
  --shadow: 0 22px 58px rgba(0, 63, 49, 0.2);
  --glow: 0 0 0 1px rgba(184, 144, 116, 0.35), 0 18px 48px rgba(0, 63, 49, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(0, 63, 49, 0.08), transparent 320px),
    linear-gradient(180deg, var(--paper) 0%, #fff8ed 48%, #ffffff 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.scroll-progress {
  position: fixed;
  z-index: 100;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tomato), var(--logo-gold), var(--logo-green));
  box-shadow: 0 0 18px rgba(217, 54, 63, 0.38);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 12px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(0, 63, 49, 0.99), rgba(0, 42, 33, 0.98)),
    var(--logo-green);
  border-bottom: 1px solid rgba(199, 160, 123, 0.34);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(2, 41, 31, 0.2);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  isolation: isolate;
  padding: 7px 10px 7px 0;
}
.brand::before {
  content: "";
  position: absolute;
  inset: 1px -8px 1px -10px;
  z-index: -1;
  border: 1px solid rgba(199, 160, 123, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(238, 224, 209, 0.09), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: scaleX(0.94);
  transform-origin: left;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.brand:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.brand-logo {
  width: clamp(172px, 19vw, 260px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 10px 13px;
  color: var(--logo-blush);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}
.main-nav a:hover { background: rgba(199, 160, 123, 0.16); color: #fff; }
.main-nav .nav-cta {
  color: var(--logo-deep);
  background: linear-gradient(135deg, var(--logo-blush), #d9c4af);
  box-shadow: inset 0 -4px 0 var(--tomato);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(199, 160, 123, 0.55);
  border-radius: 8px;
  background: var(--cream);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section { padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 72px); }
.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: 28px;
  padding: clamp(70px, 9vw, 122px) clamp(18px, 5vw, 72px) clamp(54px, 8vw, 94px);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(228, 215, 200, 0.22) 45%, transparent 53% 100%),
    radial-gradient(circle at 72% 28%, rgba(184, 144, 116, 0.18), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: heroSweep 8s ease-in-out infinite;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 42, 33, 0.97), rgba(0, 63, 49, 0.72), rgba(0, 63, 49, 0.2)),
    url("unnamed%20(9).webp") center/cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 24vh;
  background: linear-gradient(180deg, transparent, rgba(2, 41, 31, 0.76));
}
.hero-copy { max-width: 860px; }
.eyebrow {
  margin: 0 0 13px;
  color: var(--logo-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
h1, h2, h3, p { letter-spacing: 0; }
h1, h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}
h1 { font-size: clamp(42px, 7vw, 88px); max-width: 980px; }
h2 { font-size: clamp(30px, 4.4vw, 56px); max-width: 880px; }
h3 { margin: 0 0 10px; font-size: 21px; }
.hero-text, .section-copy p, .section-heading p, .reservation-copy p, .contact-intro p, .event-card p {
  color: inherit;
  max-width: 690px;
  font-size: 18px;
  line-height: 1.75;
}
.hero-text { color: rgba(255,255,255,0.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.34) 48%, transparent 60% 100%);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:hover::after { transform: translateX(130%); }
.btn.primary { color: #fff; background: linear-gradient(135deg, var(--logo-green), var(--logo-deep) 58%, #7d1f26); }
.btn.primary { color: var(--logo-blush); background: linear-gradient(135deg, var(--logo-green), var(--logo-deep)); box-shadow: inset 0 -4px 0 rgba(200, 41, 54, 0.84); }
.btn.secondary { color: var(--logo-deep); background: linear-gradient(135deg, #fffdf8, var(--logo-blush)); }
.btn.secondary.dark { color: #fff; background: var(--charcoal); }
.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--logo-green);
  font-weight: 900;
}
.hero-panel, .info-strip article, .promise-card, .menu-category, .contact-form, .contact-details, .event-card, .review-card, .menu-callout {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-panel {
  align-self: end;
  padding: 24px;
  color: var(--ink);
  border-color: rgba(199, 160, 123, 0.58);
  box-shadow: var(--glow);
  animation: softFloat 5.8s ease-in-out infinite;
}
.ambience-gif {
  height: 168px;
  margin-bottom: 20px;
  border: 1px solid rgba(199, 160, 123, 0.48);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(4, 63, 49, 0.2);
}
.hero-panel strong { display: block; font-size: 26px; }
.hero-panel span { display: block; margin-top: 6px; color: #9d2730; font-weight: 900; }
.hero-panel p { color: var(--muted); line-height: 1.6; }

.quick-info { padding-top: 24px; padding-bottom: 24px; background: linear-gradient(180deg, #fff8ed, #eef3e6); }
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.info-strip article { padding: 24px; }
.info-strip strong { display: block; color: var(--logo-green); font-size: 32px; }
.info-strip span { color: var(--muted); font-weight: 800; }

.split-section, .sub-hero, .contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}
.section-copy p, .section-heading p, .reservation-copy p, .contact-intro p, .event-card p { color: var(--muted); }
.photo-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 16px;
  min-height: 520px;
}
.photo-grid img, .feature-photo, .dish-card img, .gallery-grid img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.photo-grid img, .feature-photo img, .dish-card img, .gallery-grid img, .menu-photo-strip img {
  transition: transform 0.55s ease, filter 0.55s ease, box-shadow 0.55s ease;
}
.photo-grid img:hover, .feature-photo:hover img, .dish-card:hover img, .gallery-grid img:hover, .menu-photo-strip img:hover {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: var(--glow);
}
.photo-grid img {
  height: 520px;
  object-position: center;
}
.photo-grid img:first-child { margin-top: 56px; }
.feature-photo { min-height: 520px; overflow: hidden; }
.feature-photo img { height: 520px; }

.menu-preview, .promise-section, .gallery-page { background: linear-gradient(180deg, #fff8ed, #eef3e6); }
.section-heading { max-width: 900px; margin-bottom: 36px; }
.dish-grid, .promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.dish-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(37, 33, 29, 0.1);
}
.dish-card img {
  height: 240px;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  box-shadow: none;
}
.dish-card div { padding: 22px; }
.dish-card span, .promise-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9d2730;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.dish-card p, .promise-card p, .menu-item p { color: var(--muted); line-height: 1.65; }
.promise-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.promise-card { padding: 24px; }

.reservation-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(200, 41, 54, 0.2), transparent 28%),
    linear-gradient(135deg, var(--logo-green), var(--logo-deep));
  border-top: 1px solid rgba(199, 160, 123, 0.3);
  border-bottom: 1px solid rgba(199, 160, 123, 0.3);
}
.reservation-copy p { color: rgba(255,255,255,0.78); }

.reviews-section { background: linear-gradient(180deg, var(--paper), #fff8ed); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.review-card { padding: 24px; }
.review-card strong {
  display: block;
  color: var(--logo-green);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}
.review-card span {
  display: block;
  margin: 10px 0 12px;
  color: #9d2730;
  font-weight: 900;
}
.review-card p { color: var(--muted); line-height: 1.65; }
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.menu-page { background: linear-gradient(180deg, #eef3e6, #fff8ed 42%, #fff); }
.menu-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.menu-photo-strip img {
  height: 230px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.menu-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.menu-category { padding: clamp(22px, 3vw, 34px); }
.menu-category h2 { margin-bottom: 20px; font-size: clamp(25px, 3vw, 36px); }
.full-menu-board .menu-category h2 { font-size: clamp(22px, 2.4vw, 30px); }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.full-menu-board .menu-item { padding: 11px 0; }
.menu-item span { font-weight: 900; }
.menu-item strong { color: #9d2730; }
.menu-item p { grid-column: 1 / -1; margin: 0; }
.menu-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 24px;
  padding: 22px;
}
.menu-callout strong { margin-right: auto; }
.menu-callout a { color: #9d2730; font-weight: 900; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 18px;
}
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }
.event-section { padding-top: 34px; }
.event-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(24px, 4vw, 42px);
}

.contact-page-grid { align-items: start; }
.contact-intro { position: sticky; top: 104px; }
.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 22px;
}
.contact-details span, .contact-details a { color: var(--muted); }
.contact-form {
  display: grid;
  gap: 17px;
  padding: clamp(22px, 4vw, 36px);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #312c27;
  font-weight: 850;
}
.contact-form label span { color: #9d2730; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  outline: none;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--logo-gold);
  box-shadow: 0 0 0 4px rgba(199, 160, 123, 0.18);
}
.form-message { min-height: 22px; margin: 0; color: var(--logo-green); font-weight: 850; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(220px, 0.8fr) minmax(220px, 1fr);
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 72px) 24px;
  color: #f6ecdd;
  background:
    linear-gradient(180deg, rgba(0, 63, 49, 0.99), rgba(0, 42, 33, 1)),
    var(--logo-green);
  border-top: 1px solid rgba(199, 160, 123, 0.36);
}
.footer-logo { margin-bottom: 14px; }
.footer-logo .brand-logo {
  width: min(260px, 100%);
  height: 58px;
}
.site-footer p, .site-footer address {
  color: #cfc4b7;
  line-height: 1.7;
  font-style: normal;
}
.site-footer a { color: #fff0d8; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 11px 16px; align-content: start; }
.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

@keyframes heroSweep {
  0%, 100% { transform: translateX(-16%); opacity: 0.42; }
  50% { transform: translateX(16%); opacity: 0.78; }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@media (max-width: 1050px) {
  .hero, .split-section, .sub-hero, .contact-page-grid { grid-template-columns: 1fr; }
  .hero { align-items: center; }
  .promise-grid, .info-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-intro { position: static; }
}

@media (max-width: 760px) {
  .site-header { align-items: center; min-height: 78px; }
  .brand-logo { width: 168px; height: 48px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: linear-gradient(180deg, var(--logo-green), var(--logo-deep));
    border: 1px solid rgba(199, 160, 123, 0.4);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero { min-height: 720px; }
  h1 { font-size: clamp(38px, 13vw, 56px); }
  .hero-panel { align-self: start; }
  .info-strip, .dish-grid, .promise-grid, .menu-board, .menu-photo-strip, .review-grid, .site-footer { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; min-height: auto; }
  .photo-grid img { height: 320px; min-height: 0; }
  .photo-grid img:first-child { margin-top: 0; }
  .feature-photo { min-height: 330px; }
  .feature-photo img { height: 330px; }
  .dish-card img, .menu-photo-strip img { height: 260px; }
  .reservation-band, .event-card { align-items: flex-start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-grid .wide { grid-column: auto; }
}
