:root {
  --ink: #241b17;
  --muted: #6e635e;
  --paper: #f8f3ec;
  --cream: #fffaf2;
  --clay: #a3442f;
  --clay-dark: #78301f;
  --river: #235e68;
  --sage: #65785c;
  --line: rgba(36, 27, 23, 0.14);
  --shadow: 0 22px 60px rgba(36, 27, 23, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

.lang {
  display: none !important;
}

html[lang="cs"] .lang-cs,
html[lang="en"] .lang-en {
  display: revert !important;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 10px 32px rgba(36, 27, 23, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.brand small {
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.76;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.site-nav a {
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
}

.site-nav span {
  font-size: 14px;
  font-weight: 700;
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-switch button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.language-switch button.is-active {
  color: var(--ink);
  background: #fff;
}

.site-header.is-scrolled .language-switch button.is-active,
.site-header.is-open .language-switch button.is-active {
  color: #fff;
  background: var(--clay);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #211815;
}

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

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

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 13, 11, 0.72), rgba(20, 13, 11, 0.18) 58%, rgba(20, 13, 11, 0.66)),
    linear-gradient(0deg, rgba(20, 13, 11, 0.72), rgba(20, 13, 11, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto 156px;
  text-align: center;
}

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

.hero .eyebrow {
  color: #ffd7bd;
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  font-size: clamp(58px, 10vw, 136px);
}

h2 {
  font-size: clamp(40px, 6vw, 82px);
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

.hero-lead {
  width: min(780px, 100%);
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--clay);
}

.button.primary:hover {
  background: var(--clay-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
}

.section .button.secondary,
.contact-section .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.hero-strip {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 52px);
  bottom: 26px;
  left: clamp(18px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 15, 13, 0.44);
  backdrop-filter: blur(18px);
}

.hero-strip div {
  min-width: 0;
  padding: 18px 20px;
}

.hero-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-size: 15px;
}

.hero-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.section,
.gallery,
.contact-section {
  padding: clamp(76px, 11vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(880px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 20px;
}

.intro-copy p:first-child::first-letter {
  float: left;
  padding-right: 8px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.82;
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.feature-list p {
  grid-column: 2;
  margin: -12px 0 0;
  color: var(--muted);
}

.menu-section {
  background: var(--cream);
}

.menu-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.menu-highlights article {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

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

.menu-highlights span {
  color: var(--river);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.menu-images a {
  min-height: 360px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(36, 27, 23, 0.08);
}

.menu-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.menu-images a:hover img {
  transform: scale(1.035);
}

.gallery {
  background: #202722;
  color: #fff;
}

.gallery .eyebrow {
  color: #f6c7ad;
}

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

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.gallery-grid figure.wide {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 260ms ease, opacity 260ms ease;
}

.gallery-grid figure:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.reservation-contact {
  background:
    linear-gradient(120deg, rgba(35, 94, 104, 0.12), transparent 45%),
    var(--paper);
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 38px);
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.booking-form .full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 13px;
  color: var(--ink);
  background: var(--cream);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(163, 68, 47, 0.24);
  border-color: var(--clay);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.opening-card {
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background: var(--river);
  box-shadow: var(--shadow);
}

.opening-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 32px;
}

.opening-card a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
}

.opening-card dl {
  margin: 26px 0 0;
}

.opening-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.opening-card dt,
.opening-card dd {
  margin: 0;
}

.opening-card dd {
  font-weight: 800;
}

.contact-section {
  background: var(--cream);
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.contact-content p {
  color: var(--muted);
  font-size: 18px;
}

.contact-actions {
  justify-content: flex-start;
}

.contact-content iframe {
  width: 100%;
  height: 430px;
  border: 0;
  box-shadow: var(--shadow);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #1b1512;
  font-size: 13px;
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-toggle {
    position: relative;
    z-index: 25;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .nav-toggle span + span {
    margin-top: -14px;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 96px;
    left: 18px;
    display: none;
    padding: 20px;
    color: var(--ink);
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .language-switch {
    margin-left: auto;
  }

  .intro-grid,
  .reservation-layout,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .menu-highlights,
  .menu-images {
    grid-template-columns: 1fr;
  }

  .menu-images a {
    min-height: 420px;
  }

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

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

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .language-switch button {
    min-width: 34px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    margin-bottom: 270px;
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

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

  .hero-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .section,
  .gallery,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .feature-list article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

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

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .gallery-grid figure.wide {
    grid-column: span 1;
  }

  .menu-images a {
    min-height: 340px;
  }

  .contact-content iframe {
    height: 330px;
  }
}
