:root {
  --ink: #14110f;
  --muted: #665c53;
  --paper: #f7f2e9;
  --panel: #fffaf0;
  --charcoal: #191817;
  --wine: #5d1717;
  --brass: #b78b44;
  --line: rgba(20, 17, 15, 0.14);
  --shadow: 0 24px 80px rgba(13, 10, 8, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(247, 242, 233, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 132px;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav a,
.footer-links a {
  text-decoration: none;
}

.reserve-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.reserve-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 12, 9, 0.88), rgba(16, 12, 9, 0.45) 48%, rgba(16, 12, 9, 0.1)),
    linear-gradient(0deg, rgba(16, 12, 9, 0.6), rgba(16, 12, 9, 0));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(52px, 8vw, 96px) clamp(20px, 6vw, 86px);
  color: #fff9ee;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

.hero-content p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 249, 238, 0.86);
  font-size: 1.14rem;
}

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

.button-primary {
  border-color: var(--brass);
  background: var(--brass);
  color: #19120d;
}

.button-secondary {
  background: rgba(255, 250, 240, 0.08);
  color: inherit;
}

.intro,
.menu-section,
.reservation-section,
.experience-section {
  padding: clamp(64px, 10vw, 118px) clamp(20px, 6vw, 86px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.section-grid h2,
.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.4vw, 4.1rem);
}

.detail-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-grid p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.photo-band {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr 0.9fr;
  gap: 10px;
  padding: 0 clamp(20px, 6vw, 86px) clamp(64px, 9vw, 96px);
}

.photo-band img {
  width: 100%;
  height: clamp(250px, 34vw, 520px);
  object-fit: cover;
}

.photo-band img:nth-child(2) {
  margin-top: 52px;
}

.photo-band img:nth-child(4) {
  margin-top: 28px;
}

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

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.menu-card,
.detail-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(30, 22, 14, 0.08);
}

.menu-card {
  min-height: 410px;
  padding: clamp(24px, 4vw, 36px);
}

.menu-card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.menu-time,
.note {
  color: var(--muted);
}

.menu-card ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.menu-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.menu-card li span:first-child {
  min-width: 0;
}

.menu-card li span:last-child {
  color: var(--wine);
  font-weight: 800;
}

.details-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 86px) clamp(22px, 5vw, 48px);
}

.detail-panel {
  padding: clamp(28px, 5vw, 48px);
}

.hours-list {
  margin: 30px 0 24px;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.detail-panel p {
  color: var(--muted);
}

.detail-panel a {
  color: var(--wine);
  font-weight: 800;
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 520px);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  padding-top: clamp(44px, 7vw, 84px);
}

.reservation-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.4vw, 4.1rem);
}

.reservation-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.reservation-panel {
  padding: clamp(24px, 4vw, 36px);
  background: var(--charcoal);
  border: 1px solid rgba(183, 139, 68, 0.28);
  border-radius: 8px;
  color: #fff9ee;
  box-shadow: var(--shadow);
}

.reservation-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 249, 238, 0.16);
}

.reservation-row:first-child {
  border-top: 0;
}

.reservation-row span {
  color: rgba(255, 249, 238, 0.64);
}

.reservation-row strong {
  text-align: right;
}

.reservation-button {
  width: 100%;
  margin-top: 22px;
}

.experience-section {
  background: var(--charcoal);
  color: #fff9ee;
}

.experience-section .section-grid p:not(.eyebrow) {
  color: rgba(255, 249, 238, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 6vw, 86px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 148px;
  margin-bottom: 16px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .brand img {
    width: 116px;
  }

  .section-grid,
  .menu-grid,
  .details-section,
  .reservation-section {
    grid-template-columns: 1fr;
  }

  .photo-band {
    grid-template-columns: 1fr;
  }

  .photo-band img,
  .photo-band img:nth-child(2),
  .photo-band img:nth-child(4) {
    height: 320px;
    margin-top: 0;
  }

  .menu-card {
    min-height: unset;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 76px;
    gap: 12px;
  }

  .reserve-link {
    min-height: 40px;
    padding: 0 14px;
  }

  nav {
    gap: 18px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(16, 12, 9, 0.9), rgba(16, 12, 9, 0.22)),
      linear-gradient(90deg, rgba(16, 12, 9, 0.72), rgba(16, 12, 9, 0.08));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 42px;
  }

  h1 {
    font-size: 3rem;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours-list dd {
    text-align: left;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}
