/********** Liberté – Modern Minimal Design **********/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

:root {
    --primary: #9A7B5B;
    --primary-hover: #7D6349;
    --light: #FAF8F4;
    --dark: #2C2C2C;
    --text: #3D3A36;
    --text-muted: #7A746C;
    --surface: #FFFFFF;
    --border: rgba(44, 44, 44, 0.08);
    --shadow-sm: 0 2px 12px rgba(44, 44, 44, 0.06);
    --shadow-md: 0 8px 32px rgba(44, 44, 44, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-body);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

body > .container-xxl.bg-white {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--surface) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 24px;
    bottom: 88px;
    z-index: 99;
    background: var(--dark) !important;
    border-color: var(--dark) !important;
    box-shadow: var(--shadow-md);
    transition: transform .3s ease, box-shadow .3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (min-width: 768px) {
    .back-to-top {
        right: 45px;
        bottom: 100px;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: var(--light) !important;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-brand {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    animation: spinnerPulse 1.2s ease-in-out infinite;
}

#spinner .spinner-border {
    color: var(--primary);
    border-right-color: transparent;
}

@keyframes spinnerPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: .85; }
}

body.page-loaded .container-xxl {
    animation: pageFadeIn .6s ease-out;
}

@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}


/*** Buttons ***/
.btn {
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all .3s ease;
    border-radius: 50px;
}

.btn.btn-primary {
    color: #FFFFFF;
    background: var(--dark);
    border-color: var(--dark);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn.btn-dark {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #fff;
}

.btn.btn-dark:hover {
    background: #fff;
    border-color: #fff;
    color: var(--dark);
}

.btn.btn-outline-primary {
    color: var(--dark);
    border-color: var(--dark);
}

.btn.btn-outline-primary:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }


/*** Section headings ***/
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .75rem;
}

.section-header h1,
.section-header h2 {
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.15;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.65;
    margin: 0;
}

h1, h2, h3, h4,
.h1, .h2, .h3, .h4,
.display-1, .display-2, .display-3,
.display-4, .display-5, .display-6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--dark);
}

h5, h6, .h5, .h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: var(--font-heading);
}


/*** Navbar ***/
.navbar {
    background: rgba(250, 248, 244, 0.92) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.navbar.scrolled,
.navbar.sticky-top.show {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar .navbar-nav .nav-link {
    padding: 1.5rem 1rem;
    color: var(--text);
    font-weight: 500;
    font-size: .92rem;
    letter-spacing: 0.02em;
    outline: none;
    position: relative;
}

.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 1.1rem;
    left: 1rem;
    right: 1rem;
    height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar.sticky-top {
    top: -100px;
    transition: .4s ease;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .3s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: .65rem 0;
    }

    .navbar .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .navbar-nav {
        margin-top: 12px;
        border-top: 1px solid var(--border);
        padding-top: 8px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        border-radius: var(--radius);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}


/*** Hero / Header ***/
.page-home #home::before,
.page-home #home::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.webp) center center repeat-x;
    pointer-events: none;
    z-index: 7;
}

.page-home #home::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.webp) center bottom repeat-x;
}

#home {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.header-carousel {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    z-index: 0;
}

.header-carousel-overlay {
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
    pointer-events: none;
}

.hero-overlay .container {
    pointer-events: auto;
}

.hero-overlay h1,
.hero-overlay p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-overlay h1 {
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-shadow:
        0 0 2px rgba(0, 0, 0, 0.95),
        0 1px 4px rgba(0, 0, 0, 0.9),
        0 3px 12px rgba(0, 0, 0, 0.65),
        0 0 30px rgba(0, 0, 0, 0.35);
}

.hero-overlay p {
    font-weight: 600;
    letter-spacing: 0.01em;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.95),
        0 1px 3px rgba(0, 0, 0, 0.85),
        0 2px 8px rgba(0, 0, 0, 0.55);
}

#home .header-carousel .owl-nav,
#home .header-carousel .owl-dots {
    z-index: 6;
}

.header-carousel .owl-stage-outer,
.header-carousel .owl-stage,
.header-carousel .owl-item {
    min-height: 100vh;
    height: 100vh;
}

.header-carousel .owl-stage-outer {
    position: relative;
    z-index: 1;
}

.page-home .header-carousel .owl-stage-outer {
    overflow: visible;
}

.header-carousel .owl-carousel-item {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    z-index: 0;
}

.header-carousel .owl-carousel-item > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 20px);
    object-fit: cover;
    display: block;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-overlay p {
        font-size: 16px !important;
    }

    .hero-overlay h1 {
        font-size: 30px;
        font-weight: 700;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0.45);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility cards – modern minimal ***/
.facility-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.facility-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(154, 123, 91, 0.2);
    color: inherit;
}

.facility-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    transition: background .3s ease, color .3s ease;
}

.facility-card:hover .facility-card-icon {
    background: var(--dark);
    color: #fff;
}

.facility-card h3 {
    font-size: 1.35rem;
    margin-bottom: .75rem;
    color: var(--dark);
}

.facility-card p {
    font-size: .92rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.facility-card-link {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--primary);
    transition: color .3s ease;
}

.facility-card:hover .facility-card-link {
    color: var(--dark);
}


/*** About ***/
.about-img .about-circle-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-lg) !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: var(--shadow-md);
}

.about-img img {
    transition: transform .4s ease, box-shadow .4s ease;
}

.about-img img:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(44, 44, 44, 0.12);
}


/*** Appointment ***/
.appointment-panel-img {
    object-fit: cover;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0 !important;
}

#appointment {
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

#appointment .form-control {
    background: var(--light);
    color: var(--text);
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    box-shadow: none;
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

#appointment .form-control::placeholder {
    color: transparent;
}

#appointment .form-floating > label {
    color: var(--text-muted);
}

#appointment .form-control:focus {
    background: var(--surface);
    border-color: rgba(154, 123, 91, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(154, 123, 91, 0.12);
    color: var(--text);
}

#appointment .form-floating > .form-control:focus ~ label,
#appointment .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary);
}


/*** Gallery ***/
.gallerySwiper .swiper-slide {
    width: auto;
    height: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallerySwiper {
    padding: 2rem 0 4rem 0;
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    color: var(--dark);
    background: var(--surface);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.gallerySwiper .swiper-button-next:after,
.gallerySwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.gallerySwiper .swiper-pagination-bullet {
    background: var(--dark);
    opacity: 0.25;
    width: 8px;
    height: 8px;
}

.gallerySwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

@media (max-width: 768px) {
    .gallery-item img { height: 250px; }
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev { width: 36px; height: 36px; }
    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after { font-size: 14px; }
}

@media (max-width: 576px) {
    .gallery-item img { height: 200px; }
    .gallerySwiper { padding: 1rem 0 3rem 0; }
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-item {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm);
}

.testimonial-item p {
    color: var(--text);
    line-height: 1.65;
    font-size: 1.15rem !important;
}

.testimonial-item h3 {
    font-size: 1.25rem;
}

.testimonial-item .text-muted {
    font-size: 1rem;
}

.testimonial-item > .d-flex.align-items-center {
    border-radius: 50px 0 0 50px !important;
    background: var(--light) !important;
}

.testimonial-item .testimonial-avatar {
    width: 72px;
    height: 72px;
    min-width: 72px;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-body);
    line-height: 1;
    background: var(--dark) !important;
    color: #ffffff !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 44px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 18px;
    transition: .3s ease;
    box-shadow: var(--shadow-sm);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}


/*** Scroll reveal ***/
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-img {
    opacity: 0;
    transform: scale(.97);
    transition: opacity .8s ease, transform .8s ease;
}

.scroll-reveal-img.is-visible {
    opacity: 1;
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal-img {
        opacity: 1;
        transform: none;
        transition: none;
    }
    body.page-loaded .container-xxl { animation: none; }
}


/*** Facilities section ***/
.facilities-section,
#facilities {
    background: var(--surface);
    position: relative;
    margin-top: -1px;
}

.facilities-header {
    max-width: 42rem;
    margin-bottom: 2.75rem;
}

.facilities-header h1 {
    font-size: clamp(1.9rem, 5vw, 2.5rem);
    line-height: 1.15;
}

.facilities-header h1::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 1rem auto 0;
    background: var(--primary);
}

.facilities-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-top: 1.15rem;
}

.facilities-grid {
    --bs-gutter-y: 1.25rem;
}

@media (max-width: 767.98px) {
    .facilities-section {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .facilities-header {
        margin-bottom: 2rem;
        text-align: left;
        max-width: none;
        padding: 0 .15rem;
    }

    .facilities-header h1::after {
        margin-left: 0;
        margin-right: auto;
    }

    .facilities-header p {
        font-size: 1rem;
    }

    .facility-card {
        padding: 1.5rem 1.35rem;
    }

    .facility-card h3 {
        font-size: 1.3rem;
        margin-bottom: .65rem;
    }

    .facility-card p {
        font-size: .95rem;
        line-height: 1.65;
        color: var(--text);
        margin-bottom: 1rem;
    }

    .facility-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

/*** Stats – light section ***/
.stats-section {
    position: relative;
    overflow: visible;
    z-index: 2;
    background: var(--light);
}

.stats-section::before,
.stats-section::after {
    display: none;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.stat-item .stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto .85rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--primary);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.1;
}

.stat-item .stat-number .stat-suffix {
    font-size: 1.35rem;
    color: var(--primary);
}

.stat-item .stat-label {
    color: var(--text-muted);
    font-weight: 500;
    margin-top: .4rem;
    font-size: .9rem;
}


/*** Instagram feed ***/
.instagram-feed-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    margin-bottom: 1.75rem;
}

.instagram-feed-header .ig-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    padding: 2px;
    background: var(--surface);
}

.instagram-feed-header .h5 {
    font-size: 1.35rem;
}

.instagram-feed-header .text-muted {
    font-size: 1rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
}

@media (min-width: 576px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: .65rem;
    }
}

@media (min-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.instagram-grid-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
    display: block;
}

.instagram-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.instagram-grid-item .ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    opacity: 0;
    transition: opacity .3s ease;
}

.instagram-grid-item:hover img {
    transform: scale(1.05);
}

.instagram-grid-item:hover .ig-overlay {
    opacity: 1;
}


/*** Homepage photo slider ***/
.home-gallery-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border);
}

.home-gallery-slider .swiper-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 0;
}

.home-gallery-slider .swiper-button-next,
.home-gallery-slider .swiper-button-prev {
    color: var(--dark);
    background: var(--surface);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.home-gallery-slider .swiper-button-next:after,
.home-gallery-slider .swiper-button-prev:after {
    font-size: 14px;
    font-weight: 700;
}

.home-gallery-slider .swiper-button-next:hover,
.home-gallery-slider .swiper-button-prev:hover {
    background: var(--dark);
    color: #fff;
}

.home-gallery-slider .swiper-pagination-bullet-active {
    background: var(--primary);
}

@media (max-width: 768px) {
    .home-gallery-slider .swiper-slide img {
        height: 260px;
    }
}


/*** Why Liberté section ***/
.why-liberte-section {
    background: var(--surface);
}

.why-liberte-content {
    max-width: 42rem;
}

.why-liberte-intro h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 5.2vw, 3.1rem);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.why-liberte-intro h1::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 1.15rem;
    background: var(--primary);
}

.why-liberte-intro p {
    margin-top: 1.25rem;
    font-size: 1.28rem;
    line-height: 1.7;
    color: var(--text);
}

.why-liberte-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2.25rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

@media (min-width: 576px) {
    .why-liberte-list {
        grid-template-columns: 1fr 1fr;
    }
    .why-liberte-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

.why-liberte-card {
    background: var(--surface);
    padding: 1.35rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    border-bottom: 1px solid var(--border);
    transition: background .2s ease, box-shadow .2s ease;
    text-decoration: none;
    color: inherit;
}

.why-liberte-card:hover {
    background: var(--light);
    color: inherit;
}

.why-liberte-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
    z-index: 1;
}

.why-liberte-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: var(--primary);
    font-size: 1.2rem;
    transition: background .2s ease, color .2s ease;
}

.why-liberte-card:hover .why-liberte-icon {
    background: var(--dark);
    color: #fff;
}

.why-liberte-text {
    font-weight: 500;
    color: var(--text);
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.5;
}

.why-liberte-text strong {
    font-weight: 600;
    color: var(--dark);
    transition: color .2s ease;
}

.why-liberte-card:hover .why-liberte-text strong {
    color: var(--primary);
}


/*** Contact cards ***/
.contact-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-info-card h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
    color: var(--dark);
}

.contact-info-card p,
.contact-info-card a {
    margin: 0;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.05rem;
}

#contact #appointment h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

#contact .text-muted.small {
    font-size: 1rem;
}

@media (max-width: 576px) {
    #galerija-pregled .section-header h1,
    #testimonials .section-header h1,
    #instagram .section-header h1,
    #contact .section-header h1 {
        font-size: clamp(2.15rem, 7vw, 2.75rem);
    }

    #galerija-pregled .section-header p,
    #testimonials .section-header p,
    #instagram .section-header p,
    #contact .section-header p {
        font-size: 1.2rem;
    }
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-reserve-btn {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    letter-spacing: 0.02em;
}


/*** Visit CTA box ***/
.visit-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 3.25rem 2rem;
    text-align: center;
    border: 1px solid rgba(154, 123, 91, 0.18);
    box-shadow: var(--shadow-md);
}

.visit-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.visit-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 248, 244, 0.96) 0%, rgba(250, 248, 244, 0.9) 50%, rgba(154, 123, 91, 0.1) 100%);
    z-index: 1;
}

.visit-cta > *:not(.visit-cta-bg):not(.visit-cta-overlay) {
    position: relative;
    z-index: 2;
}

.visit-cta h2 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.visit-cta h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 1rem auto 0;
    background: var(--primary);
}

.visit-cta p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.visit-cta .btn-outline-primary {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
}

.visit-cta .btn-outline-primary:hover {
    background: var(--dark);
}


/*** Footer – refined light ***/
.footer-enhanced {
    background: var(--dark) !important;
    margin-top: auto;
    margin-bottom: 0 !important;
    flex-shrink: 0;
}

.footer-brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-cta-bar {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-cta-bar .btn.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-cta-bar .btn.btn-primary:hover,
.footer-cta-bar .btn.btn-primary:focus {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: .92rem;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: .8rem;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: .5px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer .copyright {
    padding: 25px 0;
    font-size: .88rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, 0.45);
}

.footer .copyright a {
    color: rgba(255, 255, 255, 0.7);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    font-size: .88rem;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .text-primary {
    color: var(--primary) !important;
}


/*** Section backgrounds ***/
.section-light {
    background: var(--light);
}

.bg-light {
    background-color: var(--surface) !important;
}

section.py-5,
.container-xxl.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}


/*** Utility image classes ***/
.img-cover {
    object-fit: cover;
}

.cover-img-wrap {
    min-height: 360px;
}

@media (min-width: 992px) {
    .cover-img-wrap-lg {
        min-height: 420px;
    }
}


/*** Brand logo ***/
.navbar-brand-logo {
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.navbar-brand-text {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--dark);
    line-height: 1;
}


/*** Full width on widest screens ***/
@media (min-width: 1400px) {
    .container-xxl {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .navbar {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .container-xxl > .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/*** Fade-in scroll (auto-tagged by main.js) ***/
.fade-in-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/*** Subpage shared cards ***/
.about-section-card,
.ik-section-card,
.ponuda-card,
.zakup-includes-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-section-label,
.ik-section-label {
    color: var(--primary);
}

.about-section-label i,
.ik-section-label i {
    background: rgba(154, 123, 91, 0.12);
}

.about-section-block:nth-child(even),
.ik-section-block:nth-child(even),
.ponuda-section-block:nth-child(even) {
    background: var(--light);
}

.ik-intro-banner .ik-intro-icon {
    background: var(--dark);
}

.ik-quote {
    border-left-color: var(--primary);
}

.digital-menu-nav {
    background: var(--dark) !important;
}

.digital-menu-nav .nav-link.active,
.digital-menu-nav .nav-link.active:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 14px rgba(154, 123, 91, 0.3) !important;
}

.menu-category-title {
    border-bottom-color: rgba(154, 123, 91, 0.2) !important;
}

.menu-category-title i {
    background: rgba(154, 123, 91, 0.12);
    color: var(--primary);
}

/* Contact form honeypot + status */
.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.form-status {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--light);
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.form-status[hidden] {
    display: none !important;
}

.form-status.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.form-status__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
}

.form-status--success {
    background: rgba(154, 123, 91, 0.1);
    border-color: rgba(154, 123, 91, 0.35);
    color: var(--primary-hover);
}

.form-status--success .form-status__icon {
    background: rgba(154, 123, 91, 0.18);
    color: var(--primary);
}

.form-status--error {
    background: #fff5f5;
    border-color: rgba(185, 28, 28, 0.22);
    color: #991b1b;
}

.form-status--error .form-status__icon {
    background: rgba(185, 28, 28, 0.12);
    color: #b91c1c;
}

#contactForm button[type="submit"]:disabled {
    opacity: 0.65;
    pointer-events: none;
}
