﻿:root {
    --ink: #141616;
    --forest: #1c2a24;
    --pine: #2f4036;
    --sand: #f4efe6;
    --mist: #e6ded2;
    --gold: #c6a469;
    --gold-dark: #a98245;
    --white: #ffffff;
    --shadow: 0 25px 60px rgba(18, 22, 20, 0.2);
    --radius: 18px;
    --cursor-zoom: url("Chalupka/cursor-zoom.png") 16 16;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

body {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--sand);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 10;
    color: var(--white);
    background: linear-gradient(180deg, rgba(10, 12, 11, 0.8), rgba(10, 12, 11, 0));
    backdrop-filter: blur(8px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    font-family: "Work Sans", "Segoe UI", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.topbar .brand {
    height: 72px;
    overflow: visible;
}

.topbar .brand-logo {
    display: block;
    width: 172px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    flex: 0 0 auto;
    transform: translateY(0);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 600;
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    opacity: 0.7;
    margin-top: 4px;
}

.nav {
    display: flex;
    gap: 22px;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav a {
    transition: color 0.2s ease;
    position: relative;
}

.booking-nav-link {
    display: inline-block;
    position: relative;
    isolation: isolate;
}

.booking-nav-link-label {
    position: relative;
    z-index: 1;
}

.booking-nav-link-orbit {
    position: absolute;
    top: -13px;
    left: -18px;
    width: calc(100% + 32px);
    height: calc(100% + 26px);
    opacity: 0;
    transition: opacity 0.34s ease;
    pointer-events: none;
    overflow: visible;
    filter: drop-shadow(0 0 9px rgba(244, 214, 142, 0.28));
}

.booking-nav-link-orbit rect {
    fill: none;
    stroke: rgba(244, 214, 142, 0.98);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 0 100;
    stroke-dashoffset: 0;
    opacity: 0;
}

body.booking-nav-accent-on .booking-nav-link-orbit {
    opacity: 1;
}

body.booking-nav-accent-on .booking-nav-link-orbit rect {
    animation: bookingNavTrace 1.7s linear 1 forwards;
}

body.booking-nav-accent-on .booking-nav-link-orbit {
    opacity: 1;
    animation: bookingNavGlow 1.7s ease-in-out 1;
}

body.booking-nav-accent-on .booking-nav-link {
    color: #fff7e6;
    text-shadow: 0 0 18px rgba(244, 214, 142, 0.22);
}

.nav a:hover {
    color: var(--gold);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

@keyframes bookingNavTrace {
    0% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: 100;
        opacity: 0;
    }
    12% {
        stroke-dasharray: 16 84;
        stroke-dashoffset: 100;
        opacity: 1;
    }
    82% {
        stroke-dasharray: 16 84;
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: -16;
        opacity: 0;
    }
}

@keyframes bookingNavGlow {
    0% {
        opacity: 0;
    }
    18% {
        opacity: 0.72;
    }
    52% {
        opacity: 1;
    }
    78% {
        opacity: 0.56;
    }
    96% {
        opacity: 0.22;
    }
    100% {
        opacity: 0;
    }
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    padding: 0;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.menu-toggle span:nth-child(2) {
    top: 21px;
}

.menu-toggle span:nth-child(3) {
    top: 28px;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: flex;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 8vw 40px;
    background:
        linear-gradient(135deg, rgba(198, 164, 105, 0.68), rgba(169, 130, 69, 0.6)),
        rgba(18, 20, 20, 0.12);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
    z-index: 12;
    flex-direction: column;
    gap: 18px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-nav a {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: transform 0.35s ease, opacity 0.35s ease;
    position: relative;
    width: fit-content;
}

.mobile-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.menu-open .mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}

.menu-open .mobile-nav a:nth-child(1) { transition-delay: 0.06s; }
.menu-open .mobile-nav a:nth-child(2) { transition-delay: 0.12s; }
.menu-open .mobile-nav a:nth-child(3) { transition-delay: 0.18s; }
.menu-open .mobile-nav a:nth-child(4) { transition-delay: 0.24s; }

.primary-btn,
.ghost-btn {
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-height: 48px;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 12px 24px rgba(198, 164, 105, 0.35);
}

.ghost-btn {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
}

.primary-btn {
    position: relative;
}

.primary-btn::before,
.primary-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.primary-btn::before {
    clip-path: inset(0 50% 0 0);
    transform: scaleX(0);
    transform-origin: left;
}

.primary-btn::after {
    clip-path: inset(0 0 0 50%);
    transform: scaleX(0);
    transform-origin: right;
}

.primary-btn:hover::before,
.primary-btn:hover::after,
.primary-btn:focus-visible::before,
.primary-btn:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

.ghost-btn {
    position: relative;
}

.ghost-btn::before,
.ghost-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.ghost-btn::before {
    clip-path: inset(0 50% 0 0);
    transform: scaleX(0);
    transform-origin: left;
}

.ghost-btn::after {
    clip-path: inset(0 0 0 50%);
    transform: scaleX(0);
    transform-origin: right;
}

.ghost-btn:hover::before,
.ghost-btn:hover::after,
.ghost-btn:focus-visible::before,
.ghost-btn:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 6vw 90px;
    display: grid;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 15, 12, 0.85), rgba(10, 15, 12, 0.35));
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeLoop 15s infinite ease-in-out, zoomLoop 15s infinite ease-in-out;
    will-change: opacity;
}

.hero-slide.slide-1 {
    background-image: url("Chalupka/DJI_0138.JPG");
    animation-delay: 0s;
}

.hero-slide.slide-2 {
    background-image: url("Chalupka/DJI_0141.JPG");
    animation-delay: 5s;
}

.hero-slide.slide-3 {
    background-image: url("Chalupka/20250824_175223.jpg");
    animation-delay: 10s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    display: grid;
    gap: 18px;
    animation: fadeUp 0.9s ease forwards;
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.eyebrow.dark {
    color: var(--pine);
}

.hero h1,
.section h2 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    width: 100%;
}

.hero-line {
    white-space: nowrap;
    display: inline-block;
}


.hero h1 {
    font-size: clamp(2.6rem, 4.8vw, 4.8rem);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-primary-cta {
    animation: mapCtaPulse 2.2s ease-in-out infinite, mapCtaSheenBg 2.8s ease-in-out infinite;
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.34) 33%, rgba(255, 255, 255, 0) 44%),
        linear-gradient(135deg, var(--gold), var(--gold-dark));
    background-size: 240% 100%, 100% 100%;
    background-position: -170% 0, 0 0;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-primary-cta:hover,
.hero-primary-cta:focus-visible {
    animation-play-state: paused;
}

.booking-bar {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    padding: 24px;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    box-shadow: var(--shadow);
    animation: fadeUp 0.9s ease 0.2s forwards;
    opacity: 0;
}

.booking-field {
    display: grid;
    gap: 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pine);
}

.booking-field input,
.booking-field select {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d3c5b2;
    background: var(--white);
    font-family: "Work Sans", "Segoe UI", sans-serif;
}

.section {
    padding: 110px 6vw;
}

.section-heading {
    display: grid;
    gap: 16px;
    max-width: 620px;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.intro-video {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0e1110;
    min-height: 320px;
    aspect-ratio: 16 / 9;
}

.intro-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-fallback-message {
    margin: 0;
    padding: 16px 18px 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(180deg, rgba(14, 17, 16, 0) 0%, rgba(14, 17, 16, 0.92) 100%);
}

.video-fallback-message a {
    color: #f2e7d7;
}

.section-heading.center {
    text-align: center;
    margin: 0 auto;
    justify-items: center;
}

.section h2 {
    font-size: clamp(2.2rem, 3.2vw, 3.6rem);
    color: var(--forest);
}

.section-lead {
    max-width: 720px;
    margin-top: 24px;
    font-size: 1.1rem;
    color: #445047;
}

.projects {
    background: var(--sand);
}

.projects-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.projects-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #262a28;
}

.projects-content {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    align-items: center;
}

.projects-image {
    min-height: 320px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    background-image: url("Chalupka/View%20Photos.png");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.projects-meta {
    display: grid;
    gap: 16px;
}

.projects-meta h3 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    color: #1a1d1b;
}

.projects-meta p {
    color: #3a413b;
}

.projects-tag {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0f1110;
}

.projects-meta .projects-eyebrow {
    justify-self: start;
}

.projects-btn {
    margin-top: 14px;
    width: 100%;
    text-align: center;
}

.wide-btn {
    width: 100%;
    text-align: center;
    display: inline-block;
}

.primary-btn.wide-btn {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: center;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    background: var(--sand);
}

.split-text {
    display: grid;
    gap: 18px;
}

.split-image {
    min-height: 320px;
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
    background-image: url("Chalupka/mapaheader.png");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.wellness-grid {
    margin-top: 36px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.wellness-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid #e1d6c4;
    display: grid;
    gap: 10px;
}

.wellness-card h3 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1.3rem;
}

.social-feed {
    background: var(--sand);
}

.social-header {
    display: grid;
    justify-items: center;
    gap: 18px;
}

.social-carousel {
    position: relative;
    margin-top: 36px;
    display: grid;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.social-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(198, 164, 105, 0.55);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 8px 18px rgba(24, 34, 28, 0.2);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    overflow: hidden;
}

.social-arrow.prev {
    left: -10px;
}

.social-arrow.next {
    right: -10px;
}

.social-arrow::before,
.social-arrow::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.95);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.social-arrow::before {
    clip-path: inset(0 50% 0 0);
    transform: scaleX(0);
    transform-origin: left;
}

.social-arrow::after {
    clip-path: inset(0 0 0 50%);
    transform: scaleX(0);
    transform-origin: right;
}

.social-arrow:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 22px rgba(24, 34, 28, 0.26);
}

.social-arrow.is-disabled,
.social-arrow:disabled {
    opacity: 0.28;
    pointer-events: none;
    box-shadow: 0 6px 12px rgba(24, 34, 28, 0.12);
}

.social-arrow:hover::before,
.social-arrow:hover::after,
.social-arrow:focus-visible::before,
.social-arrow:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

.social-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(260px, 18vw, 320px);
    gap: 20px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: none;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    justify-content: start;
    cursor: grab;
}

.social-strip::-webkit-scrollbar {
    display: none;
}

.social-strip.is-pointer-down,
.social-strip.is-dragging {
    cursor: grabbing;
}

.social-strip.is-dragging {
    scroll-snap-type: none;
    user-select: none;
}

.social-strip.is-dragging .social-card {
    pointer-events: none;
}

.social-card {
    position: relative;
    overflow: hidden;
    height: clamp(320px, 34vw, 460px);
    border-radius: 16px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.85), rgba(242, 234, 224, 0.9));
    border: none;
    box-shadow: none;
    scroll-snap-align: none;
    display: grid;
    place-items: center;
    color: #5a6059;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: var(--cursor-zoom), pointer;
}

.social-card::after {
    content: "zobraziť";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    box-shadow: 0 10px 20px rgba(198, 164, 105, 0.35);
    border: 1px solid rgba(198, 164, 105, 0.55);
    cursor: var(--cursor-zoom), pointer;
}

.social-card:hover::after,
.social-card:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.social-card.social-card-08 {
    background-image: url("Chalupka/ig8.png");
    background-size: cover;
    background-position: center;
}

.social-card.social-card-07 {
    background-image: url("Chalupka/ig7.png");
    background-size: cover;
    background-position: center;
}

.social-card.social-card-06 {
    background-image: url("Chalupka/ig6.png");
    background-size: cover;
    background-position: center;
}

.social-card.social-card-05 {
    background-image: url("Chalupka/ig5.png");
    background-size: cover;
    background-position: center;
}

.social-card.social-card-04 {
    background-image: url("Chalupka/ig4.png");
    background-size: cover;
    background-position: center;
}

.social-card.social-card-03 {
    background-image: url("Chalupka/ig3.png");
    background-size: cover;
    background-position: center;
}

.social-card.social-card-02 {
    background-image: url("Chalupka/ig2.png");
    background-size: cover;
    background-position: center;
}

.social-card.social-card-01 {
    background-image: url("Chalupka/ig1.png");
    background-size: cover;
    background-position: center;
}

.social-progress {
    margin-top: 18px;
    justify-content: center;
    display: flex;
}

.social-progress-track {
    width: min(210px, 26vw);
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(47, 64, 54, 0.22);
    background: rgba(47, 64, 54, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(20, 22, 22, 0.08);
}

.social-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(198, 164, 105, 0.75), rgba(169, 130, 69, 0.78));
    transition: width 0.25s ease;
}

.faq {
    background: linear-gradient(135deg, #c6a469, #a98245);
    color: #1b1c1a;
}

.faq .section-heading h2 {
    color: #1b1c1a;
}

.faq-list {
    margin-top: 36px;
    display: grid;
    gap: 16px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    padding-bottom: 18px;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    padding-right: 32px;
}

.faq-item summary::marker {
    display: none;
}

.faq-item summary::after {
    content: "\25BE";
    position: absolute;
    right: 0;
    top: 6px;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    margin-top: 10px;
    color: rgba(27, 28, 26, 0.8);
}

.faq-item > p {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: height 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
    will-change: height, opacity, transform;
}

.faq-item[open] > p {
    height: auto;
    opacity: 1;
    transform: translateY(0);
}


[data-animate] {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.js [data-animate] {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
}

.js [data-animate].in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.js [data-animate="fade"] {
    transform: scale(0.96);
}

.js [data-animate="left"] {
    transform: translateX(-28px) scale(0.96);
}

.availability {
    padding-top: 140px;
    min-height: 100vh;
    background: var(--sand);
}

.availability-hero {
    padding: 0 6vw 40px;
}

.availability-hero h1 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    color: var(--forest);
    margin-top: 12px;
}

.availability-hero p {
    max-width: 600px;
    color: #435047;
    margin-top: 10px;
}

.availability-calendar {
    padding: 0 6vw 120px;
}

.availability-calendar-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 420px);
    gap: 28px;
    align-items: start;
}

.availability-calendar-main {
    min-width: 0;
}

.calendar-header {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) auto auto;
    align-items: start;
    gap: 14px;
    margin-bottom: 24px;
}

.calendar-nav {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 12px;
    width: min(100%, 620px);
}

.calendar-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(198, 164, 105, 0.55);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.calendar-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(24, 34, 28, 0.15);
}

.calendar-today {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(198, 164, 105, 0.55);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.calendar-arrow::before,
.calendar-arrow::after,
.calendar-today::before,
.calendar-today::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.95);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.calendar-arrow::before,
.calendar-today::before {
    clip-path: inset(0 50% 0 0);
    transform: scaleX(0);
    transform-origin: left;
}

.calendar-arrow::after,
.calendar-today::after {
    clip-path: inset(0 0 0 50%);
    transform: scaleX(0);
    transform-origin: right;
}

.calendar-arrow:hover::before,
.calendar-arrow:hover::after,
.calendar-arrow:focus-visible::before,
.calendar-arrow:focus-visible::after,
.calendar-today:hover::before,
.calendar-today:hover::after,
.calendar-today:focus-visible::before,
.calendar-today:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

.calendar-today:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(24, 34, 28, 0.15);
}

.calendar-today.calendar-today-pulse {
    animation: calendarTodayPulse 0.75s ease;
}

.availability-calendar-main.calendar-current-highlight .calendar-grid {
    animation: calendarCurrentGlow 0.85s ease;
}

#calendar-title {
    text-align: center;
    min-width: 0;
}

.calendar-header h2 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: clamp(1.15rem, 1.7vw, 1.65rem);
    color: var(--forest);
    white-space: nowrap;
    line-height: 1.15;
    text-wrap: nowrap;
    letter-spacing: -0.01em;
}

.calendar-legend {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.legend-item {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #cfc2b3;
}

.legend-item.available {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: rgba(198, 164, 105, 0.55);
}

.legend-item.selected {
    background: linear-gradient(135deg, #23503a, #2f6d4f);
    color: var(--white);
    border-color: rgba(35, 80, 58, 0.88);
}

.legend-item.booked {
    background: rgba(166, 60, 60, 0.2);
    color: #8b2f2f;
    border-color: rgba(166, 60, 60, 0.4);
}

.legend-item.unavailable {
    background: rgba(120, 128, 122, 0.2);
    color: #6b736c;
    border-color: rgba(120, 128, 122, 0.4);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.calendar-month {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(248, 244, 236, 0.92);
    border: 1px solid rgba(216, 203, 185, 0.9);
}

.calendar-month-title {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1.2rem;
    color: var(--forest);
    text-align: center;
}

.calendar-month-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.calendar-selection-status {
    margin-bottom: 18px;
    color: #556259;
    font-size: 0.95rem;
}

.calendar-day {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6a756e;
    text-align: center;
}

.calendar-cell {
    padding: 16px 0;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--forest);
    background: rgba(38, 63, 49, 0.08);
    border: 2px solid transparent;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
    position: relative;
    user-select: none;
}

.calendar-cell[data-date] {
    cursor: pointer;
    touch-action: manipulation;
}

.calendar-cell.available {
    border-color: rgba(198, 164, 105, 0.55);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}

.calendar-cell.available:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(15, 17, 16, 0.2);
}

.calendar-cell.available::before,
.calendar-cell.available::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.calendar-cell.available::before {
    clip-path: inset(0 50% 0 0);
    transform: scaleX(0);
    transform-origin: left;
}

.calendar-cell.available::after {
    clip-path: inset(0 0 0 50%);
    transform: scaleX(0);
    transform-origin: right;
}

.calendar-cell.available:hover::before,
.calendar-cell.available:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.calendar-cell.booked {
    background: rgba(166, 60, 60, 0.16);
    color: #8b2f2f;
    border-color: rgba(166, 60, 60, 0.7);
    position: relative;
}

.calendar-cell.selected-range {
    background: linear-gradient(135deg, rgba(139, 172, 153, 0.72), rgba(127, 161, 142, 0.76));
    border-color: rgba(79, 118, 97, 0.4);
    color: #213228;
    animation: calendarRangeFadeIn 0.28s ease;
}

.calendar-cell.selected-start,
.calendar-cell.selected-end,
.calendar-cell.selected-single {
    background: linear-gradient(135deg, #23503a, #2f6d4f);
    border-color: rgba(35, 80, 58, 0.88);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(20, 44, 33, 0.18);
    animation: calendarSelectedPop 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.calendar-cell.selected-start::before,
.calendar-cell.selected-end::before,
.calendar-cell.selected-single::before,
.calendar-cell.selected-start::after,
.calendar-cell.selected-end::after,
.calendar-cell.selected-single::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    pointer-events: none;
}

.calendar-cell.selected-start::before,
.calendar-cell.selected-end::before,
.calendar-cell.selected-single::before {
    clip-path: inset(0 50% 0 0);
}

.calendar-cell.selected-start::after,
.calendar-cell.selected-end::after,
.calendar-cell.selected-single::after {
    clip-path: inset(0 0 0 50%);
}

.calendar-cell.selected-start:hover,
.calendar-cell.selected-end:hover,
.calendar-cell.selected-single:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 30px rgba(20, 44, 33, 0.24);
}

.calendar-cell.selected-range:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(53, 88, 69, 0.14);
}

.calendar-cell.selection-anchor {
    outline: 2px dashed rgba(35, 80, 58, 0.3);
    outline-offset: 2px;
}

.calendar-cell.muted {
    background: rgba(242, 237, 230, 0.45);
    color: rgba(154, 163, 155, 0.55);
    font-weight: 500;
}

.calendar-cell.unavailable {
    background: rgba(72, 78, 74, 0.35);
    color: #cfd5d1;
    text-decoration: line-through;
}

@keyframes calendarSelectedPop {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 rgba(20, 44, 33, 0);
        filter: brightness(1.08);
    }
    60% {
        transform: scale(1.06);
        box-shadow: 0 18px 34px rgba(20, 44, 33, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 12px 24px rgba(20, 44, 33, 0.18);
        filter: brightness(1);
    }
}

@keyframes calendarRangeFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes calendarTodayPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(198, 164, 105, 0);
    }
    35% {
        transform: scale(1.04);
        box-shadow: 0 0 0 10px rgba(198, 164, 105, 0.18);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(198, 164, 105, 0);
    }
}

@keyframes calendarCurrentGlow {
    0% {
        box-shadow: var(--shadow);
    }
    35% {
        box-shadow: 0 0 0 5px rgba(47, 109, 79, 0.12), 0 22px 42px rgba(18, 22, 20, 0.12);
    }
    100% {
        box-shadow: var(--shadow);
    }
}

.booking-panel {
    position: sticky;
    top: 120px;
}

.booking-panel[hidden] {
    display: none;
}

.booking-panel-inner {
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid #d8cbb9;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 18px 36px rgba(18, 22, 20, 0.12);
    display: grid;
    gap: 22px;
    position: relative;
}

.booking-clear {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(198, 164, 105, 0.45);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(246, 212, 137, 0.24), rgba(230, 187, 99, 0.3));
    color: #2f6d4f;
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1.55rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-clear:hover,
.booking-clear:focus-visible {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 10px 18px rgba(18, 22, 20, 0.12);
    background: linear-gradient(135deg, rgba(246, 212, 137, 0.34), rgba(230, 187, 99, 0.42));
}

.booking-selection {
    display: grid;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(169, 130, 69, 0.22);
}

.booking-selection > div {
    display: grid;
    gap: 4px;
}

.booking-selection-label,
.booking-panel-field span,
.booking-total small {
    color: #7e6f5b;
    font-size: 0.92rem;
}

.booking-selection strong {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1.95rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
    color: #9f8154;
}

.booking-form-row {
    display: grid;
    gap: 14px;
}

.booking-panel-field {
    display: grid;
    gap: 8px;
}

.booking-panel-field select {
    appearance: none;
    width: 100%;
    border: 1px solid #ccb796;
    border-radius: 10px;
    background:
        linear-gradient(45deg, transparent 50%, #2f6d4f 50%),
        linear-gradient(135deg, #2f6d4f 50%, transparent 50%),
        linear-gradient(to right, transparent, transparent);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px),
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
    padding: 14px 44px 14px 14px;
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 0.98rem;
    color: var(--forest);
    accent-color: #c6a469;
}

.booking-panel-field select:focus-visible {
    outline: 2px solid rgba(198, 164, 105, 0.45);
    outline-offset: 2px;
    border-color: #c6a469;
    box-shadow: 0 0 0 4px rgba(198, 164, 105, 0.12);
}

.mobile-booking-hint {
    position: fixed;
    inset: 0;
    z-index: 30;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.mobile-booking-hint.is-visible {
    opacity: 1;
}

.mobile-booking-hint.is-hiding {
    opacity: 0;
}

.mobile-booking-hint[hidden] {
    display: none;
}

.mobile-booking-hint-overlay {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 28px 20px 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(16, 18, 17, 0.18), rgba(16, 18, 17, 0.32));
    color: var(--white);
    cursor: pointer;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.mobile-booking-hint-text {
    margin-top: 18vh;
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: clamp(1.15rem, 4vw, 1.5rem);
    font-weight: 600;
    line-height: 1.08;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 10px 24px rgba(8, 10, 9, 0.28);
}

.mobile-booking-hint-arrow {
    display: grid;
    gap: 4px;
    justify-items: center;
    margin-bottom: 3vh;
}

.mobile-booking-hint-arrow span {
    width: 18px;
    height: 18px;
    border-right: 3px solid rgba(255, 255, 255, 0.96);
    border-bottom: 3px solid rgba(255, 255, 255, 0.96);
    transform: rotate(45deg);
    animation: mobileBookingHintBounce 1.35s ease-in-out infinite;
    filter: drop-shadow(0 8px 18px rgba(8, 10, 9, 0.22));
}

.mobile-booking-hint-arrow span:nth-child(2) {
    animation-delay: 0.14s;
}

.mobile-booking-hint-arrow span:nth-child(3) {
    animation-delay: 0.28s;
}

@keyframes mobileBookingHintBounce {
    0%, 100% {
        opacity: 0.18;
        transform: translateY(-6px) rotate(45deg);
    }
    40% {
        opacity: 1;
        transform: translateY(4px) rotate(45deg);
    }
    60% {
        opacity: 0.7;
        transform: translateY(12px) rotate(45deg);
    }
}

.booking-price-box {
    display: grid;
    gap: 14px;
    padding-top: 4px;
    border-top: 1px solid rgba(169, 130, 69, 0.22);
}

.booking-price-box h3 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #ad9164;
}

.booking-price-list {
    display: grid;
    gap: 10px;
}

.booking-price-summary {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(169, 130, 69, 0.18);
    display: grid;
    gap: 8px;
}

.booking-price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.95rem;
    color: #4b574e;
}

.booking-price-item strong {
    color: var(--forest);
}

.booking-price-item--summary {
    color: #5d655f;
}

.booking-price-item--discount strong {
    color: #2f6d4f;
}

.booking-price-placeholder {
    color: #6b736c;
    font-size: 0.95rem;
}

.booking-total {
    padding-top: 18px;
    border-top: 1px solid rgba(169, 130, 69, 0.22);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.booking-total-prices {
    display: grid;
    justify-items: end;
    gap: 6px;
}

.booking-total-original {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #8d938d;
    text-decoration: line-through;
    opacity: 1;
}

.booking-total-original[hidden] {
    display: none;
}

.booking-total > div:first-child > span {
    display: block;
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.05;
    color: #ad9164;
}

.booking-total strong {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 2.15rem;
    font-weight: 700;
    line-height: 1.05;
    color: #b38743;
    text-align: right;
}

.booking-note {
    color: #6b736c;
    font-size: 0.92rem;
}

.booking-submit {
    min-height: 54px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #f6d489, #e6bb63);
    color: var(--white);
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 12px 22px rgba(230, 187, 99, 0.24);
}

.booking-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(230, 187, 99, 0.32);
}

.booking-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.pricing-section {
    padding: 0 6vw 120px;
    display: grid;
    gap: 26px;
}

.pricing-copy {
    display: grid;
    gap: 10px;
}

.pricing-copy h2 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--forest);
}

.pricing-card {
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid #ccb796;
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 18px 34px rgba(18, 22, 20, 0.08);
}

.pricing-table {
    display: grid;
    gap: 10px;
}

.pricing-row {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 140px 140px;
    gap: 16px;
    align-items: center;
    padding: 18px 22px;
    border-radius: 18px;
    color: #273028;
}

.pricing-row span,
.pricing-row strong {
    font-size: 1rem;
}

.pricing-row strong {
    font-weight: 700;
    color: var(--forest);
}

.pricing-head {
    padding-top: 4px;
    padding-bottom: 10px;
    color: #a7895f;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.pricing-row-accent {
    background: rgba(255, 255, 255, 0.72);
}

.pricing-notes {
    display: grid;
    gap: 10px;
    max-width: 1120px;
}

.pricing-notes p {
    color: #2e352f;
    font-size: 1.05rem;
    line-height: 1.45;
}

.pricing-notes strong {
    color: var(--forest);
}

.reservation-form-section {
    padding: 0 6vw 120px;
    display: grid;
    gap: 26px;
}

.reservation-form-section[hidden] {
    display: none;
}

.reservation-form-card {
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid #d8cbb9;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 36px rgba(18, 22, 20, 0.08);
    display: grid;
    gap: 24px;
}

.reservation-form-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reservation-form-summary span,
.reservation-form-summary strong {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(204, 183, 150, 0.72);
    background: rgba(255, 255, 255, 0.72);
    color: #425046;
    font-size: 0.95rem;
}

.reservation-form-summary strong {
    background: linear-gradient(135deg, rgba(246, 212, 137, 0.2), rgba(230, 187, 99, 0.24));
    color: #8f6c33;
    font-weight: 700;
}

.reservation-form {
    display: grid;
    gap: 22px;
}

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

.reservation-field {
    display: grid;
    gap: 8px;
}

.reservation-field span {
    color: #4b574e;
    font-size: 0.98rem;
}

.reservation-field input,
.reservation-field textarea {
    width: 100%;
    border: 1px solid #ccb796;
    border-radius: 10px;
    background: #fffdfa;
    padding: 14px 16px;
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1rem;
    color: var(--forest);
}

.reservation-field textarea {
    resize: vertical;
    min-height: 160px;
}

.reservation-field input:focus-visible,
.reservation-field textarea:focus-visible {
    outline: 2px solid rgba(47, 109, 79, 0.24);
    outline-offset: 2px;
}

.reservation-field-full {
    grid-column: 1 / -1;
}

.reservation-consents {
    display: grid;
    gap: 14px;
}

.reservation-consent {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    color: #6b736c;
    font-size: 0.96rem;
    line-height: 1.45;
}

.reservation-consent input {
    width: 28px;
    height: 28px;
    margin: 0;
    accent-color: #2f6d4f;
}

.reservation-link {
    color: #2f6d4f;
    font-weight: 600;
}

.reservation-form-error {
    color: #9a3c3c;
    font-size: 0.95rem;
}

.reservation-form-status {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.reservation-form-status[data-state="success"] {
    background: rgba(47, 109, 79, 0.12);
    border: 1px solid rgba(47, 109, 79, 0.24);
    color: #25543d;
}

.reservation-form-status[data-state="error"] {
    background: rgba(154, 60, 60, 0.08);
    border: 1px solid rgba(154, 60, 60, 0.2);
    color: #8d3434;
}

.reservation-submit {
    min-height: 54px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #f6d489, #e6bb63);
    color: var(--white);
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 22px rgba(230, 187, 99, 0.24);
}

.reservation-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(230, 187, 99, 0.32);
}

.reservation-submit:disabled {
    cursor: wait;
    opacity: 0.8;
    transform: none;
    box-shadow: 0 12px 22px rgba(230, 187, 99, 0.18);
}

.reservation-form-note {
    color: #2e352f;
    font-size: 0.98rem;
    line-height: 1.45;
}

.availability-contact {
    padding: 60px 0 0;
    background: #121414;
}

.contact-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: center;
    gap: 24px;
    padding: 28px 6vw 40px;
    background: #121414;
}

.contact-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f7f4ee;
    display: grid;
    place-items: center;
    color: #121414;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.contact-logo {
    display: grid;
    place-items: center;
    justify-self: center;
    height: 96px;
    width: 220px;
    overflow: visible;
}

.contact-logo img {
    width: 220px;
    height: auto;
    max-height: 96px;
    filter: brightness(0) invert(1);
    transform: translateY(0);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
    color: #f7f4ee;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: rgba(247, 244, 238, 0.7);
}

.contact-link {
    color: #f7f4ee;
    font-weight: 600;
}

.footer {
    padding: 0;
    background: #121414;
    color: var(--white);
}

.footer-strip {
    background: #121414;
}

.footer-bottom {
    margin-top: 0;
    padding: 18px 6vw 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.footer-legal-links a {
    color: rgba(244, 239, 230, 0.88);
    transition: color 0.2s ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
    color: var(--gold);
}

.legal-page {
    background: var(--sand);
}

.legal-shell {
    padding: 150px 6vw 120px;
    display: grid;
    gap: 28px;
}

.legal-hero {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.legal-hero h1 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    color: var(--forest);
}

.legal-hero p {
    color: #49564c;
    font-size: 1.05rem;
}

.legal-card {
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid #d8cbb9;
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(18, 22, 20, 0.08);
}

.legal-content {
    padding: 28px;
    display: grid;
    gap: 14px;
}

.legal-content h2 {
    margin-top: 8px;
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #8f6c33;
}

.legal-content p {
    color: #354137;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-content a {
    color: #2f6d4f;
    font-weight: 600;
}

.legal-note {
    margin-top: 8px;
    color: #6b736c;
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 50;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-inner {
    max-width: 920px;
    margin: 0 auto;
    background: rgba(18, 20, 18, 0.96);
    color: rgba(244, 239, 230, 0.92);
    border: 1px solid rgba(198, 164, 105, 0.28);
    border-radius: 22px;
    box-shadow: 0 22px 40px rgba(8, 10, 9, 0.26);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cookie-banner-inner p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-inner a {
    color: var(--gold);
}

.cookie-banner-btn {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 22px rgba(198, 164, 105, 0.24);
}

.cookie-banner-btn:hover,
.cookie-banner-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(198, 164, 105, 0.3);
}

.gallery-page {
    background: radial-gradient(circle at top, #f4efe3 0%, #efe3d4 45%, #e6d9c8 100%);
    min-height: 100vh;
}

.gallery-shell {
    padding: 150px 6vw 120px;
    display: grid;
    gap: 48px;
}

.activities-shell {
    padding: 150px 6vw 120px;
    display: grid;
    gap: 64px;
    background: var(--sand);
}

.activities-hero {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.activities-hero-copy {
    display: grid;
    gap: 16px;
    max-width: 640px;
}

.activities-hero-copy h1 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    color: var(--forest);
}

.activities-hero-card {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 26px 28px;
    border-radius: 24px;
    display: grid;
    gap: 8px;
    box-shadow: 0 18px 34px rgba(198, 164, 105, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
}

.activities-hero-card p {
    text-transform: none;
    letter-spacing: 0.04em;
    font-size: 1rem;
    font-weight: 600;
}

.activities-section {
    display: grid;
    gap: 24px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.activity-card {
    border-radius: 18px;
    padding: 24px;
    min-height: 130px;
    background: var(--white);
    border: 1px solid #e1d6c4;
    box-shadow: 0 12px 26px rgba(18, 22, 20, 0.08);
    display: grid;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2a342f;
}

.activities-grid.winter .activity-card {
    background: #f8f4ee;
    border-color: #e2d5c4;
}

.mapa-page {
    background: radial-gradient(circle at top, #f4efe3 0%, #efe3d4 45%, #e6d9c8 100%);
    min-height: 100vh;
}

.kontakt-page {
    background: radial-gradient(circle at top, #f6f0e6 0%, #efe3d4 48%, #e5d7c6 100%);
}

.mapa-page.mapa-fullscreen-open {
    overflow: hidden;
}

.mapa-shell {
    padding: 150px 6vw 120px;
    display: grid;
    gap: 30px;
}

.kontakt-shell {
    gap: 34px;
}

.mapa-hero {
    display: grid;
    gap: 14px;
    max-width: 760px;
}

.mapa-hero h1 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    color: var(--forest);
}

.mapa-hero p {
    color: #3c463e;
    font-size: 1.04rem;
}

.mapa-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    height: min(74vh, 700px);
}

.kontakt-layout {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    height: min(76vh, 730px);
}

.mapa-panel {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(198, 164, 105, 0.35);
    border-radius: 22px;
    padding: 20px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 12px;
    box-shadow: 0 16px 30px rgba(18, 22, 20, 0.1);
    min-height: 0;
    height: 100%;
}

.kontakt-panel {
    grid-template-rows: auto auto auto 1fr;
    gap: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 244, 235, 0.84)),
        rgba(255, 255, 255, 0.72);
}

.mapa-panel h2 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1.3rem;
    color: var(--forest);
}

.mapa-sub {
    color: #4a564d;
    font-size: 0.92rem;
}

.kontakt-sub {
    max-width: 34ch;
}

.kontakt-card-grid {
    display: grid;
    gap: 10px;
}

.kontakt-card {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(198, 164, 105, 0.28);
    color: #1f2622;
    box-shadow: 0 10px 20px rgba(18, 22, 20, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.kontakt-card:hover,
.kontakt-card:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(198, 164, 105, 0.56);
    box-shadow: 0 14px 24px rgba(18, 22, 20, 0.1);
}

.kontakt-card-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6e786f;
}

.kontakt-card strong {
    font-size: 1rem;
    font-weight: 600;
    color: #24312a;
    word-break: break-word;
}

.kontakt-note {
    align-self: end;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(198, 164, 105, 0.16), rgba(198, 164, 105, 0.08));
    border: 1px solid rgba(198, 164, 105, 0.22);
}

.kontakt-note h3 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: 1rem;
    color: var(--forest);
}

.kontakt-note p {
    font-size: 0.92rem;
    color: #465148;
}

.kontakt-map-wrap {
    min-height: 560px;
}

.mapa-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: center;
}

.mapa-filter {
    border: 1px solid rgba(198, 164, 105, 0.5);
    background: rgba(255, 255, 255, 0.85);
    color: #24312a;
    border-radius: 999px;
    height: 44px;
    padding: 0 14px;
    cursor: pointer;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mapa-filter.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 10px 18px rgba(198, 164, 105, 0.26);
}

.mapa-filter:hover {
    transform: translateY(-1px);
}

.mapa-list {
    overflow: auto;
    display: grid;
    gap: 10px;
    padding-right: 4px;
    align-content: start;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(198, 164, 105, 0.95) rgba(47, 64, 54, 0.14);
}

.mapa-list::-webkit-scrollbar {
    width: 10px;
}

.mapa-list::-webkit-scrollbar-track {
    background: rgba(47, 64, 54, 0.14);
    border-radius: 999px;
}

.mapa-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.mapa-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #cfb176, #b78f53);
}

.mapa-item {
    border: 1px solid rgba(198, 164, 105, 0.3);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    min-height: 84px;
    padding: 12px;
    display: grid;
    align-content: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mapa-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2622;
}

.mapa-item-desc {
    font-size: 0.84rem;
    color: #4e5a51;
}

.mapa-item.active {
    border-color: rgba(198, 164, 105, 0.8);
    box-shadow: 0 10px 18px rgba(198, 164, 105, 0.22);
}

.mapa-item:hover {
    transform: translateY(-1px);
}

.mapa-canvas-wrap {
    position: relative;
    min-height: 0;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(198, 164, 105, 0.35);
    box-shadow: 0 18px 34px rgba(18, 22, 20, 0.14);
}

.mapa-fullscreen-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    border: 1px solid rgba(198, 164, 105, 0.6);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 999px;
    min-height: 40px;
    padding: 0 14px;
    cursor: pointer;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(24, 34, 28, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mapa-fullscreen-label {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    text-align: center;
}

.mapa-fs-filters {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 220px;
}

.mapa-zoom-controls {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 5;
    display: grid;
    gap: 6px;
    background: transparent;
}

.mapa-zoom-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(198, 164, 105, 0.62);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(24, 34, 28, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    padding: 0;
}

.mapa-zoom-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 11px 20px rgba(24, 34, 28, 0.28);
    filter: brightness(1.03);
}

.mapa-zoom-btn:active {
    transform: translateY(0);
}

.mapa-layout:not(.mapa-fullscreen) .mapa-fullscreen-toggle {
    animation: mapCtaPulse 2.2s ease-in-out infinite;
}

.mapa-layout:not(.mapa-fullscreen) .mapa-fullscreen-toggle::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -30%;
    width: 34%;
    height: 180%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.42),
        rgba(255, 255, 255, 0)
    );
    transform: rotate(20deg);
    animation: mapCtaSheen 2.6s ease-in-out infinite;
    pointer-events: none;
}

.mapa-fullscreen-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.95);
    transform: scaleX(0.72);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.mapa-fullscreen-toggle:hover::before,
.mapa-fullscreen-toggle:focus-visible::before {
    transform: scaleX(1);
    opacity: 1;
}

.mapa-fullscreen-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 11px 20px rgba(24, 34, 28, 0.28);
    animation-play-state: paused;
}

.mapa-fullscreen-toggle:hover::after {
    animation-play-state: paused;
}

.mapa-canvas {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d6c8ad, #cfb88e);
}

.mapa-status {
    position: absolute;
    inset: auto 14px 14px 14px;
    border-radius: 12px;
    background: rgba(15, 18, 16, 0.76);
    color: #f4efe6;
    padding: 12px 14px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.mapa-layout.mapa-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 40;
    grid-template-columns: 1fr;
    height: 100vh;
    padding: 0;
    margin: 0;
    gap: 0;
    background: rgba(10, 12, 11, 0.6);
}

.mapa-layout.mapa-fullscreen .mapa-panel {
    display: none;
}

.mapa-layout.mapa-fullscreen .mapa-canvas-wrap {
    height: 100vh;
    min-height: 100vh;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.mapa-layout.mapa-fullscreen .mapa-canvas {
    min-height: 100vh;
}

.mapa-layout.mapa-fullscreen .mapa-fs-filters {
    display: grid;
}

.map-balloon {
    max-width: 220px;
    display: grid;
    gap: 8px;
    font-family: "Work Sans", "Segoe UI", sans-serif;
}

.map-balloon h3 {
    font-size: 0.96rem;
    color: #1f2622;
}

.map-balloon-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.map-balloon p {
    font-size: 0.82rem;
    color: #4b574e;
}

.map-balloon a {
    justify-self: start;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 999px;
    padding: 8px 12px;
}

.gm-style .gm-style-iw-c.map-iw-closing {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    transition: opacity 0.17s ease, transform 0.17s ease;
}

#map-canvas .gm-bundled-control .gm-bundled-control-on-bottom,
#map-canvas .gm-bundled-control .gm-control-active {
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(24, 34, 28, 0.24) !important;
}

#map-canvas .gm-bundled-control,
#map-canvas .gm-bundled-control > div,
#map-canvas .gm-bundled-control .gmnoprint {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#map-canvas .gm-style .gm-bundled-control,
#map-canvas .gm-style .gm-bundled-control > div,
#map-canvas .gm-style .gm-bundled-control .gm-bundled-control-on-bottom {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

#map-canvas .gm-bundled-control .gm-control-active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    border: 1px solid rgba(198, 164, 105, 0.62) !important;
    margin: 0 !important;
}

#map-canvas .gm-bundled-control .gm-control-active + .gm-control-active {
    border-top: 1px solid rgba(255, 255, 255, 0.26) !important;
}

#map-canvas .gm-bundled-control .gm-control-active span {
    filter: brightness(0) invert(1) !important;
}

#map-canvas .gm-bundled-control .gm-control-active:hover {
    background: linear-gradient(135deg, #cfb176, #b88f51) !important;
}

.map-pin {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.96);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 12px 22px rgba(18, 22, 20, 0.28);
    overflow: visible;
    cursor: pointer;
    position: absolute;
    transform: translate(-50%, -50%);
}

.map-pin::after {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid rgba(198, 164, 105, 0.92);
    box-shadow: 0 0 0 2px rgba(198, 164, 105, 0.26);
    opacity: 0;
    transform: scale(0.86);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

.map-pin:hover::after,
.map-pin:focus-visible::after {
    opacity: 1;
    transform: scale(1);
    animation: mapPinPulse 1.15s ease-out infinite;
}

.map-pin:hover,
.map-pin:focus-visible {
    box-shadow: 0 0 0 3px rgba(198, 164, 105, 0.55), 0 12px 22px rgba(18, 22, 20, 0.3);
}

.map-pin.always {
    width: 76px;
    height: 76px;
    border-width: 4px;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(198, 164, 105, 0.42), 0 16px 28px rgba(18, 22, 20, 0.34);
    z-index: 3;
    animation: mainPinBreath 2.2s ease-in-out infinite;
}

.map-pin.always::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(198, 164, 105, 0.78);
    opacity: 0;
    transform: scale(0.82);
    pointer-events: none;
    animation: mainPinRipple 2.2s ease-out infinite;
}

.map-pin-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.leaflet-map-pin-wrap {
    background: transparent;
    border: 0;
}

.leaflet-map-pin-wrap .map-pin {
    position: relative;
    transform: none;
}

.leaflet-container {
    font-family: "Work Sans", "Segoe UI", sans-serif;
}

.leaflet-control-attribution {
    background: rgba(255, 253, 249, 0.86) !important;
    border-radius: 10px 0 0 0;
}

.leaflet-popup-content-wrapper {
    border-radius: 18px;
    box-shadow: 0 16px 28px rgba(18, 22, 20, 0.2);
}

.leaflet-popup-content {
    margin: 14px;
}

.leaflet-popup-tip {
    box-shadow: none;
}

@keyframes mapPinPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 164, 105, 0.34);
    }
    100% {
        box-shadow: 0 0 0 9px rgba(198, 164, 105, 0);
    }
}

@keyframes mainPinBreath {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 4px rgba(198, 164, 105, 0.42), 0 16px 28px rgba(18, 22, 20, 0.34);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.035);
        box-shadow: 0 0 0 6px rgba(198, 164, 105, 0.36), 0 20px 32px rgba(18, 22, 20, 0.36);
    }
}

@keyframes mainPinRipple {
    0% {
        opacity: 0.72;
        transform: scale(0.82);
    }
    70% {
        opacity: 0;
        transform: scale(1.24);
    }
    100% {
        opacity: 0;
        transform: scale(1.24);
    }
}

@keyframes mapCtaPulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 8px 16px rgba(24, 34, 28, 0.22);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(24, 34, 28, 0.3);
    }
}

@keyframes mapCtaSheen {
    0% {
        left: -38%;
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    45% {
        left: 112%;
        opacity: 0;
    }
    100% {
        left: 112%;
        opacity: 0;
    }
}

@keyframes mapCtaSheenBg {
    0%,
    100% {
        background-position: -170% 0, 0 0;
    }
    18% {
        background-position: -170% 0, 0 0;
    }
    46% {
        background-position: 165% 0, 0 0;
    }
    100% {
        background-position: 165% 0, 0 0;
    }
}

.gallery-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.gallery-hero-copy {
    max-width: 640px;
    display: grid;
    gap: 16px;
}

.gallery-hero-copy h1 {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 4.4rem);
    color: var(--forest);
}

.gallery-hero-copy h1 span {
    white-space: nowrap;
    display: inline-block;
}

.gallery-hero-copy p {
    color: #3c463e;
    font-size: 1.05rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    grid-auto-flow: row;
}

.gallery-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: none;
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    background: #0f1110;
    box-shadow: 0 14px 28px rgba(18, 22, 20, 0.16);
    contain: layout paint;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(5),
.gallery-card:nth-child(7),
.gallery-card:nth-child(8) {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    will-change: transform;
    transition: transform 0.4s ease;
}

.gallery-card-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(10, 12, 11, 0.6);
    color: #f4efe6;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: none;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(18, 22, 20, 0.25);
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 11, 0.85);
}

.lightbox-panel {
    position: relative;
    width: auto;
    max-width: 90vw;
    max-height: 86vh;
    display: grid;
    place-items: center;
    gap: 16px;
    z-index: 1;
}

.lightbox-image {
    width: auto;
    max-width: 90vw;
    height: 76vh;
    object-fit: contain;
    border-radius: 18px;
    background: transparent;
    box-shadow: 0 30px 60px rgba(8, 10, 9, 0.35);
}

.lightbox-close {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(198, 164, 105, 0.55);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(24, 34, 28, 0.2);
    overflow: hidden;
    z-index: 30;
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(198, 164, 105, 0.55);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(24, 34, 28, 0.2);
    overflow: hidden;
    z-index: 30;
}

.lightbox-close::before,
.lightbox-close::after,
.lightbox-arrow::before,
.lightbox-arrow::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.95);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.lightbox-close::before,
.lightbox-arrow::before {
    clip-path: inset(0 50% 0 0);
    transform: scaleX(0);
    transform-origin: left;
}

.lightbox-close::after,
.lightbox-arrow::after {
    clip-path: inset(0 0 0 50%);
    transform: scaleX(0);
    transform-origin: right;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
    transform: scale(1.05);
    box-shadow: 0 12px 22px rgba(24, 34, 28, 0.26);
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 22px rgba(24, 34, 28, 0.26);
}

.lightbox-arrow.is-disabled,
.lightbox-arrow:disabled {
    opacity: 0.28;
    pointer-events: none;
    box-shadow: 0 6px 12px rgba(24, 34, 28, 0.12);
}

.lightbox-close:hover::before,
.lightbox-close:hover::after,
.lightbox-close:focus-visible::before,
.lightbox-close:focus-visible::after,
.lightbox-arrow:hover::before,
.lightbox-arrow:hover::after,
.lightbox-arrow:focus-visible::before,
.lightbox-arrow:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

.lightbox-arrow.prev {
    left: 22px;
}

.lightbox-arrow.next {
    right: 22px;
}

.lightbox-meta {
    display: flex;
    justify-content: center;
    width: min(90vw, 900px);
    color: #f4efe6;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    gap: 18px;
}

.lightbox-caption {
    display: none;
}

.lightbox--info .lightbox-panel {
    justify-items: center;
    width: min(92vw, 980px);
    max-width: min(92vw, 980px);
    gap: 14px;
}

.lightbox--info .lightbox-image {
    width: 100%;
    max-width: min(92vw, 980px);
    height: min(62vh, 620px);
    border-radius: 22px;
    object-fit: cover;
}

.lightbox--info {
    align-items: start;
    padding-top: 28px;
}

.lightbox-info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
}

.lightbox--info .lightbox-meta {
    display: grid;
    gap: 6px;
    width: 100%;
    text-transform: none;
    letter-spacing: normal;
    justify-items: start;
    background: rgba(18, 20, 18, 0.82);
    border: 1px solid rgba(198, 164, 105, 0.18);
    border-radius: 18px;
    padding: 20px 22px 22px;
    box-shadow: 0 20px 40px rgba(8, 10, 9, 0.24);
    justify-self: stretch;
    text-align: center;
    justify-items: center;
}

.lightbox--info .lightbox-count {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: normal;
    color: #f4efe6;
}

.lightbox-lead {
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    color: #f4efe6;
    text-align: center;
}

.lightbox--info .lightbox-caption {
    display: block;
    font-size: 1.04rem;
    line-height: 1.7;
    color: #f4efe6;
    max-width: 58ch;
    font-weight: 500;
    text-align: center;
    justify-self: center;
}

.lightbox-route-wrap {
    width: 100%;
    justify-self: stretch;
    align-self: start;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lightbox-route-btn {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    white-space: nowrap;
}

.lightbox-route-btn[hidden] {
    display: none !important;
}

.lightbox-route-btn-secondary {
    min-height: 48px;
}

@media (max-width: 960px) {
    .lightbox--info {
        padding-top: 20px;
    }

    .lightbox--info .lightbox-image {
        height: min(56vh, 520px);
    }

    .lightbox-info-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lightbox-route-wrap {
        justify-self: stretch;
    }
}

.lightbox-open .topbar,
.lightbox-open main {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.lightbox-open {
    overflow: hidden;
}

@keyframes fadeLoop {
    0% {
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    32% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomLoop {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 960px) {
    .availability-calendar-shell {
        grid-template-columns: 1fr;
    }

    .calendar-header {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 16px;
    }

    .calendar-nav {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 12px;
        width: 100%;
    }

    #calendar-title,
    .calendar-header h2 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
        line-height: 1.15;
        white-space: normal;
        text-wrap: balance;
        overflow-wrap: anywhere;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .calendar-month {
        padding: 16px;
        gap: 12px;
    }

    .booking-panel {
        position: static;
    }

    .pricing-row {
        grid-template-columns: minmax(0, 1fr) 120px 120px;
        padding: 16px 18px;
    }

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

    .nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .topbar {
        padding: 20px 6vw;
    }

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

    .gallery-shell {
        padding-top: 140px;
    }

    .activities-shell {
        padding-top: 140px;
    }

    .activities-hero {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .mapa-shell {
        padding-top: 140px;
    }

    .kontakt-shell {
        padding-top: 140px;
    }

    .mapa-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .kontakt-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .mapa-panel {
        min-height: auto;
        height: auto;
        grid-template-rows: auto;
        overflow: visible;
    }

    .mapa-list {
        overflow: visible;
        overscroll-behavior: auto;
        padding-right: 0;
    }

    .kontakt-panel {
        min-height: auto;
        height: auto;
    }

    .mapa-canvas-wrap,
    .mapa-canvas {
        min-height: 460px;
        height: auto;
        touch-action: pan-y;
    }

    .kontakt-map-wrap,
    .kontakt-map-wrap .mapa-canvas {
        min-height: 460px;
    }

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

    .gallery-card {
        aspect-ratio: 4 / 3;
        grid-column: span 1;
    }

    .lightbox-arrow.prev {
        left: 10px;
    }

    .lightbox-arrow.next {
        right: 10px;
    }

    .lightbox-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    .topbar {
        padding: 14px 5vw;
        gap: 12px;
    }

    .topbar .brand {
        height: 74px;
        width: min(190px, calc(100vw - 112px));
        max-width: calc(100vw - 112px);
        overflow: visible;
    }

    .topbar .brand-logo {
        width: min(190px, calc(100vw - 112px));
        height: auto;
        max-height: 74px;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
    }

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .cookie-banner-inner {
        padding: 16px;
        border-radius: 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .legal-shell {
        padding-top: 140px;
    }

    .legal-card {
        border-radius: 22px;
    }

    .legal-content {
        padding: 20px 18px;
    }

    .calendar-grid {
        gap: 10px;
        padding: 16px;
    }

    .calendar-month {
        padding: 14px;
        gap: 10px;
    }

    .calendar-month-title {
        font-size: 1.05rem;
    }

    .calendar-month-grid {
        gap: 8px;
    }

    .calendar-nav {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 10px;
    }

    #calendar-title,
    .calendar-header h2 {
        font-size: 1.25rem;
        white-space: normal;
        text-wrap: balance;
        overflow-wrap: anywhere;
    }

    .contact-strip {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding-inline: 6vw;
    }

    .contact-details {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .contact-logo {
        justify-self: center;
        width: min(190px, 76vw);
        height: auto;
    }

    .contact-logo img {
        width: min(190px, 76vw);
        height: auto;
        max-height: none;
    }

    .contact-social {
        justify-self: center;
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .calendar-selection-status {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .calendar-cell {
        padding: 12px 0;
    }

    .booking-panel-inner {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .mobile-booking-hint-overlay {
        padding: 24px 18px 36px;
    }

    .mobile-booking-hint-text {
        margin-top: 16vh;
        font-size: 1.05rem;
    }

    .booking-selection strong,
    .booking-total > div:first-child > span,
    .booking-total strong {
        font-size: 1.75rem;
    }

    .booking-total-original {
        font-size: 0.92rem;
    }

    .pricing-card {
        padding: 16px;
        border-radius: 22px;
    }

    .reservation-form-card {
        padding: 18px;
        border-radius: 22px;
    }

    .reservation-consent {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 12px;
    }

    .reservation-consent input {
        width: 24px;
        height: 24px;
    }

    .pricing-row,
    .pricing-head {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .pricing-head {
        display: none;
    }

    .pricing-row span:nth-child(2)::before {
        content: "Počet osôb: ";
        color: #a7895f;
        font-weight: 600;
    }

    .pricing-row strong::before {
        content: "Cena / noc: ";
        color: #a7895f;
        font-weight: 600;
    }

    .hero {
        min-height: 100svh;
        padding: 128px 6vw 54px;
        align-items: end;
        justify-items: center;
        text-align: center;
    }

    .hero-slider::after {
        background: linear-gradient(180deg, rgba(9, 12, 11, 0.5) 0%, rgba(9, 12, 11, 0.28) 28%, rgba(9, 12, 11, 0.72) 72%, rgba(9, 12, 11, 0.86) 100%);
    }

    .hero-content {
        width: min(100%, 420px);
        max-width: none;
        gap: 16px;
        justify-items: center;
    }

    .eyebrow {
        font-size: 0.76rem;
        letter-spacing: 0.22em;
        text-align: center;
    }

    .hero-line {
        white-space: normal;
        display: inline;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 11vw, 4rem);
        line-height: 1.04;
        letter-spacing: 0.01em;
        text-wrap: balance;
    }

    .hero p {
        max-width: 32ch;
        font-size: 1rem;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.84);
        margin-inline: auto;
    }

    .hero-cta {
        width: 100%;
        max-width: 320px;
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .primary-btn,
    .hero-cta .ghost-btn {
        width: 100%;
        min-height: 54px;
        padding: 14px 18px;
        letter-spacing: 0.16em;
    }

    .hero-cta .ghost-btn {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .section {
        padding: 72px 6vw;
        text-align: center;
    }

    .section-heading {
        gap: 12px;
        max-width: 100%;
        margin-inline: auto;
        justify-items: center;
    }

    .section h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.08;
        text-wrap: balance;
    }

    .section-lead,
    .projects-meta p,
    .split-text p,
    .faq-item p {
        font-size: 1rem;
        line-height: 1.65;
        max-width: 36rem;
        margin-inline: auto;
    }

    .intro-grid,
    .projects-content,
    .split {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        justify-items: center;
    }

    .intro-copy,
    .projects-meta,
    .split-text {
        width: min(100%, 520px);
        gap: 14px;
        justify-items: center;
        text-align: center;
    }

    .intro-video {
        width: min(100%, 520px);
        min-height: 220px;
        aspect-ratio: 16 / 9;
        border-radius: 22px;
    }

    .projects-content {
        margin-top: 28px;
    }

    .projects-image,
    .split-image {
        width: min(100%, 520px);
        min-height: 240px;
        border-radius: 22px;
        aspect-ratio: 4 / 3;
    }

    .projects-meta h3 {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
        line-height: 1.1;
        text-wrap: balance;
    }

    .projects-meta .projects-eyebrow {
        justify-self: center;
    }

    .wide-btn {
        width: min(100%, 320px);
        min-height: 54px;
        justify-self: center;
    }

    .social-carousel {
        width: 100%;
        margin-top: 28px;
        justify-items: center;
    }

    .social-strip {
        width: 100%;
        grid-auto-columns: min(82vw, 320px);
        gap: 16px;
        justify-content: start;
        scroll-snap-type: none;
        padding-inline: max(0px, calc((100vw - min(82vw, 320px)) / 2 - 6vw));
    }

    .social-header .section-heading {
        max-width: 100%;
    }

    .gallery-hero {
        width: min(100%, 560px);
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .gallery-hero-copy {
        max-width: 100%;
        justify-items: center;
    }

    .gallery-hero-copy h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.1;
        text-wrap: balance;
    }

    .gallery-hero-copy h1 span {
        white-space: normal;
        display: inline;
    }

    .gallery-hero-copy p {
        max-width: 34rem;
        margin-inline: auto;
        font-size: 1rem;
        line-height: 1.65;
    }

    .mapa-shell {
        padding-bottom: 160px;
    }

    .activities-shell {
        padding: 128px 6vw 96px;
        gap: 44px;
    }

    .activities-hero-copy,
    .activities-section .section-heading {
        justify-items: center;
        text-align: center;
        margin-inline: auto;
    }

    .activities-hero-card {
        width: min(100%, 520px);
        text-align: center;
    }

    .activities-grid {
        grid-template-columns: minmax(0, 1fr);
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .kontakt-shell {
        padding-bottom: 160px;
    }

    .mapa-canvas-wrap,
    .mapa-canvas {
        min-height: 340px;
    }

    .kontakt-map-wrap,
    .kontakt-map-wrap .mapa-canvas {
        min-height: 520px;
    }

    .gallery-shell {
        padding: 128px 5vw 110px;
        gap: 30px;
        justify-items: center;
    }

    .gallery-grid {
        width: min(100%, 560px);
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: center;
    }

    .gallery-card {
        width: 100%;
        aspect-ratio: auto;
        grid-column: span 1;
        border-radius: 18px;
        background: rgba(15, 17, 16, 0.08);
        box-shadow: 0 14px 28px rgba(18, 22, 20, 0.12);
    }

    .gallery-card:nth-child(2),
    .gallery-card:nth-child(5),
    .gallery-card:nth-child(7),
    .gallery-card:nth-child(8) {
        grid-column: span 1;
        aspect-ratio: auto;
    }

    .gallery-card img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        transform: none;
    }

    .gallery-card:hover,
    .gallery-card:hover img {
        transform: none;
    }

    .lightbox-panel {
        width: auto;
        max-width: 92vw;
    }

    .lightbox-close {
        right: 14px;
        top: 14px;
    }

    .lightbox-image {
        height: 72vh;
        object-fit: contain;
        background: transparent;
    }

    .lightbox-meta {
        width: 100%;
        font-size: 0.65rem;
    }

    .social-card {
        height: min(112vw, 420px);
        min-height: 360px;
        border-radius: 18px;
        scroll-snap-align: none;
    }

    .social-card::after {
        opacity: 1;
        transform: translateY(0);
    }

    .social-progress-track {
        width: min(150px, 36vw);
    }

    .faq-list {
        width: min(100%, 680px);
        margin-top: 28px;
        gap: 14px;
        margin-inline: auto;
        text-align: left;
    }

    .faq-item summary {
        padding-top: 6px;
        padding-bottom: 6px;
        line-height: 1.45;
    }

    .js [data-animate] {
        opacity: 1;
        transform: none;
    }
}
