:root {
  --ink: #171412;
  --ink-soft: #4d433d;
  --paper: #fff7ed;
  --paper-deep: #f2e4d0;
  --tomato: #b51f1b;
  --tomato-dark: #831714;
  --basil: #12643f;
  --gold: #d8a33f;
  --charcoal: #211c18;
  --line: rgba(23, 20, 18, 0.14);
  --shadow: 0 24px 70px rgba(32, 20, 12, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.96), rgba(255, 247, 237, 0.99)),
    radial-gradient(circle at 12% 18%, rgba(181, 31, 27, 0.08), transparent 34%),
    radial-gradient(circle at 90% 30%, rgba(18, 100, 63, 0.08), transparent 30%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  width: min(1180px, calc(100% - 28px));
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(23, 20, 18, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 247, 237, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(23, 20, 18, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 190px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #251a12;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.75;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.main-nav a {
  padding: 9px 12px;
  color: currentColor;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.92rem;
  opacity: 0.9;
}

.main-nav a:hover {
  background: rgba(216, 163, 63, 0.16);
  opacity: 1;
}

.nav-action,
.btn,
.text-link,
.contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.nav-action {
  min-width: 108px;
  padding: 12px 16px;
  color: #fff;
  background: var(--tomato);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.nav-action svg,
.btn svg,
.text-link svg,
.strip-item svg,
.contact-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 120px max(22px, calc((100vw - 1180px) / 2)) 44px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 13, 9, 0.92) 0%, rgba(18, 13, 9, 0.64) 42%, rgba(18, 13, 9, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 13, 9, 0.72), rgba(18, 13, 9, 0.08) 46%);
}

.hero-content {
  position: relative;
  width: min(860px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 10.5vw, 8.8rem);
  line-height: 0.86;
  font-weight: 700;
  text-wrap: balance;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--tomato);
  box-shadow: 0 14px 34px rgba(181, 31, 27, 0.32);
}

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

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.booking-section .btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-facts {
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  padding: 18px;
  background: rgba(18, 13, 9, 0.34);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

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

.hero-facts span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

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

.marquee {
  width: 100%;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.65rem);
  white-space: nowrap;
}

.marquee-track span::after {
  content: "*";
  position: absolute;
  right: -24px;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.strip-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 850;
  text-align: center;
}

.strip-item svg {
  color: var(--tomato);
}

.story-section,
.menu-section,
.gallery-section,
.booking-section,
.contact-section {
  padding: 96px 0 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.story-grid p,
.section-heading p,
.booking-copy p,
.contact-main p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.story-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.story-stats strong,
.story-stats span {
  display: block;
}

.story-stats strong {
  color: var(--tomato);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.9;
}

.story-stats span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 850;
}

.story-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--charcoal);
}

.story-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.story-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  color: #fff;
  background: rgba(23, 20, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.story-note strong,
.story-note span {
  display: block;
}

.story-note span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
}

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

.section-heading p {
  max-width: 620px;
  margin: 16px 0 0;
}

.menu-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 500px;
}

.menu-filter {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.menu-filter.is-active {
  color: #fff;
  background: var(--basil);
  border-color: var(--basil);
}

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

.menu-category {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-category h3 {
  margin: 0;
  padding: 18px;
  color: #fff;
  background: var(--charcoal);
  font-size: 1.15rem;
}

.menu-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.75);
}

.menu-item strong {
  display: block;
  font-size: 1rem;
}

.menu-item span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.price {
  color: var(--tomato);
  font-weight: 950;
  white-space: nowrap;
}

.text-link {
  color: var(--basil);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 0;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.64));
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-weight: 900;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 104px;
  padding: 34px;
  color: #fff;
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

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

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 20, 18, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 163, 63, 0.25);
}

.form-submit {
  justify-self: start;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--basil);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 20px;
  align-items: stretch;
}

.contact-main,
.hours-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-main h2 {
  max-width: 760px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-list a {
  justify-content: flex-start;
  min-height: 48px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
}

.contact-list svg {
  color: var(--tomato);
}

.hours-panel h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.hours-panel ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.hours-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.74);
}

.hours-panel strong {
  text-align: right;
}

.map-frame {
  height: 420px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 8, 7, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(86vh, 920px);
  max-width: min(92vw, 1180px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  cursor: pointer;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 76px auto 24px;
  padding: 24px 0 0;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-sources {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  font-weight: 800;
}

.footer-sources a {
  color: var(--basil);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand {
    min-width: auto;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-top: 2px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-facts,
  .intro-strip,
  .story-grid,
  .story-stats,
  .section-heading,
  .booking-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .menu-tools {
    justify-content: flex-start;
    max-width: none;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 18px);
    top: 9px;
    padding: 9px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-action {
    min-width: 48px;
    padding: 12px;
  }

  .nav-action span {
    display: none;
  }

  .main-nav a {
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 92vh;
    padding: 150px 18px 28px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 22vw, 5.6rem);
  }

  .hero-facts {
    margin-top: 34px;
  }

  .hero-facts div {
    padding: 14px;
  }

  .section {
    width: min(100% - 24px, 1180px);
  }

  .story-section,
  .menu-section,
  .gallery-section,
  .booking-section,
  .contact-section {
    padding-top: 72px;
  }

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

  .strip-item {
    min-height: 84px;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-large,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-copy,
  .booking-form,
  .contact-main,
  .hours-panel {
    padding: 22px;
  }

  .map-frame {
    height: 330px;
  }

  .site-footer {
    flex-direction: column;
  }

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