/* =========================================================================
   VARIABLES & FONTS
   ========================================================================= */

   @font-face {
    font-family: 'Everett';
    src: url('fonty/EVERETT-REGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Everett';
    src: url('fonty/EVERETT-MEDIUM.OTF') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonty/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand Colors */
    --color-primary: #416055;    /* Dark green */
    --color-primary-rgb: 65, 96, 85;
    --color-primary-text: #1C3a34; /* Dark green text */
    --color-primary-text-rgb: 28, 58, 52;
    --color-secondary: #416055;  /* Green */
    --color-accent: #e1c36e;     /* Gold */
    
    /* Background & Neutrals */
    --color-bg-light: #ffffff;
    --color-bg-neutral1: #f3ece8;
    --color-bg-neutral2: #d9d9d9;
    --color-bg-dark: #416055;
    
    /* Text Colors */
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-heading: #1C3a34;
    
    /* Typography */
    --font-heading: 'Everett', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --text-base-size: 1rem;
    --line-height-body: 1.6;
    
    /* Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;
    --spacing-xxl: 12rem;
    --container-max-width: 1400px;
    --container-width-mobile: 80%;
    --container-width-desktop: 85%;
    
    /* Global styles */
    --border-radius: 0px;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   RESET & BASE STYLES
   ========================================================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; 
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: var(--line-height-body);
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-font-smoothing: antialiased;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h1 {
    font-size: clamp(2.8rem, 5.1vw, 5.5rem);
    letter-spacing: 0.1em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    position: relative;
}

/* LuxusnÃ­ dekoraÄnÃ­ linie nad nadpisy */
.text-center h2::before {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    background-color: var(--color-accent);
    margin: 0 auto 1.5rem auto;
}

.text-side h2::before,
.text-side h3::before {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    background-color: var(--color-accent);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
}

p {
    font-size: var(--text-base-size);
    font-weight: 350;
    margin-bottom: var(--spacing-sm);
    max-width: 70vw; /* text max width constraint */
}


@media (max-width: 768px) {
    p {
        max-width: 100%; /* reset on mobile inside restricted wrapper */
    }
}

a {
    color: var(--color-primary-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.icon-graphic {
    display: inline-block;
    flex: 0 0 auto;
    width: 1em;
    height: 1em;
    object-fit: contain;
    filter: invert(78%) sepia(41%) saturate(503%) hue-rotate(7deg) brightness(96%) contrast(90%);
}

/* =========================================================================
   LAYOUT UTILITIES
   ========================================================================= */

.container {
    width: var(--container-width-mobile);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .container {
        width: var(--container-width-desktop);
    }

    .site-header .container {
        width: 90vw;
        max-width: none;
    }
}

section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    z-index: 1;
}

.text-center {
    text-align: center;
}

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.dark-section {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.dark-section h1, 
.dark-section h2, 
.dark-section h3,
.dark-section p {
    color: var(--color-text-light);
}

.neutral-section {
    background-color: var(--color-bg-neutral1);
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (max-width: 1023px) {
    .split-layout {
        align-items: stretch;
    }

    .split-layout > .text-side,
    .split-layout > .image-side {
        width: 100%;
    }

    .split-layout > .image-side img {
        width: 100%;
    }

    .surroundings .text-side {
        order: 1;
    }

    .surroundings .image-side {
        order: 2;
    }
}

@media (min-width: 1024px) {
    .split-layout {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .split-layout.reverse {
        flex-direction: row-reverse;
    }

    .split-layout > div {
        flex: 1;
    }
}

/* =========================================================================
   COMPONENTS
   ========================================================================= */

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border: none;
    transition: all var(--transition-slow);
    text-align: center;
    border-radius: var(--border-radius);
    margin-top: var(--spacing-md);
    position: relative;
    font-size: 0.9rem;
}

.btn-gold {
    background-color: var(--color-accent);
    color: var(--color-primary-text);
    border: 1px solid var(--color-accent);
}

.btn-gold:hover {
    background-color: #ead58f;
    border-color: #ead58f;
    color: var(--color-primary-text);
}

.btn-green {
    background-color: var(--color-secondary);
    color: var(--color-bg-light);
    border: 1px solid var(--color-secondary);
}

.btn-green:hover {
    background-color: #5a7d70;
    border-color: #5a7d70;
    color: var(--color-bg-light);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary-text);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.24);
    border-color: #5a7d70;
    color: #5a7d70;
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--color-primary-text);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--color-primary-text);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: var(--spacing-md);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Watermark Dividers */
.watermark-divider {
    position: relative;
    height: 0;
    overflow: visible;
    z-index: 0;
    width: 100%;
}

.watermark-divider::after {
    content: "";
    position: absolute;
    top: -400px;
    right: -25%;
    width: 1000px;
    height: 1000px;
    background-image: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

/* Alternate side every other watermark */
.watermark-divider:nth-of-type(even)::after {
    right: auto;
    left: -25%;
    background-position: left center;
}

/* DekorativnÃ­ znak V na pomezÃ­ sekcÃ­ */
.section-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background-color: var(--color-accent);
    mask-image: url('V.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url('V.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    z-index: 10;
}

/* Pro tmavÃ© sekce mÅ¯Å¾eme vodoznak invertovat */
.dark-section + .watermark-divider::after {
    filter: none;
    opacity: 0.04;
}

/* Placeholders */
.placeholder-box {
    background-color: var(--color-bg-neutral2);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    min-height: 250px;
    color: var(--color-text-dark);
}

.instagram .instagram-intro {
    margin-bottom: var(--spacing-lg);
}

.home-page .instagram {
    padding-bottom: 0;
}

.instagram-widget-fullwidth {
    position: relative;
    z-index: 1;
    width: 100%;
    line-height: 0;
}

.instagram-widget-fullwidth .lightwidget-widget {
    display: block;
    width: 100% !important;
    max-width: none;
    border: 0;
    overflow: hidden;
}

/* Lists */
.custom-list {
    margin: var(--spacing-md) 0;
}

.custom-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    line-height: var(--line-height-body);
}

.custom-list li .icon-graphic {
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 1.1rem;
    height: 1.1rem;
    color: var(--color-accent);
}

.surroundings .custom-list li {
    padding-left: calc(1.5rem + 20px);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: var(--line-height-body);
}

.surroundings .custom-list li .icon-graphic {
    width: 1.5em;
    height: 1.5em;
    top: 50%;
    transform: translateY(-50%);
}

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */

.site-header {
    background: #ffffff;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: none;
}

.secondary-nav {
    background-color: var(--color-primary);
}

.secondary-nav-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 34px;
}

.secondary-nav-phone {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.secondary-nav-phone:hover {
    color: #ffffff;
}

.secondary-nav-phone:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}


.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    transition: transform var(--transition-fast);
    filter: none;
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    overflow: hidden; /* For JS based collapse measuring */
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: opacity 0.2s;
}

html.nav-font-loading .site-header .nav-links {
    opacity: 0;
}

html.nav-font-ready .site-header .nav-links {
    animation: nav-font-reveal 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes nav-font-reveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html.nav-font-ready .site-header .nav-links {
        animation: none;
    }
}

.nav-links.wrap-detected {
    /* JS will add this class when elements would wrap */
    display: none !important;
}

.nav-links a {
    font-family: var(--font-heading);
    color: var(--color-primary-text);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a[aria-current="page"] {
    color: var(--color-accent);
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .header-inner {
        gap: 1.5rem;
    }

    .logo img {
        height: 54px;
    }

    .main-nav {
        min-width: 0;
        justify-content: flex-end;
    }

    .nav-links {
        gap: 2rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }
}

.mobile-nav-overlay .nav-links a {
    color: var(--color-primary-text);
}

.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}

.flag-round {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    border: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.flag-uk-round {
    background-image: url('en_GB.svg');
}

.flag-cs-round {
    background-image: url('cs_CZ.svg');
}

.main-nav .flag-round {
    transform: translateY(2px);
}

.mobile-nav-overlay .flag-round {
    width: 30px;
    height: 30px;
    transform: none;
}

.mobile-lang-link {
    display: none;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.desktop-lang-item {
    display: none;
}

/* Hamburger default hidden */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-text);
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu State via JS */
.hamburger.visible {
    display: flex;
}

.hamburger.is-active .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger.is-active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: var(--header-height, 92px);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height, 92px));
    background-color: var(--color-bg-light);
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg) var(--spacing-md);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.mobile-nav-overlay.is-open {
    transform: translateX(0);
}

.mobile-nav-overlay .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.mobile-nav-overlay .nav-links a {
    font-size: 1.5rem;
}

/* =========================================================================
   SECTIONS
   ========================================================================= */

.atmosphere {
    position: relative;
    overflow: hidden;
}


/* HorizontÃ¡lnÃ­ dekorativnÃ­ element na pravÃ©m okraji sekce UbytovÃ¡nÃ­ s atmosfÃ©rou */
.atmosphere::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    width: 380px;
    height: 160px;
    background-image: none;
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: right center;
    opacity: 0.05;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}
.atmosphere-gallery {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, minmax(180px, 1fr));
    gap: 1rem;
    min-height: 520px;
}

.atmosphere-gallery-item {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.atmosphere-gallery .atmosphere-photo {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
    .atmosphere-gallery-item:hover .atmosphere-photo,
    .atmosphere-gallery-item:focus-visible .atmosphere-photo {
        transform: scale(1.08);
    }
}

.atmosphere-gallery-item:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.atmosphere-gallery .atmosphere-photo-main {
    grid-row: span 2;
}

@media (max-width: 1023px) {
    .atmosphere-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 320px 220px;
        min-height: 0;
    }

    .atmosphere-gallery .atmosphere-photo-main {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .atmosphere-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 240px);
    }
}


/* Hero - asymetrickÃ½ editorial motiv */
.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height, 100px);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}

.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center right; 
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(to bottom, rgba(var(--color-primary-text-rgb), 0.52) 0%, rgba(var(--color-primary-text-rgb), 0.34) 28%, rgba(var(--color-primary-text-rgb), 0.32) 70%, rgba(var(--color-primary-text-rgb), 0.56) 100%),
        linear-gradient(to right, rgba(var(--color-primary-rgb), 0.22) 0%, rgba(var(--color-primary-rgb), 0.62) 34%, rgba(var(--color-primary-rgb), 0.72) 50%, rgba(var(--color-primary-rgb), 0.62) 66%, rgba(var(--color-primary-rgb), 0.22) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    --hero-content-y: 6vh;
    --hero-reveal-offset: 18px;
    transform: translateY(var(--hero-content-y));
}

.hero > .hero-content {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(calc(var(--hero-content-y) + var(--hero-reveal-offset)));
    transition:
        opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 900ms ease;
    transition-delay: 120ms;
    will-change: opacity, transform, filter;
}

.fonts-ready .hero > .hero-content {
    opacity: 1;
    filter: blur(0);
    transform: translateY(var(--hero-content-y));
}

.hero .hero-text-container h1,
.hero .hero-text-container .subtitle,
.hero .hero-buttons {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fonts-ready .hero .hero-text-container h1,
.fonts-ready .hero .hero-text-container .subtitle,
.fonts-ready .hero .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

.fonts-ready .hero .hero-text-container h1 {
    transition-delay: 180ms;
}

.fonts-ready .hero .hero-text-container .subtitle {
    transition-delay: 300ms;
}

.fonts-ready .hero .hero-buttons {
    transition-delay: 430ms;
}

.hero-text-container {
    max-width: min(90vw, 1180px);
    padding-left: 0;
    position: relative;
    border-left: none;
}

.hero-badge-left {
    width: 45px;
    height: 45px;
    background-color: var(--color-accent);
    mask-image: url('V.svg');
    mask-repeat: no-repeat;
    mask-position: left center;
    mask-size: contain;
    -webkit-mask-image: url('V.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left center;
    -webkit-mask-size: contain;
    margin-bottom: 2rem;
}

.hero-text-container h1 {
    color: var(--color-text-light);
    font-size: clamp(2.8rem, 5.1vw, 5.5rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 300;
    white-space: nowrap;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.34);
}

.hero-text-container .subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    font-weight: 400;
    margin-bottom: 3.5rem;
    text-transform: none;
    letter-spacing: 0;
    color: #ffffff;
    line-height: 1.65;
    white-space: nowrap;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.36);
}

.hero-text-container .subtitle::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin-top: 1.2rem;
    background-color: rgba(225, 195, 110, 0.9);
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
    .hero > .hero-content,
    .hero .hero-text-container h1,
    .hero .hero-text-container .subtitle,
    .hero .hero-buttons {
        transition: none;
        will-change: auto;
    }

    .fonts-ready .hero > .hero-content {
        filter: none;
    }
}

@media (scripting: none) {
    .hero > .hero-content {
        opacity: 1;
        filter: none;
        transform: translateY(var(--hero-content-y));
    }

    .hero .hero-text-container h1,
    .hero .hero-text-container .subtitle,
    .hero .hero-buttons {
        opacity: 1;
        transform: none;
    }
}
@media (min-width: 1024px) and (max-width: 1440px),
       (min-width: 1024px) and (max-height: 860px) {
    .hero {
        align-items: center;
    }

    .hero-content {
        --hero-content-y: 3vh;
        padding-top: 0;
    }

    .hero-text-container {
        max-width: min(92vw, 1180px);
        padding-left: 0;
    }

    .hero-text-container h1 {
        font-size: clamp(2.65rem, 4.7vw, 4.55rem);
        line-height: 1.03;
        margin-bottom: 1.35rem;
    }

    .hero-text-container .subtitle {
        font-size: 18px;
        letter-spacing: 0;
        line-height: 1.55;
        margin-bottom: 2.25rem;
    }

    .hero-text-container .subtitle::after {
        margin-top: 0.9rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn {
        padding: 1rem 2.45rem;
        margin-top: 1.5rem;
    }
}

.surroundings {
    position: relative;
    overflow: hidden;
    padding: clamp(7rem, 10vw, 11rem) 0;
    background:
        linear-gradient(135deg, rgba(28, 58, 52, 1) 0%, rgba(47, 74, 65, 1) 48%, rgba(25, 45, 40, 1) 100%);
    isolation: isolate;
}

.ui-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    fill: currentColor;
    overflow: visible;
    vertical-align: -0.125em;
}

.ui-icon-lg {
    width: 3em;
    height: 3em;
}

.surroundings::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16));
    pointer-events: none;
    z-index: -1;
}

.surroundings-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
    grid-template-rows: auto auto;
    gap: 0 clamp(3rem, 7vw, 8rem);
    align-items: center;
}

.surroundings-map {
    position: relative;
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: clamp(30rem, 46vw, 43rem);
    overflow: hidden;
}

.surroundings-map::before {
    content: "";
    position: absolute;
    inset: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) auto auto;
    width: clamp(4rem, 8vw, 7rem);
    height: 1px;
    background-color: rgba(225, 195, 110, 0.78);
    z-index: 1;
}

.surroundings-map::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.surroundings-map img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
}

.surroundings-content {
    grid-column: 2;
    grid-row: 1;
    align-self: flex-end;
    max-width: 43rem;
}

.surroundings-action {
    grid-column: 2;
    grid-row: 2;
    align-self: flex-start;
    margin-top: clamp(1.8rem, 3vw, 2.4rem);
}

.surroundings-eyebrow {
    display: inline-block;
    margin-bottom: 1.15rem;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    line-height: 1.4;
    text-transform: uppercase;
}

.surroundings-content h2 {
    max-width: 100%;
    margin-bottom: clamp(1.7rem, 3vw, 2.35rem);
    color: var(--color-text-light);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
}

.surroundings-content h2::before {
    content: "";
    display: block;
    width: 2px;
    height: 44px;
    margin-bottom: 1.5rem;
    background-color: var(--color-accent);
}

.surroundings-content p {
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.85;
}

.surroundings-lede {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.surroundings-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: clamp(2rem, 4vw, 3.25rem) 0;
}

.surroundings-point {
    display: grid;
    grid-template-columns: 4.2rem minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: 1rem;
    min-height: 7.75rem;
    padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1rem, 2vw, 1.6rem) clamp(1.25rem, 2vw, 1.75rem) 0;
}

.surroundings-point:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.surroundings-point:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: clamp(1rem, 2vw, 1.6rem);
}

.surroundings-point .icon-graphic {
    width: 3.7rem;
    height: 3.7rem;
    margin-top: 0;
    color: var(--color-accent);
}

.surroundings-point span {
    display: flex;
    min-height: 3.7rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.surroundings-closing {
    margin-bottom: 0;
}

.surroundings .btn {
    margin-top: clamp(1.8rem, 3vw, 2.4rem);
}

@media (max-width: 1023px) {
    .surroundings-inner {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .surroundings-content {
        order: 1;
        max-width: 48rem;
    }

    .surroundings-map {
        order: 2;
        width: 100%;
        min-height: clamp(22rem, 58vw, 35rem);
    }
    
    .surroundings-action {
        order: 3;
    }
}

@media (max-width: 680px) {
    .surroundings {
        padding: 5.75rem 0 6.25rem;
    }

    .surroundings-content p,
    .surroundings-point span {
        font-size: 18px;
        line-height: 1.7;
    }

    .surroundings-points {
        grid-template-columns: 1fr;
    }


    .surroundings-point:nth-child(even) {
        border-left: none;
        padding-left: 0;
    }

    .surroundings-point:nth-child(-n + 2) {
        border-bottom: none;
    }

    .surroundings-point:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .surroundings-point {
        grid-template-columns: 3.3rem minmax(0, 1fr);
        min-height: 0;
        padding: 1.25rem 0;
    }

    .surroundings-point .icon-graphic {
        width: 2.8rem;
        height: 2.8rem;
    }

    .surroundings-point span {
        min-height: 2.8rem;
    }
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .hero {
        height: auto;
        max-height: none;
        min-height: calc(100dvh - var(--header-height, 100px));
        padding-top: var(--header-height, 100px);
        padding-bottom: 75px;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        justify-content: center;
        align-items: center;
        --hero-content-y: 0px;
        width: 90%;
        margin: 100px auto 0;
    }

    .hero-overlay {
        background: linear-gradient(to top, rgba(var(--color-primary-rgb), 0.95) 0%, rgba(var(--color-primary-rgb), 0.6) 80%, rgba(0,0,0,0) 100%);
    }
    .hero-text-container {
        border-left: none;
        padding-left: 0;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text-container h1,
    .hero-text-container .subtitle {
        max-width: 100%;
        white-space: nowrap;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.34);
    }

    .hero-text-container h1 {
        font-size: clamp(2rem, 11vw, 3.4rem);
    }

    .hero-text-container .subtitle {
        font-size: clamp(0.92rem, 4.2vw, 1.15rem);
    }
    .hero-badge-left {
        mask-position: center;
        -webkit-mask-position: center;
    }
    .hero-buttons {
        justify-content: center;
    }

    .hero-text-container .subtitle::after {
        margin-left: auto;
        margin-right: auto;
    }

    .reviews::before,
    .prefooter-pattern {
        display: none;
    }

    .surroundings-pattern {
        display: none;
    }

    .logo img {
        height: 45px;
    }

    .mobile-lang-link {
        display: inline-flex;
    }

    .mobile-nav-overlay .nav-links a {
        font-size: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .site-header .container {
        width: 90vw;
        max-width: 90vw;
    }

    .mobile-lang-link {
        display: inline-flex;
        margin-left: 2rem;
        margin-right: 25px;
    }

    .mobile-nav-overlay .nav-links a {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .site-header {
        background: #ffffff;
    }

    .site-header .logo img {
        filter: none;
    }

    .main-nav .nav-links a {
        color: var(--color-primary-text);
    }

    .main-nav .nav-links a:hover,
    .main-nav .nav-links a[aria-current="page"] {
        color: var(--color-accent);
    }
.desktop-lang-item {
        display: list-item;
    }

    .reviews::before {
        display: none;
    }
}

@media (max-width: 1023px) {
    .secondary-nav-inner {
        min-height: 30px;
    }

    .secondary-nav-phone {
        font-size: 0.72rem;
    }

    .main-nav > .nav-links {
        display: none;
    }

    .hamburger {
        position: relative;
        display: flex;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        color: var(--color-primary-text);
    }

    .hamburger .bar {
        position: absolute;
        left: 9px;
        width: 26px;
        height: 2px;
        background-color: currentColor;
        opacity: 1;
    }

    .hamburger .bar:nth-child(1) {
        top: 13px;
    }

    .hamburger .bar:nth-child(2) {
        top: 21px;
    }

    .hamburger .bar:nth-child(3) {
        top: 29px;
    }

    .hamburger.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hamburger:focus-visible {
        outline: 2px solid var(--color-accent);
        outline-offset: 2px;
    }

    .watermark-divider {
        overflow: hidden;
    }

    .watermark-divider::after {
        display: none;
    }
}

/* Why choose us */
.why-choose {
    padding: clamp(6.5rem, 10vw, 11rem) 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, #f7f3ef 0%, #efe8e2 100%);
    overflow: hidden;
    isolation: isolate;
}

.why-choose-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 5vw, 4.75rem);
    align-items: start;
}

.why-choose-copy {
    max-width: 58rem;
    margin: 0 auto;
    text-align: center;
}

.why-choose-copy h2 {
    position: relative;
    max-width: 17ch;
    margin: 0 auto;
    color: var(--color-heading);
    font-size: clamp(2.15rem, 4.5vw, 4.55rem);
    line-height: 0.96;
}

.why-choose-copy h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 1.5rem);
    transform: translateX(-50%);
    width: 2px;
    height: 44px;
    background-color: var(--color-accent);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    position: relative;
}

.feature-card,
.feature-card.wide {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: clamp(13rem, 16vw, 16.5rem);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(2rem, 3vw, 3rem);
    padding: clamp(1.85rem, 2.8vw, 2.75rem) clamp(1.35rem, 2.3vw, 2.25rem);
    border: none;
    background: transparent;
    text-align: center;
    transition: background-color var(--transition-slow);
}

.feature-card:nth-child(3n + 2),
.feature-card:nth-child(3n + 3) {
    border-left: 1px solid rgba(var(--color-primary-rgb), 0.18);
}

.feature-card:nth-child(n + 4) {
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.18);
}

.feature-card .icon-graphic,
.distance-text-group .icon-graphic {
    width: 3.7rem;
    height: 3.7rem;
    color: var(--color-accent);
    transition: color var(--transition-slow), transform var(--transition-slow);
}

.feature-card p,
.distance-text-group span {
    max-width: 18rem;
    margin: 0;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.45vw, 1.28rem);
    font-weight: 550;
    letter-spacing: 0;
    line-height: 1.65;
    text-transform: none;
}

.feature-card p strong,
.distance-text-group span strong {
    color: var(--color-primary-text);
    font-weight: 500;
}

.feature-card:hover,
.feature-card:focus-within {
    background-color: rgba(255, 255, 255, 0.28);
}

.feature-card:hover .icon-graphic,
.feature-card:focus-within .icon-graphic {
    color: var(--color-accent);
    transform: translateY(-0.28rem);
}

.distance-info {
    margin-top: 0;
}

.distance-text-group {
    display: contents;
}

@media (max-width: 1100px) {
    .why-choose-inner {
        grid-template-columns: 1fr;
        gap: 3.25rem;
    }

    .why-choose-copy {
        position: static;
        max-width: 46rem;
    }

    .why-choose-copy h2 {
        max-width: 13ch;
    }

    .features-grid {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card:nth-child(n) {
        border-left: none;
        border-top: none;
    }

    .feature-card:nth-child(even) {
        border-left: 1px solid rgba(var(--color-primary-rgb), 0.18);
    }

    .feature-card:nth-child(n + 3) {
        border-top: 1px solid rgba(var(--color-primary-rgb), 0.18);
    }
}

@media (max-width: 680px) {
    .why-choose {
        padding: 5.75rem 0 6.25rem;
    }

    .why-choose-inner {
        gap: 2.5rem;
    }

    .why-choose-copy h2 {
        max-width: 100%;
        font-size: clamp(2rem, 10vw, 3.05rem);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card.wide {
        min-height: 0;
        gap: 1.35rem;
        padding: 1.6rem 0;
    }

    .feature-card:nth-child(n) {
        border-left: none;
        border-top: none;
    }

    .feature-card:nth-child(n + 2) {
        border-top: 1px solid rgba(var(--color-primary-rgb), 0.18);
    }

    .feature-card .icon-graphic,
    .distance-text-group .icon-graphic {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.25rem;
    }

    .feature-card p,
    .distance-text-group span {
        max-width: 100%;
        font-size: clamp(1.04rem, 4.9vw, 1.28rem);
        line-height: 1.5;
    }
}
.gallery-section {
    padding: clamp(6.5rem, 10vw, 11rem) 0;
    background:
        linear-gradient(180deg, rgba(28, 58, 52, 0.98), rgba(29, 48, 43, 1) 52%, rgba(23, 39, 35, 1));
    color: var(--color-text-light);
    overflow: hidden;
    isolation: isolate;
}

.gallery-section::before {
    content: "";
    position: absolute;
    inset: 3rem auto auto 50%;
    width: min(72rem, 92vw);
    height: 11rem;
    transform: translateX(-50%);
    background-image: none;
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    opacity: 0.055;
    pointer-events: none;
    z-index: -1;
}

.gallery-section .container {
    width: min(88vw, 1480px);
    max-width: 1480px;
}

.gallery-section h2,
.gallery-section p {
    color: var(--color-text-light);
}

.gallery-section .text-center {
    margin-bottom: clamp(3rem, 6vw, 5.75rem);
}

.gallery-section .text-center p {
    max-width: 42rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
}

.gallery-intro {
    display: grid;
    align-items: end;
    gap: clamp(2rem, 7vw, 8rem);
    margin-bottom: clamp(3rem, 6vw, 5.75rem);
}

.gallery-copy h2 {
    max-width: 9ch;
    margin-bottom: 0;
    color: var(--color-text-light);
    font-size: clamp(2.25rem, 5vw, 5.35rem);
    line-height: 0.92;
}

.gallery-copy h2::before {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    margin-bottom: 1.5rem;
    background-color: var(--color-accent);
}

.gallery-carousel {
    position: relative;
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: clamp(7.5rem, 10vw, 10.5rem);
    gap: clamp(0.8rem, 1.25vw, 1.35rem);
    overflow: visible;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.18);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
}

.gallery-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 3;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(9),
.gallery-item:nth-child(10),
.gallery-item:nth-child(16),
.gallery-item:nth-child(17) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery-item:nth-child(6),
.gallery-item:nth-child(7),
.gallery-item:nth-child(8),
.gallery-item:nth-child(12),
.gallery-item:nth-child(13),
.gallery-item:nth-child(14),
.gallery-item:nth-child(18),
.gallery-item:nth-child(19),
.gallery-item:nth-child(20) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:nth-child(11),
.gallery-item:nth-child(15) {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-item[hidden] {
    display: none;
}

.gallery-track.is-collapsed:not(.is-expanded) .gallery-item:nth-child(9),
.gallery-track.is-collapsed:not(.is-expanded) .gallery-item:nth-child(10) {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1), filter 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    filter: saturate(1.03) contrast(1.03);
    transform: scale(1.045);
}

.gallery-item:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.gallery-nav {
    display: none;
}

.gallery-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(2.5rem, 5vw, 4.25rem);
}

.gallery-more-button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-accent);
    background-color: var(--color-accent);
    padding: 1.2rem 3rem;
    color: var(--color-primary-text);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--transition-slow), color var(--transition-slow), border-color var(--transition-slow);
}

.gallery-more-button:hover,
.gallery-more-button:focus-visible {
    border-color: #ead58f;
    background-color: #ead58f;
    color: var(--color-primary-text);
}

.gallery-more-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 4px;
}

.gallery-more-button[hidden] {
    display: none;
}

@media (max-width: 1100px) {
    .gallery-section .container {
        width: 90vw;
    }

    .gallery-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .gallery-track {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: clamp(7.25rem, 17vw, 10rem);
    }

    .gallery-item:nth-child(n) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(11),
    .gallery-item:nth-child(15) {
        grid-column: span 6;
        grid-row: span 3;
    }
}

@media (max-width: 640px) {
    .gallery-section {
        padding: 5.5rem 0 6rem;
    }

    .gallery-section .container {
        width: min(90vw, 34rem);
    }

    .gallery-intro {
        margin-bottom: 2.5rem;
    }

    .gallery-copy h2 {
        max-width: 100%;
        font-size: clamp(2rem, 11vw, 3.35rem);
    }


    .gallery-track {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 0.85rem;
    }

    .gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 5;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(11),
    .gallery-item:nth-child(15) {
        aspect-ratio: 1 / 1.12;
    }

}
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.96);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 2rem;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-content {
    max-width: min(92vw, 1200px);
    max-height: 86vh;
    text-align: center;
}

.lightbox-content img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background-color: var(--color-bg-light);
}

@media (min-width: 1024px) {
    .lightbox.is-atmosphere-lightbox {
        padding: 2rem 0;
    }

    .lightbox.is-atmosphere-lightbox .lightbox-content {
        width: 100vw;
        max-width: 100vw;
        max-height: calc(100vh - 4rem);
    }

    .lightbox.is-atmosphere-lightbox .lightbox-content img {
        width: 100vw;
        height: calc(100vh - 4rem);
        max-height: none;
        object-fit: contain;
    }
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(var(--color-primary-text-rgb), 0.25);
    background-color: rgba(255, 255, 255, 0.86);
    color: var(--color-primary-text);
    cursor: pointer;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-nav.prev {
    left: 1rem;
}

.lightbox-nav.next {
    right: 1rem;
}

.reviews {
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3000px;
    height: 130px;
    transform: translate(-50%, -50%) rotate(90deg);
    background-image: none;
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.reviews .container {
    position: relative;
    z-index: 1;
}

/* Reviews Split Layout */
.reviews-split-layout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
}

.reviews-content-side {
    flex: 1;
    max-width: 400px;
}

.reviews-widget-side {
    flex: 2;
}

.reviews-content-side h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.reviews-content-side h2::before {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    background-color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.reviews-content-side p {
    color: var(--color-text-dark);
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .reviews-split-layout {
        flex-direction: column;
        gap: 3rem;
    }
    .reviews-content-side {
        max-width: 100%;
        text-align: center;
    }
    .reviews-content-side h2 {
        text-align: center;
    }
    .reviews-content-side h2::before {
        margin: 0 auto 1.5rem auto;
    }
}

@media (min-width: 601px) and (max-width: 1100px) {
    .reviews-widget-side,
    .reviews-box,
    .instagram-box {
        width: 100%;
        max-width: 100%;
    }

    .reviews::before {
        display: none;
    }

    .prefooter-pattern {
        display: none;
    }
}

/* Prefooter pattern */
.prefooter-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: none;
    background-repeat: repeat-x;
    background-size: auto 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 8vw, 7.5rem) 0 0;
    background: linear-gradient(180deg, rgba(28, 58, 52, 0.98), rgba(29, 48, 43, 1) 52%, rgba(19, 34, 30, 1));
    color: var(--color-text-light);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 195, 110, 0.72), transparent);
}

.site-footer::after {
    content: "";
    position: absolute;
    right: -12rem;
    bottom: 2.5rem;
    width: min(36vw, 32rem);
    height: min(36vw, 32rem);
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.035;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: clamp(2rem, 4vw, 4.5rem);
    row-gap: clamp(3rem, 5vw, 4.5rem);
    padding-bottom: clamp(3.5rem, 6vw, 5.25rem);
}

.footer-col {
    min-width: 0;
}


.footer-brand {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 28rem;
    justify-self: center;
    text-align: center;
}

.footer-logo-link {
    display: inline-block;
    max-width: min(18rem, 100%);
    margin: 0 auto;
    border-bottom: 0;
}

.footer-logo-link:hover {
    border-bottom: 0;
}

.footer-logo {
    width: min(18rem, 100%);
    height: auto;
    filter: none;
}

.site-footer h3 {
    margin-bottom: 1.15rem;
    color: var(--color-accent);
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.site-footer p,
.site-footer address,
.footer-list {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.125rem;
    font-style: normal;
    line-height: 1.75;
}

.footer-list {
    display: grid;
    gap: 1.05rem;
    margin: 0;
}

.footer-list li {
    display: grid;
    grid-template-columns: 1.35rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
}

.site-footer .ui-icon {
    width: 1.35rem;
    padding-top: 0.28rem;
    color: var(--color-accent);
    text-align: center;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border-bottom: 1px solid rgba(225, 195, 110, 0.32);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.site-footer a:hover {
    color: var(--color-accent);
    border-color: currentColor;
}

.footer-legal p {
    max-width: 21rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.footer-legal strong {
    color: rgba(255, 255, 255, 0.96);
    font-weight: 500;
}

.footer-legal span {
    display: block;
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-documents {
    grid-column: auto;
}

.footer-document-links {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-document-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.125rem;
    font-weight: 350;
    line-height: 1.55;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (min-width: 1100px) {
    .footer-content {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: start;
    }
}

@media (max-width: 680px) {
    .site-footer {
        padding-top: 4.6rem;
    }

    .site-footer::after {
        display: none;
    }

    .footer-content {
        column-gap: 0;
        row-gap: 2.2rem;
    }
}
/* =========================================================================
   ANIMATIONS
   ========================================================================= */

.animate-on-scroll {
    --scroll-reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--scroll-reveal-delay);
    will-change: opacity, transform;
}

.animate-on-scroll.scroll-reveal-media {
    transform: translate3d(0, 16px, 0) scale(0.988);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.animate-on-scroll.scroll-reveal-delay-1 { --scroll-reveal-delay: 110ms; }
.animate-on-scroll.scroll-reveal-delay-2 { --scroll-reveal-delay: 200ms; }

.info-grid .animate-on-scroll:nth-child(2),
.info-grid .animate-on-scroll:nth-child(5),
.info-grid .animate-on-scroll:nth-child(8) { --scroll-reveal-delay: 70ms; }

.info-grid .animate-on-scroll:nth-child(3),
.info-grid .animate-on-scroll:nth-child(6),
.info-grid .animate-on-scroll:nth-child(9) { --scroll-reveal-delay: 140ms; }

@media (max-width: 760px) {
    .animate-on-scroll {
        transform: translate3d(0, 14px, 0);
        transition-duration: 620ms, 760ms;
    }

    .animate-on-scroll.scroll-reveal-media {
        transform: translate3d(0, 12px, 0) scale(0.992);
    }

    .info-grid .animate-on-scroll:nth-child(n) {
        --scroll-reveal-delay: 0ms;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .animate-on-scroll.scroll-reveal-media {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

.scroll-motion-enabled .home-page .home-scroll-reveal {
    --home-reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--home-reveal-delay);
    will-change: opacity, transform;
}

.scroll-motion-enabled .home-page .home-scroll-reveal.home-reveal-media {
    transform: translate3d(0, 16px, 0) scale(0.988);
}

.scroll-motion-enabled .home-page .home-scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.scroll-motion-enabled .home-page .home-scroll-reveal.home-reveal-delay-1 { --home-reveal-delay: 110ms; }
.scroll-motion-enabled .home-page .home-scroll-reveal.home-reveal-delay-2 { --home-reveal-delay: 200ms; }

.home-page .features-grid .home-scroll-reveal:nth-child(2) { --home-reveal-delay: 70ms; }
.home-page .features-grid .home-scroll-reveal:nth-child(3) { --home-reveal-delay: 140ms; }
.home-page .features-grid .home-scroll-reveal:nth-child(4) { --home-reveal-delay: 70ms; }
.home-page .features-grid .home-scroll-reveal:nth-child(5) { --home-reveal-delay: 140ms; }
.home-page .features-grid .home-scroll-reveal:nth-child(6) { --home-reveal-delay: 210ms; }

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .scroll-motion-enabled .home-page .home-scroll-reveal,
    .scroll-motion-enabled .home-page .home-scroll-reveal.home-reveal-media {
        opacity: 1;
        transform: none;
        transition: none;
        transition-delay: 0ms;
        will-change: auto;
    }

    .home-page .features-grid .home-scroll-reveal:nth-child(n) {
        --home-reveal-delay: 0ms;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-motion-enabled .home-page .home-scroll-reveal,
    .scroll-motion-enabled .home-page .home-scroll-reveal.home-reveal-media {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

/* =========================================================================
   SUBPAGE: CO NAVSTIVIT
   ========================================================================= */

.visit-page main {
    background-color: #fbfaf7;
}

.subpage-hero {
    position: relative;
    min-height: clamp(34rem, 76vh, 52rem);
    display: flex;
    align-items: flex-end;
    padding-top: var(--header-height, 100px);
    padding-bottom: clamp(4rem, 8vh, 6.5rem);
    overflow: hidden;
    isolation: isolate;
}

.subpage-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.subpage-hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
    filter: saturate(0.9) contrast(1.06) brightness(0.92);
    transform: scale(1.025);
}

.visit-luxe-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 24, 21, 0.32) 0%, rgba(10, 24, 21, 0.18) 46%, rgba(10, 24, 21, 0.72) 100%),
        linear-gradient(90deg, rgba(18, 36, 32, 0.88) 0%, rgba(28, 58, 52, 0.72) 38%, rgba(28, 58, 52, 0.22) 72%, rgba(18, 36, 32, 0.44) 100%);
    z-index: 1;
}

.subpage-hero .hero-content {
    position: relative;
    z-index: 2;
    width: var(--container-width-desktop);
    max-width: var(--container-max-width);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    text-align: left;
    transform: none;
}

.subpage-hero .hero-text-container {
    position: relative;
    max-width: min(78vw, 760px);
}

.visit-hero-kicker,
.visit-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.visit-hero-kicker {
    margin-bottom: 1.25rem;
    color: var(--color-accent);
}

.subpage-hero .hero-text-container h1 {
    max-width: 11ch;
    margin: 0;
    color: var(--color-text-light);
    font-size: clamp(2.75rem, 5.8vw, 5.8rem);
    line-height: 0.94;
    white-space: normal;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

.visit-hero-lede {
    max-width: 39rem;
    margin: clamp(1.45rem, 2.4vw, 2rem) 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.45vw, 1.2rem);
    line-height: 1.78;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}


/* Visit hero contact style */
.visit-hero {
    min-height: clamp(34rem, 82vh, 52rem);
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height, 92px) + clamp(4rem, 7vw, 7rem)) 0 clamp(4.5rem, 8vw, 7rem);
    background:
        linear-gradient(135deg, rgba(251, 250, 247, 0.90) 0%, rgba(243, 236, 232, 0.82) 50%, rgba(65, 96, 85, 0.12) 100%),
        url('fotky/2000/zamecke-zahrady-jince-altan-exterier.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.visit-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.38);
    pointer-events: none;
}

.visit-hero .hero-bg {
    display: none;
}

.visit-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.58fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: end;
}

.visit-hero-copy h1 {
    max-width: 11ch;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.98;
    text-shadow: none;
}

.visit-hero-copy h1::before {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    margin-bottom: 1.5rem;
    background-color: var(--color-accent);
}

.visit-hero-copy .visit-hero-lede {
    max-width: 43rem;
    margin: 0;
    color: rgba(28, 58, 52, 0.82);
    font-size: clamp(1.125rem, 1.45vw, 1.35rem);
    line-height: 1.75;
    font-weight: 350;
    text-shadow: none;
}

.visit-hero-panel {
    padding: clamp(1.6rem, 3vw, 2.25rem);
    background: rgba(28, 58, 52, 0.96);
    color: var(--color-text-light);
    box-shadow: 0 28px 70px rgba(28, 58, 52, 0.18);
    backdrop-filter: blur(14px);
}

.visit-hero-link {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 0;
    color: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.visit-hero-link:first-child {
    padding-top: 0;
}

.visit-hero-link:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.visit-hero-link:hover,
.visit-hero-link:focus-visible {
    color: var(--color-accent);
}

.visit-hero-link span {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    border: 1px solid rgba(225, 195, 110, 0.42);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.visit-hero-link strong {
    min-width: 0;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.visit-overview {
    padding: clamp(5rem, 8vw, 8rem) 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, #f8f4ef 0%, #eee6df 100%);
}

.visit-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.78fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.visit-eyebrow {
    margin-bottom: 1.15rem;
    color: var(--color-accent);
}

.visit-overview-copy h2,
.visit-showcase-copy h2,
.visit-duo-copy h2,
.visit-section-heading h2,
.visit-return-copy h2 {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.06;
}

.visit-overview-copy h2::before,
.visit-showcase-copy h2::before,
.visit-duo-copy h2::before,
.visit-section-heading h2::before,
.visit-return-copy h2::before {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    margin-bottom: 1.5rem;
    background-color: var(--color-accent);
}

.visit-overview-copy p,
.visit-showcase-copy p,
.visit-duo-copy p,
.visit-return-copy p {
    max-width: 44rem;
    font-size: 18px;
    line-height: 1.85;
}

.visit-overview-item {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    padding: clamp(1.2rem, 2vw, 1.55rem) 0;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.16);
    color: inherit;
    text-decoration: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.visit-overview-item:last-child {
    border-bottom: 0;
}

.visit-overview-item:hover,
.visit-overview-item:focus-visible {
    background-color: rgba(var(--color-primary-rgb), 0.055);
}

.visit-overview-item:hover strong,
.visit-overview-item:focus-visible strong {
    color: var(--color-primary);
}

.visit-overview-item:focus-visible {
    outline: 1px solid rgba(var(--color-primary-rgb), 0.55);
    outline-offset: 0.35rem;
}

.visit-luxe-section[id] {
    scroll-margin-top: calc(var(--header-height, 86px) + 1.5rem);
}

.visit-overview-item span {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
}

.visit-overview-item strong {
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.visit-luxe-section,
.visit-return {
    position: relative;
    padding: clamp(5.8rem, 9vw, 9rem) 0;
    overflow: hidden;
}

.visit-luxe-light,
.visit-return {
    background-color: #ffffff;
}

.visit-luxe-dark,
.visit-hospitality {
    background:
        linear-gradient(135deg, rgba(19, 46, 41, 1) 0%, rgba(38, 65, 57, 1) 54%, rgba(18, 36, 32, 1) 100%);
    color: rgba(255, 255, 255, 0.88);
}

.visit-destinations {
    background:
        linear-gradient(180deg, #f7f2ed 0%, #ffffff 100%);
}

.visit-showcase,
.visit-duo,
.visit-return-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.visit-photo-frame {
    position: relative;
    margin: 0;
    overflow: hidden;
    background-color: rgba(var(--color-primary-rgb), 0.08);
    box-shadow: 0 2rem 4.5rem rgba(20, 28, 24, 0.14);
}

.visit-luxe-dark .visit-photo-frame,
.visit-hospitality .visit-photo-frame {
    box-shadow: 0 2.25rem 5rem rgba(0, 0, 0, 0.28);
}

.visit-photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.visit-photo-frame img,
.visit-return-photos img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.96) contrast(1.03);
}

.visit-photo-frame img {
    aspect-ratio: 4 / 5;
}

.visit-photo-wide img {
    aspect-ratio: 5 / 4;
}

.visit-showcase-copy,
.visit-duo-copy,
.visit-return-copy {
    min-width: 0;
}

.visit-luxe-dark h2,
.visit-luxe-dark h3,
.visit-hospitality h2,
.visit-hospitality h3 {
    color: var(--color-text-light);
}

.visit-luxe-dark .visit-eyebrow,
.visit-hospitality .visit-eyebrow {
    color: var(--color-accent);
}

.visit-luxe-list {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: clamp(2rem, 4vw, 3rem);

}

.visit-luxe-list li {
    position: relative;
    padding: 1rem 0 1rem 1.35rem;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.14);
    line-height: 1.6;
}

.visit-luxe-list li:last-child {
    border-bottom: 0;
}

.visit-luxe-list li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
}

.visit-luxe-list li::before {
    top: 1.55rem;
}

.visit-luxe-list strong {
    display: block;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.07em;
    line-height: 1.4;
    text-transform: uppercase;
}
#pesky-z-apartmanu .visit-luxe-list strong {
    letter-spacing: 0;
    text-transform: none;
}
#pamatky-do-hodiny .visit-destination-list strong {
    letter-spacing: 0;
    text-transform: none;
}

.visit-luxe-list a,
.visit-note-pair h3 a,
.visit-destination-list a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.visit-luxe-list a:hover,
.visit-luxe-list a:focus-visible,
.visit-destination-list a:hover,
.visit-destination-list a:focus-visible {
    color: var(--color-primary);
}

.visit-note-pair h3 a:hover,
.visit-note-pair h3 a:focus-visible {
    color: #f4dc8d;
}

.visit-luxe-list span {
    display: block;
    margin-top: 0.3rem;
    color: var(--color-text-dark);
}

.visit-note-pair {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.visit-note-pair article + article {
    padding-top: clamp(1.35rem, 2vw, 1.8rem);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.visit-note-pair h3 {
    margin-bottom: 0.85rem;
    color: var(--color-accent);
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.35;
}

.visit-note-pair p {
    color: rgba(255, 255, 255, 0.82);
}

.visit-section-heading {
    max-width: 58rem;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.visit-section-heading h2 {
    margin-left: auto;
    margin-right: auto;
}

.visit-section-heading h2::before {
    margin-left: auto;
    margin-right: auto;
}

.visit-destination-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 5vw, 5rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.visit-destination-list li {
    position: relative;
    padding: 1rem 0 1rem 1.35rem;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.14);
    line-height: 1.6;
}

.visit-destination-list li:last-child,
.visit-destination-list li:nth-last-child(2) {
    border-bottom: 0;
}

.visit-destination-list li::before {
    content: "";
    position: absolute;
    top: 1.55rem;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
}

.visit-destination-list strong {
    display: block;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.07em;
    line-height: 1.4;
    text-transform: uppercase;
}

.visit-dining {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4.5rem);
}

.visit-dining-copy {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
}

.visit-dining-copy h2 {
    max-width: 12ch;
    margin-bottom: 0;
    color: var(--color-text-light);
    font-size: clamp(2.1rem, 4.3vw, 3.5rem);
    line-height: 1.05;
}

.visit-dining-copy h2::before {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    margin-bottom: 1.5rem;
    background-color: var(--color-accent);
}

.visit-dining-body {
    display: grid;
    grid-template-columns: minmax(16rem, 0.76fr) minmax(0, 1fr);
    gap: clamp(2.25rem, 5vw, 5rem);
    align-items: center;
}

.visit-dining-photo img {
    min-height: clamp(27rem, 40vw, 38rem);
    aspect-ratio: 4 / 5;
}

.visit-dining-list section {
    display: grid;
    grid-template-columns: minmax(8.5rem, 0.34fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    padding: clamp(1.45rem, 2.6vw, 2.15rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.visit-dining-list section:last-child {
    border-bottom: 0;
}

.visit-dining-list h3 {
    color: var(--color-accent);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.visit-dining-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.52rem clamp(1rem, 2vw, 1.45rem);
}

.visit-dining-items li {
    color: #ffffff;
    font-size: clamp(0.97rem, 1.08vw, 1.04rem);
    font-weight: 400;
    line-height: 1.55;
}
.visit-dining-items a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.visit-dining-items a:hover,
.visit-dining-items a:focus-visible {
    color: #f4dc8d;
}

.visit-return {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 36%),
        linear-gradient(180deg, #ffffff 0%, #f3ece8 100%);
}

.visit-return-inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.visit-return-copy .btn {
    margin-top: 1.35rem;
}

.visit-return-photos {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
    align-items: stretch;
}

.visit-return-photos img {
    aspect-ratio: 4 / 5;
    min-height: clamp(19rem, 32vw, 31rem);
}

.visit-return-photos img:nth-child(2) {
    margin-top: clamp(2rem, 5vw, 4.5rem);
}

@media (max-width: 1023px) {
    .subpage-hero {
        min-height: clamp(32rem, 68vh, 42rem);
    }

    .visit-overview-grid,
    .visit-showcase,
    .visit-duo,
    .visit-dining-copy,
    .visit-dining-body,
    .visit-return-inner {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 7vw, 4rem);
    }

    .visit-showcase-copy {
        order: 1;
    }

    .visit-showcase .visit-photo-frame,
    .visit-luxe-dark .visit-photo-frame,
    .visit-hospitality .visit-photo-frame {
        order: 2;
    }.visit-dining-photo img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .visit-photo-frame img,
    .visit-photo-wide img {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 680px) {
    .subpage-hero {
        min-height: 34rem;
        padding-top: calc(var(--header-height, 86px) + 1rem);
        padding-bottom: 4rem;
    }

    .subpage-hero .hero-content {
        width: 88%;
    }

    .subpage-hero .hero-text-container {
        max-width: 100%;

    }

    .subpage-hero .hero-text-container h1 {
        font-size: clamp(2.25rem, 11vw, 3.45rem);
        line-height: 0.98;
    }

    .visit-hero-lede {
        font-size: 1rem;
        line-height: 1.65;
    }

    .visit-overview,
    .visit-luxe-section,
    .visit-return {
        padding: 5rem 0;
    }

    .visit-overview-item {
        grid-template-columns: 3.25rem minmax(0, 1fr);
        gap: 1rem;
    }
    .visit-destination-list,
    .visit-dining-list section {
        grid-template-columns: 1fr;
    }

    .visit-dining-list section {
        gap: 0.75rem;
    }

    .visit-dining-items {
        grid-template-columns: 1fr;
    }
    .visit-return-photos {
        grid-template-columns: 1fr;
    }

    .visit-return-photos img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .visit-return-photos img:first-of-type {
        display: none !important;
    }

    .visit-return-photos img:nth-child(2) {
        margin-top: 0;
    }
}
/* =========================================================================
   SUBPAGE: KONTAKT
   ========================================================================= */

@media (max-width: 1023px) {
  .atmosphere .container.split-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .atmosphere .image-side,
  .atmosphere .atmosphere-video-frame,
  .atmosphere .atmosphere-video {
    width: 100% !important;
    max-width: 100%;
    height: auto;
  }
  .atmosphere {
    padding: 0;
    margin: 0;
  }
  .atmosphere + * {
    margin-top: 0;
  }
}



.contact-page main {
    background: #fbfaf7;
}

.contact-hero {
    min-height: clamp(34rem, 82vh, 52rem);
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height, 92px) + clamp(4rem, 7vw, 7rem)) 0 clamp(4.5rem, 8vw, 7rem);
    background:
        linear-gradient(135deg, rgba(251, 250, 247, 0.90) 0%, rgba(243, 236, 232, 0.82) 50%, rgba(65, 96, 85, 0.12) 100%),
        url('fotky/2000/zamecke-zahrady-jince-park.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.38);
    pointer-events: none;
}

.contact-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.58fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: end;
}

.contact-hero-copy h1 {
    max-width: 10ch;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-heading);
    font-size: clamp(3rem, 7vw, 6rem);
}

.contact-hero-copy h1::before,
.contact-section-heading h2::before {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    margin-bottom: 1.5rem;
    background-color: var(--color-accent);
}

.contact-hero-copy p,
.contact-section-heading p {
    max-width: 43rem;
    margin: 0;
    color: rgba(28, 58, 52, 0.82);
    font-size: clamp(1.125rem, 1.45vw, 1.35rem);
    line-height: 1.75;
    font-weight: 350;
}

.contact-quick-panel {
    padding: clamp(1.6rem, 3vw, 2.25rem);
    background: rgba(28, 58, 52, 0.96);
    color: var(--color-text-light);
    box-shadow: 0 28px 70px rgba(28, 58, 52, 0.18);
    backdrop-filter: blur(14px);
}

.contact-quick-link {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 0;
    color: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-quick-link:first-child {
    padding-top: 0;
}

.contact-quick-link:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-quick-link:hover,
.contact-quick-link:focus-visible {
    color: var(--color-accent);
}

.contact-quick-link i {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    border: 1px solid rgba(225, 195, 110, 0.42);
    border-radius: 50%;
}

.contact-quick-link span {
    min-width: 0;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-quick-link small {
    display: block;
    margin-bottom: 0.22rem;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-main {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: #ffffff;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: stretch;
}

.contact-info {
    min-width: 0;
}

.contact-section-heading {
    margin-bottom: clamp(2.2rem, 4vw, 3.25rem);
}

.contact-section-heading h2 {
    max-width: 12ch;
    margin-bottom: 1.4rem;
    font-size: clamp(2.15rem, 4.4vw, 3.55rem);
}

.contact-detail-list {
    display: grid;
}

.contact-detail {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1.15rem;
    padding: 1.45rem 0;
    border-bottom: 1px solid rgba(28, 58, 52, 0.14);
}

.contact-detail:first-child {
    padding-top: 0;
}

.contact-detail:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-detail i {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    background: rgba(65, 96, 85, 0.08);
    border-radius: 50%;
}

.contact-detail h3 {
    margin: 0 0 0.65rem;
    color: var(--color-heading);
    font-size: clamp(1.05rem, 1.25vw, 1.2rem);
    letter-spacing: 0.12em;
}

.contact-detail p,
.contact-detail address {
    max-width: 34rem;
    margin: 0;
    color: rgba(51, 51, 51, 0.78);
    font-size: 1.125rem;
    font-style: normal;
    line-height: 1.75;
    font-weight: 350;
}

.contact-detail a {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--color-primary-text);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(225, 195, 110, 0.5);
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
    color: #5a7d70;
    border-color: #5a7d70;
}

.contact-map-panel {
    min-height: clamp(28rem, 54vw, 42rem);
    position: relative;
    overflow: hidden;
    background: var(--color-bg-neutral1);
    box-shadow: 0 32px 80px rgba(28, 58, 52, 0.16);
}

.contact-map-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(65, 96, 85, 0.14);
    pointer-events: none;
    z-index: 1;
}

.contact-map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    border: 0;
    filter: saturate(0.9) contrast(1.02);
}

/* CONTACT MAIN FULL-WIDTH MAP */
.contact-page .contact-hero-grid {
    grid-template-columns: minmax(0, 48rem);
}

.contact-main-grid {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 5vw, 4.5rem);
}

.contact-detail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 0;
}

.contact-detail,
.contact-detail:first-child,
.contact-detail:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: clamp(1.8rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2.25rem);
    border-bottom: 0;
    text-align: center;
}

.contact-detail .contact-detail-icon {
    width: 3.5rem;
    height: 3.5rem;
    flex: 0 0 3.5rem;
    object-fit: contain;
}

.contact-detail > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-detail h3 {
    font-weight: 600;
    letter-spacing: 0;
}
.contact-detail + .contact-detail {
    border-left: 0;
}

.contact-detail .contact-detail-value {
    display: inline;
    margin: 0;
    color: var(--color-text-dark);
    border: 0;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.7;
    text-transform: none;
    overflow-wrap: anywhere;
}

.contact-detail .contact-detail-value:hover,
.contact-detail .contact-detail-value:focus-visible {
    color: #5a7d70;
    border: 0;
}

.contact-page .contact-map-panel {
    width: 100vw;
    min-height: clamp(22rem, 32vw, 28rem);
    margin-left: calc(50% - 50vw);
    box-shadow: none;
}

.contact-page .contact-map-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(28, 58, 52, 0.12);
    pointer-events: none;
}

@media (max-width: 900px) {
    .contact-detail-list {
        grid-template-columns: 1fr;
    }

    .contact-detail,
    .contact-detail:first-child,
    .contact-detail:last-child {
        padding: 1.75rem 0;
    }

    .contact-detail + .contact-detail {
        border-top: 0;
        border-left: 0;
    }
}
@media (max-width: 1024px) {
    .contact-hero-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        min-height: auto;
        align-items: flex-start;
    }

    .contact-quick-panel {
        max-width: 42rem;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding-top: calc(var(--header-height, 82px) + 3.2rem);
        padding-bottom: 3.8rem;
    }

    .contact-hero-copy h1 {
        font-size: clamp(2.55rem, 14vw, 3.65rem);
    }

    .contact-quick-panel {
        padding: 1.35rem;
    }

    .contact-quick-link,
    .contact-detail {
        grid-template-columns: 2rem minmax(0, 1fr);
        gap: 0.85rem;
    }

    .contact-quick-link i,
    .contact-detail i {
        width: 2rem;
        height: 2rem;
    }

    .contact-section-heading h2 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .contact-map-panel {
        min-height: 25rem;
    }
}
/* =========================================================================
   SUBPAGE: REZERVACE
   ========================================================================= */

.booking-page main {
    background: #fbfaf7;
}

.booking-hero {
    min-height: clamp(34rem, 82vh, 52rem);
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height, 92px) + clamp(4rem, 7vw, 7rem)) 0 clamp(4.5rem, 8vw, 7rem);
    background:
        linear-gradient(135deg, rgba(251, 250, 247, 0.88) 0%, rgba(243, 236, 232, 0.78) 50%, rgba(65, 96, 85, 0.13) 100%),
        url('fotky/2000/zamek-jince-fasada.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.booking-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.40);
    pointer-events: none;
}

.booking-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.58fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: end;
}

.booking-hero-copy h1 {
    max-width: 12ch;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-heading);
    font-size: clamp(3rem, 7vw, 6rem);
}

.booking-hero-copy h1::before,
.booking-section-heading h2::before,
.booking-side-block h2::before {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    margin-bottom: 1.5rem;
    background-color: var(--color-accent);
}

.booking-hero-copy p,
.booking-section-heading p {
    max-width: 43rem;
    margin: 0;
    color: rgba(28, 58, 52, 0.82);
    font-size: clamp(1.125rem, 1.45vw, 1.35rem);
    line-height: 1.75;
    font-weight: 350;
}

.booking-quick-panel {
    padding: clamp(1.6rem, 3vw, 2.25rem);
    background: rgba(28, 58, 52, 0.96);
    color: var(--color-text-light);
    box-shadow: 0 28px 70px rgba(28, 58, 52, 0.18);
    backdrop-filter: blur(14px);
}

.booking-quick-row {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 0;
    color: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-quick-row:first-child {
    padding-top: 0;
}

.booking-quick-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

a.booking-quick-row:hover,
a.booking-quick-row:focus-visible {
    color: var(--color-accent);
}

.booking-quick-row i {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    border: 1px solid rgba(225, 195, 110, 0.42);
    border-radius: 50%;
}

.booking-quick-row span {
    min-width: 0;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.booking-quick-row small {
    display: block;
    margin-bottom: 0.22rem;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-main {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: #ffffff;
}

.booking-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.58fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.booking-section-heading {
    margin-bottom: clamp(2.2rem, 4vw, 3.25rem);
}

.booking-section-heading h2 {
    max-width: 13ch;
    margin-bottom: 1.4rem;
    font-size: clamp(2.15rem, 4.4vw, 3.55rem);
}

.rezeo-widget-slot {
    min-height: clamp(34rem, 58vw, 48rem);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: clamp(1.2rem, 2.2vw, 1.75rem);
    background: linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(243, 236, 232, 0.86));
    border: 1px solid rgba(65, 96, 85, 0.14);
    box-shadow: 0 32px 80px rgba(28, 58, 52, 0.14);
}

.rezeo-widget-placeholder {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4.5rem);
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(225, 195, 110, 0.32);
}

.rezeo-widget-placeholder i {
    width: 4.5rem;
    height: 4.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    border: 1px solid rgba(225, 195, 110, 0.45);
    border-radius: 50%;
    font-size: 1.75rem;
}

.rezeo-widget-placeholder h3 {
    margin-bottom: 1rem;
    color: var(--color-heading);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    letter-spacing: 0.13em;
}

.rezeo-widget-placeholder p {
    max-width: 36rem;
    margin: 0 auto;
    color: rgba(51, 51, 51, 0.76);
    font-size: 1.125rem;
    line-height: 1.75;
}

.booking-placeholder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    margin-top: 0.7rem;
}

.booking-side {
    display: grid;
    gap: clamp(2.4rem, 4vw, 3.5rem);
}

.booking-side-block h2 {
    max-width: 13ch;
    margin-bottom: 1.5rem;
    color: var(--color-heading);
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.booking-info-list {
    display: grid;
}

.booking-info-list li {
    display: grid;
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid rgba(28, 58, 52, 0.14);
}

.booking-info-list li:first-child {
    padding-top: 0;
}

.booking-info-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.booking-info-list i {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    background: rgba(65, 96, 85, 0.08);
    border-radius: 50%;
}

.booking-info-list span {
    color: rgba(51, 51, 51, 0.78);
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 350;
}

.booking-documents {
    padding: clamp(1.6rem, 3vw, 2.15rem);
    background: rgba(28, 58, 52, 0.96);
    color: var(--color-text-light);
}

.booking-documents h2 {
    color: var(--color-accent);
}

.booking-documents a {
    display: block;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.45;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-documents a:first-of-type {
    padding-top: 0;
}

.booking-documents a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.booking-documents a:hover,
.booking-documents a:focus-visible {
    color: var(--color-accent);
}

@media (max-width: 1024px) {
    .booking-hero-grid,
    .booking-main-grid {
        grid-template-columns: 1fr;
    }

    .booking-hero {
        min-height: auto;
        align-items: flex-start;
    }

    .booking-quick-panel {
        max-width: 42rem;
    }
}

@media (max-width: 640px) {
    .booking-hero {
        padding-top: calc(var(--header-height, 82px) + 3.2rem);
        padding-bottom: 3.8rem;
    }

    .booking-hero-copy h1 {
        font-size: clamp(2.55rem, 14vw, 3.65rem);
    }

    .booking-quick-panel,
    .booking-documents {
        padding: 1.35rem;
    }

    .booking-quick-row,
    .booking-info-list li {
        grid-template-columns: 2rem minmax(0, 1fr);
        gap: 0.85rem;
    }

    .booking-quick-row i,
    .booking-info-list i {
        width: 2rem;
        height: 2rem;
    }

    .booking-section-heading h2 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .rezeo-widget-slot {
        min-height: 31rem;
        padding: 0.9rem;
    }

    .rezeo-widget-placeholder {
        padding: 2rem 1.25rem;
    }

    .booking-placeholder-actions {
        flex-direction: column;
        width: 100%;
    }

    .booking-placeholder-actions .btn {
        width: 100%;
        margin-top: 0.75rem;
    }
}
/* Visit hero responsive contact style */
@media (max-width: 1024px) {
    .visit-hero-grid {
        grid-template-columns: 1fr;
    }

    .subpage-hero.visit-hero {
        min-height: auto;
        align-items: flex-start;
    }

    .visit-hero-panel {
        max-width: 42rem;
    }
}

@media (max-width: 640px) {
    .subpage-hero.visit-hero {
        min-height: auto;
        padding-top: calc(var(--header-height, 82px) + 3.2rem);
        padding-bottom: 3.8rem;
    }

    .visit-hero-copy h1 {
        font-size: clamp(2.55rem, 14vw, 3.65rem);
    }

    .visit-hero-panel {
        padding: 1.35rem;
    }

    .visit-hero-link {
        grid-template-columns: 2rem minmax(0, 1fr);
        gap: 0.85rem;
    }

    .visit-hero-link span {
        width: 2rem;
        height: 2rem;
    }
}
/* Booking simplified Rezeo primary */
.booking-rezeo-panel {
    display: grid;
    grid-template-columns: 3.1rem minmax(0, 1fr);
    gap: 1.15rem;
    align-items: start;
    padding: clamp(1.8rem, 3.2vw, 2.5rem);
    background: rgba(28, 58, 52, 0.96);
    color: var(--color-text-light);
    box-shadow: 0 28px 70px rgba(28, 58, 52, 0.18);
    backdrop-filter: blur(14px);
}

.booking-rezeo-panel > i {
    width: 3.1rem;
    height: 3.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    border: 1px solid rgba(225, 195, 110, 0.42);
    border-radius: 50%;
    font-size: 1.15rem;
}

.booking-rezeo-panel small {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-rezeo-panel strong {
    display: block;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-rezeo-panel p {
    max-width: 26rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.125rem;
    line-height: 1.65;
}

.booking-main-simple .booking-widget-area-simple {
    max-width: 62rem;
    margin: 0 auto;
}

.booking-main-simple .booking-section-heading {
    max-width: 46rem;
    margin: 0 auto clamp(2.2rem, 4vw, 3.25rem);
    text-align: center;
}

.booking-main-simple .booking-section-heading h2 {
    max-width: none;
}

.booking-main-simple .booking-section-heading h2::before {
    margin-left: auto;
    margin-right: auto;
}

.booking-main-simple .rezeo-widget-slot {
    min-height: clamp(31rem, 48vw, 42rem);
    padding: clamp(1rem, 2vw, 1.5rem);
    box-shadow: 0 26px 64px rgba(28, 58, 52, 0.12);
}

.booking-main-simple .rezeo-widget-placeholder {
    padding: clamp(2.25rem, 5vw, 4.75rem);
}

.booking-main-simple .rezeo-widget-placeholder p {
    max-width: 25rem;
}

@media (max-width: 1024px) {
    .booking-rezeo-panel {
        max-width: 42rem;
    }
}

@media (max-width: 640px) {
    .booking-rezeo-panel {
        grid-template-columns: 2.5rem minmax(0, 1fr);
        gap: 0.95rem;
        padding: 1.35rem;
    }

    .booking-rezeo-panel > i {
        width: 2.5rem;
        height: 2.5rem;
    }

    .booking-rezeo-panel strong {
        font-size: clamp(1.55rem, 9vw, 2.15rem);
    }

    .booking-main-simple .rezeo-widget-slot {
        min-height: 26rem;
    }
}
/* Booking hero without side panel */
.booking-hero-simple .booking-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.58fr);
}

.booking-hero-simple .booking-hero-copy h1 {
    max-width: 12ch;
}
/* =========================================================================
   HOME ALT HERO
   ========================================================================= */

.home-alt-hero {
    min-height: clamp(34rem, 82vh, 52rem);
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height, 92px) + clamp(4rem, 7vw, 7rem)) 0 clamp(4.5rem, 8vw, 7rem);
    background:
        linear-gradient(to top right, rgba(18, 36, 32, 0.92) 0%, rgba(28, 58, 52, 0.72) 28%, rgba(28, 58, 52, 0.28) 52%, rgba(28, 58, 52, 0) 80%),
        url('fotky/2000/apartman-verde-jince-obyvaci-prostor.jpg') center right/cover no-repeat;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.home-alt-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.58fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: end;
}


.home-alt-hero-copy h1 {
    max-width: 12ch;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-text-light);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.98;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.34);
}

.home-alt-hero-copy h1::before {
    content: "";
    display: block;
    width: 2px;
    height: 40px;
    margin-bottom: 1.5rem;
    background-color: var(--color-accent);
}

.home-alt-hero-copy p {
    max-width: 43rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.125rem, 1.45vw, 1.35rem);
    line-height: 1.75;
    font-weight: 350;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.home-alt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem clamp(1.2rem, 2.2vw, 2rem);
    align-items: center;
    margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.home-alt-hero-actions .btn {
    margin-top: 0;
}

.home-alt-text-link {
    color: rgba(255, 255, 255, 0.94);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    line-height: 1.45;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(225, 195, 110, 0.58);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
}

.home-alt-text-link:hover,
.home-alt-text-link:focus-visible {
    color: var(--color-accent);
    border-color: currentColor;
}

@media (max-width: 1024px) {
    .home-alt-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-alt-hero {
        min-height: auto;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .home-alt-hero {
        padding-top: calc(var(--header-height, 82px) + 3.2rem);
        padding-bottom: 3.8rem;
    }

    .home-alt-hero-copy h1 {
        font-size: clamp(2.55rem, 14vw, 3.65rem);
    }

    .home-alt-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-alt-hero-actions .btn {
        width: 100%;
    }
}

/* HOME PAGE PARAGRAPH SIZE */
.home-page main p {
    font-size: 18px;
}

.home-page main .feature-card p {
    font-size: clamp(1.1rem, 1.45vw, 1.28rem);
}
/* VISIT OVERVIEW WITHOUT DUPLICATE MENU */
.visit-overview-grid {
    grid-template-columns: minmax(0, 1fr);
}

.visit-overview-copy {
    max-width: 54rem;
}
/* VISIT PAGE BODY TEXT SIZE */
.visit-page main p,
.visit-page main li,
.visit-page main li strong,
.visit-page main li span,
.visit-page main li a,
.visit-page .visit-hero-copy .visit-hero-lede,
.visit-page .visit-hero-link strong {
    font-size: 18px;
}
/* VISIT DINING STACKED GROUPS */
.visit-dining-list section {
    display: block;
}

.visit-dining-list h3 {
    margin: 0 0 clamp(0.9rem, 1.6vw, 1.25rem);
}

.visit-dining-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem clamp(1rem, 2vw, 1.6rem);
}
/* VISIT DINING HEADING WIDTH */
.visit-dining-copy h2 {
    max-width: 16ch;
}
/* VISIT PAGE PHOTO BORDER REMOVAL */
.visit-page .visit-photo-frame::after {
    display: none;
}
/* HOME HERO FULL VIEWPORT HEIGHT */
.home-page .home-alt-hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-end;
    padding-top: calc(var(--header-height, 92px) + clamp(4rem, 7vw, 7rem));
    padding-bottom: clamp(4.5rem, 8vh, 7rem);
}

.home-page .home-alt-hero-grid {
    align-items: end;
}

@media (max-width: 1024px) {
    .home-page .home-alt-hero {
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100dvh;
        align-items: flex-end;
        padding-top: calc(var(--header-height, 82px) + clamp(3.8rem, 8vw, 6rem));
        padding-bottom: clamp(3.8rem, 8vh, 6rem);
    }

    .home-page .home-alt-hero-copy {
        max-width: 42rem;
    }
}

@media (max-width: 640px) {
    .home-page .home-alt-hero {
        padding-top: calc(var(--header-height, 82px) + 2.75rem);
        padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
    }

    .home-page .home-alt-hero > .container {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        padding-inline: 10vw;
    }

    .home-page .home-alt-hero-grid {
        width: 100%;
        min-width: 0;
        grid-template-columns: minmax(0, 1fr);
    }

    .home-page .home-alt-hero-copy {
        width: 100%;
        min-width: 0;
    }

    .home-page .home-alt-hero-copy h1 {
        font-size: clamp(2.45rem, 13vw, 3.45rem);
    }

    .home-page .home-alt-hero-copy p {
        line-height: 1.55;
    }

    .home-page .home-alt-hero-actions {
        width: 100%;
        min-width: 0;
        margin-inline: 0;
    }

    .home-page .home-alt-hero-actions .btn,
    .home-page .home-alt-text-link {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin-inline: 0;
        box-sizing: border-box;
        text-align: center;
    }
}
/* HOME HERO SUBTITLE SIZE MATCH */
.home-page .home-alt-hero-copy p {
    font-size: clamp(1.125rem, 1.45vw, 1.35rem);
}
/* HOME HERO WITHOUT TITLE MARK */
.home-page .home-alt-hero-copy h1::before {
    display: none;
}
/* ATMOSPHERE SECTION TEXT EMPHASIS */
.atmosphere .text-side p {
    font-weight: 350;
}
/* VISIT HERO MENU NUMBERS */
.visit-hero-link {
    grid-template-columns: 2.75rem minmax(0, 1fr);
}

.visit-hero-link span {
    width: auto;
    height: auto;
    justify-content: flex-start;
    border: 0;
    border-radius: 0;
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: 0.06em;
}

@media (max-width: 640px) {
    .visit-hero-link {
        grid-template-columns: 2.45rem minmax(0, 1fr);
    }

    .visit-hero-link span {
        width: auto;
        height: auto;
        font-size: 1.05rem;
    }
}
/* VISIT DINING MOBILE READABILITY */
@media (max-width: 640px) {
    .visit-dining-items {
        grid-template-columns: 1fr;
    }
}
/* REZEO EMBED */
.rezeo-widget-slot iframe {
    display: block;
    width: 100%;
    min-height: clamp(31rem, 48vw, 42rem);
    border: 0;
}

@media (max-width: 640px) {
    .rezeo-widget-slot iframe {
        min-height: 32rem;
    }
}
/* REZEO DIRECT EMBED */
.booking-main-simple .booking-widget-area-simple {
    width: min(100%, 82rem);
    max-width: none;
}

.booking-main-simple .rezeo-widget-slot {
    min-height: clamp(31rem, 50vw, 44rem);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
/* HOME HERO ELEGANT ENTRANCE */
.home-page .home-alt-hero-copy {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 90ms;
    will-change: opacity, transform;
}

.home-page .home-alt-hero-copy h1,
.home-page .home-alt-hero-copy p,
.home-page .home-alt-hero-actions {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fonts-ready .home-page .home-alt-hero-copy {
    opacity: 1;
    transform: translateY(0);
}

.fonts-ready .home-page .home-alt-hero-copy h1,
.fonts-ready .home-page .home-alt-hero-copy p,
.fonts-ready .home-page .home-alt-hero-actions {
    opacity: 1;
    transform: translateY(0);
}

.fonts-ready .home-page .home-alt-hero-copy h1 {
    transition-delay: 180ms;
}

.fonts-ready .home-page .home-alt-hero-copy p {
    transition-delay: 330ms;
}

.fonts-ready .home-page .home-alt-hero-actions {
    transition-delay: 500ms;
}

@media (max-width: 640px) {
    .home-page .home-alt-hero-copy,
    .home-page .home-alt-hero-copy h1,
    .home-page .home-alt-hero-copy p,
    .home-page .home-alt-hero-actions {
        transform: none;
        transition: none;
        transition-delay: 0ms;
        will-change: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .home-alt-hero-copy,
    .home-page .home-alt-hero-copy h1,
    .home-page .home-alt-hero-copy p,
    .home-page .home-alt-hero-actions {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

@media (scripting: none) {
    .home-page .home-alt-hero-copy,
    .home-page .home-alt-hero-copy h1,
    .home-page .home-alt-hero-copy p,
    .home-page .home-alt-hero-actions {
        opacity: 1;
        transform: none;
    }
}
/* ATMOSPHERE SECTION STABLE FIRST PAINT */
.home-page .atmosphere {
    overflow: visible;
}

.home-page .atmosphere::before {
    display: block;
    top: 50%;
    right: -40px;
    width: 380px;
    height: 160px;
    background-color: transparent;
    background-image: none;
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: right center;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 520ms ease;
    contain: layout paint style;
}

.fonts-ready .home-page .atmosphere::before {
    opacity: 0.065;
}

.home-page .atmosphere .split-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(3.5rem, 6vw, 6.5rem);
    align-items: center;
}

.home-page .atmosphere .text-side {
    position: relative;
    z-index: 2;
    max-width: 38rem;
}

.home-page .atmosphere-gallery {
    width: 100%;
    height: clamp(32rem, 42vw, 38rem);
    min-height: 0;
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.home-page .atmosphere-gallery-item {
    background: #eee7dc;
}

.home-page .atmosphere-gallery .atmosphere-photo {
    background: #eee7dc;
}

.home-page .atmosphere-video-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #eee7dc;
}

.home-page .atmosphere-video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(28, 58, 52, 0.18);
    pointer-events: none;
}

.home-page .atmosphere-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-page .atmosphere-video-frame:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.home-page .atmosphere-video-link-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    width: clamp(3.6rem, 6vw, 4.8rem);
    height: clamp(3.6rem, 6vw, 4.8rem);
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: rgba(28, 58, 52, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 50%;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    transform: translate(-50%, -50%);
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    pointer-events: none;
}

.home-page .atmosphere-video-link-icon .ui-icon {
    margin-left: 0.16em;
}

@media (hover: hover) and (pointer: fine) {
    .home-page .atmosphere-video-frame:hover .atmosphere-video-link-icon {
        background-color: rgba(28, 58, 52, 0.94);
        transform: translate(-50%, -50%) scale(1.07);
    }
}

.atmosphere-video-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    background-color: rgba(10, 27, 23, 0.9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 240ms ease, visibility 240ms ease;
}

.atmosphere-video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.atmosphere-video-modal-dialog {
    position: relative;
    width: min(70rem, 100%);
    transform: translateY(1rem) scale(0.985);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.atmosphere-video-modal.is-open .atmosphere-video-modal-dialog {
    transform: translateY(0) scale(1);
}

.atmosphere-video-modal-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #07130f;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.34);
}

.atmosphere-video-modal-media iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.atmosphere-video-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: inline-flex;
    width: 2.8rem;
    height: 2.8rem;
    align-items: center;
    justify-content: center;
    color: var(--color-heading);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(28, 58, 52, 0.18);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.atmosphere-video-modal-close:hover,
.atmosphere-video-modal-close:focus-visible {
    background-color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
    .atmosphere-video-modal,
    .atmosphere-video-modal-dialog {
        transition: none;
    }
}

@media (max-width: 1023px) {
    .home-page .atmosphere::before {
        top: 8rem;
        right: -8rem;
        width: 320px;
        height: 132px;
        opacity: 0;
    }

    .fonts-ready .home-page .atmosphere::before {
        opacity: 0.04;
    }

    .home-page .atmosphere .split-layout {
        display: flex;
    }

    .home-page .atmosphere .text-side {
        max-width: none;
    }

    .home-page .atmosphere-gallery {
        height: auto;
        min-height: 0;
    }

    .home-page .atmosphere-video-frame {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .home-page .atmosphere::before {
        display: none;
    }
}

/* HERO VIEWPORT FIT */
@media (min-width: 1025px) {
    .home-alt-hero,
    .contact-hero,
    .booking-hero,
    .subpage-hero.visit-hero {
        max-height: 100vh;
        max-height: 100dvh;
        padding-top: calc(var(--header-height, 92px) + clamp(2.75rem, 5.2vh, 5.25rem));
        padding-bottom: clamp(2.75rem, 6vh, 5.25rem);
    }

    .home-page .home-alt-hero {
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
    }

    .contact-hero,
    .booking-hero,
    .subpage-hero.visit-hero {
        min-height: 82vh;
        height: 82vh;
        min-height: min(82dvh, 48rem);
        height: min(82dvh, 48rem);
    }
}

@media (min-width: 901px) and (max-width: 1280px),
       (min-width: 901px) and (max-height: 760px) {
    .home-alt-hero,
    .contact-hero,
    .booking-hero,
    .subpage-hero.visit-hero {
        align-items: center;
        padding-top: calc(var(--header-height, 92px) + clamp(2rem, 4vh, 3rem));
        padding-bottom: clamp(2.8rem, 6vh, 4.25rem);
    }

    .home-page .home-alt-hero {
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
    }

    .contact-hero,
    .booking-hero,
    .subpage-hero.visit-hero {
        min-height: 80vh;
        height: 80vh;
        min-height: min(80dvh, 43rem);
        height: min(80dvh, 43rem);
    }

    .home-alt-hero-grid,
    .contact-hero-grid,
    .booking-hero-grid,
    .visit-hero-grid,
    .booking-hero-simple .booking-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.52fr);
        gap: clamp(2rem, 4.2vw, 4rem);
        align-items: center;
    }

    .home-alt-hero-copy h1,
    .contact-hero-copy h1,
    .booking-hero-copy h1,
    .visit-hero-copy h1 {
        font-size: clamp(2.65rem, 5.2vw, 4.35rem);
        line-height: 0.98;
        margin-bottom: clamp(1rem, 2vh, 1.45rem);
    }

    .home-alt-hero-copy p,
    .contact-hero-copy p,
    .booking-hero-copy p,
    .visit-hero-copy .visit-hero-lede {
        font-size: clamp(1.05rem, 1.25vw, 1.15rem);
        line-height: 1.58;
    }

    .home-alt-hero-actions {
        margin-top: clamp(1.2rem, 2.4vh, 1.8rem);
    }

    .home-alt-hero-actions .btn,
    .hero-buttons .btn {
        padding: 0.95rem 2.2rem;
    }

    .contact-quick-panel,
    .booking-quick-panel,
    .booking-rezeo-panel,
    .visit-hero-panel {
        padding: clamp(1.2rem, 2.2vw, 1.65rem);
    }

    .contact-quick-link,
    .booking-quick-row,
    .visit-hero-link {
        padding-top: 0.82rem;
        padding-bottom: 0.82rem;
    }

    .contact-quick-link span,
    .booking-quick-row span,
    .visit-hero-link strong {
        font-size: clamp(0.94rem, 1vw, 1.02rem);
        line-height: 1.34;
    }
}

@media (min-width: 901px) and (max-height: 640px) {
    .home-alt-hero,
    .contact-hero,
    .booking-hero,
    .subpage-hero.visit-hero {
        align-items: center;
        padding-top: calc(var(--header-height, 84px) + 1.25rem);
        padding-bottom: 2rem;
    }

    .contact-hero,
    .booking-hero,
    .subpage-hero.visit-hero {
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
    }

    .home-alt-hero-copy h1,
    .contact-hero-copy h1,
    .booking-hero-copy h1,
    .visit-hero-copy h1 {
        font-size: clamp(2.35rem, 4.4vw, 3.55rem);
        margin-bottom: 0.9rem;
    }

    .home-alt-hero-copy h1::before,
    .contact-hero-copy h1::before,
    .booking-hero-copy h1::before,
    .visit-hero-copy h1::before {
        height: 28px;
        margin-bottom: 1rem;
    }

    .home-alt-hero-actions {
        margin-top: 1rem;
    }

    .contact-quick-panel,
    .booking-quick-panel,
    .booking-rezeo-panel,
    .visit-hero-panel {
        padding: 1rem 1.15rem;
    }

    .contact-quick-link,
    .booking-quick-row,
    .visit-hero-link {
        padding-top: 0.62rem;
        padding-bottom: 0.62rem;
    }
}

@media (min-width: 641px) and (max-width: 900px) {
    .home-alt-hero,
    .contact-hero,
    .booking-hero,
    .subpage-hero.visit-hero {
        min-height: auto;
        max-height: none;
        height: auto;
        padding-top: calc(var(--header-height, 82px) + clamp(2.8rem, 6vw, 4rem));
        padding-bottom: clamp(3rem, 7vw, 4.5rem);
    }

    .home-page .home-alt-hero {
        min-height: 100vh;
        min-height: 100svh;
        height: auto;
    }

    .home-alt-hero-copy h1,
    .contact-hero-copy h1,
    .booking-hero-copy h1,
    .visit-hero-copy h1 {
        font-size: clamp(2.7rem, 8.2vw, 4.45rem);
    }
}

@media (max-width: 640px) {
    .home-alt-hero,
    .contact-hero,
    .booking-hero,
    .subpage-hero.visit-hero {
        max-height: none;
        height: auto;
    }
}
/* ATMOSPHERE DECOR REMOVED */
.home-page .atmosphere::before,
.fonts-ready .home-page .atmosphere::before {
    content: none;
    display: none;
    background-image: none;
    opacity: 0;
}
/* =========================================================================
   SUBPAGE: INFORMACE
   ========================================================================= */
.info-page main { background: #fbfaf7; }

.info-hero {
    min-height: clamp(32rem, 76vh, 46rem);
    display: flex;
    align-items: center;
    padding: calc(var(--header-height, 92px) + clamp(3rem, 6vh, 5rem)) 0 clamp(3.5rem, 7vh, 5.5rem);
    background: linear-gradient(135deg, rgba(251, 250, 247, 0.92) 0%, rgba(243, 236, 232, 0.82) 46%, rgba(65, 96, 85, 0.14) 100%), url("fotky/2000/apartman-verde-jince-kuchyn-jidelni-stul.jpg") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.info-hero::before { content: ""; position: absolute; inset: 0; background: rgba(255, 255, 255, 0.32); pointer-events: none; }
.info-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.58fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.info-hero-copy h1, .info-section-heading h2, .info-faq-intro h2 { margin-bottom: clamp(1.3rem, 2.5vw, 2rem); color: var(--color-heading); }
.info-hero-copy h1 { max-width: 10ch; font-size: clamp(3rem, 7vw, 5.65rem); line-height: 0.98; }
.info-hero-copy h1::before, .info-section-heading h2::before, .info-faq-intro h2::before { content: ""; display: block; width: 2px; height: 40px; margin-bottom: 1.5rem; background-color: var(--color-accent); }
.info-hero-copy p, .info-faq-intro p { max-width: 43rem; margin: 0; color: rgba(28, 58, 52, 0.82); font-size: clamp(1.125rem, 1.45vw, 1.35rem); line-height: 1.75; font-weight: 350; }
.info-highlights { padding: clamp(5rem, 8vw, 7rem) 0; background: #ffffff; }
.info-section-heading { max-width: 54rem; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.info-section-heading h2 { font-size: clamp(2.15rem, 4.4vw, 3.55rem); }
.info-section-heading h2::before { margin-right: auto; margin-left: auto; }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-grid article { min-width: 0; min-height: clamp(13rem, 16vw, 16.5rem); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(1.5rem, 2.5vw, 2.2rem); padding: clamp(2rem, 3.5vw, 3.35rem) clamp(1.2rem, 2.4vw, 2.5rem); text-align: center; background: transparent; transition: background-color var(--transition-slow); }
.info-grid article:nth-child(3n + 2), .info-grid article:nth-child(3n + 3) { border-left: 1px solid rgba(var(--color-primary-rgb), 0.18); }
.info-grid article:nth-child(n + 4) { border-top: 1px solid rgba(var(--color-primary-rgb), 0.18); }
.info-grid .icon-graphic { width: clamp(2.8rem, 4vw, 3.9rem); height: clamp(2.8rem, 4vw, 3.9rem); object-fit: contain; transition: transform var(--transition-slow); }
.info-grid-copy { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; }
.info-grid strong { display: block; max-width: 18rem; color: var(--color-heading); font-family: var(--font-heading); font-size: clamp(1.1rem, 1.45vw, 1.28rem); font-weight: 550; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.info-grid span { display: block; max-width: 24rem; color: rgba(51, 51, 51, 0.78); font-size: 18px; line-height: 1.55; font-weight: 350; }

.info-grid article:hover,
.info-grid article:focus-within {
    background-color: rgba(243, 236, 232, 0.58);
}

.info-grid article:hover .icon-graphic,
.info-grid article:focus-within .icon-graphic {
    transform: translateY(-0.28rem);
}

@media (min-width: 901px) {
    .info-grid article {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .info-grid .icon-graphic {
        flex: 0 0 auto;
        margin-top: 0;
    }

    .info-grid-copy {
        width: 100%;
        align-items: center;
    }
}
.info-faq {
    padding: clamp(5.5rem, 9vw, 8rem) 0;
    background-color: #f6f8f6;
}

.info-faq-layout {
    display: block;
}

.info-faq-intro {
    position: static;
    max-width: 52rem;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.info-faq-intro h2 {
    max-width: none;
    margin: 0 0 1.35rem;
    color: var(--color-heading);
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    line-height: 1.08;
}

.info-faq-intro h2::before {
    width: 3rem;
    height: 2px;
    margin: 0 auto 1.5rem;
}

.info-faq-intro p {
    max-width: 44rem;
    margin: 0 auto;
    color: rgba(28, 58, 52, 0.76);
    font-size: 18px;
    font-weight: 350;
    line-height: 1.75;
}

.info-faq-tabs {
    display: flex;
    width: min(100%, 72rem);
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    padding: 0;
    justify-content: center;
    gap: clamp(1.25rem, 3.2vw, 3rem);
    overflow-x: auto;
    border-bottom: 1px solid rgba(28, 58, 52, 0.18);
    scrollbar-width: none;
}

.info-faq-tabs::-webkit-scrollbar {
    display: none;
}

.info-faq-tab {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    padding: 0.95rem 0 1.05rem;
    color: rgba(28, 58, 52, 0.62);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    font-weight: 550;
    letter-spacing: 0;
    line-height: 1.35;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.info-faq-tab::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms ease;
}

.info-faq-tab[aria-selected="true"] {
    color: var(--color-heading);
}

.info-faq-tab[aria-selected="true"]::after {
    transform: scaleX(1);
}

.info-faq-groups {
    width: min(100%, 64rem);
    margin: 0 auto;
    padding: 0;
}

.info-faq-group {
    display: block;
    padding: 0;
}

.info-faq-group[hidden] {
    display: none;
}

.info-faq-group h3 {
    margin: 0 0 1.5rem;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    font-weight: 550;
    letter-spacing: 0;
    line-height: 1.35;
    text-align: center;
    text-transform: none;
}

.info-faq-group details + details {
    border-top: 1px solid rgba(28, 58, 52, 0.18);
}

.info-faq-group summary {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: clamp(1.3rem, 2.2vw, 1.65rem) 0;
    color: var(--color-heading);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5;
    list-style: none;
    text-transform: none;
    transition: color var(--transition-fast);
}

.info-faq-group summary::before {
    content: "";
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
}

.info-faq-group summary::-webkit-details-marker {
    display: none;
}

.info-faq-group summary::after {
    content: "+";
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 1;
    transition: color var(--transition-fast), transform 220ms ease;
}

.info-faq-group details[open] summary {
    color: #315c52;
}

.info-faq-group details[open] summary::after {
    content: "-";
}

.info-faq-group details p {
    max-width: 58rem;
    margin: -0.15rem 0 clamp(1.55rem, 2.6vw, 2rem);
    padding-left: calc(6px + 1rem);
    color: rgba(38, 59, 54, 0.84);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 350;
}

.info-page main p,
.info-page .info-grid span {
    color: var(--color-text-dark);
}
.info-faq.is-tabbed .info-faq-group.is-active {
    animation: info-faq-panel-in 280ms ease both;
}

@keyframes info-faq-panel-in {
    from { opacity: 0; transform: translateY(0.4rem); }
    to { opacity: 1; transform: translateY(0); }
}

@media (hover: hover) and (pointer: fine) {
    .info-faq-tab:hover,
    .info-faq-group summary:hover {
        color: #315c52;
    }
}

@media (max-width: 760px) {
    .info-faq-intro {
        text-align: left;
    }

    .info-faq-intro h2::before {
        margin-left: 0;
    }

    .info-faq-intro p {
        margin-left: 0;
    }

    .info-faq-tabs {
        justify-content: flex-start;
        gap: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .info-faq-tab::after,
    .info-faq.is-tabbed .info-faq-group.is-active {
        animation: none;
        transition: none;
    }
}
@media (min-width: 901px) and (max-width: 1280px), (min-width: 901px) and (max-height: 760px) {
    .info-hero { min-height: 76vh; min-height: min(76dvh, 42rem); padding-top: calc(var(--header-height, 92px) + clamp(2rem, 4vh, 3rem)); padding-bottom: clamp(2.8rem, 6vh, 4.25rem); }
    .info-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.52fr); gap: clamp(2rem, 4.2vw, 4rem); }
    .info-hero-copy h1 { font-size: clamp(2.65rem, 5.2vw, 4.35rem); }
}

@media (max-width: 1024px) { .info-hero-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
    .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .info-grid article:nth-child(n) { border-left: none; border-top: none; }
    .info-grid article:nth-child(even) { border-left: 1px solid rgba(var(--color-primary-rgb), 0.18); }
    .info-grid article:nth-child(n + 3) { border-top: 1px solid rgba(var(--color-primary-rgb), 0.18); }
}
@media (max-width: 640px) {
    .info-hero { min-height: auto; padding-top: calc(var(--header-height, 82px) + 3.2rem); padding-bottom: 3.8rem; }
    .info-hero-copy h1 { font-size: 3rem; }
    .info-highlights, .info-faq { padding: 4.5rem 0; }
    .info-grid { grid-template-columns: 1fr; }
    .info-grid article { min-height: 0; padding: 1.8rem 0; }
    .info-grid article:nth-child(n) { border-left: none; border-top: none; }
    .info-grid article:nth-child(n + 2) { border-top: 1px solid rgba(var(--color-primary-rgb), 0.18); }
    .info-grid .icon-graphic { width: 2.8rem; height: 2.8rem; }
    .info-grid strong { max-width: 100%; }
    .info-faq-group summary { display: flex; gap: 0.8rem; font-size: 1rem; }
    .info-faq-group summary::before { flex: 0 0 6px; }
    .info-faq-group summary::after { flex: 0 0 1.8rem; width: 1.8rem; height: 1.8rem; }
}
/* CONTACT AND BOOKING HERO - MATCH THE INFORMATION PAGE COMPOSITION */
.contact-page .contact-hero,
.booking-page .booking-hero {
    height: auto;
    min-height: clamp(32rem, 76vh, 46rem);
    max-height: none;
    align-items: center;
    padding: calc(var(--header-height, 92px) + clamp(3rem, 6vh, 5rem)) 0 clamp(3.5rem, 7vh, 5.5rem);
}

.contact-page .contact-hero-grid,
.booking-page .booking-hero-grid,
.booking-page .booking-hero-simple .booking-hero-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.58fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.contact-page .contact-hero-copy h1,
.booking-page .booking-hero-copy h1 {
    max-width: 10ch;
    margin-bottom: clamp(1.3rem, 2.5vw, 2rem);
    font-size: clamp(3rem, 7vw, 5.65rem);
    line-height: 0.98;
}

.contact-page .contact-hero-copy::after {
    content: "";
    display: block;
    height: clamp(4rem, 5.1vw, 4.75rem);
}
.contact-page .contact-hero-copy p,
.booking-page .booking-hero-copy p {
    max-width: 43rem;
    margin: 0;
    color: rgba(28, 58, 52, 0.82);
    font-size: clamp(1.125rem, 1.45vw, 1.35rem);
    line-height: 1.75;
    font-weight: 350;
}

@media (min-width: 901px) and (max-width: 1280px), (min-width: 901px) and (max-height: 760px) {
    .contact-page .contact-hero,
    .booking-page .booking-hero {
        height: auto;
        min-height: 76vh;
        min-height: min(76dvh, 42rem);
        max-height: none;
        padding-top: calc(var(--header-height, 92px) + clamp(2rem, 4vh, 3rem));
        padding-bottom: clamp(2.8rem, 6vh, 4.25rem);
    }

    .contact-page .contact-hero-grid,
    .booking-page .booking-hero-grid,
    .booking-page .booking-hero-simple .booking-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.52fr);
        gap: clamp(2rem, 4.2vw, 4rem);
    }

    .contact-page .contact-hero-copy h1,
    .booking-page .booking-hero-copy h1 {
        font-size: clamp(2.65rem, 5.2vw, 4.35rem);
    }
}

@media (max-width: 1024px) {
    .contact-page .contact-hero-grid,
    .booking-page .booking-hero-grid,
    .booking-page .booking-hero-simple .booking-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-page .contact-hero,
    .booking-page .booking-hero {
        min-height: auto;
        padding-top: calc(var(--header-height, 82px) + 3.2rem);
        padding-bottom: 3.8rem;
    }

    .contact-page .contact-hero-copy h1,
    .booking-page .booking-hero-copy h1 {
        font-size: 3rem;
    }
}
@media (max-width: 480px) {
    .info-hero-copy h1,
    .contact-page .contact-hero-copy h1,
    .booking-page .booking-hero-copy h1 {
        font-size: 2.3rem;
        letter-spacing: 0;
    }
}

@media (max-width: 360px) {
    .info-hero-copy h1,
    .contact-page .contact-hero-copy h1,
    .booking-page .booking-hero-copy h1 {
        font-size: 1.9rem;
        letter-spacing: 0;
    }
}
/* VISIT HERO HEADING - MATCH INFORMATION PAGE */
.visit-hero-copy h1 {
    font-size: clamp(3rem, 7vw, 5.65rem);
}

@media (min-width: 901px) and (max-width: 1280px), (min-width: 901px) and (max-height: 760px) {
    .visit-hero-copy h1 {
        font-size: clamp(2.65rem, 5.2vw, 4.35rem);
    }
}

@media (max-width: 640px) {
    .visit-hero-copy h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .visit-hero-copy h1 {
        font-size: 2.3rem;
        letter-spacing: 0;
    }
}

@media (max-width: 360px) {
    .visit-hero-copy h1 {
        font-size: 1.9rem;
        letter-spacing: 0;
    }
}
/* MOBILE INFORMATION FAQ - SIMPLE LIST */
@media (max-width: 760px) {
    .info-faq-tabs {
        display: none !important;
    }

    .info-faq,
    .info-faq-layout,
    .info-faq-groups,
    .info-faq-group,
    .info-faq-group details {
        min-width: 0;
        max-width: 100%;
    }

    .info-faq-groups {
        width: 100%;
        overflow: visible;
    }

    /* Show all groups on mobile regardless of JS tab state */
    .info-faq-group[hidden],
    .info-faq-group {
        display: block !important;
    }

    .info-faq-group h3 {
        display: none;
    }

    .info-faq-group + .info-faq-group {
        margin: 0;
        padding: 0;
    }

    .info-faq-group + .info-faq-group details:first-of-type {
        border-top: 1px solid rgba(28, 58, 52, 0.18);
    }

    .info-faq-group summary {
        gap: 0.75rem;
        width: 100%;
        font-size: 18px;
        overflow-wrap: anywhere;
    }

    .info-faq-group summary::before {
        flex: 0 0 5px;
        width: 5px;
        height: 5px;
    }

    .info-faq-group summary::after {
        flex: 0 0 1.75rem;
        width: 1.75rem;
        height: 1.75rem;
    }

    .info-faq-group details p {
        width: 100%;
        padding-right: 0;
        padding-left: calc(5px + 0.75rem);
        overflow-wrap: anywhere;
    }
}
/* MOBILE VISIT HISTORY HEADING ALIGNMENT */
@media (max-width: 680px) {
    #pamatky-do-hodiny .visit-section-heading {
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

    #pamatky-do-hodiny .visit-section-heading h2,
    #pamatky-do-hodiny .visit-section-heading h2::before {
        margin-right: 0;
        margin-left: 0;
    }
}
/* FOOTER WITHOUT SEPARATORS OR UNDERLINES */
.site-footer::before {
    content: none;
    display: none;
}

.site-footer a,
.site-footer a:hover,
.site-footer a:focus-visible {
    text-decoration: none;
    border-bottom: 0;
}
/* CONTACT MAP FLUSH WITH FOOTER */
.contact-page .contact-main {
    padding-bottom: 0;
}
/* CONTACT PAGE INTEGRATED COMPOSITION */
.contact-page .contact-hero {
    background:
        linear-gradient(135deg, rgba(251, 250, 247, 0.88) 0%, rgba(243, 236, 232, 0.78) 50%, rgba(65, 96, 85, 0.13) 100%),
        url('fotky/2000/zamecke-zahrady-jince-park.jpg') center 48% / cover no-repeat;
}

.contact-page .contact-hero::before {
    background: rgba(255, 255, 255, 0.40);
}

.contact-page .contact-main {
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    background: #f4f6f3;
}

.contact-page .contact-main-grid {
    width: min(90%, 85rem);
    max-width: 85rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(22rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3.5rem, 7vw, 7rem);
    align-items: center;
}

.contact-page .contact-detail-list {
    --contact-detail-gap: clamp(2.5rem, 4vw, 4rem);
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    gap: var(--contact-detail-gap);
    padding: clamp(1rem, 2vw, 2rem) 0;
    background: transparent;
}

.contact-page .contact-detail,
.contact-page .contact-detail:first-child,
.contact-page .contact-detail:last-child {
    position: relative;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: clamp(2.8rem, 4vw, 3.9rem) minmax(0, 1fr);
    gap: clamp(1.25rem, 2vw, 1.75rem);
    align-items: center;
    justify-items: start;
    padding: 0;
    text-align: left;
}

.contact-page .contact-detail + .contact-detail::before {
    content: "";
    position: absolute;
    top: calc(var(--contact-detail-gap) / -2);
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(var(--color-primary-rgb), 0.18);
}

.contact-page .contact-detail .contact-detail-icon {
    width: clamp(2.8rem, 4vw, 3.9rem);
    height: clamp(2.8rem, 4vw, 3.9rem);
    flex: none;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(82%) sepia(35%) saturate(693%) hue-rotate(3deg) brightness(94%) contrast(87%);
}

.contact-page .contact-detail > div {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-page .contact-detail h3 {
    margin: 0 0 0.45rem;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.7vw, 1.55rem);
    font-weight: 550;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: none;
}

.contact-page .contact-detail .contact-detail-heading-link {
    display: inline;
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    border: 0;
}

.contact-page .contact-detail .contact-detail-heading-link:hover {
    color: inherit;
    border: 0;
}

.contact-page .contact-detail .contact-detail-heading-link:focus-visible {
    color: inherit;
    border: 0;
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.contact-page .contact-detail .contact-detail-value,
.contact-page .contact-detail address,
.contact-page .contact-detail address a {
    margin: 0;
    color: rgba(38, 59, 54, 0.86);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 350;
    letter-spacing: 0;
    line-height: 1.7;
    text-align: left;
    text-transform: none;
}

.contact-page .contact-detail .contact-detail-value:hover,
.contact-page .contact-detail .contact-detail-value:focus-visible,
.contact-page .contact-detail address a:hover,
.contact-page .contact-detail address a:focus-visible {
    color: #5a7d70;
}

.contact-page .contact-map-panel {
    width: min(100%, 48rem);
    height: clamp(30rem, 40vw, 36rem);
    min-height: 0;
    margin: 0 auto;
    justify-self: center;
    border-radius: 4px;
    box-shadow: none;
}

.contact-page .contact-map-panel::before {
    border: 1px solid rgba(65, 96, 85, 0.12);
}

.contact-page .contact-map-panel::after {
    background: rgba(23, 58, 50, 0.10);
}

.contact-page .contact-map-panel iframe {
    height: 100%;
    min-height: 0;
}

@media (max-width: 900px) {
    .contact-page .contact-main {
        padding: 4rem 0;
    }

    .contact-page .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 3.75rem;
    }

    .contact-page .contact-detail-list {
        --contact-detail-gap: 2.5rem;
        gap: var(--contact-detail-gap);
        padding: 0;
    }

    .contact-page .contact-detail,
    .contact-page .contact-detail:first-child,
    .contact-page .contact-detail:last-child {
        max-width: 100%;
        grid-template-columns: 2.8rem minmax(0, 1fr);
        gap: 1.4rem;
        margin: 0;
    }

    .contact-page .contact-detail .contact-detail-icon {
        width: 2.8rem;
        height: 2.8rem;
    }

    .contact-page .contact-map-panel {
        width: 100%;
        height: clamp(25rem, 72vw, 32rem);
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .contact-page .contact-hero {
        background-position: 58% center;
    }

    .contact-page .contact-detail-list {
        --contact-detail-gap: 2.25rem;
        gap: var(--contact-detail-gap);
        padding: 0;
    }

    .contact-page .contact-detail,
    .contact-page .contact-detail:first-child,
    .contact-page .contact-detail:last-child {
        grid-template-columns: 2.8rem minmax(0, 1fr);
        gap: 1.2rem;
    }

    .contact-page .contact-detail .contact-detail-icon {
        width: 2.8rem;
        height: 2.8rem;
    }

    .contact-page .contact-detail h3 {
        font-size: 1.3rem;
    }

    .contact-page .contact-map-panel {
        width: 100%;
        height: 25rem;
        min-height: 0;
    }
}

/* VISIT DESTINATIONS MAP COLUMN */
.visit-destinations-layout {
    display: grid;
    grid-template-columns: minmax(15rem, 0.76fr) minmax(0, 2fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.visit-destinations-map {
    position: relative;
    width: 100%;
    margin: 0;
    aspect-ratio: 586 / 712;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2rem 4.5rem rgba(20, 28, 24, 0.12);
}

.visit-destinations-map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-destinations-layout .visit-destination-list {
    margin-top: 0;
}

@media (max-width: 1023px) {
    .visit-destinations-layout {
        grid-template-columns: minmax(14rem, 0.78fr) minmax(0, 1.22fr);
        gap: clamp(2rem, 5vw, 3.5rem);
    }

    .visit-destinations-map {
        align-self: center;
    }

    .visit-destinations-layout .visit-destination-list {
        grid-template-columns: 1fr;
    }

    .visit-destinations-layout .visit-destination-list li:nth-last-child(2) {
        border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.14);
    }
}

@media (max-width: 680px) {
    .visit-destinations-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .visit-destinations-map {
        width: min(100%, 32rem);
        align-self: start;
        justify-self: start;
    }
}

/* WHY CHOOSE INFORMATION ACTION */
.why-choose-action {
    text-align: center;
}

.why-choose-action .btn {
    margin-top: 0;
}
/* RESPONSIVE HERO IMAGE VISIBILITY */
@media (max-width: 1024px) {
    .home-page .home-alt-hero {
        background:
            linear-gradient(to top right, rgba(18, 36, 32, 0.88) 0%, rgba(28, 58, 52, 0.68) 30%, rgba(28, 58, 52, 0.26) 56%, rgba(28, 58, 52, 0) 82%),
            url('fotky/2000/apartman-verde-jince-obyvaci-prostor.jpg') center right / cover no-repeat;
    }

    .info-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.78) 0%, rgba(243, 236, 232, 0.68) 56%, rgba(65, 96, 85, 0.16) 100%),
            url('fotky/2000/apartman-verde-jince-kuchyn-jidelni-stul.jpg') center / cover no-repeat;
    }

    .contact-page .contact-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.78) 0%, rgba(243, 236, 232, 0.68) 56%, rgba(65, 96, 85, 0.16) 100%),
            url('fotky/2000/zamecke-zahrady-jince-park.jpg') center 48% / cover no-repeat;
    }

    .booking-page .booking-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.78) 0%, rgba(243, 236, 232, 0.68) 56%, rgba(65, 96, 85, 0.16) 100%),
            url('fotky/2000/zamek-jince-fasada.jpg') center / cover no-repeat;
    }

    .subpage-hero.visit-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.78) 0%, rgba(243, 236, 232, 0.68) 56%, rgba(65, 96, 85, 0.16) 100%),
            url('fotky/2000/zamecke-zahrady-jince-altan-exterier.jpg') center / cover no-repeat;
    }

    .info-hero::before,
    .contact-page .contact-hero::before,
    .booking-page .booking-hero::before,
    .subpage-hero.visit-hero::before {
        background: rgba(255, 255, 255, 0.10);
    }
}

@media (max-width: 640px) {
    .home-page .home-alt-hero {
        background:
            linear-gradient(rgba(28, 58, 52, 0.67), rgba(28, 58, 52, 0.67)),
            url('fotky/2000/apartman-verde-jince-obyvaci-prostor.jpg') 62% center / cover no-repeat;
    }

    .info-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.72) 0%, rgba(243, 236, 232, 0.62) 58%, rgba(65, 96, 85, 0.14) 100%),
            url('fotky/2000/apartman-verde-jince-kuchyn-jidelni-stul.jpg') center / cover no-repeat;
    }

    .contact-page .contact-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.72) 0%, rgba(243, 236, 232, 0.62) 58%, rgba(65, 96, 85, 0.14) 100%),
            url('fotky/2000/zamecke-zahrady-jince-park.jpg') 58% center / cover no-repeat;
    }

    .booking-page .booking-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.72) 0%, rgba(243, 236, 232, 0.62) 58%, rgba(65, 96, 85, 0.14) 100%),
            url('fotky/2000/zamek-jince-fasada.jpg') center / cover no-repeat;
    }

    .subpage-hero.visit-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.72) 0%, rgba(243, 236, 232, 0.62) 58%, rgba(65, 96, 85, 0.14) 100%),
            url('fotky/2000/zamecke-zahrady-jince-altan-exterier.jpg') center / cover no-repeat;
    }

    .info-hero::before,
    .contact-page .contact-hero::before,
    .booking-page .booking-hero::before,
    .subpage-hero.visit-hero::before {
        background: rgba(255, 255, 255, 0.06);
    }
}
/* MOBILE HOME HERO SECONDARY ACTION */
@media (max-width: 640px) {
    .home-page .home-alt-text-link {
        display: inline-flex;
        width: 100%;
        min-height: 3.75rem;
        align-items: center;
        justify-content: center;
        padding: 1.2rem 3rem;
        color: #ffffff;
        background-color: rgba(28, 58, 52, 0.44);
        border: 1px solid rgba(255, 255, 255, 0.52);
        text-align: center;
        text-decoration: none;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
        transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    }

    .home-page .home-alt-text-link:hover,
    .home-page .home-alt-text-link:focus-visible {
        color: #ffffff;
        background-color: rgba(65, 96, 85, 0.62);
        border-color: rgba(255, 255, 255, 0.72);
    }
}
/* VISIT HISTORY SPLIT COMPOSITION */
#pamatky-do-hodiny .visit-destinations-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

#pamatky-do-hodiny .visit-section-heading {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    margin: 0;
    text-align: left;
}

#pamatky-do-hodiny .visit-section-heading h2,
#pamatky-do-hodiny .visit-section-heading h2::before {
    margin-right: 0;
    margin-left: 0;
}

#pamatky-do-hodiny .visit-destinations-map {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 32rem);
    min-height: 0;
    margin: 0;
    align-self: start;
    justify-self: start;
    aspect-ratio: 586 / 712;
    background: transparent;
    box-shadow: none;
}

#pamatky-do-hodiny .visit-destinations-map img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#pamatky-do-hodiny .visit-destination-list {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    margin-top: 0;
}

@media (min-width: 681px) and (max-width: 1023px) {
    #pamatky-do-hodiny .visit-destinations-layout {
        grid-template-columns: minmax(14rem, 0.78fr) minmax(0, 1.22fr);
        grid-template-rows: auto 1fr;
        column-gap: clamp(2rem, 5vw, 3.5rem);
        row-gap: clamp(2rem, 4vw, 3rem);
    }

    #pamatky-do-hodiny .visit-section-heading {
        grid-column: 1 / -1;
        grid-row: 1;
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    #pamatky-do-hodiny .visit-section-heading h2,
    #pamatky-do-hodiny .visit-section-heading h2::before {
        margin-right: auto;
        margin-left: auto;
    }

    #pamatky-do-hodiny .visit-destinations-map {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
    }

    #pamatky-do-hodiny .visit-destination-list {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (min-width: 1024px) {
    #pamatky-do-hodiny .visit-destinations-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
        grid-template-rows: auto auto;
        column-gap: clamp(3rem, 5vw, 5.5rem);
        row-gap: 0;
        align-items: start;
    }

    #pamatky-do-hodiny .visit-section-heading {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: clamp(2rem, 3.5vw, 3.25rem);
    }

    #pamatky-do-hodiny .visit-destinations-map {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 100%;
        margin-top: 0;
        align-self: center;
    }

    #pamatky-do-hodiny .visit-destination-list {
        grid-column: 2;
        grid-row: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: clamp(1.25rem, 2vw, 2.25rem);
    }
}

@media (min-width: 1600px) {
    #pamatky-do-hodiny .visit-destinations-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    #pamatky-do-hodiny .visit-destinations-map {
        height: auto;
        margin-top: 0;
        align-self: stretch;
        aspect-ratio: auto;
    }
}
/* HOME SECTION HEADING SIZE */
.home-page .atmosphere .text-side h2,
.home-page .surroundings-content h2,
.home-page .why-choose-copy h2,
.home-page .gallery-copy h2,
.home-page .reviews-content-side h2,
.home-page .instagram h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}
/* LARGE DESKTOP SURROUNDINGS BALANCE */
@media (min-width: 1280px) {
    .home-page .surroundings-inner {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        gap: clamp(3rem, 5vw, 6rem);
        align-items: stretch;
    }

    .home-page .surroundings-map {
        height: auto;
        min-height: 0;
        align-self: stretch;
    }

    .home-page .surroundings-map img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
    }

    .home-page .surroundings-content {
        width: 100%;
        max-width: none;
        align-self: stretch;
    }
}
/* MOBILE GALLERY MOSAIC */
@media (max-width: 640px) {
    .home-page .gallery-section {
        padding: 4.75rem 0 5.25rem;
    }

    .home-page .gallery-section .container {
        width: calc(100% - 2rem);
    }

    .home-page .gallery-intro {
        margin-bottom: 2rem;
    }

    .home-page .gallery-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
        grid-auto-flow: row dense;
        gap: 0.65rem;
    }

    .home-page .gallery-item:nth-child(n),
    .home-page .gallery-track.is-collapsed:not(.is-expanded) .gallery-item:nth-child(9),
    .home-page .gallery-track.is-collapsed:not(.is-expanded) .gallery-item:nth-child(10) {
        grid-column: span 1;
        grid-row: auto;
        aspect-ratio: 1 / 1;
    }

    .home-page .gallery-item:nth-child(5n + 1) {
        grid-column: 1 / -1;
        aspect-ratio: 3 / 2;
    }

    .home-page .gallery-more-wrap {
        margin-top: 2rem;
    }

    .home-page .gallery-more-button {
        width: min(100%, 20rem);
    }
}
/* MOBILE ATMOSPHERE SPACING */
@media (max-width: 640px) {
    .home-page .atmosphere {
        padding: 5.75rem 0 6.25rem;
    }
}
/* MOBILE INSTAGRAM SPACING */
@media (max-width: 640px) {
    .home-page .instagram {
        padding: 5.75rem 0 0;
    }

    .home-page .instagram .instagram-intro {
        margin-bottom: 2.5rem;
    }
}
/* MOBILE SUBPAGE HERO READABILITY */
@media (max-width: 640px) {
    .info-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.86) 0%, rgba(243, 236, 232, 0.78) 58%, rgba(65, 96, 85, 0.24) 100%),
            url('fotky/2000/apartman-verde-jince-kuchyn-jidelni-stul.jpg') center / cover no-repeat;
    }

    .contact-page .contact-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.86) 0%, rgba(243, 236, 232, 0.78) 58%, rgba(65, 96, 85, 0.24) 100%),
            url('fotky/2000/zamecke-zahrady-jince-park.jpg') 58% center / cover no-repeat;
    }

    .booking-page .booking-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.86) 0%, rgba(243, 236, 232, 0.78) 58%, rgba(65, 96, 85, 0.24) 100%),
            url('fotky/2000/zamek-jince-fasada.jpg') center / cover no-repeat;
    }

    .subpage-hero.visit-hero {
        background:
            linear-gradient(135deg, rgba(251, 250, 247, 0.86) 0%, rgba(243, 236, 232, 0.78) 58%, rgba(65, 96, 85, 0.24) 100%),
            url('fotky/2000/zamecke-zahrady-jince-altan-exterier.jpg') center / cover no-repeat;
    }

    .info-hero::before,
    .contact-page .contact-hero::before,
    .booking-page .booking-hero::before,
    .subpage-hero.visit-hero::before {
        background: rgba(255, 255, 255, 0.20);
    }
}

/* MOBILE AND TABLET HERO COPY */
@media (max-width: 1024px) {
    .home-alt-hero-copy p,
    .info-hero-copy p,
    .contact-hero-copy p,
    .booking-hero-copy p,
    .visit-hero-copy .visit-hero-lede {
        font-weight: 400;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .home-alt-hero-copy p,
    .info-hero-copy p,
    .contact-hero-copy p,
    .booking-hero-copy p,
    .visit-hero-copy .visit-hero-lede {
        max-width: 75%;
    }
}

/* CONTACT AND INFORMATION HEROES WITHOUT INTRO TEXT */
.contact-page .contact-hero,
.info-page .info-hero {
    --contact-missing-copy-space: clamp(5.25rem, 7.4vw, 6.75rem);
    height: auto;
    min-height: auto;
}

.contact-page .contact-hero-copy h1,
.info-page .info-hero-copy h1 {
    margin-bottom: 0;
}

.contact-page .contact-hero-copy::after {
    content: none;
    display: none;
}

@media (min-width: 641px) {
    .contact-page .contact-hero,
    .info-page .info-hero {
        min-height: calc(clamp(32rem, 76vh, 46rem) - var(--contact-missing-copy-space));
        align-items: center;
    }
}

@media (min-width: 901px) and (max-width: 1280px),
       (min-width: 901px) and (max-height: 760px) {
    .contact-page .contact-hero,
    .info-page .info-hero {
        min-height: calc(min(76dvh, 42rem) - var(--contact-missing-copy-space));
    }
}

/* HOME BENEFIT CARDS - MATCH INFORMATION BOX TYPOGRAPHY */
.home-page main .feature-card {
    min-height: clamp(13rem, 16vw, 16.5rem);
    justify-content: center;
    gap: clamp(1.5rem, 2.5vw, 2.2rem);
    padding: clamp(2rem, 3.5vw, 3.35rem) clamp(1.2rem, 2.4vw, 2.5rem);
}

.home-page main .feature-card .icon-graphic {
    width: clamp(2.8rem, 4vw, 3.9rem);
    height: clamp(2.8rem, 4vw, 3.9rem);
}

.home-page main .feature-card-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.home-page main .feature-card-copy > strong {
    display: block;
    max-width: 18rem;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.45vw, 1.28rem);
    font-weight: 550;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
}

.home-page main .feature-card-copy > p {
    max-width: 24rem;
    margin: 0;
    color: rgba(51, 51, 51, 0.78);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 350;
    letter-spacing: 0;
    line-height: 1.55;
    text-transform: none;
}

@media (max-width: 680px) {
    .home-page main .feature-card {
        min-height: 0;
        padding: 1.8rem 0;
    }

    .home-page main .feature-card .icon-graphic {
        width: 2.8rem;
        height: 2.8rem;
    }
}

/* DESKTOP SURROUNDINGS CTA DIRECTLY BELOW POINTS */
@media (min-width: 1024px) {
    .home-page .surroundings-points {
        margin-bottom: 0;
    }

    .home-page .surroundings-action {
        margin-top: clamp(0.75rem, 1.2vw, 1.25rem);
    }

    .home-page .surroundings-action .btn {
        margin-top: 0;
    }
}

/* TABLET SUBPAGE HERO BOTTOM SPACING */
@media (min-width: 641px) and (max-width: 900px) {
    .info-hero,
    .contact-page .contact-hero,
    .booking-page .booking-hero {
        padding-bottom: clamp(1.75rem, 3.5vh, 2.75rem);
    }

    .subpage-hero.visit-hero {
        padding-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
    }
}

@media (min-width: 901px) and (max-width: 1024px) {
    .info-hero,
    .contact-page .contact-hero,
    .booking-page .booking-hero,
    .subpage-hero.visit-hero {
        padding-bottom: clamp(1.4rem, 3vh, 2.125rem);
    }
}

/* TABLET SUBPAGE HERO VISUAL HEIGHT */
@media (min-width: 641px) and (max-width: 900px) {
    .booking-page .booking-hero {
        min-height: calc(clamp(32rem, 76vh, 46rem) - 6rem);
    }

    .contact-page .contact-hero,
    .info-page .info-hero {
        min-height: calc(clamp(32rem, 76vh, 46rem) - var(--contact-missing-copy-space) - 6rem);
    }
}

@media (min-width: 901px) and (max-width: 1024px) {
    .booking-page .booking-hero {
        height: auto;
        min-height: calc(min(76dvh, 42rem) - 6rem);
    }

    .contact-page .contact-hero,
    .info-page .info-hero {
        height: auto;
        min-height: calc(min(76dvh, 42rem) - var(--contact-missing-copy-space) - 6rem);
    }

    .subpage-hero.visit-hero {
        height: auto;
        min-height: calc(min(80dvh, 43rem) - 6rem);
    }
}

/* VISIT HERO COPY SIZE MATCHES BOOKING HERO */
.visit-page .visit-hero-copy .visit-hero-lede {
    font-size: clamp(1.125rem, 1.45vw, 1.35rem);
}

/* MOBILE BENEFIT AND INFORMATION CARD HEADINGS */
@media (max-width: 680px) {
    .home-page main .feature-card-copy > strong,
    .info-grid strong {
        font-size: calc(1.1rem + 2px);
    }
}

/* TABLET CARD CONTENT TOP ALIGNMENT */
@media (min-width: 681px) and (max-width: 1024px) {
    .home-page main .feature-card,
    .info-grid article {
        justify-content: flex-start;
    }
}

.tablet-heading-break {
    display: none;
}

@media (min-width: 681px) {
    .home-page .why-choose-copy h2 {
        max-width: none;
        white-space: nowrap;
    }

    .tablet-heading-break {
        display: inline;
    }
}

/* COOKIEYES REVISIT CONSENT BUTTON */
.cky-btn-revisit-wrapper {
    width: 45px !important;
    min-width: 45px !important;
    max-width: 45px !important;
    height: 45px !important;
    min-height: 45px !important;
    max-height: 45px !important;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-floating-button {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 3500;
    display: grid;
    width: 45px !important;
    min-width: 45px !important;
    max-width: 45px !important;
    height: 45px !important;
    min-height: 45px !important;
    max-height: 45px !important;
    padding: 0;
    place-items: center;
    color: #ffffff;
    background: #25d366;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    opacity: 1;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-floating-button svg {
    display: block;
    width: 56%;
    height: 56%;
    fill: currentColor;
}

.whatsapp-floating-button:hover {
    color: #ffffff;
    background: #20bd5a;
    box-shadow: none;
    transform: translateY(-0.15rem);
}

.whatsapp-floating-button:active {
    transform: translateY(0) scale(0.96);
}

.whatsapp-floating-button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.45);
}

.whatsapp-floating-button:disabled {
    cursor: default;
}

.whatsapp-floating-button:disabled:hover,
.whatsapp-floating-button:disabled:active {
    background: #25d366;
    box-shadow: none;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-floating-button {
        transition: none;
    }
}
