:root {
  color-scheme: light;
  --ink: #111111;
  --paper: #f7f7f7;
  --white: #ffffff;
  --muted: #666a62;
  --line: #d9ddd5;
  --leaf: #607865;
  --berry: #8a2430;
  --berry-dark: #611821;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 247, 247, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: 0;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
  font-size: 14px;
}

.nav a,
.footer a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover,
.footer a:hover {
  color: var(--ink);
}

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

.lang-button {
  width: 38px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--berry);
  border-radius: 8px;
  background: var(--berry);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--berry-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.64);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-ghost.light {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(18px, 6vw, 88px) 72px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.28) 56%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 48%);
}

.hero-content {
  position: relative;
  max-width: 720px;
}

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

.hero .eyebrow {
  color: #d9e6dc;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(48px, 9vw, 112px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.hero p {
  max-width: 560px;
  font-size: 19px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-info div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 3vw, 28px);
}

.split,
.reservation-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
}

.image-pair {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 18px;
  align-items: end;
}

.image-pair img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-pair img:first-child {
  margin-bottom: 74px;
}

.menu-section {
  border-top: 1px solid var(--line);
}

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

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

.menu-list article {
  min-height: 126px;
  padding: 24px;
  background: var(--white);
}

.menu-list span {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.menu-list strong {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}

.price-strip p {
  margin: 0;
  padding: 20px 24px;
  background: var(--ink);
  color: var(--white);
}

.price-strip span {
  display: block;
  color: #dce6de;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.95fr;
  gap: 10px;
  padding: 10px;
  background: var(--ink);
}

.gallery img {
  width: 100%;
  height: 58vw;
  max-height: 720px;
  min-height: 340px;
  object-fit: cover;
}

.gallery img:nth-child(2),
.gallery img:nth-child(4) {
  transform: translateY(42px);
}

.mentions {
  padding-top: clamp(108px, 12vw, 160px);
}

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

.mention-grid article {
  min-height: 176px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.mention-grid strong {
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.reservation-section {
  align-items: start;
  border-top: 1px solid var(--line);
}

.policy-list {
  padding-left: 20px;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--leaf);
  font-weight: 700;
}

.voucher {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 36px;
  max-width: none;
  padding-left: max(clamp(18px, 6vw, 88px), calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(clamp(18px, 6vw, 88px), calc((100vw - var(--max)) / 2 + 28px));
  background: var(--berry);
  color: var(--white);
}

.voucher .eyebrow,
.voucher p {
  color: #f1d7db;
}

.contact-section {
  align-items: stretch;
}

.map-wrap {
  min-height: 460px;
  border: 1px solid var(--line);
  background: var(--white);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--ink);
}

.footer p {
  margin: 4px 0 0;
  color: #c9cec8;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a {
  color: #c9cec8;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 22px;
}

.legal-page h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 78px);
}

.legal-page section {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

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

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions {
    justify-content: space-between;
  }

  .quick-info,
  .split,
  .reservation-section,
  .contact-section,
  .voucher {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin: 0;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-list,
  .price-strip,
  .mention-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery img:nth-child(2),
  .gallery img:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 76vh;
    padding: 92px 18px 48px;
  }

  h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 17px;
  }

  .form-row,
  .image-pair,
  .gallery {
    grid-template-columns: 1fr;
  }

  .image-pair img,
  .gallery img {
    min-height: 280px;
  }

  .image-pair img:first-child {
    margin-bottom: 0;
  }

  .footer {
    flex-direction: column;
  }
}
