:root {
  --ink: #15110f;
  --charcoal: #211b18;
  --cream: #f7efe5;
  --paper: #fffaf3;
  --muted: #79685c;
  --line: #e5d5c4;
  --gold: #c99a55;
  --wine: #7d1f2d;
  --olive: #50613d;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(21, 17, 15, 0.18);
}

* {
  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;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(21, 17, 15, 0.94);
  color: var(--cream);
  border-bottom: 1px solid rgba(201, 154, 85, 0.35);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  text-decoration: none;
  line-height: 1.05;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand small {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.nav a {
  padding: 9px 10px;
  color: rgba(247, 239, 229, 0.8);
  font-size: 14px;
  text-decoration: none;
}

.nav .book-link {
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 65px);
  display: grid;
  background: var(--charcoal);
  color: var(--cream);
}

.hero-copy {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: center;
  padding: 38px 22px;
}

.hero-image {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(21, 17, 15, 0.04), rgba(21, 17, 15, 0.38)),
    url("assets/hero-italian-table.png") center/cover;
}

.demo-label,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.demo-label {
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  text-transform: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: 47px;
}

h2 {
  font-size: 34px;
}

h3 {
  margin: 0;
  line-height: 1.18;
}

.lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(247, 239, 229, 0.78);
  font-size: 17px;
}

.actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(247, 239, 229, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--charcoal);
  border-color: var(--line);
  background: var(--paper);
}

.quote-band {
  padding: 44px 20px;
  background: var(--wine);
  color: var(--cream);
  text-align: center;
}

.quote-band p {
  max-width: 920px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.2;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.rating-row span {
  padding: 8px 12px;
  color: var(--cream);
  border: 1px solid rgba(247, 239, 229, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 68px 20px;
}

.section-title {
  max-width: 760px;
}

.section-title.narrow {
  max-width: 620px;
}

.feature-grid,
.menu-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.feature-grid article,
.detail-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21, 17, 15, 0.07);
}

.feature-grid span {
  color: var(--wine);
  font-weight: 900;
}

.feature-grid h3 {
  margin-top: 10px;
}

.feature-grid p,
.copy p,
.booking-panel p,
.menu-card span,
.footer p {
  color: var(--muted);
}

.menu-section {
  padding: 68px 20px;
  background: var(--cream);
}

.menu-section > * {
  max-width: 1120px;
  margin-inline: auto;
}

.menu-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.menu-card div {
  padding: 20px;
}

.menu-card p {
  margin: 0 0 8px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.booking-panel {
  display: grid;
  gap: 20px;
  padding: 46px 20px;
  background: var(--charcoal);
  color: var(--cream);
}

.booking-panel > * {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
}

.booking-panel p {
  max-width: 640px;
  color: rgba(247, 239, 229, 0.75);
}

.split {
  display: grid;
  gap: 24px;
}

.copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.copy li {
  padding: 13px 15px;
  background: var(--cream);
  border-left: 4px solid var(--olive);
  border-radius: 6px;
  font-weight: 750;
}

dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 5px 0 0;
  font-weight: 700;
}

.visit {
  padding: 74px 20px;
  background:
    linear-gradient(90deg, rgba(21, 17, 15, 0.88), rgba(21, 17, 15, 0.54)),
    url("assets/dessert-wine.png") center/cover;
  color: var(--cream);
}

.visit-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.footer {
  padding: 26px 20px;
  background: var(--ink);
}

.footer p {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(247, 239, 229, 0.7);
  font-size: 13px;
}

@media (min-width: 760px) {
  .topbar {
    padding-inline: 34px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .hero-copy {
    min-height: calc(100vh - 65px);
    padding: 60px 58px;
  }

  .hero-image {
    min-height: calc(100vh - 65px);
  }

  h1 {
    font-size: 62px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .booking-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-inline: 48px;
  }

  .split {
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
  }
}

@media (max-width: 470px) {
  .nav a:not(.book-link) {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy {
    min-height: 500px;
  }

  .button {
    width: 100%;
  }
}
