:root {
  color-scheme: light;
  --primary: #a01d20;
  --dark: #071a0f;
  --background: #ffffff;
  --surface: #f6f6f5;
  --muted: rgba(7, 26, 15, 0.62);
  --border: rgba(7, 26, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--dark);
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

/* ---- Header ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 2.5rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 68px;
  width: auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.lang-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.is-active,
.lang-btn:hover,
.lang-btn:focus-visible {
  background: var(--primary);
  color: #ffffff;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.6rem;
  border-radius: 12px;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow,
.section-label {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-cta,
.hero-secondary,
.secondary-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.hero-cta,
.button {
  background: var(--primary);
  color: #ffffff;
}

.hero-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero-secondary,
.secondary-cta {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}

.hero-secondary:hover,
.secondary-cta:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---- Center logo ---- */

.center-logo-wrap {
  display: flex;
  justify-content: center;
  padding: 3.5rem 2rem 0;
  background: var(--surface);
}

.center-logo {
  height: 340px;
  width: auto;
}

/* ---- Sections (single column, stacked) ---- */

.section {
  padding: 5rem 2rem;
  background: var(--surface);
}

#menu {
  padding-bottom: 2rem;
}

#lokalita {
  padding-top: 2rem;
}

.section-header {
  max-width: 42rem;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--dark);
}

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

.menu-poster {
  max-width: 42rem;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--primary);
}

.menu-poster img {
  width: 100%;
  height: auto;
}

/* ---- Forms / Contact ---- */

.form-message {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-message--success {
  color: var(--primary);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: left;
}

.checkbox-label input {
  margin-top: 0.2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 24rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contact-details strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
}

.contact-details p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.map-panel {
  max-width: 42rem;
  margin: 0 auto 2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--primary);
}

.map-frame {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ---- Footer ---- */

.site-footer {
  padding: 3rem 2rem 2rem;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .contact-details {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}

.site-footer .contact-details strong {
  color: #ffffff;
}

.site-footer .contact-details p {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
  display: grid;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ---- Mobile ---- */

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
  }

  .brand {
    align-self: center;
  }

  .nav-toggle {
    display: inline-flex;
    align-self: flex-end;
    position: absolute;
    right: 1.25rem;
    top: 0.85rem;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border);
  }

  .site-nav[data-visible="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
  }

  .site-nav a:first-of-type {
    border-top: none;
  }

  .lang-switch {
    align-self: center;
    margin-top: 0.5rem;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  #menu {
    padding-bottom: 1.5rem;
  }

  #lokalita {
    padding-top: 1.5rem;
  }

  .center-logo-wrap {
    padding: 2rem 1.25rem 0;
  }

  .center-logo {
    height: 160px;
  }
}

/* ---- Review page ---- */

.review-page {
  flex: 1;
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: calc(100vh - 90px);
}

.review-col-left {
  padding: 3.5rem 3rem;
  border-right: 1px solid var(--border);
}

.review-col-left h1 {
  margin: 0 0 2rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--dark);
}

.review-photo-frame {
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 1 / 1;
  border: 1px dashed var(--primary);
  border-radius: 18px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-col-right {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.review-col-right > form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.review-rating h2,
.review-text-block h2 {
  margin: 0 0 1.25rem;
  font-size: 1.2rem;
  color: var(--dark);
}

.rating-circles {
  display: flex;
  gap: 0.85rem;
}

.rating-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease;
}

.rating-circle.is-filled {
  background: var(--primary);
}

.review-textarea {
  display: block;
  width: 100%;
  max-width: 36rem;
  min-height: 10rem;
  padding: 1.25rem;
  border: 1px solid var(--primary);
  border-radius: 20px;
  background: var(--surface);
  color: var(--dark);
  resize: vertical;
  margin-bottom: 1.25rem;
}

.review-textarea:focus {
  outline: 2px solid rgba(160, 29, 32, 0.2);
  border-color: var(--primary);
}

.review-text-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--dark);
}

.review-email-input {
  display: block;
  width: 100%;
  max-width: 36rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  border: 1px solid var(--primary);
  border-radius: 14px;
  background: var(--surface);
  color: var(--dark);
}

.review-email-input:focus {
  outline: 2px solid rgba(160, 29, 32, 0.2);
  border-color: var(--primary);
}

.review-optional {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.review-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 36rem;
  padding: 2.5rem 1.5rem;
  margin-bottom: 1.75rem;
  border: 1px dashed var(--primary);
  border-radius: 18px;
  background: var(--surface);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease;
}

.review-upload:hover {
  border-color: var(--dark);
}

.review-upload-icon {
  font-size: 1.5rem;
}

.review-upload-title {
  font-weight: 700;
  color: var(--dark);
}

.review-upload-hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.review-consent {
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-col-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}
