:root {
  --wine: #7d2929;
  --wine-dark: #4f1718;
  --olive: #526746;
  --clay: #b86d45;
  --gold: #b98b4a;
  --paper: #fff9ef;
  --cream: #efe1ca;
  --ink: #1f1a16;
  --muted: #675d54;
  --line: rgba(31, 26, 22, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(31, 26, 22, 0.16);
  --max: 1180px;
}

*,
*::before,
*::after {
  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;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.6rem 0.8rem;
  background: var(--wine);
  color: var(--white);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  min-height: 72px;
  padding: 0.75rem max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(255, 249, 239, 0.92);
  border-bottom: 1px solid rgba(31, 26, 22, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(125, 41, 41, 0.42);
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-style: italic;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a,
.site-footer a,
.text-link {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--wine);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-action {
  background: var(--wine);
  color: var(--white);
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-light {
  background: var(--paper);
  color: var(--wine-dark);
  border-color: var(--paper);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 74svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.84) 0%, rgba(15, 12, 10, 0.62) 36%, rgba(15, 12, 10, 0.18) 72%),
    linear-gradient(0deg, rgba(15, 12, 10, 0.42), rgba(15, 12, 10, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 74svh;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 2rem;
}

.eyebrow,
.section-kicker,
.ribbon-label {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  font-weight: 700;
}

h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions,
.reservation-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  max-width: 840px;
  margin: 2.5rem 0 0;
  padding: 0;
}

.hero-facts div {
  min-width: 170px;
}

.hero-facts dt,
.contact-panel dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd,
.contact-panel dd {
  margin: 0.2rem 0 0;
  font-weight: 700;
}

.opening-ribbon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.opening-ribbon div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.opening-ribbon a,
.text-link {
  color: var(--wine);
  font-weight: 800;
}

.section {
  padding: 5rem 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.intro-grid,
.reservation-grid,
.hours-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.intro-grid p,
.hours-grid p {
  max-width: 650px;
  color: var(--muted);
}

.image-panel,
.menu-photo {
  margin: 0;
}

.image-panel img,
.menu-photo img,
.reservation-card,
.contact-panel {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel figcaption,
.menu-photo figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-section {
  background: #f5ecdc;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: start;
}

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

.menu-card {
  min-height: 210px;
  padding: 1.2rem;
  border: 1px solid rgba(31, 26, 22, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.menu-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-icon {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.reservation-band {
  padding: 5rem 0;
  background:
    linear-gradient(90deg, rgba(79, 23, 24, 0.96), rgba(125, 41, 41, 0.94)),
    var(--wine);
  color: var(--white);
}

.reservation-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.reservation-card {
  width: min(420px, 100%);
  justify-self: end;
}

.hours-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.hours-list li.is-today {
  border-color: rgba(125, 41, 41, 0.42);
  background: #fff1df;
}

.hours-list span {
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--white);
}

.contact-section address {
  margin: 1.2rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
}

.contact-panel {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.contact-panel dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.contact-panel div {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.site-footer {
  padding: 2rem 0;
  background: #16110f;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
}

.site-footer p {
  margin: 0.25rem 0 0;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-copy {
  text-align: right;
}

.legal-page {
  min-height: 100svh;
  background: var(--paper);
}

.legal-main {
  width: min(880px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.legal-main h1 {
  color: var(--ink);
  font-size: 3rem;
}

.legal-main h2 {
  margin-top: 2rem;
  font-size: 1.6rem;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding: 0.4rem 0;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open a {
    padding: 0.75rem 0;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero,
  .hero-content {
    min-height: 70svh;
  }

  .intro-grid,
  .reservation-grid,
  .hours-grid,
  .contact-grid,
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .reservation-card {
    justify-self: start;
  }

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

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand-text small {
    display: none;
  }

  .hero-content {
    padding-top: 2.8rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-facts,
  .opening-ribbon,
  .section-heading {
    display: grid;
  }

  .section,
  .reservation-band,
  .contact-section {
    padding: 3.5rem 0;
  }

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

  .hours-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .button {
    width: 100%;
  }
}
