:root {
  --accent: #bb2727;
  --accent-dark: #9c1f1f;
  --accent-tint: #f4e6e6;
  --dark: #1a1411;
  --dark-soft: #241c18;
  --light: #f9f6f2;
  --light-tint: #f1ece5;
  --border: #ddd4ca;
  --text: #2a2018;
  --text-muted: #6a5d51;
  --white: #ffffff;
  --nav-h: 68px;
  --banner-h: 42px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

p {
  max-width: 65ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: #d98a8a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  min-height: 48px;
  border-radius: 1px;
}

.btn-filled {
  background: var(--accent);
  color: var(--white);
}

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-footer {
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 200ms ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 1px;
  min-height: 44px;
}

.nav-cta:hover {
  background: var(--accent-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--banner-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 17, 0.15) 0%,
    rgba(26, 20, 17, 0.55) 55%,
    rgba(26, 20, 17, 0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 90px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin-bottom: 6px;
  max-width: none;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 34px;
  max-width: none;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust {
  background: var(--light-tint);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill {
  padding: 9px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 1px;
  white-space: nowrap;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  margin-top: 2px;
}

.menus {
  padding: 100px 0;
  background: var(--light);
}

.menu-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.menu-row-reverse .menu-text {
  order: 2;
}

.menu-row-reverse .menu-photo {
  order: 1;
}

.menu-number {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.menu-text h3 {
  margin-bottom: 14px;
}

.menu-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.menu-photo {
  overflow: hidden;
  border-radius: 1px;
  background: var(--light-tint);
}

.menu-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 791 / 1023;
}

.gallery {
  padding: 100px 0;
  background: var(--light-tint);
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 791 / 1023;
}

.about {
  padding: 100px 0;
  background: var(--light);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.social-row {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.social-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}

.social-link:hover {
  border-color: var(--accent);
}

.about-hours {
  background: var(--light-tint);
  padding: 36px;
  border-left: 3px solid var(--accent);
}

.about-hours h3 {
  margin-bottom: 20px;
}

.hours-list > div {
  margin-bottom: 18px;
}

.hours-list > div:last-child {
  margin-bottom: 0;
}

.hours-list dt {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.hours-list dd {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hours-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

.cta-band {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  margin: 0 auto 34px;
  max-width: 50ch;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: var(--dark-soft);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
  max-width: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

section[id] {
  scroll-margin-top: calc(var(--banner-h) + var(--nav-h) + 20px);
}

@media (max-width: 900px) {
  .menu-row {
    gap: 40px;
  }

  .about-inner {
    gap: 48px;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-links.open {
    max-height: 420px;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 48px;
    justify-content: flex-start;
  }

  .nav-cta {
    margin: 16px 24px;
    text-align: center;
    width: calc(100% - 48px);
    justify-content: center;
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .menus,
  .gallery,
  .about {
    padding: 64px 0;
  }

  .menu-rows {
    gap: 52px;
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-row-reverse .menu-text {
    order: 1;
  }

  .menu-row-reverse .menu-photo {
    order: 2;
  }

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

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-band {
    padding: 64px 0;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .pills {
    gap: 8px;
  }

  .pill {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}

@media (max-width: 380px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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