:root {
  color-scheme: light;
  --ink: #251c17;
  --muted: #6f6358;
  --paper: #fffaf3;
  --surface: #f3ebe0;
  --stone: #d8c7b4;
  --olive: #5d6c45;
  --wine: #722f37;
  --clay: #b9653b;
  --charcoal: #181411;
  --shadow: 0 22px 70px rgba(31, 23, 18, .18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  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;
}

body::selection {
  background: var(--wine);
  color: white;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: white;
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

.site-header.is-scrolled {
  background: rgba(37, 28, 23, .94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .18));
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch,
.phone-link,
.button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.lang-switch {
  background: rgba(255, 255, 255, .12);
  color: white;
  border-color: rgba(255, 255, 255, .28);
}

.phone-link,
.button.primary {
  background: var(--wine);
  color: white;
}

.button.secondary {
  background: var(--olive);
  color: white;
}

.button.ghost {
  color: white;
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
}

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

.hero {
  min-height: 92vh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 116px clamp(18px, 5vw, 72px) 44px;
  color: white;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 14, 10, .88) 0%, rgba(20, 14, 10, .64) 42%, rgba(20, 14, 10, .18) 100%),
    linear-gradient(0deg, rgba(20, 14, 10, .72) 0%, rgba(20, 14, 10, .05) 50%);
}

.hero-copy {
  max-width: 770px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd1a9;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 760px);
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
}

.hero-facts div {
  padding: 18px;
  background: rgba(24, 20, 17, .42);
}

.hero-facts strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.hero-facts span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
}

.intro-band,
.reviews-section,
.reservation-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.intro-band {
  background: var(--charcoal);
  color: white;
}

.intro-band p,
.reviews-section p,
.reservation-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-band p {
  color: rgba(255, 255, 255, .76);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

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

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

.feature,
.score,
.reservation-form,
.hours-box {
  border: 1px solid rgba(37, 28, 23, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 8px 34px rgba(36, 27, 20, .08);
}

.feature {
  overflow: hidden;
}

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

.feature h3,
.feature p {
  padding-inline: 20px;
}

.feature p {
  margin: 0 0 22px;
  color: var(--muted);
}

.reviews-section {
  background: var(--surface);
}

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

.score {
  min-height: 142px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.score strong {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.score span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.reservation-section {
  background: #fbf5ec;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-strip a {
  border-bottom: 2px solid var(--wine);
  color: var(--wine);
  font-weight: 900;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
}

.reservation-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 12px 13px;
  text-transform: none;
}

.reservation-form textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
}

.gallery-main,
.thumbs button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thumbs {
  display: grid;
  gap: 10px;
}

.thumbs button {
  border: 3px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
}

.thumbs button.active {
  border-color: var(--wine);
}

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

.contact-section {
  background: var(--charcoal);
  color: white;
}

.contact-details address {
  margin: 18px 0;
  color: rgba(255, 255, 255, .78);
  font-style: normal;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.contact-details a {
  color: #ffd1a9;
  font-weight: 800;
}

.hours-box {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  padding: 24px;
  color: white;
}

.hours-box h3 {
  margin-top: 0;
}

.hours-box dl {
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
}

.hours-box dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding-bottom: 9px;
}

.hours-box dt,
.hours-box dd {
  margin: 0;
}

.hours-box dd {
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 26px;
  padding: 28px clamp(18px, 5vw, 72px) 92px;
  background: #0f0c0a;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffd1a9;
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  z-index: 60;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(24, 20, 17, .92);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--wine);
  color: white;
  font-weight: 900;
}

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

  .site-header nav {
    display: none;
  }

  .phone-link {
    display: none;
  }

  .hero {
    min-height: 94vh;
    padding-top: 104px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(20, 14, 10, .86) 0%, rgba(20, 14, 10, .48) 100%),
      linear-gradient(0deg, rgba(20, 14, 10, .82) 0%, rgba(20, 14, 10, .18) 62%);
  }

  .intro-band,
  .reviews-section,
  .reservation-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .kitchen-grid,
  .score-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .brand span {
    font-size: 15px;
  }

  .brand img {
    width: 46px;
  }

  .hero {
    padding-inline: 16px;
    padding-bottom: 112px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .intro-band,
  .reviews-section,
  .reservation-section,
  .contact-section,
  .section {
    padding-inline: 16px;
  }

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

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

  .site-footer {
    padding-bottom: 96px;
  }

  .mobile-cta {
    display: grid;
  }
}
