:root {
  --ink: #181310;
  --muted: #665d56;
  --paper: #fbfbf7;
  --cream: #e9f0e8;
  --green: #0f6a56;
  --green-dark: #093c32;
  --amber: #c77822;
  --line: rgba(24, 19, 16, 0.16);
  --shadow: 0 22px 60px rgba(20, 11, 4, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(251, 251, 247, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 25px;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--green);
}

.header-actions,
.hero-actions,
.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-toggle {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 850;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 106, 86, 0.22);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: calc(100svh - 76px);
  background: var(--cream);
}

.hero-media {
  min-height: 560px;
  overflow: hidden;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(32px, 6vw, 82px);
  background: radial-gradient(circle at top left, rgba(15, 106, 86, 0.13), transparent 34%), var(--paper);
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 700;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 0;
}

.quick-facts div,
.hours-card,
.contact-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.quick-facts div {
  padding: 16px;
  border-radius: 8px;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 6px 0 0;
  font-weight: 850;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.reserve-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.intro-grid > article:first-child p:not(.eyebrow),
.reserve-section > div > p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.hours-card,
.contact-form {
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
}

.hours-list {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

address {
  margin-bottom: 14px;
  color: var(--muted);
  font-style: normal;
}

.text-link {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.menu-section .eyebrow {
  color: #f2bc75;
}

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

.menu-tile {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.menu-tile:hover {
  background: rgba(255, 255, 255, 0.12);
}

.menu-tile span {
  color: #f2bc75;
  font-family: Georgia, serif;
  font-size: 42px;
}

.menu-tile strong {
  font-size: 24px;
}

.menu-tile small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: var(--ink);
}

.gallery-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px) 88px;
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: end;
  color: rgba(255, 255, 255, 0.78);
}

.mobile-bar {
  display: none;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

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

  .hero-media {
    min-height: 420px;
    order: 2;
  }

  .hero-content {
    order: 1;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand small {
    white-space: normal;
  }

  .header-actions .btn {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .hero-content {
    padding: 34px 18px 28px;
  }

  .hero-media {
    min-height: 320px;
  }

  .quick-facts,
  .intro-grid,
  .reserve-section,
  .menu-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .menu-tile {
    min-height: 156px;
  }

  .gallery-strip img {
    height: 280px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 96px;
  }

  .footer-links {
    justify-content: start;
  }

  .mobile-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(251, 251, 247, 0.95);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
  }

  .mobile-bar a {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--green-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}
