:root {
    --zs-main: #92C5C0;
    --zs-main-dark: #6FAAA6;
    --zs-main-light: #DDEDEA;

    --zs-secondary: #F0D20B;
    --zs-secondary-soft: #F7E989;

    --zs-accent: #497C7F;

    --zs-dark: #263B39;
    --zs-text: #3B4B49;
    --zs-muted: #6B7B78;

    --zs-grey: #F2F4F3;
    --zs-grey-2: #E7EBEA;
    --zs-white: #FFFFFF;
    --zs-cream: #FAFAF6;

    --zs-shadow: 0 18px 40px rgba(38, 59, 57, 0.12);
    --zs-shadow-soft: 0 8px 22px rgba(38, 59, 57, 0.10);

    --zs-radius-lg: 28px;
    --zs-radius-md: 18px;
    --zs-header-height: 92px;
}

/* ------------------------------------------------------------
   Base
------------------------------------------------------------ */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--zs-text);
    background: var(--zs-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.zs-main {
    overflow: hidden;
}

.zs-container-wide {
    max-width: 1440px;
    padding-left: clamp(20px, 4vw, 72px);
    padding-right: clamp(20px, 4vw, 72px);
}

/* ------------------------------------------------------------
   Sections & Typography
------------------------------------------------------------ */

.zs-section {
    position: relative;
    padding: clamp(72px, 9vw, 132px) 0;
    scroll-margin-top: 110px;
}

.zs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    color: var(--zs-accent);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.zs-eyebrow::before {
    content: "";
    width: 32px;
    height: 3px;
    background: var(--zs-secondary);
    border-radius: 999px;
}

h1,
h2,
h3 {
    color: var(--zs-dark);
    font-weight: 800;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.65rem, 6vw, 6.4rem);
    line-height: 0.98;
}

h2 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.05;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.zs-section-text,
.zs-hero-text {
    color: var(--zs-muted);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.75;
}

/* ------------------------------------------------------------
   Buttons
------------------------------------------------------------ */

.zs-btn-primary,
.zs-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.zs-btn-primary {
    color: var(--zs-white);
    background: var(--zs-accent);
    box-shadow: 0 6px 16px rgba(73, 124, 127, 0.18);
}

.zs-btn-primary:hover,
.zs-btn-primary:focus {
    color: var(--zs-white);
    background: var(--zs-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(38, 59, 57, 0.18);
}

.zs-btn-secondary {
    color: var(--zs-dark);
    background: var(--zs-secondary);
    box-shadow: none;
}

.zs-btn-secondary:hover,
.zs-btn-secondary:focus {
    color: var(--zs-dark);
    background: var(--zs-secondary-soft);
    transform: translateY(-1px);
}

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

.zs-navbar {
    min-height: var(--zs-header-height);
    padding: 14px clamp(14px, 3vw, 38px);
    background: rgba(250, 250, 246, 0.94);
    border-bottom: 1px solid rgba(38, 59, 57, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        min-height 0.32s ease,
        padding 0.32s ease,
        background 0.32s ease,
        box-shadow 0.32s ease;
}

.zs-navbar.is-scrolled {
    min-height: 74px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: rgba(250, 250, 246, 0.98);
    box-shadow: 0 8px 24px rgba(38, 59, 57, 0.08);
}

.zs-navbar-container {
    max-width: 1540px;
}

.zs-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.zs-brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    isolation: isolate;
}

.zs-brand-mark::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    width: 92px;
    height: 48px;
    background: var(--zs-main-light);
    border-radius: 22px;
    opacity: 0.65;
    transform: translate(-50%, -50%) rotate(-4deg);
    transition:
        transform 0.28s ease,
        opacity 0.28s ease;
}

.zs-brand:hover .zs-brand-mark::before {
    opacity: 0.78;
    transform: translate(-50%, -50%) rotate(3deg);
}

.zs-brand img {
    display: block;
    width: auto;
    height: 60px;
    transition: height 0.32s ease;
}

.zs-navbar.is-scrolled .zs-brand img {
    height: 48px;
}

.zs-navbar-collapse {
    flex-grow: 0;
}

.zs-nav-list {
    gap: 6px;
}

.zs-nav-link {
    position: relative;
    margin: 0 1px;
    padding: 12px 17px !important;
    color: var(--zs-text);
    font-size: 0.96rem;
    font-weight: 800;
    border-radius: 14px;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.zs-nav-link:hover,
.zs-nav-link:focus,
.zs-nav-link.active {
    color: var(--zs-dark);
    background: var(--zs-main-light);
    transform: translateY(-1px);
}

.zs-nav-link.active::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 7px;
    height: 3px;
    background: var(--zs-secondary);
    border-radius: 999px;
}

/* ------------------------------------------------------------
   Burger
------------------------------------------------------------ */

.zs-navbar-toggler {
    position: relative;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: var(--zs-accent);
    box-shadow: none;
}

.zs-navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(73, 124, 127, 0.22);
}

.zs-burger-line {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 2px;
    background: var(--zs-white);
    border-radius: 999px;
    transition:
        top 0.28s ease,
        transform 0.28s ease,
        opacity 0.28s ease;
}

.zs-burger-line:nth-child(1) {
    top: 17px;
}

.zs-burger-line:nth-child(2) {
    top: 24px;
}

.zs-burger-line:nth-child(3) {
    top: 31px;
}

.zs-navbar-toggler[aria-expanded="true"] .zs-burger-line:nth-child(1) {
    top: 24px;
    transform: rotate(45deg);
}

.zs-navbar-toggler[aria-expanded="true"] .zs-burger-line:nth-child(2) {
    opacity: 0;
}

.zs-navbar-toggler[aria-expanded="true"] .zs-burger-line:nth-child(3) {
    top: 24px;
    transform: rotate(-45deg);
}

/* ------------------------------------------------------------
   Hero / Start
------------------------------------------------------------ */

.zs-hero {
    min-height: 100vh;
    padding: 0;
    background: var(--zs-cream);
}

.zs-hero .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.zs-hero::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 160px;
    width: 240px;
    height: 240px;
    background: var(--zs-main);
    border-radius: 32px;
    opacity: 0.38;
    transform: rotate(-8deg);
}

.zs-hero::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 8%;
    width: 150px;
    height: 150px;
    background: var(--zs-secondary);
    border-radius: 28px;
    opacity: 0.7;
    transform: rotate(10deg);
}

.zs-hero-content {
    position: relative;
    z-index: 1;
    padding: calc(var(--zs-header-height) + 64px) clamp(22px, 6vw, 96px) 80px;
}

.zs-hero-text {
    max-width: 640px;
    margin: 28px 0 0;
}

.zs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.zs-hero-visual {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--zs-header-height) + 36px) clamp(22px, 5vw, 82px) 72px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zs-hero-image-wrap {
    position: relative;
    width: min(100%, 760px);
    aspect-ratio: 1.08;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 3vw, 34px);
    background: var(--zs-accent);
    border-radius: 38px;
    box-shadow: var(--zs-shadow);
    overflow: visible;
    transform: rotate(1.5deg);
}

.zs-hero-image-wrap::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 44px;
    z-index: -1;
    width: 120px;
    height: 120px;
    background: var(--zs-secondary);
    border-radius: 24px;
    transform: rotate(-13deg);
}

.zs-hero-image-wrap::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: 58px;
    z-index: -1;
    width: 150px;
    height: 110px;
    background: var(--zs-main);
    border-radius: 24px;
    opacity: 0.95;
    transform: rotate(9deg);
}

.zs-hero-photo-card {
    position: relative;
    z-index: 1;
    width: 92%;
    height: 80%;
    margin: 0;
    padding: clamp(7px, 1vw, 10px);
    background: var(--zs-white);
    border-radius: 30px;
    box-shadow: 0 14px 30px rgba(38, 59, 57, 0.16);
    overflow: hidden;
    transform: rotate(-3deg);
}

.zs-hero-photo-card::before {
    content: "";
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
    width: 54px;
    height: 54px;
    background: var(--zs-secondary);
    border-radius: 16px;
    opacity: 0.92;
    transform: rotate(12deg);
}

.zs-hero-photo-card::after {
    content: "";
    position: absolute;
    right: 34px;
    top: 31px;
    z-index: 3;
    color: var(--zs-dark);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.zs-hero-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    border-radius: 22px;
}

.zs-floating-card {
    position: absolute;
    left: clamp(16px, 7vw, 90px);
    bottom: clamp(46px, 9vw, 110px);
    max-width: 300px;
    padding: 18px 20px;
    background: var(--zs-white);
    border-left: 8px solid var(--zs-secondary);
    border-radius: 20px;
    box-shadow: var(--zs-shadow-soft);
}

.zs-floating-card strong,
.zs-floating-card span {
    display: block;
}

.zs-floating-card strong {
    color: var(--zs-dark);
    font-size: 1rem;
}

.zs-floating-card span {
    margin-top: 4px;
    color: var(--zs-muted);
    font-size: 0.92rem;
}

/* ------------------------------------------------------------
   Impressionen / Galerie
------------------------------------------------------------ */

.zs-gallery-section {
    background: var(--zs-white);
}

.zs-gallery-section::before {
    content: "";
    position: absolute;
    right: -60px;
    top: 90px;
    width: 220px;
    height: 220px;
    background: var(--zs-main-light);
    border-radius: 36px;
    opacity: 1;
    transform: rotate(12deg);
}

.zs-gallery-section::after {
    content: "";
    position: absolute;
    left: -48px;
    bottom: 90px;
    width: 140px;
    height: 140px;
    background: var(--zs-secondary);
    border-radius: 28px;
    opacity: 0.65;
    transform: rotate(-10deg);
}

.zs-collage-gallery {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    gap: clamp(14px, 2vw, 26px);
    margin-top: clamp(38px, 6vw, 76px);
}

.zs-collage-item {
    position: relative;
    display: block;
    min-height: 220px;
    padding: 10px;
    color: inherit;
    background: var(--zs-white);
    border-radius: 24px;
    box-shadow: var(--zs-shadow-soft);
    overflow: visible;
    text-decoration: none;
    transform: rotate(0deg);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

.zs-collage-item:nth-child(1) {
    transform: rotate(-1.2deg);
}

.zs-collage-item:nth-child(2) {
    transform: rotate(0.8deg);
}

.zs-collage-item:nth-child(4) {
    transform: rotate(1.1deg);
}

.zs-collage-item:nth-child(5) {
    transform: rotate(-0.8deg);
}

.zs-collage-item:nth-child(8) {
    transform: rotate(1.3deg);
}

.zs-collage-item:hover,
.zs-collage-item:focus {
    text-decoration: none;
    transform: translateY(-5px) rotate(0deg);
    box-shadow: var(--zs-shadow);
}

.zs-collage-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 24px;
    z-index: -1;
    width: 42px;
    height: 42px;
    background: var(--zs-main);
    border-radius: 12px;
    opacity: 0;
    transform: rotate(-10deg);
    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
}

.zs-collage-item::after {
    content: "";
    position: absolute;
    right: -9px;
    bottom: 28px;
    z-index: -1;
    width: 54px;
    height: 32px;
    background: var(--zs-secondary);
    border-radius: 11px;
    opacity: 0;
    transform: rotate(8deg);
    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
}

.zs-collage-item:hover::before,
.zs-collage-item:focus::before,
.zs-collage-item:hover::after,
.zs-collage-item:focus::after {
    opacity: 1;
}

.zs-collage-item:hover::before,
.zs-collage-item:focus::before {
    transform: rotate(-16deg) translate(-2px, -2px);
}

.zs-collage-item:hover::after,
.zs-collage-item:focus::after {
    transform: rotate(13deg) translate(2px, 2px);
}

.zs-collage-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    border-radius: 17px;
    filter: saturate(0.96) contrast(0.98);
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.zs-collage-item:hover img,
.zs-collage-item:focus img {
    filter: saturate(1.04) contrast(1);
    transform: scale(1.025);
}

.zs-collage-normal {
    grid-column: span 4;
    min-height: 300px;
}

.zs-collage-square {
    grid-column: span 4;
    min-height: 360px;
}

.zs-collage-tall {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 520px;
}

.zs-collage-wide {
    grid-column: span 5;
    min-height: 300px;
}

.zs-blob-yellow,
.zs-blob-mint,
.zs-blob-petrol {
    isolation: isolate;
}

.zs-blob-yellow::before,
.zs-blob-mint::before,
.zs-blob-petrol::before {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.92;
}

.zs-blob-yellow::before {
    right: 18px;
    top: 18px;
    width: 58px;
    height: 42px;
    background: var(--zs-secondary);
    border-radius: 18px 22px 16px 24px;
    transform: rotate(10deg);
}

.zs-blob-mint::before {
    left: 18px;
    bottom: 18px;
    width: 72px;
    height: 46px;
    background: var(--zs-main);
    border-radius: 26px 18px 24px 16px;
    transform: rotate(-8deg);
}

.zs-blob-petrol::before {
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    background: var(--zs-accent);
    border-radius: 18px 26px 20px 24px;
    transform: rotate(14deg);
    opacity: 0.86;
}

.zs-blob-yellow::after,
.zs-blob-mint::after,
.zs-blob-petrol::after {
    opacity: 1;
}

/* ------------------------------------------------------------
   Buchen
------------------------------------------------------------ */

.zs-booking-section {
    background: var(--zs-main-light);
}

.zs-booking-card {
    padding: clamp(24px, 4vw, 46px);
    background: var(--zs-white);
    border-radius: var(--zs-radius-lg);
    box-shadow: var(--zs-shadow);
}

.zs-occasion-list-check {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin-top: 30px;
}

.zs-occasion-list-check span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: none;
    border: 0;
    color: var(--zs-dark);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
}

.zs-occasion-list-check i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px;
    color: var(--zs-dark);
    background: rgba(240, 210, 11, 0.45);
    border-radius: 10px 14px 11px 13px;
    font-size: 0.95rem;
    transform: rotate(-8deg);
}

.zs-booking-info-card {
    position: relative;
    overflow: hidden;
}

.zs-booking-info-card::before {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 150px;
    height: 150px;
    background: var(--zs-secondary);
    border-radius: 28px;
    opacity: 0.55;
    transform: rotate(12deg);
}

.zs-booking-info-card::after {
    content: "";
    position: absolute;
    left: -34px;
    bottom: -34px;
    width: 120px;
    height: 120px;
    background: var(--zs-accent);
    border-radius: 26px;
    opacity: 0.16;
    transform: rotate(-10deg);
}

.zs-booking-note {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 24px;
    background: var(--zs-grey);
    border-radius: 22px;
}

.zs-booking-note-feature {
    background: var(--zs-cream);
    border-left: 8px solid var(--zs-secondary);
}

.zs-booking-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 11px;
    color: var(--zs-white);
    background: var(--zs-accent);
    border-radius: 11px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.zs-booking-note h3 {
    margin-bottom: 10px;
}

.zs-booking-note p {
    margin: 0;
    color: var(--zs-muted);
    line-height: 1.65;
}

.zs-booking-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zs-booking-list li {
    position: relative;
    padding-left: 24px;
    color: var(--zs-muted);
    line-height: 1.55;
}

.zs-booking-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 10px;
    height: 10px;
    background: var(--zs-secondary);
    border-radius: 4px;
    transform: rotate(8deg);
}

/* ------------------------------------------------------------
   Kontakt
------------------------------------------------------------ */

.zs-contact-section {
    background: var(--zs-white);
}

.zs-contact-form-card,
.zs-contact-info-card {
    height: 100%;
    border-radius: var(--zs-radius-lg);
    box-shadow: var(--zs-shadow);
}

.zs-contact-form-card {
    padding: clamp(24px, 4vw, 52px);
    background: var(--zs-grey);
}

.zs-contact-form {
    margin-top: 28px;
}

.zs-contact-form .form-label {
    color: var(--zs-dark);
    font-weight: 800;
}

.zs-contact-form .form-control {
    min-height: 52px;
    padding: 13px 16px;
    color: var(--zs-text);
    background: var(--zs-white);
    border: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(38, 59, 57, 0.08);
}

.zs-contact-form textarea.form-control {
    min-height: 150px;
}

.zs-contact-form .form-control:focus {
    border-color: transparent;
    box-shadow:
        inset 0 0 0 2px var(--zs-main),
        0 0 0 0.2rem rgba(146, 197, 192, 0.2);
}

.zs-contact-info-card {
    position: relative;
    padding: clamp(24px, 4vw, 42px);
    color: var(--zs-dark);
    background: var(--zs-main-light);
    overflow: hidden;
}

.zs-contact-info-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 180px;
    height: 180px;
    background: var(--zs-accent);
    border-radius: 30px;
    opacity: 0.22;
    transform: rotate(-12deg);
}

.zs-contact-photo-card,
.zs-contact-logo,
.zs-contact-copy,
.zs-contact-list {
    position: relative;
    z-index: 1;
}

.zs-contact-photo-card {
    width: min(100%, 560px);
    margin: 0 auto 44px;
    padding: 12px;
    background: var(--zs-white);
    border-radius: 30px;
    box-shadow: 0 14px 30px rgba(38, 59, 57, 0.12);
    overflow: visible;
    transform: rotate(-2deg);
}

.zs-contact-photo-card img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 22px;
}

.zs-contact-photo-blob {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.zs-contact-photo-blob-yellow {
    top: 18px;
    right: 18px;
    width: 82px;
    height: 62px;
    background: var(--zs-secondary);
    border-radius: 26px 30px 22px 28px;
    opacity: 0.7;
    transform: rotate(10deg);
}

.zs-contact-photo-blob-mint {
    left: -18px;
    bottom: 72px;
    width: 96px;
    height: 74px;
    background: var(--zs-main);
    border-radius: 34px 24px 32px 20px;
    opacity: 0.75;
    transform: rotate(-14deg);
}

.zs-contact-logo {
    margin-bottom: 24px;
}

.zs-contact-logo img {
    width: auto;
    height: 80px;
}

.zs-contact-copy {
    margin-bottom: 30px;
}

.zs-contact-intro {
    margin: 0;
    max-width: 34ch;
    color: var(--zs-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.zs-contact-list {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zs-contact-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: start;
}

.zs-contact-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--zs-dark);
    font-size: 0.95rem;
    font-weight: 800;
}

.zs-contact-list span,
.zs-contact-list a {
    color: var(--zs-text);
    line-height: 1.65;
    text-decoration: none;
}

.zs-contact-list a {
    font-weight: 800;
}

.zs-contact-list a:hover {
    color: var(--zs-accent);
}

.zs-contact-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zs-dark);
    background: var(--zs-secondary);
    border-radius: 18px 22px 16px 20px;
    font-size: 1.1rem;
    box-shadow: 0 8px 18px rgba(38, 59, 57, 0.08);
    transform: rotate(-6deg);
}

.zs-contact-icon i {
    transform: rotate(6deg);
}

.zs-contact-icon-yellow {
    color: var(--zs-dark);
    background: var(--zs-secondary);
}



/* ------------------------------------------------------------
   Back to top
------------------------------------------------------------ */

.zs-back-to-top {
    position: fixed;
    right: clamp(18px, 3vw, 36px);
    bottom: clamp(18px, 3vw, 36px);
    z-index: 90;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zs-dark);
    background: var(--zs-secondary);
    border: 0;
    border-radius: 20px 26px 18px 24px;
    box-shadow: 0 12px 28px rgba(38, 59, 57, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) rotate(-6deg);
    transition:
        opacity 0.24s ease,
        visibility 0.24s ease,
        transform 0.24s ease,
        background 0.24s ease,
        color 0.24s ease;
}

.zs-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) rotate(-6deg);
}

.zs-back-to-top:hover,
.zs-back-to-top:focus {
    color: var(--zs-white);
    background: var(--zs-accent);
    transform: translateY(-3px) rotate(2deg);
}

.zs-back-to-top:focus {
    outline: none;
    box-shadow:
        0 12px 28px rgba(38, 59, 57, 0.16),
        0 0 0 0.22rem rgba(73, 124, 127, 0.22);
}

.zs-back-to-top i {
    font-size: 2rem;
    line-height: 1;
    transform: rotate(6deg);
}

.zs-back-to-top:hover i,
.zs-back-to-top:focus i {
    transform: rotate(-2deg);
}

@media (max-width: 575.98px) {
    .zs-back-to-top {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
        border-radius: 18px 22px 16px 20px;
    }

    .zs-back-to-top i {
        font-size: 1.8rem;
    }
}

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

.zs-footer {
    padding: 26px 0;
    color: var(--zs-white);
    background: var(--zs-accent);
}

.zs-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.zs-footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.zs-footer a {
    color: var(--zs-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.zs-footer a:hover {
    opacity: 1;
}

.zs-copyright {
    margin: 0;
    opacity: 0.9;
}



/* ------------------------------------------------------------
   Galerie Lightbox
------------------------------------------------------------ */

.zs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 48px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.26s ease,
        visibility 0.26s ease;
}

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

.zs-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(146, 197, 192, 0.3), transparent 28%),
        rgba(38, 59, 57, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.zs-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1180px);
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) 68px;
    align-items: center;
    gap: clamp(10px, 2vw, 22px);
}

.zs-lightbox-figure {
    position: relative;
    margin: 0;
    transform: translateY(16px) scale(0.98);
    transition:
        transform 0.28s ease,
        opacity 0.28s ease;
}

.zs-lightbox.is-open .zs-lightbox-figure {
    transform: translateY(0) scale(1);
}

.zs-lightbox-image-card {
    position: relative;
    padding: clamp(8px, 1.5vw, 14px);
    background: var(--zs-white);
    border-radius: clamp(22px, 3vw, 34px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
    transform: rotate(-1deg);
}

.zs-lightbox-image-card::before {
    content: "";
    position: absolute;
    right: -22px;
    top: -20px;
    z-index: -1;
    width: clamp(70px, 10vw, 120px);
    height: clamp(52px, 8vw, 88px);
    background: var(--zs-secondary);
    border-radius: 28px 34px 22px 30px;
    opacity: 0.82;
    transform: rotate(10deg);
}

.zs-lightbox-image-card::after {
    content: "";
    position: absolute;
    left: -18px;
    bottom: 42px;
    z-index: 2;
    width: clamp(58px, 9vw, 96px);
    height: clamp(46px, 7vw, 72px);
    background: var(--zs-main);
    border-radius: 30px 22px 28px 20px;
    opacity: 0.72;
    transform: rotate(-12deg);
    pointer-events: none;
}

.zs-lightbox-image {
    display: block;
    width: 100%;
    max-height: min(74vh, 820px);
    object-fit: contain;
    border-radius: clamp(16px, 2vw, 24px);
}

.zs-lightbox-caption {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 18px;
    margin-top: 14px;
    padding: 0 6px;
    color: var(--zs-white);
}

.zs-lightbox-title {
    font-size: 0.96rem;
    font-weight: 800;
}

.zs-lightbox-copyright {
    font-size: 0.88rem;
    opacity: 0.78;
}

.zs-lightbox-close,
.zs-lightbox-nav {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zs-dark);
    background: var(--zs-secondary);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

.zs-lightbox-close:hover,
.zs-lightbox-close:focus,
.zs-lightbox-nav:hover,
.zs-lightbox-nav:focus {
    color: var(--zs-white);
    background: var(--zs-accent);
    transform: translateY(-2px) rotate(2deg);
}

.zs-lightbox-close:focus,
.zs-lightbox-nav:focus {
    outline: none;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.2),
        0 0 0 0.22rem rgba(240, 210, 11, 0.34);
}

.zs-lightbox-close {
    position: absolute;
    right: -16px;
    top: -18px;
    z-index: 4;
    width: 54px;
    height: 54px;
    border-radius: 18px 24px 16px 22px;
    transform: rotate(7deg);
}

.zs-lightbox-close i {
    font-size: 1.1rem;
    transform: rotate(-7deg);
}

.zs-lightbox-nav {
    width: 62px;
    height: 62px;
    border-radius: 22px 28px 20px 26px;
}

.zs-lightbox-prev {
    transform: rotate(-8deg);
}

.zs-lightbox-next {
    transform: rotate(8deg);
}

.zs-lightbox-prev:hover,
.zs-lightbox-prev:focus {
    transform: translateY(-2px) rotate(-2deg);
}

.zs-lightbox-next:hover,
.zs-lightbox-next:focus {
    transform: translateY(-2px) rotate(2deg);
}

.zs-lightbox-nav i {
    font-size: 1.45rem;
}

body.zs-lightbox-open {
    overflow: hidden;
}


/* ------------------------------------------------------------
   Responsive
------------------------------------------------------------ */

@media (max-width: 1199.98px) {
    .zs-collage-gallery {
        grid-template-columns: repeat(8, 1fr);
    }

    .zs-collage-normal,
    .zs-collage-square,
    .zs-collage-wide {
        grid-column: span 4;
    }

    .zs-collage-tall {
        grid-column: span 4;
        min-height: 480px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --zs-header-height: 82px;
    }

    .zs-navbar {
        min-height: 82px;
    }

    .zs-navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        background: rgba(250, 250, 246, 0.98);
        border-radius: 24px;
        box-shadow: var(--zs-shadow-soft);
    }

    .zs-nav-list {
        align-items: stretch !important;
        gap: 9px;
    }

    .zs-nav-link {
        display: flex;
        justify-content: center;
        padding: 15px 18px !important;
        background: var(--zs-main-light);
        text-align: center;
    }

    .zs-nav-link.active::after {
        display: none;
    }

    .zs-hero-content {
        padding-top: calc(var(--zs-header-height) + 60px);
        padding-bottom: 42px;
    }

    .zs-hero-visual {
        min-height: auto;
        padding: 0 clamp(22px, 6vw, 80px) 70px;
    }

    .zs-hero-image-wrap {
        aspect-ratio: 1.05;
    }

    .zs-floating-card {
        left: 40px;
        bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: clamp(2.45rem, 13vw, 4.2rem);
    }

    .zs-section {
        padding: 68px 0;
    }

    .zs-brand img {
        height: 50px;
    }

    .zs-navbar.is-scrolled .zs-brand img {
        height: 44px;
    }

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

    .zs-hero-actions .btn {
        width: 100%;
    }

    .zs-hero-image-wrap {
        padding: 20px;
        border-radius: 28px;
    }

    .zs-hero-image-wrap::before {
        left: -18px;
        top: 30px;
        width: 84px;
        height: 84px;
    }

    .zs-hero-image-wrap::after {
        right: -14px;
        bottom: 42px;
        width: 104px;
        height: 78px;
    }

    .zs-hero-photo-card {
        width: 93%;
        height: 86%;
        border-radius: 24px;
        transform: rotate(-2deg);
    }

    .zs-hero-photo-card::before {
        right: 14px;
        top: 14px;
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .zs-hero-photo-card::after {
        right: 28px;
        top: 25px;
    }

    .zs-hero-image {
        border-radius: 17px;
    }

    .zs-floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -28px auto 0;
    }

    .zs-collage-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 36px;
    }

    .zs-collage-item {
        padding: 7px;
        border-radius: 18px;
        transform: none !important;
    }

    .zs-collage-item:hover,
    .zs-collage-item:focus {
        transform: translateY(-3px) !important;
    }

    .zs-collage-item img {
        border-radius: 13px;
    }

    .zs-collage-normal,
    .zs-collage-square,
    .zs-collage-wide {
        grid-column: span 1;
        min-height: 190px;
    }

    .zs-collage-tall {
        grid-column: span 1;
        grid-row: span 2;
        min-height: 390px;
    }

    .zs-booking-card,
    .zs-contact-form-card,
    .zs-contact-info-card {
        border-radius: 24px;
    }

    .zs-contact-photo-card {
        margin-bottom: 34px;
        padding: 9px;
        border-radius: 24px;
    }

    .zs-contact-photo-card img {
        border-radius: 17px;
    }

    .zs-contact-photo-blob-yellow {
        top: 14px;
        right: 14px;
        width: 66px;
        height: 50px;
        opacity: 0.68;
    }

    .zs-contact-photo-blob-mint {
        left: -8px;
        bottom: 52px;
        width: 70px;
        height: 54px;
    }

    .zs-contact-logo img {
        height: 72px;
    }

    .zs-contact-list li {
        grid-template-columns: 50px 1fr;
        gap: 12px;
    }

    .zs-contact-icon {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .zs-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
	.zs-lightbox {
	    padding: 18px;
	}
	
	.zs-lightbox-dialog {
	    grid-template-columns: 1fr;
	    gap: 16px;
	}
	
	.zs-lightbox-figure {
	    order: 1;
	}
	
	.zs-lightbox-prev,
	.zs-lightbox-next {
	    position: absolute;
	    top: 50%;
	    z-index: 4;
	    width: 50px;
	    height: 50px;
	    transform: translateY(-50%) rotate(-6deg);
	}
	
	.zs-lightbox-prev {
	    left: -4px;
	}
	
	.zs-lightbox-next {
	    right: -4px;
	    transform: translateY(-50%) rotate(6deg);
	}
	
	.zs-lightbox-close {
	    right: -4px;
	    top: -10px;
	    width: 48px;
	    height: 48px;
	}
	
	.zs-lightbox-image {
	    max-height: 72vh;
	}
	
	.zs-lightbox-caption {
	    display: grid;
	    gap: 4px;
	}
	
	.zs-lightbox-copyright {
	    font-size: 0.8rem;
	}

}

@media (max-width: 575.98px) {
    .zs-navbar {
        padding-left: 14px;
        padding-right: 14px;
    }

    .zs-navbar-toggler {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .zs-burger-line {
        left: 13px;
    }

    .zs-burger-line:nth-child(1) {
        top: 15px;
    }

    .zs-burger-line:nth-child(2) {
        top: 22px;
    }

    .zs-burger-line:nth-child(3) {
        top: 29px;
    }

    .zs-navbar-toggler[aria-expanded="true"] .zs-burger-line:nth-child(1),
    .zs-navbar-toggler[aria-expanded="true"] .zs-burger-line:nth-child(3) {
        top: 22px;
    }

    .zs-hero-content,
    .zs-hero-visual {
        padding-left: 22px;
        padding-right: 22px;
    }

    .zs-footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 479.98px) {
    .zs-collage-gallery {
        grid-template-columns: 1fr;
    }

    .zs-collage-normal,
    .zs-collage-square,
    .zs-collage-wide,
    .zs-collage-tall {
        grid-column: span 1;
        min-height: 260px;
    }

    .zs-collage-tall {
        min-height: 380px;
    }
}