:root {
  --ink: #231f20;
  --muted: #6d6660;
  --cream: #faf7f2;
  --paper: #fffdf9;
  --accent: #9b1c1f;
  --accent-dark: #681216;
  --gold: #c49a4a;
  --line: #e6ded2;
  --shadow: 0 18px 48px rgba(35, 31, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.topbar {
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.92rem;
}

.topbar .wrap,
.nav .wrap,
.section,
.footer .wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.topbar a {
  text-decoration: none;
  font-weight: 700;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 92px;
}

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

.nav-links:last-child {
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a.active,
.nav a:hover {
  color: var(--accent);
}

.logo {
  width: 156px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.light {
  border-color: #fff;
  background: #fff;
  color: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(25, 17, 12, 0.78), rgba(25, 17, 12, 0.3)), var(--hero) center/cover no-repeat;
}

.hero.compact {
  min-height: 420px;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  font-weight: 700;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 30px;
  font-size: 1.2rem;
}

.section {
  padding: 82px 0;
}

.section.tight {
  padding-top: 46px;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title h2 {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-title p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split h2 {
  margin: 10px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

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

.feature-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.band {
  background: var(--cream);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(35, 31, 32, 0.08);
}

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

.card-body {
  padding: 24px;
}

.card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

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

.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review {
  padding: 30px;
  background: #fff;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.review p {
  margin-top: 0;
}

.review strong {
  color: var(--accent);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cta {
  padding: 70px 24px;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 18, 22, 0.88), rgba(104, 18, 22, 0.88)), url("assets/gallery-carne-griglia.jpg") center/cover no-repeat;
}

.cta h2 {
  max-width: 760px;
  margin: 0 auto 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
}

.menu-nav a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}

.menu-section {
  margin: 0 0 54px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
}

.menu-section h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

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

.menu-item:first-of-type {
  border-top: 0;
}

.menu-item h3 {
  font-family: inherit;
  font-size: 1.05rem;
}

.menu-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.price {
  color: var(--accent);
  font-weight: 900;
  white-space: nowrap;
}

.note {
  color: var(--muted);
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-box,
.form-box {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(35, 31, 32, 0.08);
}

.hours {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 400;
}

.check input {
  width: auto;
  margin-top: 6px;
}

.footer {
  padding: 48px 0 24px;
  background: #211b18;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer img {
  width: 160px;
}

.footer h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social a {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 800;
}

.legal {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .nav .wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 14px 0;
  }

  .nav-links,
  .nav-links:last-child {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    min-height: 520px;
  }

  .split,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .cards,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 560px) {
  .topbar .wrap,
  .menu-item,
  .hours li {
    display: block;
  }

  .topbar span {
    display: block;
  }

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

  .section {
    padding: 56px 0;
  }

  .menu-section,
  .contact-box,
  .form-box {
    padding: 24px;
  }
}
