: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;
}

body.lightbox-open {
  overflow: hidden;
}

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.2rem;
  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);
  overflow: hidden;
}

.brand-mark img {
  width: 32px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
}

.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: 1rem;
}

.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;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.88) 0%, rgba(15, 12, 10, 0.72) 42%, rgba(15, 12, 10, 0.2) 82%),
    linear-gradient(0deg, rgba(15, 12, 10, 0.36), rgba(15, 12, 10, 0.04));
}

.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;
}

.hero-logo-mark {
  width: clamp(76px, 8vw, 118px);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.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;
}

.image-link {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.image-link span {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  z-index: 2;
  padding: 0.28rem 0.48rem;
  border-radius: 8px;
  background: rgba(31, 26, 22, 0.72);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.9;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.image-link:hover span,
.image-link:focus-visible span {
  opacity: 1;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(15, 12, 10, 0.88);
}

.lightbox-frame {
  position: relative;
  display: grid;
  gap: 0.7rem;
  width: min(1280px, 100%);
  max-height: calc(100svh - 4rem);
  margin: 0;
}

.lightbox-frame img {
  width: 100%;
  max-height: calc(100svh - 7rem);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.lightbox-frame figcaption {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  top: 1rem;
  z-index: 201;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--paper);
  color: var(--wine-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.lightbox-close:focus-visible {
  outline: 3px solid rgba(185, 139, 74, 0.7);
}

.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,
.story-copy p,
.menu-copy p {
  max-width: 650px;
  color: var(--muted);
}

.image-panel,
.reservation-photo,
.gallery-card,
.food-card {
  margin: 0;
}

.image-panel {
  width: min(320px, 100%);
  justify-self: center;
}

.image-panel img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reservation-photo img {
  width: 100%;
  max-height: 390px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.story-section {
  padding-top: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}

.story-copy {
  columns: 2;
  column-gap: 2rem;
}

.story-copy p {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.gallery-section {
  background: #f6eadb;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 0.85rem;
  max-width: 980px;
}

.gallery-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.gallery-card .image-link,
.gallery-card img {
  width: 100%;
  height: 100%;
}

.gallery-card img {
  object-fit: cover;
}

.gallery-card figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  max-width: calc(100% - 1.6rem);
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: rgba(31, 26, 22, 0.68);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.menu-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: -0.5rem 0 2rem;
}

.menu-board {
  max-width: 1080px;
  margin: 0 0 2rem;
  padding: 1rem;
  border: 1px solid rgba(31, 26, 22, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(31, 26, 22, 0.1);
}

.menu-board-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(31, 26, 22, 0.1);
}

.menu-board-logo {
  width: min(220px, 100%);
  height: auto;
  max-height: 92px;
  object-fit: contain;
}

.menu-board-header h3 {
  margin-bottom: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

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

.menu-board-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.45rem;
  border-radius: 8px;
  background: rgba(125, 41, 41, 0.1);
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-board-download {
  justify-self: end;
  white-space: nowrap;
}

.menu-board-image {
  overflow: hidden;
  border: 1px solid rgba(31, 26, 22, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.menu-board-image img {
  width: 100%;
  object-fit: contain;
}

.menu-board figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 980px;
}

.food-card {
  overflow: hidden;
  border: 1px solid rgba(31, 26, 22, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 44px rgba(31, 26, 22, 0.08);
}

.food-card .image-link {
  overflow: hidden;
}

.food-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.food-card div {
  padding: 0.95rem;
}

.food-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-form {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(31, 26, 22, 0.2);
}

.form-row {
  display: grid;
  gap: 0.3rem;
}

.form-row label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(185, 139, 74, 0.42);
  border-color: var(--gold);
}

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

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.reservation-photo figcaption {
  color: rgba(255, 255, 255, 0.76);
}

.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;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  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;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 54px;
  height: auto;
  flex: 0 0 auto;
}

.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: 1000px) {
  .site-nav {
    gap: 0.75rem;
  }
}

@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,
  .story-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    columns: 1;
  }

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

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

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

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

  .menu-board-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .menu-board-download {
    grid-column: 2;
    justify-self: start;
  }

  .food-card {
    display: grid;
    grid-template-columns: minmax(160px, 0.8fr) 1fr;
  }

  .food-card .image-link {
    height: 100%;
  }

  .food-card img {
    height: 100%;
  }

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

  .reservation-form {
    max-width: 680px;
  }

  .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;
  }

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

  .gallery-card {
    min-height: auto;
  }

  .gallery-card-large {
    grid-column: 1 / -1;
  }

  .gallery-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-card-large img {
    aspect-ratio: 4 / 3;
  }

  .gallery-card figcaption {
    left: 0.5rem;
    bottom: 0.5rem;
    max-width: calc(100% - 1rem);
    padding: 0.28rem 0.42rem;
    font-size: 0.74rem;
  }

  .gallery-card .image-link span {
    right: 0.45rem;
    top: 0.45rem;
    padding: 0.22rem 0.34rem;
    font-size: 0.66rem;
  }

  .food-card {
    display: block;
  }

  .food-card .image-link {
    height: auto;
  }

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

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

  .button {
    width: 100%;
  }

  .hero-logo-mark {
    width: 82px;
  }

  .menu-board {
    padding: 0.75rem;
  }

  .menu-board-header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .menu-board-logo {
    width: 170px;
    max-height: 72px;
  }

  .menu-board-download {
    grid-column: auto;
    white-space: normal;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-frame {
    max-height: calc(100svh - 3rem);
  }

  .lightbox-frame img {
    max-height: calc(100svh - 6rem);
  }

  .lightbox-close {
    right: 1rem;
    top: 0.75rem;
  }
}
