:root {
  --ink: #211815;
  --muted: #705c55;
  --paper: #fff8ef;
  --paper-strong: #fffdf9;
  --pepper: #97161d;
  --pepper-dark: #631115;
  --gold: #d9a441;
  --jade: #1f7564;
  --line: rgba(33, 24, 21, 0.14);
  --shadow: 0 20px 60px rgba(58, 25, 20, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.is-hidden {
  display: none;
}

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

button {
  font: inherit;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.lang-cs,
body[data-lang="cs"] .lang-en {
  display: none;
}

body[data-lang="cs"] .lang-cs {
  display: inline;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 248, 239, 0.94);
  box-shadow: 0 10px 28px rgba(33, 24, 21, 0.09);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--pepper);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.78;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding: 7px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-action {
  color: #fff;
  background: var(--pepper);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  background: rgba(33, 24, 21, 0.06);
  border-color: var(--line);
}

.language-switch button {
  min-width: 38px;
  min-height: 32px;
  color: currentColor;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
}

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

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 94vh;
  padding: 140px clamp(18px, 4vw, 48px) 34px;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 14, 11, 0.86), rgba(29, 14, 11, 0.54) 46%, rgba(29, 14, 11, 0.18)),
    linear-gradient(0deg, rgba(29, 14, 11, 0.76), rgba(29, 14, 11, 0.02) 55%);
}

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

.hero-media {
  background:
    linear-gradient(135deg, rgba(151, 22, 29, 0.88), rgba(31, 117, 100, 0.62)),
    radial-gradient(circle at 72% 28%, rgba(217, 164, 65, 0.5), transparent 34%),
    #3f1715;
}

.hero-media::before {
  content: "";
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.07) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.07) 25%, transparent 25%);
  background-size: 74px 74px;
  opacity: 0.35;
}

.hero-media img {
  opacity: 0.78;
  filter: saturate(0.95) contrast(1.08);
}

.hero-media:has(img.is-hidden)::after,
.speciality-media:has(img.is-hidden)::after,
.gallery-grid figure:has(img.is-hidden)::after {
  content: "Hong La Jiao";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 5rem);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.btn-primary {
  color: #fff;
  background: var(--pepper);
  box-shadow: 0 10px 28px rgba(151, 22, 29, 0.3);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 74px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(25, 13, 11, 0.38);
}

.hero-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.6fr 2fr 0.9fr;
  gap: 36px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro h2,
.section-heading h2,
.speciality h2,
.reviews h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-card {
  padding: 24px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-card span,
.intro-card a {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.intro-card strong {
  display: block;
  margin: 8px 0 18px;
  color: var(--pepper);
  font-size: 1.55rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.text-link {
  color: var(--pepper);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.menu-note {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

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

.menu-item {
  display: grid;
  grid-template-columns: 184px 1fr;
  min-height: 184px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(58, 25, 20, 0.08);
}

.menu-item img {
  background:
    linear-gradient(135deg, rgba(151, 22, 29, 0.82), rgba(217, 164, 65, 0.5)),
    #6f1a18;
}

.menu-item div {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.menu-item span {
  color: var(--jade);
  font-size: 0.76rem;
  font-weight: 900;
}

.menu-item h3 {
  margin: 6px 0 8px;
  font-size: 1.15rem;
  line-height: 1.14;
}

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

.menu-item strong {
  margin-top: auto;
  color: var(--pepper);
  font-size: 1.15rem;
}

.speciality {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.speciality-media {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(135deg, rgba(151, 22, 29, 0.76), rgba(31, 117, 100, 0.58)),
    #4a1816;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.feature-list span {
  grid-row: span 2;
  color: var(--pepper);
  font-weight: 900;
}

.feature-list h3 {
  margin: 0;
}

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

.gallery-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 4vw, 48px);
  background: #251512;
  color: #fff;
}

.gallery-section .section-heading {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 280px;
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  min-width: 0;
  background:
    linear-gradient(135deg, rgba(151, 22, 29, 0.8), rgba(217, 164, 65, 0.4)),
    #4a1816;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(20, 11, 9, 0.72);
  border-radius: 6px;
  font-weight: 800;
}

.reviews {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.review-row {
  display: grid;
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 26px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

blockquote p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

blockquote cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: stretch;
  padding-top: 0;
}

.contact-card,
.map-wrap {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-card {
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background: var(--pepper-dark);
}

.contact-card dl {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
}

.contact-card div {
  min-width: 0;
}

.contact-card dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 5px 0 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-card .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(0.86) contrast(1.02);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  color: #fff;
  background: #17100f;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    order: 3;
  }

  .language-switch {
    justify-self: end;
    order: 2;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-panel,
  .intro,
  .menu-grid,
  .speciality,
  .reviews,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-card {
    width: min(100%, 360px);
  }

  .speciality-media {
    min-height: 420px;
  }

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

  .gallery-large {
    grid-row: span 1;
  }
}

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

  .brand strong {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-inline: 18px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 20vw, 5.5rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel {
    margin-top: 46px;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item img {
    aspect-ratio: 16 / 10;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feature-list div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
