:root {
  color-scheme: light;
  --ink: #17130f;
  --muted: #625c55;
  --paper: #fbf8f2;
  --paper-strong: #eee8df;
  --wine: #922439;
  --wine-dark: #661829;
  --teal: #0b5f59;
  --gold: #b98533;
  --line: rgba(23, 19, 15, 0.13);
  --shadow: 0 22px 70px rgba(28, 20, 14, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 46px;
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding: 13px 46px;
  background: rgba(251, 248, 242, 0.95);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(33, 26, 20, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 168px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 6px;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible,
.site-header.is-open .main-nav a:hover,
.site-header.is-open .main-nav a:focus-visible {
  background: rgba(143, 31, 45, 0.1);
}

.main-nav .nav-cta {
  background: var(--wine);
  color: #fff;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: var(--wine-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 680px;
  padding: 128px 46px 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 34px;
  overflow: hidden;
  color: #fff;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 14, 11, 0.86) 0%, rgba(18, 14, 11, 0.64) 45%, rgba(18, 14, 11, 0.24) 100%),
    linear-gradient(0deg, rgba(18, 14, 11, 0.7), rgba(18, 14, 11, 0.08) 56%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 710px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  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: 4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: min(620px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
  line-height: 1.65;
}

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

.hero-details {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-details span {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px 26px 16px 0;
}

.hero-details strong {
  color: #fff;
  font-size: 0.92rem;
}

.hero-details small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button.primary {
  background: var(--wine);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--wine-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.button.outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button.outline:hover,
.button.outline:focus-visible {
  border-color: var(--wine);
  color: var(--wine);
}

.section-inner {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
}

.intro-section {
  padding: 76px 0;
  background: var(--paper-strong);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.35;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.intro-grid p {
  margin: 0;
  font-size: 1.04rem;
}

.content-section {
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p {
  margin: 18px 0 0;
}

.menu-feature {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 72px;
  align-items: center;
}

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list article > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1;
}

.menu-list h3 {
  font-size: 1.18rem;
}

.menu-list p {
  max-width: 620px;
  margin: 8px 0 0;
}

.review-section {
  padding: 82px 0;
  background: #102f2d;
  color: #fff;
}

.review-section h2 {
  max-width: 660px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
}

.score-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.score-list div {
  min-height: 116px;
  padding: 20px 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.score-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.score-list span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.schedule-section {
  background: var(--paper-strong);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: start;
}

.schedule-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: var(--shadow);
}

.schedule-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row span {
  color: var(--muted);
  font-weight: 800;
}

.schedule-row strong {
  font-size: 1rem;
}

.schedule-row.closed strong {
  color: var(--wine);
}

.location-section {
  padding: 90px 0;
  background: #fffdfa;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: stretch;
}

.location-copy address {
  margin: 22px 0 0;
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.7;
}

.location-copy p {
  margin: 14px 0 0;
}

.location-copy a:not(.button) {
  color: var(--wine);
  font-weight: 800;
}

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

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 38px;
  background: var(--ink);
  color: #fff;
}

.site-footer img {
  width: 142px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

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

@media (max-width: 980px) {
  .hero h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .intro-grid,
  .menu-feature,
  .review-grid,
  .schedule-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    gap: 28px;
  }

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

  .hero-details span {
    min-height: auto;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-details span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    padding: 10px 18px;
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 8px 18px 20px;
    background: rgba(255, 250, 243, 0.98);
    color: var(--ink);
    box-shadow: 0 14px 28px rgba(33, 26, 20, 0.14);
  }

  .main-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .main-nav a {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 680px;
    padding: 108px 20px 42px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-content,
  .hero-details {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-details {
    margin-top: 6px;
  }

  .section-inner {
    width: min(100% - 36px, 1120px);
  }

  .intro-section,
  .content-section,
  .location-section {
    padding: 62px 0;
  }

  h2 {
    font-size: 1.92rem;
  }

  .score-list {
    grid-template-columns: 1fr;
  }

  .menu-list article {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .menu-list article > span {
    font-size: 1.8rem;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }

  .site-footer {
    display: grid;
    padding: 30px 18px;
  }
}

@media (max-width: 440px) {
  .hero {
    min-height: 650px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.72rem;
  }

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

@media (max-width: 520px) {
  .hero-content,
  .hero-details,
  .section-inner {
    width: calc(100vw - 40px);
    max-width: 350px;
  }
}
