@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@300;400;500;600&display=swap");

@font-face {
  font-family: "Brush Script MT Web";
  src:
    local("Brush Script MT Italic"),
    local("Brush Script MT"),
    url("../fonts/Brush%20Script%20MT%20Italic.woff2")
      format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Brush Script MT Web";
  src:
    local("Brush Script MT Italic"),
    local("Brush Script MT"),
    url("../fonts/Brush%20Script%20MT%20Italic.woff2")
      format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --site-bg: #f8f8f6;
  --site-fg: #1c1c1c;
  --site-accent: #dcc48e;
  --header-row-h: 88px;
  --header-height: 88px;
  --content-wrap: min(1100px, 92vw);
  --split-gap: clamp(20px, 4vw, 48px);
  --grid-gap: clamp(16px, 3vw, 28px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--site-bg);
  color: var(--site-fg);
  overflow-x: hidden;
  font-family: "Red Hat Text", system-ui, sans-serif;
}

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

body.nav-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img,
svg,
video {
  display: block;
}

a {
  color: inherit;
}

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

.site {
  min-height: 100vh;
}

.site-main {
  min-height: calc(100vh - var(--header-height));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10030;
  width: 100%;
  background: rgba(248, 248, 246, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.pdf-open .site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  min-height: var(--header-row-h);
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 40px);
}

.header-spacer {
  height: var(--header-height);
}

.logo img {
  display: block;
  height: 38px;
  position: relative;
  top: 4px;
}

.nav-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  margin-left: 20px;
}

.nav-left a,
.mobile-nav a,
.site-footer__nav a {
  font-family: "Red Hat Text", sans-serif;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-left a {
  font-size: 1rem;
  font-weight: 300;
}

.nav-left a:hover,
.mobile-nav a:hover,
.site-footer__nav a:hover {
  opacity: 0.6;
}

.nav-left a.disabled,
.mobile-nav a.disabled,
.site-footer__nav a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.nav-left a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  opacity: 1;
  font-weight: 600;
  text-decoration: none;
}

.site-footer__nav a[aria-current="page"] {
  opacity: 0.6;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.lang-switch {
  position: relative;
}

.lang-toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 1.4rem;
  cursor: pointer;
}

.lang-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10051;
  min-width: 130px;
  max-width: calc(100vw - 32px);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.lang-menu.is-open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.lang-menu p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.lang-menu__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lang-menu__row a {
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
}

.lang-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10045;
  display: none;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

.lang-backdrop.is-open {
  display: block;
}

.menu-toggle {
  position: relative;
  z-index: 10050;
  display: none;
  width: 28px;
  height: 22px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--site-fg);
  border-radius: 2px;
  transform-origin: 50% 50%;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: none;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  padding-top: calc(var(--header-height) + 20px);
  overflow-y: auto;
  background: var(--site-bg);
}

.mobile-nav.is-open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.mobile-nav a {
  margin: 12px 0;
  font-size: 1.4rem;
  font-weight: 400;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 50px;
  background: var(--site-accent);
  color: var(--site-bg);
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  font-size: 1rem;
  font-weight: 400;
}

.site-footer__logo {
  width: 100%;
  margin: 50px 0 0;
  padding: 10px 0;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__social-text {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 300;
  color: var(--site-bg);
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  margin-top: 24px;
}

.site-footer__social a img {
  width: 38px;
  height: 38px;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.site-footer__social a:hover img {
  opacity: 0.7;
}

.site-footer__meta {
  margin-top: 22px;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--site-bg);
  text-align: center;
}

.site-footer__meta a {
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 248, 246, 0.4);
}

.site-footer__meta a:hover {
  opacity: 0.8;
  border-color: rgba(248, 248, 246, 0.8);
}

.cta-call {
  position: fixed;
  right: clamp(12px, 2vw, 20px);
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(12px, 2vw, 20px));
  z-index: 9999;
}

.cta-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}

.cta-toggle {
  all: unset;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  cursor: pointer;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
  transition: opacity 0.2s ease;
}

.cta-toggle .icon {
  width: 54px;
  height: 54px;
}

.cta-toggle .icon path {
  transform: scale(0.6);
  transform-origin: 50% 50%;
}

.cta-toggle:active {
  transform: translateY(1px);
}

.cta-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.96);
  transform-origin: 100% 100%;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cta-panel a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--site-fg);
  color: var(--site-bg);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.cta-panel .icon {
  width: 18px;
  height: 18px;
}

.cta-call.open .cta-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cta-call.open .cta-toggle {
  opacity: 0;
  pointer-events: none;
}

.cta-toast {
  position: fixed;
  right: clamp(12px, 2vw, 20px);
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(64px, 6vw, 80px));
  z-index: 10000;
  padding: 10px 12px;
  background: rgba(28, 28, 28, 0.95);
  color: var(--site-bg);
  border-radius: 10px;
  font: 500 14px/1.2 "Red Hat Text", system-ui, sans-serif;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cta-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
  touch-action: pan-y;
}

.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #f8f8f6;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-50%);
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.slider .nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

.slider .prev {
  left: 10px;
}

.slider .next {
  right: 10px;
}

.slider .dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider .dot {
  appearance: none;
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: #f8f8f6;
  cursor: pointer;
  box-shadow: none;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.slider .dot:hover {
  opacity: 1;
}

.slider .dot.active {
  width: 10px;
  height: 10px;
  border: 2px solid #f8f8f6;
  background: transparent;
  opacity: 1;
}

.slider .dot:focus-visible {
  outline: 2px solid rgba(248, 248, 246, 0.7);
  outline-offset: 2px;
}

.slider.single .nav,
.slider.single .dots {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox.open {
  display: flex;
}

.lightbox__inner {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  max-width: 92vw;
  max-height: 92vh;
  overflow: auto;
  align-items: stretch;
  justify-items: stretch;
}

.lightbox__inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #111;
  pointer-events: auto;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  padding: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__hint,
.lightbox__exit {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 8px 12px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
}

.lightbox__hint {
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(4px);
}

.lightbox__exit {
  display: none;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.lightbox.interactive .lightbox__hint {
  display: none;
}

.lightbox.interactive .lightbox__exit {
  display: inline-block;
}

.site-main [id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.video-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  aspect-ratio: 21 / 9;
}

.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px);
  transform: scale(1.03);
  transition: opacity 0.35s ease;
  opacity: 0;
}

.video-hero.pending video {
  opacity: 0;
  visibility: hidden;
}

.video-hero:not(.pending) video.visible {
  opacity: 1;
  visibility: visible;
}

.video-hero video.top,
.video-hero video.bottom {
  z-index: 0;
}

.video-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: blur(1px);
  transform: scale(1.02);
  transition: opacity 0.25s ease;
}

.video-hero:not(.pending) .video-hero__poster {
  opacity: 0;
  visibility: hidden;
}

.video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.video-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0 16px;
  color: #f8f8f6;
  text-align: center;
}

.video-hero__title {
  font-family: "Brush Script MT Web", "Brush Script MT", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  transform: skewX(-8deg);
  margin: 0;
}

.video-hero__subtitle {
  max-width: 70ch;
  margin: 0 auto;
  font-family: "Red Hat Text", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.95;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

.text-wrap {
  max-width: var(--content-wrap);
  margin: auto;
  padding: clamp(28px, 5vw, 56px) 0;
  color: var(--site-fg);
  font-family: "Red Hat Text", system-ui, sans-serif;
}

.divider {
  height: 1px;
  margin: clamp(16px, 3.5vw, 28px) 0;
  background: rgba(0, 0, 0, 0.14);
  border: 0;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: var(--grid-gap);
}

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

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

.card {
  padding: clamp(16px, 3.5vw, 22px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.map {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.meta {
  margin: 0.15rem 0 0;
  padding-bottom: 16px;
  color: #4b4b4b;
  font-size: 0.95rem;
}

.link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.link:hover {
  border-color: rgba(0, 0, 0, 0.5);
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--split-gap);
  align-items: center;
  width: 100%;
  isolation: isolate;
}

.split-section .col {
  position: relative;
  z-index: 0;
}

.split-section .col.text {
  display: grid;
  justify-items: start;
  width: 100%;
}

.split-section .col.text.up {
  align-content: start;
  align-self: start;
}

.split-section .col.media {
  display: grid;
  place-items: center;
}

.split-section.alt .col.text {
  order: 2;
}

.split-section.alt .col.media {
  order: 1;
}

.split-section .col.text .title,
.split-section .col.text .lead {
  width: 100%;
  max-width: none;
}

.split-section .col.text a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.split-section .col.text a:visited {
  color: inherit;
}

.split-section .col.text a:hover .title,
.split-section .col.text a:focus .title {
  opacity: 0.85;
  color: inherit;
  text-decoration: none;
  transform: translateY(-1px);
}

.site:not(.site--o-nas) .split-section {
  padding: clamp(24px, 5vw, 64px) clamp(40px, 8vw, 120px);
}

.site:not(.site--o-nas) .split-section .col.text {
  align-content: center;
}

.site:not(.site--o-nas) .split-section .title {
  margin: 0;
  font-family: "Brush Script MT Web", "Brush Script MT", cursive;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0.3px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site:not(.site--o-nas) .split-section .lead {
  margin: 0;
  font-family: "Red Hat Text", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.5;
  text-wrap: balance;
}

.site:not(.site--o-nas) .section-divider {
  width: min(92%, 1200px);
  height: 1px;
  margin: clamp(24px, 5vw, 64px) auto;
  background: rgba(0, 0, 0, 0.18);
  border: 0;
}

.site:not(.site--o-nas) .split-section-bonus-info {
  padding-top: clamp(8px, 2vw, 20px);
}

.site:not(.site--o-nas) .split-section-tight-bottom {
  padding-bottom: clamp(8px, 2vw, 20px);
}

.brand-cta-heading {
  margin: 24px 0 12px;
  color: var(--site-fg);
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.brand-cta {
  width: 100%;
}

.brand-cta a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.brand-cta img {
  display: block;
  user-select: none;
  transition: transform 0.15s ease, opacity 0.15s ease, filter 0.15s ease;
}

@media (hover: hover) {
  .brand-cta a:hover img,
  .brand-cta a:focus-visible img {
    transform: scale(1.04);
    opacity: 0.92;
  }
}

.brand-cta a:active img,
.brand-cta a.pressed img {
  transform: scale(0.97);
  opacity: 0.9;
}

.site--catering .brand-cta,
.site--pozicovna .brand-cta {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 3vw, 16px);
  margin: clamp(8px, 2vw, 16px) auto clamp(16px, 4vw, 28px);
}

.site--catering .brand-cta a,
.site--pozicovna .brand-cta a {
  display: inline-grid;
  place-items: center;
}

.site--catering .brand-cta img,
.site--pozicovna .brand-cta img {
  width: clamp(130px, 18vw, 220px);
  aspect-ratio: 3.2 / 1;
  height: auto;
  border-radius: 6px;
  will-change: transform, opacity;
}

.site--apartmany .brand-cta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: clamp(8px, 1.4vw, 16px);
  margin: clamp(6px, 1.6vw, 14px) auto clamp(14px, 3vw, 24px);
  padding: 0;
  contain: layout paint;
}

.site--apartmany .brand-cta a {
  display: grid;
  place-items: center;
  width: clamp(170px, 15vw, 220px);
  aspect-ratio: 3.2 / 1;
}

.site--apartmany .brand-cta img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.site--catering .main-title,
.site--pozicovna .main-title {
  margin: clamp(16px, 4vw, 32px) 0 clamp(12px, 3vw, 24px);
  font-family: "Brush Script MT Web", "Brush Script MT", cursive;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.3px;
  text-align: center;
}

.site--catering .small-title,
.site--pozicovna .small-title {
  margin: 0 0 8px;
  font-family: "Brush Script MT Web", "Brush Script MT", cursive;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.3px;
}

.site--o-nas a,
.site--o-nas p {
  font-family: "Red Hat Text", system-ui, sans-serif;
  font-weight: 400;
}

.site--o-nas a {
  color: inherit;
  text-decoration: none;
}

.site--o-nas a:hover {
  text-decoration: underline;
}

.site--o-nas .lead {
  margin: 0;
  font-size: clamp(1rem, 1.05rem + 0.2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
}

.site--o-nas .h1-script {
  margin: 0 0 10px;
  font-family: "Brush Script MT Web", "Brush Script MT", cursive;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.3px;
  text-align: center;
}

.site--o-nas .h2 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 1.2rem + 0.4vw, 1.6rem);
  font-weight: 500;
}

.site--o-nas .center {
  text-align: center;
}

.site--o-nas .bullets {
  margin: 0;
  padding: 0 0 0 1.1em;
}

.site--o-nas .bullets li {
  margin: 0.35em 0;
}

.site--o-nas h1 {
  margin: 0 0 10px;
  font-family: "Brush Script MT Web", "Brush Script MT", cursive;
  font-size: clamp(2.8rem, 6.2vw, 5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.3px;
}

.site--o-nas h2 {
  margin: 0 0 10px;
  font-family: "Brush Script MT Web", "Brush Script MT", cursive;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.3px;
}

.site--o-nas h3 {
  margin: 0 0 8px;
  font-family: "Red Hat Text", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.1rem + 0.35vw, 1.45rem);
  font-weight: 500;
}

.site--o-nas .split-section {
  max-width: var(--content-wrap);
  margin: auto;
  padding: clamp(28px, 5vw, 56px) 0;
}

.site--o-nas .split-section .col.text {
  align-content: center;
}

.site--o-nas .split-section-2080 {
  grid-template-columns: 0.35fr 1.65fr;
}

.site--o-nas .brand-logo {
  display: block;
  width: min(300px, 50vw);
  height: auto;
  padding-top: 16px;
}

.site--o-nas .text-wrap--find-us {
  margin-top: clamp(20px, 4vw, 40px);
  margin-bottom: clamp(20px, 4vw, 40px);
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 40px);
  background: var(--site-accent);
  border-radius: 28px;
}

.site--o-nas .find-us__title {
  margin: 0;
  padding-bottom: 24px;
  color: #f8f8f6;
  text-align: center;
}

.site--o-nas .find-us__grid {
  margin-top: clamp(12px, 2.5vw, 32px);
}

.site--o-nas .find-us__card-title {
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .header-inner {
    justify-content: center;
  }

  .logo img {
    height: 30px;
    top: 0;
  }

  .nav-left {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    left: clamp(14px, 5vw, 20px);
    top: 50%;
    display: flex;
    transform: translateY(-50%);
  }

  .lang-switch {
    position: absolute;
    right: clamp(14px, 5vw, 22px);
    top: 50%;
    transform: translateY(-50%);
  }

  .lang-menu {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: min(280px, calc(100vw - 32px));
    min-width: min(280px, calc(100vw - 32px));
    padding: 18px 22px;
    border-radius: 18px;
  }

  .lang-menu__row {
    gap: 16px;
  }

  .lang-menu__row a {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .video-hero {
    aspect-ratio: 1 / 1;
  }

  .video-hero video {
    filter: blur(1px);
    transform: scale(1.02);
  }

  .video-hero__poster,
  .video-hero video {
    transition: none !important;
  }

  .video-hero .video-hero__title {
    font-size: clamp(4rem, 20vmin, 10rem) !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transform: skewX(-8deg);
  }

  .video-hero .video-hero__subtitle {
    font-size: 0.9rem !important;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .site:not(.site--o-nas) .split-section {
    grid-template-columns: 1fr;
    padding: clamp(20px, 4vw, 40px) clamp(16px, 6vw, 40px);
  }

  .site:not(.site--o-nas) .split-section + .split-section {
    margin-top: 40px;
  }

  .site:not(.site--o-nas) .split-section .col.text,
  .site:not(.site--o-nas) .split-section.alt .col.text {
    order: 1 !important;
  }

  .site:not(.site--o-nas) .split-section .col.media,
  .site:not(.site--o-nas) .split-section.alt .col.media {
    order: 2 !important;
  }

  .site:not(.site--o-nas) .split-section .title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .site:not(.site--o-nas) .split-section .lead {
    font-size: 1rem;
  }

  .site:not(.site--o-nas) .split-section-bonus-info {
    padding-top: clamp(6px, 2.5vw, 16px);
  }

  .site:not(.site--o-nas) .split-section-tight-bottom {
    padding-bottom: clamp(6px, 2.5vw, 16px);
  }

  .site--catering .brand-cta,
  .site--pozicovna .brand-cta {
    gap: clamp(8px, 4vw, 16px);
    padding-bottom: clamp(20px, 4vw, 40px);
  }

  .site--catering .brand-cta img,
  .site--pozicovna .brand-cta img {
    width: clamp(120px, 40vw, 200px);
  }

  .site--apartmany .brand-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 4vw, 16px);
    padding-bottom: clamp(20px, 4vw, 40px);
  }

  .site--apartmany .brand-cta a {
    width: clamp(140px, 44vw, 220px);
  }

  .site--apartmany .brand-cta a:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .site--o-nas .h1-script {
    text-align: left;
  }

  .site--o-nas .split-section,
  .site--o-nas .split-section-2080 {
    grid-template-columns: 1fr;
  }

  .site--o-nas .text-wrap--find-us {
    border-radius: 20px;
    padding: clamp(20px, 4vw, 32px) clamp(16px, 4vw, 20px);
  }

  .site--o-nas .split-section {
    padding: clamp(20px, 4vw, 32px) 0;
  }

  .site--o-nas .split-section .col.text {
    order: 2 !important;
  }

  .site--o-nas .split-section .col.media {
    order: 1 !important;
  }

  .site--o-nas .brand-logo {
    width: min(340px, 75vw);
  }

  .site-footer {
    padding: 40px 10px;
  }

  .site-footer__nav {
    gap: 25px;
    font-size: 1rem;
  }

  .site-footer__logo {
    margin-top: 40px;
  }

  .site-footer__social-text {
    margin-bottom: 8px;
  }

  .site-footer__meta {
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) {
  .site--catering .brand-cta,
  .site--pozicovna .brand-cta {
    gap: clamp(24px, 2.5vw, 40px);
  }

  .site--catering .brand-cta img,
  .site--pozicovna .brand-cta img {
    width: clamp(170px, 20vw, 260px);
  }

  .site--apartmany .brand-cta a:nth-child(1) {
    justify-self: end;
  }

  .site--apartmany .brand-cta a:nth-child(2) {
    justify-self: center;
  }

  .site--apartmany .brand-cta a:nth-child(3) {
    justify-self: start;
  }
}

@media (min-width: 992px) {
  .cta-call {
    right: clamp(60px, 4vw, 120px);
    bottom: clamp(24px, 2vw, 40px);
  }

  .cta-toggle {
    width: 72px;
    height: 72px;
  }

  .cta-toggle .icon {
    width: 72px;
    height: 72px;
  }

  .cta-toggle .icon path {
    transform: scale(0.62);
    transform-origin: 50% 50%;
  }

  .cta-panel a {
    padding: 14px 18px;
    font-size: 16px;
  }

  .cta-toast {
    bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(92px, 6vw, 110px));
  }
}

@supports (-webkit-touch-callout: none) {
  .site--apartmany .brand-cta a {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-hero video {
    display: none;
  }

  .video-hero {
    background: #111;
  }
}

@media print {
  .cta-call,
  .cta-toast {
    display: none !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
