:root {
  --black: #0d0b09;
  --espresso: #1a1110;
  --wine: #4a1516;
  --gold: #d6a85c;
  --cream: #fff0d6;
  --paper: #fbf2e4;
  --muted: #86745f;
  --line: rgba(255, 240, 214, 0.17);
  --dark-line: rgba(13, 11, 9, 0.13);
  --shadow: 0 26px 80px rgba(13, 11, 9, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 13px clamp(16px, 4vw, 56px);
  background: rgba(13, 11, 9, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--gold);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 38px);
  color: rgba(255, 240, 214, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.lang-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang {
  width: 38px;
  height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 240, 214, 0.72);
  font-weight: 900;
  cursor: pointer;
}

.lang.active {
  background: var(--gold);
  color: var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 67px);
  padding: clamp(48px, 7vw, 96px) clamp(16px, 5vw, 72px) 54px;
  background:
    radial-gradient(circle at 78% 25%, rgba(214, 168, 92, 0.18), transparent 30%),
    linear-gradient(135deg, #0d0b09 0%, #1a1110 58%, #4a1516 100%);
}

.hero-copy,
.hero-media,
.aperitivo > *,
.section-head > *,
.contact > * {
  min-width: 0;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 830px;
  font-size: clamp(3.4rem, 8.3vw, 8.8rem);
}

h2 {
  font-size: clamp(2.4rem, 5.5vw, 5.7rem);
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 240, 214, 0.76);
  font-size: clamp(1.03rem, 1.42vw, 1.28rem);
  line-height: 1.72;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 16px 40px rgba(214, 168, 92, 0.22);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255, 240, 214, 0.07);
}

.status-card {
  max-width: 440px;
  margin-top: 32px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 240, 214, 0.07);
}

.status-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.15rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: min(690px, 75vh);
  min-height: 450px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rating-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(13, 11, 9, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.rating-badge span {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 900;
}

.rating-badge strong {
  display: block;
  margin-top: 4px;
}

.section {
  padding: clamp(72px, 9vw, 122px) clamp(16px, 5vw, 72px);
}

.aperitivo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: end;
  background: var(--paper);
  color: var(--black);
}

.aperitivo .kicker,
.rhythm .kicker,
.contact .kicker {
  color: var(--wine);
}

.aperitivo p:last-child {
  margin: 0;
  color: #665744;
  font-size: 1.08rem;
  line-height: 1.78;
}

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

.menu article {
  min-height: 560px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--espresso);
}

.menu article:nth-child(2) {
  background: #241311;
}

.menu article:nth-child(3) {
  background: var(--wine);
}

.menu span,
.rhythm-grid span {
  color: var(--gold);
  font-weight: 900;
}

.menu h2 {
  margin-top: 190px;
  font-size: clamp(2.05rem, 4vw, 4.2rem);
}

.menu p {
  color: rgba(255, 240, 214, 0.74);
  line-height: 1.72;
}

.rhythm {
  background: var(--paper);
  color: var(--black);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: end;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.rhythm-grid div {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fffaf0;
}

.rhythm-grid strong {
  display: block;
  margin-top: 70px;
  font-size: 1.2rem;
}

.rhythm-grid p {
  color: #665744;
  line-height: 1.66;
}

.reviews {
  background: #120d0b;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

blockquote {
  margin: 0;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 240, 214, 0.06);
  color: rgba(255, 240, 214, 0.9);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.95rem);
  font-weight: 800;
  line-height: 1.18;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 28px;
  padding: clamp(72px, 9vw, 122px) clamp(16px, 5vw, 72px);
  background: var(--paper);
  color: var(--black);
}

.contact-copy,
.location {
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fffaf0;
}

.contact-copy {
  padding: clamp(30px, 5vw, 58px);
}

.contact-copy p:not(.kicker) {
  max-width: 760px;
  color: #665744;
  line-height: 1.75;
}

.contact .secondary {
  color: var(--black);
  border-color: var(--dark-line);
  background: #fff;
}

.location {
  overflow: hidden;
}

.location img {
  width: 100%;
  aspect-ratio: 1.85;
  object-fit: cover;
}

.location div {
  padding: 18px 22px;
  border-bottom: 1px solid var(--dark-line);
}

.location strong,
.location span {
  display: block;
}

.location span {
  margin-top: 4px;
  color: var(--muted);
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 11px 0;
  color: #665744;
}

.hours p + p {
  border-top: 1px solid var(--dark-line);
}

.hours strong {
  color: var(--black);
}

.location a {
  display: inline-flex;
  padding: 20px 22px;
  color: var(--wine);
  font-weight: 900;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(16px, 5vw, 72px);
  background: var(--black);
  color: rgba(255, 240, 214, 0.66);
}

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

  nav {
    display: none;
  }

  .hero,
  .aperitivo,
  .section-head,
  .contact {
    grid-template-columns: 1fr;
  }

  .menu,
  .rhythm-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 13px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .menu,
  .rhythm-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 360px;
    height: 430px;
  }

  .kicker {
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .menu article,
  .rhythm-grid div,
  blockquote {
    min-height: auto;
  }

  .menu h2,
  .rhythm-grid strong {
    margin-top: 46px;
  }

  .hours p {
    flex-direction: column;
    gap: 4px;
  }
}
