body.home-page {
    background: #102336;
    overflow-x: hidden;
}

body.gallery-page .gallery-viewer-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
    max-width: 1120px;
    margin: 0 auto;
}

body.gallery-page .gallery-viewer-stage {
    position: relative;
    min-height: min(72vh, 820px);
    background: #dbe8f2;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(7, 18, 31, 0.22);
}

body.gallery-page .gallery-viewer-figure {
    height: 100%;
    margin: 0;
}

body.gallery-page .gallery-viewer-figure img {
    width: 100%;
    height: 100%;
    min-height: min(72vh, 820px);
    object-fit: cover;
    display: block;
}

body.gallery-page .gallery-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark);
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(7, 18, 31, 0.18);
}

body.gallery-page #galleryViewerPrev {
    left: 18px;
}

body.gallery-page #galleryViewerNext {
    right: 18px;
}

body.gallery-page .gallery-viewer-copy {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 24px 24px 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.98));
    box-shadow: 0 32px 80px rgba(7, 18, 31, 0.18);
}

body.gallery-page .gallery-viewer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

body.gallery-page .gallery-viewer-category,
body.gallery-page .gallery-viewer-count {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

body.gallery-page .gallery-viewer-category {
    background: rgba(93, 173, 226, 0.12);
    color: var(--primary);
}

body.gallery-page .gallery-viewer-count {
    background: rgba(138, 106, 63, 0.12);
    color: var(--accent-dark);
}

body.gallery-page .gallery-viewer-copy h2,
body.gallery-page .gallery-viewer-copy p {
    margin: 0;
}

body.gallery-page .gallery-viewer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body.gallery-page .gallery-viewer-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    gap: 14px;
    max-height: 420px;
    overflow-y: auto;
    padding: 6px 8px 6px 0;
    align-items: start;
}

body.gallery-page .gallery-viewer-thumbs .gallery-modal-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 112px;
    padding: 6px;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(93, 173, 226, 0.16);
    border-radius: 16px;
}

body.gallery-page .gallery-viewer-thumbs .gallery-modal-thumb img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    background: #eef5fb;
}

body.gallery-page #galleryViewerImage {
    cursor: pointer;
}

body.gallery-page .gallery-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(3, 10, 18, 0.96);
    padding: 24px;
}

body.gallery-page .gallery-fullscreen.active {
    display: flex;
}

body.gallery-page .gallery-fullscreen-stage {
    width: min(100%, 1400px);
    height: min(100vh - 48px, 980px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: pan-y;
}

body.gallery-page .gallery-fullscreen-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

body.gallery-page .gallery-fullscreen-close,
body.gallery-page .gallery-fullscreen-nav {
    position: absolute;
    z-index: 3;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #102336;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(16, 35, 54, 0.12);
}

body.gallery-page .gallery-fullscreen-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.gallery-page .gallery-fullscreen-close-icon {
    font-size: 1.8rem;
    line-height: 1;
    display: block;
}

body.gallery-page .gallery-fullscreen-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

body.gallery-page #galleryFullscreenPrev {
    left: 20px;
}

body.gallery-page #galleryFullscreenNext {
    right: 20px;
}

body.gallery-fullscreen-open {
    overflow: hidden;
}

@media (max-width: 960px) {
    body.gallery-page .gallery-viewer-stage,
    body.gallery-page .gallery-viewer-figure img {
        min-height: min(62vh, 620px);
    }

    body.gallery-page .gallery-viewer-thumbs {
        grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
        max-height: 340px;
    }

    body.gallery-page .gallery-fullscreen {
        padding: 16px;
    }

    body.gallery-page .gallery-fullscreen-stage {
        width: 100%;
        height: min(100vh - 32px, 100%);
    }
}

@media (max-width: 640px) {
    body.gallery-page .gallery-viewer-copy {
        padding: 18px 16px 22px;
        gap: 14px;
    }

    body.gallery-page .gallery-viewer-stage,
    body.gallery-page .gallery-viewer-figure img {
        min-height: 46vh;
    }

    body.gallery-page .gallery-viewer-nav {
        width: 42px;
        height: 42px;
    }

    body.gallery-page #galleryViewerPrev {
        left: 12px;
    }

    body.gallery-page #galleryViewerNext {
        right: 12px;
    }

    body.gallery-page .gallery-viewer-meta {
        align-items: flex-start;
    }

    body.gallery-page .gallery-viewer-actions {
        flex-direction: column;
    }

    body.gallery-page .gallery-viewer-actions .btn {
        width: 100%;
    }

    body.gallery-page .gallery-viewer-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        max-height: 320px;
        padding-right: 2px;
    }

    body.gallery-page .gallery-viewer-thumbs .gallery-modal-thumb {
        min-height: 88px;
        padding: 4px;
    }

    body.gallery-page .gallery-fullscreen {
        padding: 10px;
    }

    body.gallery-page .gallery-fullscreen-close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }

    body.gallery-page .gallery-fullscreen-close-icon {
        font-size: 1.4rem;
    }

    body.gallery-page .gallery-fullscreen-nav {
        width: 42px;
        height: 42px;
    }

    body.gallery-page #galleryFullscreenPrev {
        left: 10px;
    }

    body.gallery-page #galleryFullscreenNext {
        right: 10px;
    }

    body.gallery-page .gallery-fullscreen-stage {
        height: min(100vh - 20px, 100%);
    }
}

.library-hero {
    padding-top: calc(var(--site-header-height, 96px) + 56px);
    background:
        radial-gradient(circle at top right, rgba(93, 173, 226, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 250, 0.72));
}

.library-hero-grid,
.library-grid {
    display: grid;
    gap: 24px;
}

.library-hero-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
    align-items: center;
}

.library-hero-copy {
    max-width: 760px;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.library-policy-card,
.library-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(93, 173, 226, 0.16);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(25, 45, 68, 0.09);
}

.library-policy-card {
    padding: 24px;
    display: grid;
    gap: 10px;
}

.library-policy-card span {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.library-policy-card p {
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
}

.library-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: start;
}

.library-card {
    padding: 28px;
}

.library-kicker {
    margin: 0 0 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.library-card h2 {
    margin: 0 0 18px;
    color: var(--dark);
    font-family: "Montserrat", sans-serif;
}

.library-search-form {
    display: grid;
    gap: 10px;
}

.library-search-form label {
    font-weight: 700;
    color: var(--dark);
}

.library-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.library-search-row input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(93, 173, 226, 0.28);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
}

.library-category-browser {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(93, 173, 226, 0.16);
}

.library-category-header,
.library-category-books-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.library-category-header h3 {
    margin: 0;
    color: var(--dark);
}

.library-category-count {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(130, 224, 170, 0.16);
    color: #1f7a52;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.library-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.library-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(93, 173, 226, 0.24);
    border-radius: 999px;
    background: linear-gradient(180deg, #fff, rgba(248, 252, 255, 0.94));
    color: #17364c;
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(25, 45, 68, 0.07);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.library-category-tag strong {
    min-width: 28px;
    min-height: 28px;
    display: inline-grid;
    place-items: center;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(93, 173, 226, 0.14);
    color: #1f567f;
    font-size: 0.78rem;
}

.library-category-tag:hover,
.library-category-tag:focus-visible,
.library-category-tag.is-active {
    transform: translateY(-1px);
    border-color: transparent;
    background: linear-gradient(135deg, #2d7cb8, #5dbce0);
    color: #fff;
}

.library-category-tag:hover strong,
.library-category-tag:focus-visible strong,
.library-category-tag.is-active strong {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.library-category-status {
    margin: 14px 0 0;
    color: var(--gray);
    font-weight: 700;
}

.library-category-status[data-tone="error"] {
    color: #a93226;
}

.library-category-books {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.library-category-books-header {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(93, 173, 226, 0.08);
}

.library-category-books-header strong {
    display: block;
    color: var(--dark);
}

.library-category-books-header p {
    margin: 3px 0 0;
    color: var(--gray);
}

.library-category-book-list {
    display: grid;
    gap: 12px;
}

.library-status {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(93, 173, 226, 0.12);
    color: var(--dark);
}

.library-status[data-tone="error"] {
    background: rgba(192, 57, 43, 0.12);
    color: #a93226;
}

.library-status[data-tone="success"] {
    background: rgba(46, 204, 113, 0.12);
    color: #1e8449;
}

.library-results,
.library-borrowing-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.library-result-card,
.library-borrowing-item {
    padding: 16px;
    border: 1px solid rgba(93, 173, 226, 0.16);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, rgba(248, 249, 250, 0.92) 100%);
}

.library-result-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
}

.library-result-card h3,
.library-borrowing-item strong {
    margin: 0 0 6px;
    color: var(--dark);
}

.library-result-card p,
.library-borrowing-item p {
    margin: 4px 0;
    color: var(--gray);
    line-height: 1.5;
}

.library-meta-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.library-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(93, 173, 226, 0.12);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 700;
}

.library-pill.warning {
    background: rgba(247, 220, 111, 0.28);
}

.library-pill.danger {
    background: rgba(192, 57, 43, 0.12);
    color: #a93226;
}

.library-summary-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}

.small-btn {
    padding: 9px 14px;
    font-size: 0.88rem;
}

.library-login-note {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(93, 173, 226, 0.1);
}

.library-login-note p {
    margin: 0;
    color: var(--gray);
}

.library-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 20, 32, 0.58);
    backdrop-filter: blur(6px);
}

.library-popup-overlay.active {
    display: flex;
}

.library-popup {
    position: relative;
    width: min(560px, 100%);
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 255, 0.99));
    box-shadow: 0 30px 80px rgba(7, 18, 31, 0.24);
}

.library-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.08);
    color: var(--dark);
    cursor: pointer;
    font-size: 1.4rem;
}

.library-popup-kicker {
    margin: 0 0 8px;
    color: #1f8f5f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.library-popup h3 {
    margin-bottom: 12px;
}

.library-popup-message {
    margin: 0 0 18px;
    color: #47606f;
}

.library-popup-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.library-popup-meta div {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(93, 173, 226, 0.1);
    color: var(--dark);
}

.library-popup-action {
    min-width: 180px;
}

.library-summary-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.library-summary-stats article {
    padding: 14px;
    border-radius: 16px;
    background: rgba(93, 173, 226, 0.1);
}

.library-summary-stats span {
    display: block;
    color: var(--gray);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.library-summary-stats strong {
    display: block;
    margin-top: 4px;
    color: var(--dark);
    font-size: 1.55rem;
}

@media (max-width: 860px) {
    .library-hero {
        padding-top: calc(var(--site-header-height, 112px) + 34px);
    }

    .library-hero-grid,
    .library-grid,
    .library-search-row,
    .library-category-header,
    .library-category-books-header,
    .library-result-card {
        grid-template-columns: 1fr;
    }

    .library-category-header,
    .library-category-books-header {
        display: grid;
    }

    .library-summary-stats {
        grid-template-columns: 1fr;
    }

    .library-summary-card {
        order: -1;
    }

    .library-summary-header .small-btn,
    .library-login-note .btn {
        display: none;
    }
}

body.home-page .hero {
    min-height: calc(100vh - var(--site-header-height, 96px));
    display: flex;
    align-items: center;
    margin-top: calc(var(--site-header-height, 96px) + 18px);
    padding: 32px 0 90px;
}

body.home-page .hero.hero-after-gallery {
    min-height: auto;
    margin-top: 28px;
    padding-top: 0;
}

body.home-page .home-gallery-top {
    padding-top: calc(var(--site-header-height, 96px) + 18px);
}

body.home-page .home-gallery-panel {
    display: grid;
    gap: 20px;
}

body.home-page .home-gallery-intro {
    margin: 0;
    color: #d7e7f5;
}

body.home-page .home-gallery-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

body.home-page .home-gallery-stage {
    position: relative;
    min-height: min(68vh, 760px);
    background: #dbe8f2;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 68px rgba(7, 18, 31, 0.2);
}

body.home-page .home-gallery-figure {
    margin: 0;
    height: 100%;
}

body.home-page .home-gallery-figure img {
    width: 100%;
    height: 100%;
    min-height: min(68vh, 760px);
    object-fit: cover;
    display: block;
}

body.home-page .home-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #102336;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

body.home-page #homeGalleryPrev {
    left: 18px;
}

body.home-page #homeGalleryNext {
    right: 18px;
}

body.home-page .home-gallery-copy {
    display: grid;
    gap: 16px;
}

body.home-page .home-gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

body.home-page .home-gallery-category,
body.home-page .home-gallery-count {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

body.home-page .home-gallery-category {
    background: rgba(93, 173, 226, 0.16);
    color: #f4fbff;
}

body.home-page .home-gallery-count {
    background: rgba(255, 255, 255, 0.14);
    color: #f4fbff;
}

body.home-page .home-gallery-copy h3,
body.home-page .home-gallery-copy p {
    margin: 0;
    color: #fff;
}

body.home-page #homeGalleryImage {
    cursor: pointer;
}

body.home-page .home-gallery-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(3, 10, 18, 0.96);
    padding: 24px;
}

body.home-page .home-gallery-fullscreen.active {
    display: flex;
}

body.home-page .home-gallery-fullscreen-stage {
    width: min(100%, 1400px);
    height: min(100vh - 48px, 980px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: pan-y;
}

body.home-page .home-gallery-fullscreen-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

body.home-page .home-gallery-fullscreen-close,
body.home-page .home-gallery-fullscreen-nav {
    position: absolute;
    z-index: 3;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #102336;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(16, 35, 54, 0.12);
}

body.home-page .home-gallery-fullscreen-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.home-page .home-gallery-fullscreen-close-icon {
    font-size: 1.8rem;
    line-height: 1;
    display: block;
}

body.home-page .home-gallery-fullscreen-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

body.home-page #homeGalleryFullscreenPrev {
    left: 20px;
}

body.home-page #homeGalleryFullscreenNext {
    right: 20px;
}

body.home-gallery-fullscreen-open {
    overflow: hidden;
}

body.home-page .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

body.home-page .hero-copy,
body.home-page .booking-card,
body.home-page .section-panel,
body.home-page .contact-card,
body.home-page .contact-form-wrap {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 44px rgba(6, 18, 29, 0.22);
}

body.home-page .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 38px;
    border-radius: 28px;
    color: #fff;
}

body.home-page .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.home-page .hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.98;
    margin-bottom: 0;
}

body.home-page .hero-message-card {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
    display: grid;
    gap: 16px;
    padding: 24px 24px 22px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
        rgba(10, 28, 47, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 54px rgba(5, 17, 29, 0.24);
    backdrop-filter: blur(10px);
}

body.home-page .hero-message-card::before {
    content: "";
    width: 78px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f5d090, rgba(255, 255, 255, 0.95));
}

body.home-page .hero-message-card p {
    margin: 0;
    max-width: none;
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

body.home-page .hero-message-card .hero-message-lead {
    font-size: 1.16rem;
    line-height: 1.75;
    color: #fff;
    font-weight: 700;
}

body.home-page .hero-copy p {
    max-width: none;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

body.home-page .hero-actions,
body.home-page .section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0;
}

body.home-page .btn.secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

body.home-page .scroll-note {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
}

body.home-page .booking-card {
    align-self: stretch;
    padding: 28px;
    border-radius: 28px;
    color: #fff;
}

body.home-page .booking-card h2 {
    margin-bottom: 10px;
    color: #fff;
}

body.home-page .booking-card p {
    color: rgba(255, 255, 255, 0.85);
}

body.home-page .booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

body.home-page .booking-grid .full {
    grid-column: 1 / -1;
}

body.home-page .booking-quick-status {
    min-height: 1.4rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
}

body.home-page .booking-quick-status[data-tone="error"] {
    color: #ffd5cf;
}

body.home-page .booking-card label,
body.home-page .modal-form label,
body.home-page .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

body.home-page .booking-card select,
body.home-page .booking-card input,
body.home-page .modal-form input,
body.home-page .contact-form input,
body.home-page .contact-form select,
body.home-page .contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(19, 39, 60, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--dark);
    transition: all 0.3s ease;
}

body.home-page .booking-card select:hover,
body.home-page .booking-card input:hover,
body.home-page .contact-form select:hover {
    border-color: rgba(138, 106, 63, 0.3);
    box-shadow: 0 2px 8px rgba(138, 106, 63, 0.1);
}

body.home-page .booking-card select:focus,
body.home-page .booking-card input:focus,
body.home-page .contact-form select:focus {
    outline: none;
    border-color: #8a6a3f;
    box-shadow: 0 0 0 3px rgba(138, 106, 63, 0.1);
}

body.home-page .booking-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a6a3f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}
}

body.home-page .immersive-section {
    padding: 0 0 28px;
}

body.home-page .section-panel {
    padding: 34px;
    border-radius: 28px;
    color: #fff;
}

body.home-page .section-panel h2,
body.home-page .section-panel h3 {
    color: #fff;
}

body.home-page .section-panel p,
body.home-page .section-panel li {
    color: rgba(255, 255, 255, 0.88);
}

body.home-page .about-preview-lead {
    margin-bottom: 12px;
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
}

body.home-page .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #cce8ff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.home-page .about-grid,
body.home-page .booking-flow-grid,
body.home-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

body.home-page .services-grid,
body.home-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

body.home-page .service-card,
body.home-page .testimonial-card,
body.home-page .mini-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

body.home-page .service-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

body.home-page .service-card-link:hover,
body.home-page .service-card-link:focus-visible {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
}

body.home-page .service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 1.5rem;
}

body.home-page .about-image img,
body.home-page .gallery-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

body.home-page .gallery-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

body.home-page .gallery-stack {
    display: grid;
    gap: 20px;
}

body.home-page .gallery-showcase {
    min-height: 260px;
}

body.home-page .booking-steps {
    display: grid;
    gap: 16px;
}

body.home-page .booking-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

body.home-page .step-number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 700;
}

body.home-page .testimonial-card p {
    margin-bottom: 16px;
    font-style: italic;
}

body.home-page .contact-section {
    position: relative;
    z-index: 2;
    padding: 0 0 28px;
}

body.home-page .contact-card,
body.home-page .contact-form-wrap {
    padding: 30px;
    border-radius: 26px;
    color: #fff;
}

body.home-page .contact-item {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    align-items: flex-start;
}

body.home-page .contact-card h3,
body.home-page .contact-card h4,
body.home-page .contact-form-wrap h3,
body.home-page .contact-card p,
body.home-page .contact-card a,
body.home-page .contact-form-wrap label {
    color: #fff;
}

body.home-page .contact-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

body.home-page .contact-form {
    display: grid;
    gap: 16px;
}

body.home-page .contact-form .btn,
.full-width-btn {
    width: 100%;
}

body.home-page .contact-form-wrap .status-message {
    color: rgba(255, 255, 255, 0.92);
}

body.home-page .contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.status-message {
    margin-top: 8px;
    font-weight: 700;
}

body.home-page .modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 18, 32, 0.76);
    z-index: 2001;
}

body.home-page .modal-overlay.active {
    display: flex;
}

body.home-page .modal {
    width: min(520px, 100%);
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

body.home-page .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

body.home-page .modal-close {
    border: none;
    background: transparent;
    color: var(--gray);
    font-size: 1.4rem;
    cursor: pointer;
}

body.home-page .modal-form {
    display: grid;
    gap: 16px;
}

body.home-page .radio-group {
    display: grid;
    gap: 12px;
}

body.home-page .radio-option,
body.bookings-page .radio-option {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #d8dbe1;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
}

body.home-page .radio-option.selected {
    border-color: var(--primary);
    background: rgba(93, 173, 226, 0.1);
}

body.home-page main,
body.home-page footer {
    position: relative;
    z-index: 1;
}

body.home-page footer {
    background: var(--header-bg);
}

body.about-page .about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

body.about-page .about-image {
    width: 100%;
}

body.about-page .about-copy {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.98)),
        radial-gradient(circle at top left, rgba(93, 173, 226, 0.18), transparent 34%);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 26px 48px rgba(18, 37, 57, 0.12);
    border: 1px solid rgba(93, 173, 226, 0.12);
}

body.about-page .about-copy p + p {
    margin-top: 18px;
}

body.about-page .about-lead {
    margin: 0 0 12px;
    color: #1f8f5f;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.about-page .about-headline {
    margin-bottom: 10px;
    color: #16364b;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

body.about-page .about-subtitle {
    margin: 0 0 22px;
    color: #2d7cb8;
    font-family: "Montserrat", sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
}

body.about-page .about-section-heading {
    margin: 28px 0 12px;
    color: #183d54;
    font-size: 1.24rem;
}

body.about-page .about-feature-list {
    margin: 14px 0 18px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

body.about-page .about-feature-list li {
    position: relative;
    padding: 14px 16px 14px 48px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(25, 45, 68, 0.08);
}

body.about-page .about-feature-list li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d7cb8, #82e0aa);
    box-shadow: 0 0 0 6px rgba(93, 173, 226, 0.12);
}

body.about-page .about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

body.about-page .btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: #17364c;
    border: 1px solid rgba(45, 124, 184, 0.24);
}

body.about-page .about-image img {
    width: 100%;
    height: clamp(320px, 42vw, 520px);
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 24px 44px rgba(18, 37, 57, 0.14);
}

body.about-page .founder-section {
    padding-top: 0;
}

body.about-page .founder-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
}

body.about-page .founder-image img {
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

body.about-page .founder-copy {
    display: grid;
    gap: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.96)),
        radial-gradient(circle at top right, rgba(130, 224, 170, 0.16), transparent 42%);
    width: 100%;
    padding: 42px 46px;
    border-radius: 30px;
    box-shadow: 0 24px 44px rgba(18, 37, 57, 0.12);
}

body.about-page .founder-kicker {
    margin: 0;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.about-page .founder-quote {
    margin: 0;
    padding: 22px 24px;
    border-left: 4px solid var(--secondary);
    border-radius: 20px;
    background: rgba(93, 173, 226, 0.08);
    color: var(--dark);
    font-family: "Montserrat", sans-serif;
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.7;
}

body.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

body.services-page .service-category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 26px;
}

body.services-page .service-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 8px;
    border: 1px solid rgba(93, 173, 226, 0.22);
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

body.services-page .service-category-pill-all {
    padding: 10px 16px;
    font-weight: 600;
}

body.services-page .service-category-pill-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(18, 37, 57, 0.16);
    border: 2px solid rgba(255, 255, 255, 0.92);
}

body.services-page .service-category-pill.is-active,
body.services-page .service-category-pill:hover {
    background: linear-gradient(135deg, #2d7cb8, #5dbce0);
    color: #fff;
}

body.services-page .service-category-panel {
    display: none;
    scroll-margin-top: calc(var(--site-header-height, 96px) + 24px);
}

body.services-page .service-category-panel.is-active {
    display: block;
}

body.services-page .service-category-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
    padding: 26px 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

body.services-page .service-category-intro h2 {
    margin-bottom: 8px;
    color: var(--primary);
}

body.services-page .service-category-intro-image {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 14px 28px rgba(18, 37, 57, 0.14);
}

body.services-page .service-category-intro p {
    margin-bottom: 0;
}

body.services-page .service-subspace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
}

body.services-page .service-subspace-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

body.services-page .service-subspace-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.18), rgba(130, 224, 170, 0.2));
}

body.services-page .service-subspace-image.placeholder {
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 2rem;
}

body.services-page .service-subspace-copy {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.services-page .service-subspace-copy h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

body.services-page .service-subspace-category {
    margin-bottom: 8px;
    color: #2d7cb8;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.services-page .service-subspace-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 8px;
}

body.services-page .service-price-stack {
    display: flex;
    flex: 1 1 220px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

body.services-page .service-price,
body.services-page .service-guests {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
}

body.services-page .service-price {
    background: rgba(93, 173, 226, 0.14);
    color: var(--primary);
}

body.services-page .service-price-foreigner {
    background: rgba(138, 106, 63, 0.14);
    color: #8a5c18;
}

body.services-page .service-guests {
    background: rgba(130, 224, 170, 0.2);
    color: #1d7f58;
}

body.services-page .service-empty-state {
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

body.services-page .service-subspace-copy .btn {
    width: 100%;
}

body.services-page .gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 1700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 18, 29, 0.78);
    backdrop-filter: blur(8px);
}

body.services-page .gallery-modal.active {
    display: flex;
}

body.services-page .gallery-modal-dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: 90vh;
    overflow: auto;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.98));
    box-shadow: 0 32px 80px rgba(7, 18, 31, 0.35);
}

body.services-page .gallery-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark);
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 2;
}

body.services-page .gallery-modal-hero {
    position: relative;
    min-height: 420px;
    background: #dbe8f2;
}

body.services-page .gallery-modal-hero img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

body.services-page .gallery-modal-controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
    pointer-events: none;
}

body.services-page .gallery-modal-nav {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--dark);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 10px 24px rgba(18, 37, 57, 0.18);
}

body.services-page .gallery-modal-copy {
    padding: 24px 26px 26px;
}

body.services-page .gallery-modal-copy h2 {
    margin-bottom: 8px;
    color: var(--primary);
}

body.services-page .gallery-modal-copy p {
    margin-bottom: 16px;
    color: #4c6474;
}

body.services-page .gallery-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    gap: 10px;
}

body.services-page .gallery-modal-thumb {
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    padding: 0;
}

body.services-page .gallery-modal-thumb.is-active {
    border-color: var(--primary);
}

body.services-page .gallery-modal-thumb img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    display: block;
}

body.services-page .service-gallery-thumb.is-active {
    border-color: var(--primary);
}

body.services-page .service-gallery-thumb img {
    width: 100%;
    height: 84px;
    object-fit: cover;
    display: block;
}

body.services-page .service-card {
    padding: 28px;
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.services-page .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(18, 37, 57, 0.14);
}

body.services-page .service-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2d7cb8, #5dbce0);
    color: #fff;
    font-size: 1.8rem;
}

body.services-page .service-card h3 {
    color: var(--primary);
}

body.gallery-page .gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 34px;
}

body.gallery-page .filter-btn {
    padding: 10px 16px;
    border: 1px solid rgba(93, 173, 226, 0.25);
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

body.gallery-page .filter-btn.active,
body.gallery-page .filter-btn:hover {
    background: var(--primary);
    color: #fff;
}

body.gallery-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

body.gallery-page .gallery-item {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

body.gallery-page .gallery-item.hidden {
    display: none;
}

body.gallery-page .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

body.gallery-page .gallery-caption {
    padding: 16px 18px 10px;
    font-weight: 700;
}

body.gallery-page .gallery-item-copy {
    padding: 0 18px 18px;
    display: grid;
    gap: 12px;
}

body.gallery-page .gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
}

body.gallery-page .gallery-tag {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(93, 173, 226, 0.12);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
}

body.gallery-page .gallery-open-btn {
    width: 100%;
}

body.gallery-page .gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 1700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 18, 29, 0.78);
    backdrop-filter: blur(8px);
}

body.gallery-page .gallery-modal.active {
    display: flex;
}

body.gallery-page .gallery-modal-dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: 90vh;
    overflow: auto;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.98));
    box-shadow: 0 32px 80px rgba(7, 18, 31, 0.35);
}

body.gallery-page .gallery-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark);
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 2;
}

body.gallery-page .gallery-modal-hero {
    position: relative;
    min-height: 420px;
    background: #dbe8f2;
}

body.gallery-page .gallery-modal-hero img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

body.gallery-page .gallery-modal-controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
    pointer-events: none;
}

body.gallery-page .gallery-modal-nav {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--dark);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 10px 24px rgba(18, 37, 57, 0.18);
}

body.gallery-page .gallery-modal-copy {
    padding: 24px 26px 26px;
}

body.gallery-page .gallery-modal-copy h2 {
    margin-bottom: 8px;
    color: var(--primary);
}

body.gallery-page .gallery-modal-copy p {
    margin-bottom: 16px;
    color: #4c6474;
}

body.gallery-page .gallery-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    gap: 10px;
}

body.gallery-page .gallery-modal-thumb {
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    padding: 0;
}

body.gallery-page .gallery-modal-thumb.is-active {
    border-color: var(--primary);
}

body.gallery-page .gallery-modal-thumb img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    display: block;
}

body.testimonials-page .testimonials-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

body.testimonials-page .testimonials-toolbar p {
    margin-bottom: 0;
    color: #4c6474;
}

body.testimonials-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

body.testimonials-page .testimonial-card {
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

body.testimonials-page .testimonial-card p {
    margin-bottom: 18px;
    font-style: italic;
}

body.testimonials-page .testimonial-card strong {
    color: var(--primary);
}

body.testimonials-page .testimonial-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 18, 31, 0.72);
    backdrop-filter: blur(8px);
}

body.testimonials-page .testimonial-modal.active {
    display: flex;
}

body.testimonials-page .testimonial-modal-dialog {
    position: relative;
    width: min(680px, 100%);
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 255, 0.98));
    box-shadow: 0 36px 84px rgba(7, 18, 31, 0.28);
}

body.testimonials-page .testimonial-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(23, 54, 76, 0.08);
    color: #17364c;
    font-size: 1.6rem;
    cursor: pointer;
}

body.testimonials-page .testimonial-modal-kicker {
    margin-bottom: 8px;
    color: #1f8f5f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.testimonials-page .testimonial-modal-copy {
    margin-bottom: 20px;
    color: #4c6474;
}

body.testimonials-page .testimonial-modal-feedback {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(45, 124, 184, 0.1);
    color: #17364c;
}

body.testimonials-page .testimonial-modal-feedback[data-tone="error"] {
    background: rgba(192, 57, 43, 0.12);
    color: #9f2f23;
}

body.testimonials-page .testimonial-modal-feedback[data-tone="success"] {
    background: rgba(31, 143, 95, 0.12);
    color: #166c49;
}

body.testimonials-page .testimonial-form {
    display: grid;
    gap: 16px;
}

body.testimonials-page .testimonial-form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

body.testimonials-page .testimonial-form-field input,
body.testimonials-page .testimonial-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(32, 61, 82, 0.12);
    border-radius: 14px;
    background: #fff;
    color: #15364b;
}

body.testimonials-page .testimonial-form-field textarea {
    resize: vertical;
}

body.testimonials-page .testimonial-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

body.testimonials-page .testimonial-success-popup {
    position: fixed;
    inset: 0;
    z-index: 1650;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 18, 31, 0.58);
    backdrop-filter: blur(8px);
}

body.testimonials-page .testimonial-success-popup.active {
    display: flex;
}

body.testimonials-page .testimonial-success-card {
    width: min(520px, 100%);
    padding: 34px 30px 30px;
    border-radius: 30px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbf8 100%);
    box-shadow: 0 34px 84px rgba(13, 34, 51, 0.24);
}

body.testimonials-page .testimonial-success-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f8f5f, #6fc59a);
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 16px 38px rgba(31, 143, 95, 0.28);
}

body.testimonials-page .testimonial-success-kicker {
    margin-bottom: 10px;
    color: #1f8f5f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.testimonials-page .testimonial-success-card h2 {
    margin-bottom: 12px;
    color: #15364b;
}

body.testimonials-page .testimonial-success-card p {
    color: #4c6474;
}

body.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
}

body.contact-page .contact-panel,
body.contact-page .contact-form-wrap {
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

body.contact-page .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 18px;
}

body.contact-page .contact-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
}

body.contact-page .contact-form {
    display: grid;
    gap: 16px;
}

body.contact-page .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

body.contact-page .form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d7dce2;
    border-radius: 12px;
}

body.contact-page textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

body.bookings-page .booking-workflow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

body.bookings-page .booking-workflow.booking-workflow-locked {
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

body.bookings-page .booking-access-shell {
    margin-bottom: 28px;
}

body.bookings-page .booking-access-panel,
body.bookings-page .booking-account-summary {
    padding: 26px 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(245, 249, 252, 0.98));
    border: 1px solid rgba(93, 173, 226, 0.14);
    box-shadow: 0 18px 42px rgba(22, 37, 51, 0.08);
}

body.bookings-page .booking-access-copy h2,
body.bookings-page .booking-account-summary h3 {
    margin-bottom: 10px;
}

body.bookings-page .booking-access-kicker {
    margin: 0 0 8px;
    color: #1f8f5f;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.bookings-page .booking-auth-tabs {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 22px 0 18px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(44, 62, 80, 0.06);
}

body.bookings-page .booking-auth-tab {
    padding: 11px 18px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #527082;
    font-weight: 700;
    cursor: pointer;
}

body.bookings-page .booking-auth-tab.is-active {
    background: linear-gradient(135deg, #2d7cb8, #5dbce0);
    color: #fff;
}

body.bookings-page .booking-auth-form {
    display: none;
}

body.bookings-page .booking-auth-form.is-active {
    display: block;
}

body.bookings-page .booking-auth-form .form-group + .form-group {
    margin-top: 16px;
}

body.bookings-page .booking-auth-feedback {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(214, 69, 69, 0.1);
    color: #a93024;
    font-weight: 600;
}

body.bookings-page .booking-auth-feedback[data-tone="success"] {
    background: rgba(31, 143, 95, 0.1);
    color: #176b47;
}

body.bookings-page .booking-auth-submit,
body.bookings-page .booking-account-logout {
    margin-top: 18px;
    max-width: 260px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

body.bookings-page .booking-access-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

body.bookings-page .booking-auth-submit.secondary-action {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.12), rgba(130, 224, 170, 0.2));
    color: var(--primary);
    box-shadow: none;
}

body.bookings-page .booking-panel {
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

body.bookings-page .booking-panel h3 {
    color: var(--primary);
}

body.bookings-page .form-group {
    margin-top: 18px;
}

body.bookings-page .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

body.bookings-page .form-group input,
body.bookings-page .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d8dbe1;
    border-radius: 12px;
}

body.bookings-page .booking-profile-note {
    margin: -4px 0 18px;
    color: #5b7180;
    font-size: 0.94rem;
}

body.bookings-page .calendar {
    padding: 20px;
    border-radius: 18px;
    background: var(--light);
    margin-top: 18px;
    transition: opacity 0.25s ease, filter 0.25s ease;
}

body.bookings-page .calendar.calendar-disabled {
    opacity: 0.45;
    filter: grayscale(0.18);
    pointer-events: none;
}

body.bookings-page .calendar-header,
body.bookings-page .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.bookings-page .calendar-header {
    margin-bottom: 16px;
}

body.bookings-page .calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 0.9rem;
}

body.bookings-page .legend-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
}

body.bookings-page .legend-dot.available {
    background: #2f9e44;
}

body.bookings-page .legend-dot.partial {
    background: #d97706;
}

body.bookings-page .legend-dot.full {
    background: #d64545;
}

body.bookings-page .calendar-btn {
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
}

body.bookings-page .calendar-weekdays,
body.bookings-page .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

body.bookings-page .weekday {
    padding: 8px 0;
    text-align: center;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
}

body.bookings-page .calendar-day {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-weight: 700;
}

body.bookings-page .calendar-day:hover:not(.other-month):not(.booked-full) {
    border-color: var(--primary);
}

body.bookings-page .calendar-day.other-month {
    background: #f0f2f5;
    color: #b5bec7;
    cursor: default;
}

body.bookings-page .calendar-day.available {
    background: #e8f7ed;
    color: #1e7a34;
}

body.bookings-page .calendar-day.partial {
    background: #fff1dc;
    color: #b26000;
}

body.bookings-page .calendar-day.full,
body.bookings-page .calendar-day.booked-full {
    background: #fadbd8;
    color: #c0392b;
    cursor: not-allowed;
}

body.bookings-page .calendar-day.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

body.bookings-page .calendar-day.selected-range:not(.selected) {
    background: rgba(93, 173, 226, 0.18);
    color: var(--primary);
    border-color: rgba(93, 173, 226, 0.28);
}

body.bookings-page .calendar-day.selected-start,
body.bookings-page .calendar-day.selected-end {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45) inset;
}

body.bookings-page .payment-options {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

body.bookings-page .booking-invoice {
    margin-top: 24px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdf8 0%, #f7fafc 100%);
    border: 1px solid rgba(93, 173, 226, 0.14);
}

body.bookings-page .booking-invoice .summary-row + .summary-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e5ebf0;
}

body.bookings-page .booking-invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

body.bookings-page .booking-invoice-header h3 {
    margin-bottom: 0;
}

body.bookings-page .invoice-vat-note {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(130, 224, 170, 0.2);
    color: #1d7f58;
    font-size: 0.8rem;
    font-weight: 700;
}

body.bookings-page .invoice-total-row {
    font-weight: 700;
}

body.bookings-page .invoice-total-row .summary-value {
    color: var(--primary);
    font-size: 1rem;
}

body.bookings-page .radio-option.selected {
    border-color: var(--primary);
    background: rgba(93, 173, 226, 0.08);
}

body.bookings-page .booking-summary {
    margin-top: 22px;
    padding: 20px;
    border-radius: 18px;
    background: var(--light);
}

body.bookings-page .booking-popup-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(10, 18, 32, 0.72);
    backdrop-filter: blur(5px);
    z-index: 2200;
}

body.bookings-page .booking-popup-overlay.active {
    display: flex;
}

body.bookings-page .booking-popup {
    position: relative;
    width: min(540px, 100%);
    padding: 32px 30px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(93, 173, 226, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 253, 250, 0.99));
    border: 1px solid rgba(47, 108, 85, 0.18);
    box-shadow: 0 28px 70px rgba(14, 27, 40, 0.22);
    text-align: center;
}

body.bookings-page .booking-popup.is-error {
    border-color: rgba(192, 57, 43, 0.22);
    background:
        radial-gradient(circle at top right, rgba(214, 69, 69, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 246, 0.99));
}

body.bookings-page .booking-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.08);
    color: var(--dark);
    font-size: 1.4rem;
    cursor: pointer;
}

body.bookings-page .booking-popup-kicker {
    margin: 0 0 8px;
    color: #1f8f5f;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.bookings-page .booking-popup.is-error .booking-popup-kicker {
    color: #b03a2e;
}

body.bookings-page .booking-popup h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 1.65rem;
}

body.bookings-page .booking-popup-reference {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(93, 173, 226, 0.12);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.05em;
}

body.bookings-page .booking-popup.is-error .booking-popup-reference {
    background: rgba(214, 69, 69, 0.1);
    color: #b03a2e;
}

body.bookings-page .booking-popup-message {
    margin: 0 0 22px;
    color: #47606f;
}

body.bookings-page .booking-popup-action {
    min-width: 160px;
}

body.bookings-page .booking-trust-panel {
    margin-top: 28px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(247, 250, 252, 0.96), rgba(255, 252, 247, 0.96));
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

body.bookings-page .booking-trust-panel h2 {
    margin-bottom: 12px;
}

body.bookings-page .booking-trust-steps {
    padding-left: 18px;
    color: #47606f;
}

body.bookings-page .booking-trust-steps li + li {
    margin-top: 10px;
}

body.bookings-page .booking-trust-links {
    display: grid;
    gap: 12px;
    align-content: start;
}

body.bookings-page .summary-row + .summary-row {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #dde3e8;
}

body.bookings-page .summary-value {
    color: var(--primary);
    font-weight: 700;
}

body.bookings-page .submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px 18px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #2d7cb8, #5dbce0);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

body.bookings-page .submit-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.35);
    box-shadow: none;
}

body.bookings-page .booking-payment-actions {
    display: grid;
    gap: 12px;
}

body.bookings-page .booking-payment-actions .submit-btn.is-selected {
    outline: 3px solid rgba(45, 124, 184, 0.2);
    box-shadow: 0 14px 30px rgba(45, 124, 184, 0.22);
}

body.bookings-page .booking-payment-actions .secondary-action {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.12), rgba(130, 224, 170, 0.22));
    color: var(--primary);
    border: 1px solid rgba(45, 124, 184, 0.22);
}

.booking-payment-title {
    margin-top: 26px;
}

@media (max-width: 992px) {
    body.about-page .about-layout {
        grid-template-columns: 1fr;
    }

    body.about-page .founder-image img {
        min-height: 320px;
    }
}

@media (max-width: 980px) {
    body.home-page .hero-grid,
    body.home-page .about-grid,
    body.home-page .gallery-layout,
    body.home-page .booking-flow-grid,
    body.home-page .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 900px) {
    body.about-page .about-actions {
        flex-direction: column;
    }

    body.about-page .about-actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.about-page .founder-copy {
        padding: 30px 24px;
    }

    body.contact-page .contact-grid,
    body.bookings-page .booking-workflow,
    body.bookings-page .booking-trust-panel {
        grid-template-columns: 1fr;
    }

    body.services-page .service-category-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body.home-page .home-gallery-top {
        padding-top: calc(var(--site-header-height, 104px) + 12px);
    }

    body.home-page .home-gallery-stage,
    body.home-page .home-gallery-figure img {
        min-height: min(56vh, 520px);
    }

    body.home-page .home-gallery-nav {
        width: 44px;
        height: 44px;
    }

    body.home-page .home-gallery-fullscreen {
        padding: 16px;
    }

    body.home-page .home-gallery-fullscreen-stage {
        width: 100%;
        height: min(100vh - 32px, 100%);
    }

    body.home-page .hero {
        min-height: auto;
        margin-top: var(--site-header-height, 104px);
        padding: 24px 0 64px;
    }

    body.home-page .hero.hero-after-gallery {
        margin-top: 20px;
        padding-top: 0;
    }

    body.home-page .hero-copy,
    body.home-page .booking-card,
    body.home-page .section-panel,
    body.home-page .contact-card,
    body.home-page .contact-form-wrap {
        padding: 24px;
    }

    body.home-page .hero-copy h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    body.home-page .hero-message-card {
        gap: 14px;
        padding: 20px;
        border-radius: 24px;
    }

    body.home-page .hero-message-card p,
    body.home-page .hero-copy p,
    body.home-page .scroll-note {
        font-size: 0.98rem;
    }

    body.home-page .hero-message-card .hero-message-lead {
        font-size: 1.06rem;
    }

    body.home-page .hero-actions,
    body.home-page .section-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.home-page .hero-actions .btn,
    body.home-page .section-actions .btn {
        width: 100%;
    }

    body.home-page .booking-grid {
        grid-template-columns: 1fr;
    }

    body.home-page .booking-step {
        gap: 12px;
    }

    body.home-page .modal {
        padding: 24px 20px;
    }

    body.services-page .service-category-pills {
        justify-content: center;
        gap: 8px;
    }

    body.services-page .service-category-pill {
        width: auto;
        justify-content: center;
        padding: 10px 16px;
        gap: 8px;
        font-weight: 600;
    }

    body.services-page .service-category-pill-image {
        width: 36px;
        height: 36px;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    body.home-page .home-gallery-panel {
        gap: 16px;
    }

    body.home-page .home-gallery-stage,
    body.home-page .home-gallery-figure img {
        min-height: 42vh;
    }

    body.home-page .home-gallery-nav {
        width: 40px;
        height: 40px;
    }

    body.home-page .home-gallery-fullscreen {
        padding: 10px;
    }

    body.home-page .home-gallery-fullscreen-close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }

    body.home-page .home-gallery-fullscreen-close-icon {
        font-size: 1.4rem;
    }

    body.home-page .home-gallery-fullscreen-nav {
        width: 42px;
        height: 42px;
    }

    body.home-page #homeGalleryFullscreenPrev {
        left: 10px;
    }

    body.home-page #homeGalleryFullscreenNext {
        right: 10px;
    }

    body.home-page .home-gallery-fullscreen-stage {
        height: min(100vh - 20px, 100%);
    }

    body.home-page .hero {
        margin-top: var(--site-header-height, 112px);
        padding-bottom: 48px;
    }

    body.home-page .hero.hero-after-gallery {
        margin-top: 16px;
    }

    body.home-page .hero-copy,
    body.home-page .booking-card,
    body.home-page .section-panel,
    body.home-page .contact-card,
    body.home-page .contact-form-wrap,
    body.home-page .service-card,
    body.home-page .testimonial-card,
    body.home-page .mini-card {
        padding: 20px;
        border-radius: 22px;
    }

    body.home-page .hero-kicker {
        width: 100%;
        justify-content: center;
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }

    body.home-page .hero-message-card {
        padding: 18px;
    }

    body.home-page .hero-message-card::before {
        width: 58px;
    }

    body.home-page .hero-copy h1 {
        font-size: 2rem;
        line-height: 1.02;
    }

    body.home-page .booking-card h2,
    body.home-page .section-panel h2,
    body.home-page .contact-card h3,
    body.home-page .contact-form-wrap h3 {
        font-size: 1.45rem;
    }

    body.home-page .booking-grid {
        gap: 12px;
    }

    body.home-page .about-grid,
    body.home-page .booking-flow-grid,
    body.home-page .contact-grid,
    body.home-page .services-grid,
    body.home-page .testimonials-grid {
        gap: 16px;
    }

    body.home-page .step-number {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
    }

    body.home-page .contact-item {
        gap: 12px;
    }

    body.home-page .contact-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    body.home-page .modal-overlay {
        padding: 12px;
    }

    body.home-page .modal {
        padding: 20px 16px;
        border-radius: 20px;
    }

    body.services-page .gallery-modal,
    body.testimonials-page .testimonial-modal {
        padding: 12px;
    }

    body.services-page .gallery-modal-hero {
        min-height: 0;
    }

    body.services-page .gallery-modal-nav {
        width: 42px;
        height: 42px;
    }

    body.services-page .gallery-modal-hero img {
        max-height: 42vh;
        min-height: 0;
    }

    body.services-page .gallery-modal-copy,
    body.testimonials-page .testimonial-modal-dialog {
        padding: 20px;
    }

    body.testimonials-page .testimonial-success-card {
        padding: 28px 22px 24px;
        border-radius: 24px;
    }

    body.testimonials-page .testimonial-success-icon {
        width: 64px;
        height: 64px;
    }

    body.testimonials-page .testimonials-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    body.testimonials-page .testimonial-form-actions .btn {
        width: 100%;
    }
}
