/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Belleza-Regular';
    src: url('/fonts/Belleza-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.Belleza-Regular {
    font-family: 'Belleza-Regular';
  
}

/* @font-face {
    font-family: 'GreatVibes-Regular';
    src: url('/fonts/GreatVibes-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */
/* .greatvibes {
    font-family: 'Kugile_Demo';
  
} */
/* .greatvibes1 {
    font-family: 'GreatVibes-Regular';
  
} */
.title-main {
    font-family: CinzelDecorative-Black;  
    letter-spacing: 2px;
    font-size: 30px !important;
    font-weight: bolder !important;
}
/* =========================
   ROOT / DESIGN SYSTEM
========================= */
:root {

    --brand-bg-main: 
    linear-gradient(
        135deg,
        #0f3d33 0%,
        #145c4a 35%,
        #1a7a63 70%,
        #0c2e27 100%
    );

    --brand-bg-soft: 
    linear-gradient(
        135deg,
        #0f3d33 0%,
        #145c4a 35%,
        #1a7a63 70%,
        #0c2e27 100%
    );

    --brand-wave: #145c4a;

    /* TEXT */
    --brand-title: #bf963d;  
    --brand-text: #cfe8e1;

    /* ACCENT (gold + emerald mix) */
    --brand-accent: #c6a46a;  
    --brand-white: #ffffff;

    /* GLASS / OVERLAY */
    --brand-glass: rgba(26, 122, 99, 0.15);

    /* SHADOW */
    --brand-shadow: 0 12px 30px rgba(0,0,0,0.35);

    /* FONT SIZE */
    --fs-section-title: clamp(2rem, 4vw, 3.5rem);
    --fs-section-subtitle: clamp(1.35rem, 2vw, 2rem);
    --fs-body: 1.08rem;
    --fs-card-title: 1.15rem;
    --fs-card-text: 1.02rem;
    --fs-nav: 14px;
    --fs-btn: 14px;

    /* LINE HEIGHT */
    --lh-title: 1.1;
    --lh-subtitle: 1.3;
    --lh-body: 1.75;
    --lh-card: 1.6;
}

/* =========================
   GLOBAL
========================= */
body {
    padding-top: 90px;
    color: var(--brand-text);
    background:

        linear-gradient(rgba(255,255,255,0.02), rgba(0,0,0,0.05)),

        repeating-linear-gradient(

            0deg,

            rgba(255,255,255,0.03) 0px,

            rgba(255,255,255,0.03) 1px,

            transparent 1px,

            transparent 3px

        ),

        var(--brand-bg-main);
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   NAVBAR
========================= */
.nav-blanc-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:100px;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-blanc-wrap.nav-top-x {
    background: rgba(159, 216, 204, 0.94) !important;
    backdrop-filter: blur(4px);
}

.nav-blanc-wrap.nav-scroll-x {
    background: rgba(159, 216, 204, 0.96) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--brand-shadow);
}

.nav-blanc-inner {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 20px 12px;
    min-height: 92px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* LEFT */
.nav-social-blanc {
    position: relative;
    z-index: 3;
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
}

.icon-blanc {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--brand-title);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--brand-title);
    transition: 0.3s;
}

.icon-blanc:hover {
    background: var(--brand-title);
    color: var(--brand-white);
}

/* RIGHT */
.nav-action-blanc {
    position: relative;
    z-index: 3;
    flex: 0 0 160px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 4px;
}

.btn-nav-blanc {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--brand-title);
    text-decoration: none;
    font-size: var(--fs-btn);
    color: var(--brand-title);
    transition: 0.3s;
    white-space: nowrap;
}

.btn-nav-blanc:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--brand-title);
}

/* CENTER AREA */
.nav-center-blanc {
    position: absolute;
    left: 180px;
    right: 180px;
    top: 0;
    text-align: center;
    z-index: 2;
}

/* LOGO */
.logo-blanc {
    display: flex;
    justify-content: center;
    margin-top: 2px;
    margin-bottom: 8px;
}

.logo-blanc a {
    display: inline-block;
}

.logo-blanc img {
    display: block;
    height: 60px;
    width: auto;
    margin: 0 auto;
}

/* MENU */
.menu-blanc {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.menu-blanc li {
    list-style: none;
    white-space: nowrap;
    flex: 0 0 auto;
}

.menu-blanc a {
    display: inline-block;
    text-decoration: none;
    color: var(--brand-title);
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.25px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 2px 0;
}

.menu-blanc a:hover {
    color: var(--brand-accent);
}

.nav-current-blanc {
    color: var(--brand-accent) !important;
}

/* TOGGLE */
.nav-toggle-blanc {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--brand-title);
    position: relative;
    z-index: 4;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-blanc-inner {
        min-height: 72px;
        padding: 10px 16px;
        align-items: center;
    }

    .nav-social-blanc,
    .nav-action-blanc {
        display: none;
    }

    .nav-center-blanc {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        flex: 0 0 auto;
        text-align: left;
    }

    .logo-blanc {
        margin: 0;
        justify-content: flex-start;
    }

    .logo-blanc img {
        height: 70px;
    }

    .menu-blanc {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 20px 0;
        background: var(--brand-bg-soft);
        display: none;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    }

    .menu-blanc.active {
        display: flex;
    }

    .menu-blanc a {
        font-size: 14px;
    }

    .nav-toggle-blanc {
        display: block;
        margin-left: auto;
    }
}
/* =========================
   HERO SLIDER
   - Supports old slide/image mode
   - Supports new single-video + rotating text mode
========================= */

.hero-slogan-x {
    font-size: 1.5rem;
 color:var(--brand-text);
    margin-top: 6px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-style: italic;
}
.hero-slider-x {
    position: relative;
    height: 65vh;
    min-height: 520px;
    overflow: hidden;
}

.hero-track-x {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-text-slide-single {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}
/* =========================================
   OLD MODE: MULTIPLE SLIDES (IMAGE OR VIDEO)
========================================= */
.hero-slide-x {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeSlideX 18s infinite;
}

.hero-slide-x:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide-x:nth-child(2) {
    animation-delay: 6s;
}

.hero-slide-x:nth-child(3) {
    animation-delay: 12s;
}

/* @keyframes fadeSlideX {
    0% { opacity: 0; }
    5% { opacity: 1; }
    30% { opacity: 1; }
    35% { opacity: 0; }
    100% { opacity: 0; }
} */

/* old image background */
.hero-bg-x {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomX 18s linear infinite;
    z-index: 1;
}

.hero-bg-x.mobile {
    display: none;
}

/* @keyframes zoomX {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
} */

/* old per-slide video support */
.hero-slide-x video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.single-slide-only {
    opacity: 1 !important;
    animation: none !important;
}

.hero-logo-x {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 12px; */
}

.hero-logo-x img {
    height:200px;
    width: auto;
    object-fit: contain;
    display: block;
}
/* =========================================
   SHARED OVERLAY / CARD
========================================= */
.hero-overlay-x {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-card-x {
    position: relative;
    z-index: 3;
    background: var(--brand-glass);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);
    padding: 36px 32px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    color: var(--brand-text);
    animation: fadeUpX 1s ease;
    box-shadow: var(--brand-shadow);
}

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

.hero-title-x {
    margin: 0;
    color: var(--primary);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-sub-x {
    margin-top: 14px;
    color: var(--brand-text);
    font-size: var(--fs-section-subtitle);
    line-height: var(--lh-subtitle);
    font-weight: 500;
}

.hero-info-x {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 0.98rem;
    color: var(--brand-text);
    flex-wrap: wrap;
}

.hero-info-block-x {
    min-width: 180px;
}

.hero-info-x h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    color: var(--brand-text);
    font-weight: 600;
}

.hero-info-x p {
    margin: 0;
    line-height: 1.6;
    color: var(--brand-text);
}

.hero-info-link-x {
    color: var(--brand-text);
    text-decoration: none;
}

.hero-info-link-x:hover {
    color: var(--brand-accent);
}

.hero-hours-x p {
    margin: 0;
    line-height: 1.6;
    font-size: inherit;
    color: inherit;
}

/* =========================================
   NEW MODE: SINGLE VIDEO + ROTATING TEXT
   Use when you want 1 background video only
========================================= */
.hero-single-video-x {
    position: relative;
    width: 100%;
    height: 100%;
    isolation: isolate;
    background: var(--brand-bg-main);
}

.hero-single-video-x::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(159, 216, 204, 0.68), rgba(242, 251, 248, 0.38), rgba(159, 216, 204, 0.58));
    content: "";
    pointer-events: none;
}

.hero-video-single-x {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    z-index: 0;
}
/* .hero-single-video-x::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        135deg,
        rgba(230, 211, 179, 0.6),
        rgba(214, 185, 135, 0.45),
        rgba(245, 232, 210, 0.5)
    );

    pointer-events: none;
} */
.hero-video-single-x.desktop {
    display: block;
}

.hero-video-single-x.mobile {
    display: none;
}

.hero-text-slider-x {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-text-slide-x {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    padding: 20px;
    animation: heroTextFadeX 18s infinite;
}

.hero-text-slide-x:nth-child(1) {
    animation-delay: 0s;
}

.hero-text-slide-x:nth-child(2) {
    animation-delay: 6s;
}

.hero-text-slide-x:nth-child(3) {
    animation-delay: 12s;
}

@keyframes heroTextFadeX {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    5% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    30% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    35% {
        opacity: 0;
        transform: translateY(-10px) scale(1.01);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) scale(1.01);
    }
}

/* =========================================
   OLD SPECIAL VIDEO SLIDE SUPPORT
   Keep this so your previous inline-video slide still works
========================================= */
.hero-video-mobile-inline {
    display: none;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
    .hero-slider-x {
        height: 78vh;
        min-height: 620px;
    }

    /* old image mode */
    .hero-bg-x.desktop {
        display: none;
    }

    .hero-bg-x.mobile {
        display: block;
    }

    /* old special inline video slide */
    .hero-slide-x video:first-of-type {
        display: none !important;
    }

    .hero-video-mobile-inline {
        display: block !important;
    }

    /* new single-video mode */
    .hero-video-single-x.desktop {
        display: none;
    }

    .hero-video-single-x.mobile {
        display: block;
    }

    .hero-card-x {
        padding: 26px 18px;
        width: 94%;
    }

    .hero-title-x {
        font-size: 2.2rem;
    }

    .hero-sub-x {
        font-size: 1rem;
    }

    .hero-info-x {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
    }

    .hero-info-block-x {
        min-width: 0;
        width: 100%;
    }
}
/* =========================
   PROMOTIONS
========================= */
.promotions {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(5rem, 9vw, 8rem) 24px;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.9), transparent 30%),
        radial-gradient(circle at 88% 85%, rgba(99, 183, 165, 0.22), transparent 34%),
        linear-gradient(138deg, #f7fcfa 0%, #e2f5f0 48%, #cbeae3 100%);
    color: var(--brand-title);
}

.promotions::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        radial-gradient(ellipse 34px 19px at 50% 0%, transparent 0 82%, rgba(18, 55, 44, 0.16) 84% 89%, transparent 92%),
        radial-gradient(ellipse 19px 34px at 100% 50%, transparent 0 82%, rgba(18, 55, 44, 0.16) 84% 89%, transparent 92%),
        radial-gradient(ellipse 34px 19px at 50% 100%, transparent 0 82%, rgba(18, 55, 44, 0.16) 84% 89%, transparent 92%),
        radial-gradient(ellipse 19px 34px at 0% 50%, transparent 0 82%, rgba(18, 55, 44, 0.16) 84% 89%, transparent 92%);
    background-size: 124px 124px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.72;
    -webkit-mask-image: linear-gradient(90deg, #000, rgba(0,0,0,0.4) 46%, transparent 82%);
    mask-image: linear-gradient(90deg, #000, rgba(0,0,0,0.4) 46%, transparent 82%);
}

.promotions::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: clamp(-170px, -10vw, -90px);
    top: 50%;
    width: clamp(340px, 38vw, 580px);
    aspect-ratio: 1;
    transform: translateY(-50%) rotate(18deg);
    border: 1px solid rgba(18, 55, 44, 0.1);
    border-radius: 46% 54% 42% 58%;
    background:
        radial-gradient(ellipse at 36% 30%, rgba(255,255,255,0.58), transparent 35%),
        repeating-radial-gradient(circle at 50% 50%, transparent 0 42px, rgba(18,55,44,0.055) 43px 44px);
    box-shadow:
        inset 0 0 0 38px rgba(255,255,255,0.08),
        inset 0 0 0 39px rgba(18,55,44,0.055);
    opacity: 0.8;
}

.promotions[hidden] {
    display: none !important;
}

.promotion-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.promotion-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(18, 55, 44, 0.2);
}

.promotion-eyebrow {
    margin: 0 0 0.4rem;
    color: var(--brand-text);
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.promotions h2 {
    margin: 0;
    color: var(--brand-title) !important;
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: -0.035em;
    font-weight: 400;
}

.promotion-list {
    display: grid;
    gap: 20px;
    margin-inline: auto;
}

.promotion-list.is-grid {
    justify-content: center;
}

.promotion-list.has-2-items {
    width: min(880px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promotion-list.has-3-items {
    width: min(1180px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promotion-card {
    position: relative;
    isolation: isolate;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: clamp(1.7rem, 3vw, 2.25rem);
    border: 1px solid rgba(18, 55, 44, 0.18);
    border-radius: 16px;
    background:
        radial-gradient(ellipse 190px 145px at 100% 0%, rgba(159, 216, 204, 0.66) 0 61%, transparent 62%),
        radial-gradient(circle at 88% 19%, transparent 0 70px, rgba(18, 55, 44, 0.08) 71px 72px, transparent 73px),
        linear-gradient(148deg, rgba(255, 255, 255, 0.98), rgba(236, 249, 245, 0.9));
    box-shadow:
        0 18px 44px rgba(63, 114, 104, 0.11),
        inset 0 1px 0 rgba(255,255,255,0.82);
    transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms ease;
}

.promotion-list.is-grid .promotion-card:nth-child(even) {
    background:
        radial-gradient(ellipse 210px 125px at 100% 38%, rgba(255, 255, 255, 0.7) 0 55%, transparent 56%),
        radial-gradient(ellipse 185px 150px at 0% 100%, rgba(99, 183, 165, 0.2) 0 58%, transparent 59%),
        linear-gradient(142deg, rgba(207, 237, 230, 0.98), rgba(245, 252, 250, 0.94));
}

.promotion-list.is-grid .promotion-card:nth-child(3n) {
    background:
        radial-gradient(circle at 18% 8%, rgba(255,255,255,0.88) 0 52px, transparent 53px),
        radial-gradient(circle at 18% 8%, transparent 0 78px, rgba(18,55,44,0.08) 79px 80px, transparent 81px),
        linear-gradient(150deg, rgba(236, 249, 245, 0.98), rgba(178, 224, 214, 0.82));
}

.promotion-list.is-grid .promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(63, 114, 104, 0.17);
}

.promotion-card-featured {
    min-height: 380px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    align-items: end;
    gap: clamp(2rem, 8vw, 7rem);
    padding: clamp(2rem, 5vw, 4.5rem);
    background:
        radial-gradient(ellipse 360px 290px at 100% 0%, rgba(159, 216, 204, 0.42) 0 57%, transparent 58%),
        radial-gradient(circle at 88% 18%, transparent 0 105px, rgba(255,255,255,0.12) 106px 107px, transparent 108px),
        radial-gradient(circle at 12% 112%, rgba(99, 183, 165, 0.27), transparent 34%),
        linear-gradient(122deg, #102f27 0%, #16493b 52%, #276f5d 100%);
    color: var(--brand-white);
    box-shadow:
        0 24px 58px rgba(18,55,44,0.2),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.promotion-card-glow {
    position: absolute;
    z-index: -1;
    top: -38%;
    right: -24%;
    width: 300px;
    aspect-ratio: 1;
    border-radius: 44% 56% 38% 62%;
    background:
        radial-gradient(circle at 38% 35%, rgba(255,255,255,0.28), transparent 30%),
        rgba(99, 183, 165, 0.2);
    transform: rotate(22deg);
}

.promotion-offer-badge {
    position: relative;
    width: 88px;
    aspect-ratio: 1;
    overflow: hidden;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.2rem;
    margin: 0 0 1.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 28%, rgba(99, 183, 165, 0.92), transparent 38%),
        var(--brand-title);
    color: var(--brand-white);
    box-shadow:
        0 12px 28px rgba(18, 55, 44, 0.24),
        inset 0 0 0 5px rgba(255,255,255,0.07);
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    animation: promotion-soft-pulse 3.2s ease-in-out infinite;
}

.promotion-offer-badge strong {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.promotion-offer-badge small {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.74) !important;
    font-size: 0.58rem !important;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
}

.promotion-card-featured .promotion-offer-badge {
    width: 112px;
    margin-bottom: 1.75rem;
    background:
        radial-gradient(circle at 34% 28%, rgba(255,255,255,0.48), transparent 38%),
        var(--brand-bg-main);
    color: var(--brand-title);
    box-shadow: 0 18px 38px rgba(6, 28, 22, 0.32);
}

.promotion-card-featured .promotion-offer-badge strong {
    font-size: 1.7rem;
}

.promotion-card-featured .promotion-offer-badge small {
    color: rgba(18,55,44,0.68) !important;
    font-size: 0.66rem !important;
}

.promotion-offer-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-140%);
    background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,0.45), transparent 75%);
    animation: promotion-light-sweep 4.8s ease-in-out infinite;
}

.promotion-card h3 {
    max-width: 17ch;
    margin: 0;
    color: var(--brand-title);
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.promotion-card-featured h3 {
    max-width: 16ch;
    color: var(--brand-white);
    font-size: clamp(2.25rem, 5vw, 4.9rem);
}

.promotion-description {
    max-width: 58ch;
    margin: 1.1rem 0 0;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.65;
}

.promotion-card-featured .promotion-description {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.06rem;
}

.promotion-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-top: 1.6rem;
    color: var(--brand-text);
    font: 500 0.72rem/1.4 "Montserrat", sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.promotion-card-featured .promotion-meta {
    color: rgba(255, 255, 255, 0.65);
}

.promotion-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(18, 55, 44, 0.14);
}

.promotion-card-featured .promotion-card-footer {
    align-self: end;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}

.promotion-availability {
    max-width: 9rem;
    color: rgba(18, 55, 44, 0.58);
    font: 600 0.66rem/1.35 "Montserrat", sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.promotion-card-featured .promotion-availability {
    display: none;
}

.promotion-book {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0.45rem 0.45rem 0.45rem 1.4rem;
    border-radius: 999px;
    background: var(--brand-title);
    color: var(--brand-white) !important;
    font: 700 0.76rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 180ms ease, background-color 180ms ease;
}

.promotion-card-featured .promotion-book {
    align-self: end;
    margin: 0;
    background: var(--brand-white);
    color: var(--brand-title) !important;
}

.promotion-book:hover {
    transform: translateY(-2px);
}

.promotion-book:active {
    transform: translateY(1px) scale(0.98);
}

.promotion-book-arrow {
    display: grid;
    width: 42px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-accent);
    color: var(--brand-title);
    font-size: 1rem;
}

@keyframes promotion-soft-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.035); }
}

@keyframes promotion-light-sweep {
    0%, 55% { transform: translateX(-140%); }
    80%, 100% { transform: translateX(140%); }
}

@media (max-width: 991px) {
    .promotion-list.has-3-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(880px, 100%);
    }
}

@media (max-width: 767px) {
    .promotions {
        padding: 4.5rem 16px;
    }

    .promotions::before {
        background-size: 86px 86px;
        opacity: 0.34;
        -webkit-mask-image: linear-gradient(180deg, #000, rgba(0,0,0,0.35) 56%, transparent 92%);
        mask-image: linear-gradient(180deg, #000, rgba(0,0,0,0.35) 56%, transparent 92%);
    }

    .promotions::after {
        top: 18%;
        right: -210px;
        width: 390px;
        opacity: 0.55;
    }

    .promotion-heading {
        display: block;
    }

    .promotion-list.has-2-items,
    .promotion-list.has-3-items {
        grid-template-columns: 1fr;
        width: min(420px, 100%);
    }

    .promotion-card,
    .promotion-card-featured {
        min-height: 0;
        display: flex;
        padding: 1.5rem;
    }

    .promotion-card-featured h3 {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .promotion-card-featured .promotion-book {
        align-self: flex-start;
        margin-top: 2rem;
    }

    .promotion-card-footer {
        align-items: flex-end;
    }
}

/* Floating Call / Book actions remain visible on desktop and mobile. */
body .floating-button {
    z-index: 20;
    width: auto;
    max-width: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0;
    pointer-events: none;
}

body .floating-button > div {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 0;
}

body .floating-button .btn-call-us,
body .floating-button .btn-book-now {
    min-width: 142px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.75rem 1.2rem !important;
    border: 1px solid rgba(255,255,255,0.72) !important;
    border-radius: 999px !important;
    background: rgba(18,55,44,0.94) !important;
    color: white !important;
    box-shadow: 0 12px 30px rgba(18,55,44,0.22) !important;
    backdrop-filter: blur(12px);
    font: 700 0.72rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.055em;
    transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

body .floating-button .btn-book-now {
    background: rgba(99,183,165,0.96) !important;
}

body .floating-button .btn-call-us:hover,
body .floating-button .btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(18,55,44,0.28) !important;
}

body .floating-button .btn-call-us:active,
body .floating-button .btn-book-now:active {
    transform: translateY(-1px) scale(0.98);
}

@media (min-width: 768px) {
    body .floating-button {
        right: 24px;
        bottom: 24px;
        left: auto;
        flex-direction: column;
        transform: none;
    }
}

@media (max-width: 767px) {
    body .floating-button {
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
        left: 14px;
        transform: none;
    }

    body .floating-button > div {
        flex: 1 1 50%;
    }

    body .floating-button .btn-call-us,
    body .floating-button .btn-book-now {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        padding-inline: 0.8rem !important;
    }
}

/* Legal pages — calm editorial treatment aligned with the Ivy brand. */
.ivy-legal-body {
    background:
        radial-gradient(circle at 8% 20%, rgba(159,216,204,0.23), transparent 25rem),
        var(--brand-bg-soft);
    color: var(--brand-text);
}

.ivy-legal-hero .blanc-gallery-page-hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
}

.ivy-legal-hero .blanc-gallery-page-badge {
    position: absolute;
    margin: 0;
}

.ivy-legal-body .page {
    overflow: clip;
}

.ivy-legal-hero {
    min-height: clamp(360px, 48vw, 560px);
    isolation: isolate;
}

.ivy-legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(18,55,44,0.78), rgba(18,55,44,0.25) 65%),
        linear-gradient(180deg, rgba(18,55,44,0.08), rgba(18,55,44,0.52));
}

.ivy-legal-hero .blanc-gallery-page-hero-media img {
    filter: saturate(0.78);
}

.ivy-legal-hero .blanc-gallery-page-badge {
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    inset: auto auto clamp(3rem, 7vw, 6.2rem) 50%;
    transform: translateX(-50%);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

.ivy-legal-hero .blanc-gallery-page-badge p {
    margin: 0 0 0.85rem;
    color: var(--brand-bg-main);
    font: 700 0.72rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ivy-legal-hero .blanc-gallery-page-title {
    max-width: 12ch;
    margin: 0;
    color: white;
    font: 400 clamp(3.3rem, 7vw, 7.5rem)/0.94 "Playfair Display", Georgia, serif;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.ivy-legal-main {
    position: relative;
    padding: clamp(4rem, 8vw, 7.5rem) 24px clamp(5rem, 9vw, 8rem);
    background: transparent !important;
}

.ivy-legal-main > .container {
    width: min(1120px, 100%);
}

.ivy-legal-main .row,
.ivy-legal-main .container,
.ivy-legal-main .text-center {
    margin-left: auto;
    margin-right: auto;
}

.ivy-legal-main .ivy-legal-kicker {
    margin: 0 0 1rem;
    color: var(--brand-accent);
    font: 700 0.7rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.17em;
    text-align: center;
    text-transform: uppercase;
}

.ivy-legal-main .styling-header1,
.ivy-legal-main .salon-policy .blanc-gallery-page-title {
    max-width: 14ch;
    margin: 0 auto 1.3rem !important;
    color: var(--brand-title);
    font: 400 clamp(2.5rem, 5vw, 4.8rem)/1.02 "Playfair Display", Georgia, serif;
    letter-spacing: -0.04em;
    text-transform: none;
    text-wrap: balance;
}

.ivy-legal-main .divider-lg {
    width: 64px;
    height: 2px;
    margin: 1.5rem auto 2.4rem;
    background: var(--brand-accent);
}

.ivy-legal-main .salon-policy {
    padding: 0 !important;
    background: transparent !important;
    color: var(--brand-text);
    font-family: "Montserrat", sans-serif !important;
}

.ivy-legal-main .salon-policy .aboutv2-content > p {
    max-width: 68ch;
    margin-inline: auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.ivy-legal-main .policy-grid {
    gap: 1.2rem !important;
    margin-top: 3.2rem;
    text-align: left;
}

.ivy-legal-main .policy-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ivy-legal-main .policy-item {
    position: relative;
    margin: 0 !important;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    overflow: hidden;
    border: 1px solid rgba(99,183,165,0.22);
    border-radius: 8px 34px 8px 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(242,251,248,0.84));
    box-shadow: 0 18px 48px rgba(63,114,104,0.09);
}

.ivy-legal-main .policy-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 84px;
    height: 84px;
    border-radius: 0 0 0 100%;
    background: rgba(159,216,204,0.28);
}

.ivy-legal-main .policy-item h4 {
    display: block !important;
    margin: 0 0 1rem !important;
    padding: 0 3rem 0 0 !important;
    border: 0 !important;
    color: var(--brand-title);
    font: 500 clamp(1.25rem, 2vw, 1.55rem)/1.25 "Playfair Display", Georgia, serif !important;
    letter-spacing: -0.015em;
    text-transform: none !important;
}

.ivy-legal-main ul {
    display: grid;
    gap: 0.65rem;
    margin: 0 !important;
    padding-left: 1.15rem !important;
}

.ivy-legal-main li,
.ivy-legal-main p {
    color: var(--brand-text);
    line-height: 1.75;
}

.ivy-legal-main li::marker {
    color: var(--brand-accent);
}

.ivy-legal-main .online-booking {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    background: var(--brand-title) !important;
    color: white !important;
    font: 700 0.74rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ivy-legal-main .phone {
    color: var(--brand-title) !important;
    font-weight: 700;
}

.ivy-legal-main .content-section {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4.5rem);
    border: 1px solid rgba(99,183,165,0.24);
    border-radius: 10px 48px 10px 10px;
    background:
        radial-gradient(circle at 100% 0, rgba(159,216,204,0.28), transparent 18rem),
        rgba(255,255,255,0.9);
    box-shadow: 0 24px 70px rgba(63,114,104,0.11);
    text-align: left;
}

.ivy-legal-main .content-section > p:first-child {
    margin-bottom: 2rem;
    color: var(--brand-accent);
    font: 600 0.77rem/1.4 "Montserrat", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ivy-legal-main .content-section h4 {
    margin: 2.2rem 0 0.85rem !important;
    color: var(--brand-title);
    font: 500 clamp(1.35rem, 2.5vw, 1.8rem)/1.25 "Playfair Display", Georgia, serif;
    letter-spacing: -0.015em;
    text-transform: none;
}

.ivy-legal-main a:focus-visible,
.ivy-legal-body .ivy-footer a:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .ivy-legal-hero {
        min-height: 430px;
    }

    .ivy-legal-hero .blanc-gallery-page-badge {
        width: calc(100% - 40px);
        bottom: 3.2rem;
    }

    .ivy-legal-hero .blanc-gallery-page-title {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .ivy-legal-main {
        padding-inline: 20px;
    }

    .ivy-legal-main .policy-grid {
        grid-template-columns: 1fr !important;
    }

    .ivy-legal-main .content-section {
        padding: 1.6rem;
        border-radius: 8px 28px 8px 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promotion-offer-badge,
    .promotion-offer-badge::after {
        animation: none;
    }

    .promotion-list.is-grid .promotion-card {
        transition: none;
    }
}

/* =========================
   ABOUT
========================= */
.aboutv2 {
    position: relative;
    /* background: var(--brand-bg-main); */
    padding: 90px 20px 100px;
    color: var(--brand-text);
    overflow: hidden;
}

.aboutv2-wrapper {
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.aboutv2-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.aboutv2-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.aboutv2-img {
    overflow: hidden;
    box-shadow: var(--brand-shadow);
}

.aboutv2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutv2-img-1 {
    border-radius: 60px 60px 0 60px;
}

.aboutv2-img-2 {
    border-radius: 60px;
}

.aboutv2-img-3 {
    border-radius: 60px 60px 60px 0;
}

.aboutv2-content,
.aboutv2-left {
    color: var(--brand-text);
}

.aboutv2-title {
    margin: 0 0 18px;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 500;
    /* text-transform: uppercase; */
}

.aboutv2-subtitle {
    margin: 0 0 18px;
    color: var(--brand-title);
    font-size: var(--fs-section-subtitle);
    line-height: var(--lh-subtitle);
    font-weight: 500;
}

.aboutv2-desc {
    margin: 0;
    color: var(--brand-text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.aboutv2-bottom {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.aboutv2-right img {
    width: 100%;
    border-radius: 60px 0 60px 0;
    object-fit: cover;
    box-shadow: var(--brand-shadow);
}
.drink-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    margin-top: 15px;
}

.drink-col h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.drink-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drink-col li {
    font-size: 14px;
    line-height: 1.8;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 4px 0;
}
/* =========================
   SERVICES
========================= */
.blanc-service-zone {
    position: relative;
    /* background: var(--brand-bg-main); */
    overflow: hidden;
    padding: 90px 20px 100px;
}

.blanc-service-shell {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.blanc-service-head {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 50px;
}

.blanc-service-title {
    margin: 0;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 500;
    /* text-transform: uppercase; */
}

.blanc-service-divider {
    width: 82px;
    height: 2px;
    background: var(--brand-title);
    opacity: 0.75;
    margin: 20px auto 24px;
}

.blanc-service-subtitle {
    margin: 0 0 18px;
    color: var(--brand-title);
    font-size: var(--fs-section-subtitle);
    line-height: var(--lh-subtitle);
    font-weight: 500;
}

.blanc-service-text {
    margin: 0 auto;
    max-width: 920px;
    color: var(--brand-text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.blanc-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

.blanc-service-card {
    background: var(--brand-bg-soft);
    box-shadow: var(--brand-shadow);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blanc-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(79, 73, 70, 0.14);
}

.blanc-service-photo {
    height: 255px;
    overflow: hidden;
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
}

.blanc-service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blanc-service-body {
    padding: 22px 18px 18px;
    text-align: center;
    min-height: 182px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.blanc-service-card-title {
    margin: 0 0 12px;
    color: var(--brand-accent);
    font-size: var(--fs-card-title);
    line-height: 1.35;
    font-weight: 600;
}

.blanc-service-card-text {
    margin: 0;
    color: var(--brand-text);
    font-size: var(--fs-card-text);
    line-height: var(--lh-card);
}

/* =========================
   WAVES
========================= */
.blanc-service-wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1;
    pointer-events: none;
}

.blanc-service-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.blanc-service-wave svg path {
    fill: var(--brand-wave);
}

.blanc-service-wave-top {
    top: 0;
}

.blanc-service-wave-bottom {
    bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {
    .blanc-service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .blanc-service-photo {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .aboutv2-top,
    .aboutv2-bottom {
        grid-template-columns: 1fr;
    }

    .aboutv2-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-blanc {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--brand-bg-soft);
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
        display: none;
    }

    .menu-blanc.active {
        display: flex;
    }

    .nav-toggle-blanc {
        display: block;
    }

    .nav-social-blanc,
    .nav-action-blanc {
        display: none;
    }

    .hero-bg-x.desktop {
        display: none;
    }

    .hero-bg-x.mobile {
        display: block;
    }

    .hero-card-x {
        padding: 25px 18px;
    }

    .hero-title-x,
    .aboutv2-title,
    .blanc-service-title,
    .promotions h2 {
        font-size: 2rem;
    }

    .hero-sub-x,
    .aboutv2-subtitle,
    .blanc-service-subtitle {
        font-size: 1.25rem;
    }

    .hero-info-x {
        flex-direction: column;
        text-align: center;
        font-size: 0.95rem;
    }

    .aboutv2,
    .blanc-service-zone,
    .promotions {
        padding: 70px 16px 80px;
    }

    .blanc-service-head {
        margin-bottom: 36px;
    }

    .blanc-service-text,
    .aboutv2-desc,
    .blanc-service-card-text,
    .promotions a,
    .promotions small {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .blanc-service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blanc-service-card {
        max-width: 390px;
        margin: 0 auto;
        width: 100%;
    }

    .blanc-service-photo {
        height: 250px;
    }

    .blanc-service-body {
        min-height: auto;
        padding: 20px 16px 18px;
    }

    .blanc-service-card-title {
        font-size: 1.08rem;
    }

    .blanc-service-wave {
        height: 48px;
    }
}

@media (max-width: 576px) {
    .aboutv2 {
        padding: 60px 12px 70px;
    }

    .aboutv2-top,
    .aboutv2-bottom {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .aboutv2-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .aboutv2-img {
        height: 200px;
    }

    .aboutv2-img-1 {
        border-radius: 40px 40px 0 40px;
    }

    .aboutv2-img-2 {
        border-radius: 40px;
    }

    .aboutv2-img-3 {
        border-radius: 40px 40px 40px 0;
    }

    .aboutv2-right img {
        border-radius: 50px 0 50px 0;
        margin: 0 auto;

    }
}

/* =========================
   STORY / TEAM / VALUES
========================= */
.blanc-story-zone {
    position: relative;
    /* background: var(--brand-bg-main); */
    padding: 90px 20px 100px;
    overflow: hidden;
}

.blanc-story-shell {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.blanc-story-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1;
    pointer-events: none;
}

.blanc-story-wave-top svg {
    width: 100%;
    height: 100%;
    display: block;
}

.blanc-story-wave-top svg path {
    fill: var(--brand-wave);
}

/* TEAM BLOCK */
.blanc-team-block {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 56px;
    margin-bottom: 70px;
}

.blanc-team-copy {
    max-width: 470px;
}

.blanc-story-title {
    margin: 0 0 20px;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.blanc-story-title-center {
    text-align: center;
}

.blanc-story-text {
    margin: 0;
    color: var(--brand-text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.blanc-team-photo-wrap {
    overflow: hidden;
    border-radius: 110px 24px 110px 24px;
    box-shadow: var(--brand-shadow);
    background: #d8cdc1;
}

.blanc-team-photo {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

/* VALUES */
.blanc-values-head {
    margin-bottom: 28px;
}

.blanc-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* FLIP CARD */
.blanc-flip-value {
    perspective: 1400px;
    min-height: 300px;
}

.blanc-flip-value-inner {
    position: relative;
    width: 100%;
    height: 300px;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.blanc-flip-value:hover .blanc-flip-value-inner {
    transform: rotateY(180deg);
}

.blanc-flip-face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: var(--brand-shadow);
}

.blanc-flip-front {
    background: #d9cec2;
}

.blanc-flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blanc-flip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(55, 48, 43, 0.28);
}

.blanc-flip-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-align: center;
    color: #ffffff;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
    z-index: 2;
}

.blanc-flip-back {
    background: #0000;
    transform: rotateY(180deg);
    border: 1px solid rgba(159, 123, 78, 0.12);
}

.blanc-flip-back-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blanc-flip-back-inner p {
    margin: 0;
    color: var(--brand-title);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 500;
    max-width: 240px;
}

/* optional soft decoration */
.blanc-flip-back::before,
.blanc-flip-back::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.18;
    pointer-events: none;
    background: radial-gradient(circle, #d8bfa7 0%, rgba(216,191,167,0) 70%);
}

.blanc-flip-back::before {
    top: -20px;
    left: -20px;
}

.blanc-flip-back::after {
    right: -20px;
    bottom: -20px;
}

/* custom back for first card if needed */
.blanc-flip-back-art {
    background:
        linear-gradient(rgba(245,239,232,0.92), rgba(245,239,232,0.92)),
        url('photos/home/value-back-1.jpg') center/cover no-repeat;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .blanc-team-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blanc-team-copy {
        max-width: 100%;
    }

    .blanc-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blanc-story-zone {
        padding: 70px 16px 80px;
    }

    .blanc-story-wave-top {
        height: 48px;
    }

    .blanc-team-block {
        margin-bottom: 48px;
    }

    .blanc-story-title,
    .blanc-story-title-center {
        font-size: 2rem;
    }

    .blanc-story-text {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .blanc-team-photo-wrap {
        border-radius: 50px 16px 50px 16px;
    }

    .blanc-team-photo {
        min-height: 260px;
    }

    .blanc-values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blanc-flip-value {
        min-height: 260px;
        max-width: 390px;
        width: 100%;
        margin: 0 auto;
    }

    .blanc-flip-value-inner {
        height: 260px;
    }

    .blanc-flip-title {
        font-size: 1.55rem;
    }

    .blanc-flip-back-inner {
        padding: 24px 18px;
    }

    .blanc-flip-back-inner p {
        font-size: 0.98rem;
        line-height: 1.6;
    }
}

/* Softer hero: preserves the original centered salon layout */
.hero-slider-x {
    height: clamp(590px, 72vh, 760px);
    min-height: 590px;
    background: var(--brand-bg-main);
}

.ivy-hero-background {
    transform: scale(1.015);
    background:
        linear-gradient(
            90deg,
            rgba(159, 216, 204, 0.72) 0%,
            rgba(242, 251, 248, 0.42) 48%,
            rgba(159, 216, 204, 0.62) 100%
        ),
        url("../photos/home/slide-1111.jpg") center 35% / cover no-repeat;
}

.hero-overlay-x {
    padding: 2.5rem 1.25rem 3rem;
}

.hero-card-x {
    max-width: 660px;
    width: min(92%, 660px);
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 5vw, 4rem);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 2rem;
    background: rgba(242, 251, 248, 0.88);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 1.5rem 4rem rgba(63, 114, 104, 0.16);
    color: var(--brand-text);
    animation: ivyHeroReveal 850ms cubic-bezier(0.32, 0.72, 0, 1) both;
}

@keyframes ivyHeroReveal {
    from {
        opacity: 0;
        transform: translateY(1.25rem) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ivy-logo-mark-hero {
    width: clamp(3.25rem, 5vw, 4.5rem) !important;
    margin-bottom: 0.65rem;
    filter: drop-shadow(0 0.65rem 1.15rem rgba(63, 114, 104, 0.12));
}

.ivy-hero-brand {
    color: var(--brand-title) !important;
    font-size: clamp(2.75rem, 5.4vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
    text-shadow: none;
    text-wrap: balance;
}

.ivy-hero-location {
    margin-top: 0.8rem;
    color: var(--brand-accent) !important;
    letter-spacing: 0.25em;
}

.hero-slogan-x {
    max-width: 31rem;
    margin: 1.15rem auto 0;
    color: var(--brand-text);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.45;
    letter-spacing: 0.01em;
}

.hero-info-x {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 0;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(99, 183, 165, 0.25);
}

.hero-info-block-x {
    min-width: 0;
    padding: 0 1.25rem;
}

.hero-info-block-x + .hero-info-block-x {
    border-left: 1px solid rgba(99, 183, 165, 0.25);
}

.hero-info-x h5 {
    margin-bottom: 0.45rem;
    color: var(--brand-title) !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.hero-info-link-x,
.hero-info-x p {
    color: var(--brand-text);
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-info-link-x:hover {
    color: var(--brand-title);
}

.floating-button .button {
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 999px !important;
    box-shadow: var(--brand-shadow) !important;
}

@media (max-width: 767px) {
    .hero-slider-x {
        height: auto;
        min-height: 690px;
    }

    .ivy-hero-background {
        transform: none;
        background:
            linear-gradient(
                180deg,
                rgba(159, 216, 204, 0.62),
                rgba(242, 251, 248, 0.52)
            ),
            url("../photos/home/slide-1111.jpg") 58% center / cover no-repeat;
    }

    .hero-overlay-x {
        min-height: 690px;
        padding: 1.5rem 0.9rem 5.75rem;
    }

    .hero-card-x {
        width: 100%;
        max-width: 21.5rem;
        padding: 1.75rem 1.2rem;
        border-radius: 1.65rem;
    }

    .ivy-hero-brand {
        font-size: clamp(2.35rem, 12vw, 3.2rem);
    }

    .hero-slogan-x {
        margin-top: 0.9rem;
        font-size: 1.05rem;
    }

    .hero-info-x {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.3rem;
        padding-top: 1.15rem;
    }

    .hero-info-block-x {
        padding: 0;
    }

    .hero-info-block-x + .hero-info-block-x {
        padding-top: 1rem;
        border-top: 1px solid rgba(99, 183, 165, 0.2);
        border-left: 0;
    }

    .hero-info-link-x,
    .hero-info-x p {
        font-size: 0.88rem;
    }
}
/* =========================
   CONTACT LITE
========================= */
.blanc-contact-lite {
    position: relative;
    background: #f3ede4;
    padding: 90px 20px 100px;
    overflow: hidden;
}

.blanc-contact-lite-bg {
    position: absolute;
    inset: 0;
    background:#ebe6df;

}

.blanc-contact-lite-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.blanc-contact-lite-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.blanc-contact-lite-title {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 56px;
    line-height: var(--lh-title);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blanc-contact-lite-sub {
    margin: 0;
    color: var(--primary);
    font-size: var(--fs-body);
    line-height: 1.7;
}

.blanc-contact-lite-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}

.blanc-contact-lite-card {
    background: var(--brand-bg-soft);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(159, 123, 78, 0.12);
    border-radius: 26px;
    padding: 28px 26px;
    box-shadow: var(--brand-shadow);
    text-align: center;
}

.blanc-contact-lite-label {
    margin: 0 0 18px;
    color: var(--brand-title);
    font-size: 1.45rem;
    line-height: 1.3;
    font-weight: 500;
}

.blanc-contact-lite-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blanc-contact-lite-list li {
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 6px;
}

.blanc-contact-lite-info + .blanc-contact-lite-info {
    margin-top: 16px;
}

.blanc-contact-lite-item-title {
    margin: 0 0 6px;
    color: var(--brand-accent);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.blanc-contact-lite-link {
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.7;
    text-decoration: none;
    word-break: break-word;
}

.blanc-contact-lite-link:hover {
    color: var(--brand-accent);
}

.blanc-contact-lite-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    min-height: 32px;
}

.blanc-contact-lite-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--brand-title);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-title);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blanc-contact-lite-social a:hover {
    background: var(--brand-title);
    color: #fff;
}

.blanc-contact-lite-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 11px 24px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--brand-title);
    color: var(--brand-title);
    text-decoration: none;
    font-size: var(--fs-btn);
    font-weight: 500;
    transition: all 0.3s ease;
}

.blanc-contact-lite-btn:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}

.blanc-contact-lite-map-wrap {
    margin-top: 10px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--brand-shadow);
    border: 1px solid rgba(159, 123, 78, 0.12);
}

.blanc-contact-lite-map {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .blanc-contact-lite {
        padding: 70px 16px 80px;
    }

    .blanc-contact-lite-title {
        font-size: 2rem;
    }

    .blanc-contact-lite-sub {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .blanc-contact-lite-main {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blanc-contact-lite-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .blanc-contact-lite-label {
        font-size: 1.25rem;
    }

    .blanc-contact-lite-list li,
    .blanc-contact-lite-link {
        font-size: 0.98rem;
    }

    .blanc-contact-lite-map {
        height: 300px;
    }
}

/* =========================
   GALLERY SECTION
========================= */
.blanc-gallery-zone {
    position: relative;
    background: var(--brand-bg-soft);
    padding: 90px 12px 80px;
    overflow: hidden;
}

.blanc-gallery-shell {
    position: relative;
    z-index: 2;
    max-width: 1520px;
    margin: 0 auto;
}

/* .blanc-gallery-bg-shape {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(245, 241, 235, 0.92), rgba(245, 241, 235, 0.94)),
        url('photos/home/gallery-bg.png') center/cover no-repeat;
    opacity: 0.55;
    pointer-events: none;
} */

.blanc-gallery-head {
    text-align: center;
    margin-bottom: 30px;
}

.blanc-gallery-title {
    margin: 0;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    font-weight: 500;
    letter-spacing: 1px;
}

.blanc-gallery-grid {
    display: grid;
    grid-template-columns: 1.65fr 0.85fr 0.85fr 0.85fr;
    grid-template-rows: repeat(2, 205px);
    gap: 12px;
    align-items: stretch;
}

.blanc-gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #ddd3c8;
    box-shadow: var(--brand-shadow);
}

.blanc-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.blanc-gallery-card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.blanc-gallery-action {
    text-align: center;
    margin-top: 28px;
}

.blanc-gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 122px;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid var(--brand-title);
    color: var(--brand-title);
    background: transparent;
    text-decoration: none;
    /* font-size: var(--fs-btn); */
    font-weight: 500;
    transition: all 0.3s ease;
}

.blanc-gallery-btn:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}

/* TABLET */
@media (max-width: 1199px) {
    .blanc-gallery-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .blanc-gallery-card-large {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .blanc-gallery-zone {
        padding: 70px 12px 70px;
    }

    .blanc-gallery-title {
        font-size: 2rem;
    }

    .blanc-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .blanc-gallery-card,
    .blanc-gallery-card-large {
        grid-column: auto;
        grid-row: auto;
        height: 180px;
    }

    .blanc-gallery-card-large {
        grid-column: 1 / 3;
        height: 260px;
    }

    .blanc-gallery-action {
        margin-top: 22px;
    }
}

@media (max-width: 480px) {
    .blanc-gallery-grid {
        grid-template-columns: 1fr;
    }

    .blanc-gallery-card,
    .blanc-gallery-card-large {
        grid-column: auto;
        height: 220px;
    }

    .blanc-gallery-card-large {
        height: 260px;
    }
}


/* =========================
   OVERVIEW PAGE
========================= */
.blanc-overview-hero {
    position: relative;
    /* background: var(--brand-bg-soft); */
    padding-top: 0;
}

.blanc-overview-hero-media {
    position: relative;
    height: 470px;
    overflow: hidden;
}

.blanc-overview-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blanc-overview-hero-badge {
    position: relative;
    z-index: 3;
    width: fit-content;
    margin: -74px auto 0;
    background: var(--brand-bg-main);
    padding: 18px 42px 14px;
    border-radius: 56px 56px 0 0;
    box-shadow: 0 -4px 18px rgba(79, 73, 70, 0.04);
}

.blanc-overview-hero-title {
    margin: 0;
    color: var(--brand-title);
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.blanc-overview-main {
    position: relative;
    /* background: var(--brand-bg-soft); */
    padding: 22px 20px 105px;
    overflow: hidden;
}

.blanc-overview-shell {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blanc-overview-head {
    text-align: center;
    margin-bottom: 34px;
}

.blanc-overview-title {
    margin: 0;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.blanc-overview-row {
    display: grid;
    align-items: center;
    gap: 48px;
}

.blanc-overview-row-top {
    grid-template-columns: 1.05fr 0.95fr;
    margin-bottom: 40px;
}

.blanc-overview-row-bottom {
    grid-template-columns: 0.85fr 1.15fr;
}

.blanc-overview-copy {
    color: var(--brand-text);
}

.blanc-overview-copy-right {
    max-width: 520px;
}

.blanc-overview-text {
    margin: 0 0 22px;
    color: var(--brand-text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.blanc-overview-text:last-child {
    margin-bottom: 0;
}

.blanc-overview-photo {
    overflow: hidden;
    background: #d8cdc1;
    box-shadow: var(--brand-shadow);
}

.blanc-overview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blanc-overview-photo-large {
    border-radius: 78px 18px 78px 18px;
    max-width: 430px;
    margin-left: auto;
}

.blanc-overview-photo-small {
    border-radius: 78px 18px 78px 18px;
    max-width: 380px;
}

.blanc-overview-wave-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    z-index: 1;
    pointer-events: none;
}

.blanc-overview-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

.blanc-overview-wave-bottom svg path {
    fill: var(--brand-wave);
}

.nav-current-blanc {
    color: var(--brand-accent) !important;
}

/* =========================
   OVERVIEW RESPONSIVE
========================= */
@media (max-width: 991px) {
    .blanc-overview-hero-media {
        height: 400px;
    }

    .blanc-overview-row-top,
    .blanc-overview-row-bottom {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blanc-overview-photo-large,
    .blanc-overview-photo-small,
    .blanc-overview-copy-right {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .blanc-overview-hero-media {
        height: 300px;
    }

    .blanc-overview-hero-badge {
        margin-top: -42px;
        padding: 14px 26px 10px;
        border-radius: 34px 34px 0 0;
    }

    .blanc-overview-hero-title {
        font-size: 2.5rem;
    }

    .blanc-overview-main {
        padding: 18px 16px 80px;
    }

    .blanc-overview-title {
        font-size: 2rem;
    }

    .blanc-overview-text {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .blanc-overview-photo-large,
    .blanc-overview-photo-small {
        border-radius: 44px 14px 44px 14px;
    }

    .blanc-overview-wave-bottom {
        height: 48px;
    }
}

/* =========================
   WHY CHOOSE SECTION
========================= */
.blanc-choose-zone {
    position: relative;
    padding: 90px 20px 100px;
    background: #efe6db;
    overflow: hidden;
}

.blanc-choose-bg {
    position: absolute;
    inset: 0;
    background: #ebe6df;
/*         
        url('/photos/home/why-choose-bg.jpg') left center / cover no-repeat; */
    opacity: 1;
    pointer-events: none;
}

.blanc-choose-shell {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.blanc-choose-head {
    text-align: center;
    margin-bottom: 30px;
}

.blanc-choose-title {
    margin: 0;
    color: var(--primary);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.blanc-choose-card {
    background: rgba(255, 248, 241, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--brand-shadow);
    padding: 26px 24px 24px;
    min-height: 198px;
    backdrop-filter: blur(4px);
}

.blanc-choose-number {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: clamp(2.7rem, 4vw, 3.7rem);
    line-height: 1;
    font-weight: 300;
    letter-spacing: 1px;
}

.blanc-choose-card-title {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: clamp(1.45rem, 2vw, 2.1rem);
    line-height: 1.15;
    font-weight: 500;
}

.blanc-choose-card-text {
    margin: 0;
    color: var(--primary);
    font-size: 1.02rem;
    line-height: 1.65;
}

.blanc-choose-action {
    text-align: center;
    margin-top: 28px;
}

.blanc-choose-booking-text {
    margin: 0 0 16px;
    color: var(--primary);
 
    line-height: 1.6;
}

.blanc-choose-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    padding: 11px 24px;
    border-radius: 999px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    text-decoration: none;

   
    transition: all 0.3s ease;
}



/* RESPONSIVE */
@media (max-width: 767px) {
    .blanc-choose-zone {
        padding: 70px 16px 80px;
    }

    .blanc-choose-title {
        font-size: 2rem;
    }

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

    .blanc-choose-card {
        min-height: auto;
        padding: 22px 18px;
    }

    .blanc-choose-number {
        font-size: 2.8rem;
    }

    .blanc-choose-card-title {
        font-size: 1.55rem;
    }

    .blanc-choose-card-text,
    .blanc-choose-booking-text {
        font-size: 0.98rem;
        line-height: 1.7;
    }
}

/* =========================
   SERVICES PAGE
========================= */
.blanc-service-page-hero {
    position: relative;
    /* background: var(--brand-bg-soft); */
    padding-top: 0;
}

.blanc-service-page-hero-media {
    position: relative;
    height: 430px;
    overflow: hidden;
}

.blanc-service-page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blanc-service-page-badge {
    position: relative;
    z-index: 3;
    width: fit-content;
    margin: -68px auto 0;
    background: var(--brand-bg-soft);
    padding: 18px 42px 14px;
    border-radius: 56px 56px 0 0;
    box-shadow: 0 -4px 18px rgba(79, 73, 70, 0.04);
}

.blanc-service-page-title {
    margin: 0;
    color: var(--brand-title);
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
}

.blanc-service-page-promo {
    padding-top: 34px;
}

.blanc-service-page-main {
    /* background: var(--brand-bg-soft); */
    padding: 24px 20px 90px;
}

.blanc-service-page-shell {
    max-width: 1100px;
    margin: 0 auto;
}

.blanc-service-page-head {
    text-align: center;
    max-width: 930px;
    margin: 0 auto 40px;
}

.blanc-service-page-section-title {
    margin: 0;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.blanc-service-page-intro {
    margin: 0 auto;
    max-width: 900px;
    color: var(--brand-text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.blanc-service-page-note {
    margin-top: 14px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blanc-service-page-note-title {
    margin: 0 0 18px;
    color: var(--brand-title);
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 600;
}

.blanc-service-page-note-text {
    margin: 0 0 14px;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.75;
}

.nav-current-blanc {
    color: var(--brand-accent) !important;
}

/* responsive */
@media (max-width: 767px) {
    .blanc-service-page-hero-media {
        height: 290px;
    }

    .blanc-service-page-badge {
        margin-top: -40px;
        padding: 14px 26px 10px;
        border-radius: 34px 34px 0 0;
    }

    .blanc-service-page-title {
        font-size: 2.4rem;
    }

    .blanc-service-page-main {
        padding: 18px 16px 70px;
    }

    .blanc-service-page-section-title {
        font-size: 2rem;
    }

    .blanc-service-page-intro,
    .blanc-service-page-note-text {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .blanc-service-page-note-title {
        font-size: 1.08rem;
    }
}

/* =========================
   GALLERY PAGE
========================= */
.blanc-gallery-page-hero {
    position: relative;
    /* background: var(--brand-bg-soft); */
    padding-top: 0;
}

.blanc-gallery-page-hero-media {
    position: relative;
    height: 430px;
    overflow: hidden;
}

.blanc-gallery-page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blanc-gallery-page-badge {
    position: relative;
    z-index: 3;
    width: fit-content;
    margin: -68px auto 0;
    background: var(--brand-bg-soft);
    padding: 18px 42px 14px;
    border-radius: 56px 56px 0 0;
    box-shadow: 0 -4px 18px rgba(79, 73, 70, 0.04);
}

.blanc-gallery-page-title {
    margin: 0;
    color: var(--brand-title);
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.blanc-gallery-page-main {
    position: relative;
    /* background: var(--brand-bg-soft); */
    padding: 24px 20px 95px;
    overflow: hidden;
}

.blanc-gallery-page-shell {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blanc-gallery-page-head {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 40px;
}

.blanc-gallery-page-section-title {
    margin: 0;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.blanc-gallery-page-text {
    margin: 0 auto;
    max-width: 860px;
    color: var(--brand-text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.blanc-gallery-page-grid-wrap {
    margin-top: 8px;
}

/* =========================
   GALLERY LAYOUT
========================= */
#gallery-page {
    display: block !important;
    column-count: 3;
    column-gap: 18px;
    row-gap: 0 !important;
}

#gallery-page > div {
    display: inline-block;
    width: 100% !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    float: none !important;
}

/* nếu item render từ bootstrap col thì ép full width trong masonry */
#gallery-page > div[class*="col-"],
#gallery-page .col-lg-4,
#gallery-page .col-md-6,
#gallery-page .col-sm-6,
#gallery-page .col-12,
#gallery-page .isotope-item {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

/* hỗ trợ nếu API render card/link */
#gallery-page a,
#gallery-page .gallery-item,
#gallery-page .isotope-item,
#gallery-page .thumbnail-classic,
#gallery-page .project-classic {
    display: block;
    width: 100%;
}

/* card mềm */
#gallery-page > div > *,
#gallery-page .gallery-item,
#gallery-page .thumbnail-classic,
#gallery-page .project-classic {
    padding: 8px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        0 6px 16px rgba(79, 73, 70, 0.06);
}

/* ảnh */
#gallery-page img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: var(--brand-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* hover nhẹ */
#gallery-page a:hover img,
#gallery-page img:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 22px rgba(79, 73, 70, 0.12);
}

/* nếu API render card chứa ảnh */
#gallery-page .gallery-item,
#gallery-page .isotope-item,
#gallery-page .thumbnail-classic,
#gallery-page .project-classic {
    overflow: hidden;
}

/* wave bottom */
.blanc-gallery-page-wave-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    z-index: 1;
    pointer-events: none;
}

.blanc-gallery-page-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

.blanc-gallery-page-wave-bottom svg path {
    fill: var(--brand-wave);
}

.nav-current-blanc {
    color: var(--brand-accent) !important;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    #gallery-page {
        column-count: 2;
        column-gap: 16px;
    }

    #gallery-page > div {
        margin: 0 0 16px !important;
    }

    #gallery-page > div > *,
    #gallery-page .gallery-item,
    #gallery-page .thumbnail-classic,
    #gallery-page .project-classic {
        padding: 7px;
        border-radius: 20px;
    }

    #gallery-page img {
        border-radius: 14px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
    .blanc-gallery-page-hero-media {
        height: 290px;
    }

    .blanc-gallery-page-badge {
        margin-top: -40px;
        padding: 14px 26px 10px;
        border-radius: 34px 34px 0 0;
    }

    .blanc-gallery-page-title {
        font-size: 2.4rem;
    }

    .blanc-gallery-page-main {
        padding: 18px 16px 80px;
    }

    .blanc-gallery-page-section-title {
        font-size: 2rem;
    }

    .blanc-gallery-page-text {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    #gallery-page {
        column-count: 2;
        column-gap: 10px;
    }

    #gallery-page > div {
        margin: 0 0 10px !important;
    }

    #gallery-page > div > *,
    #gallery-page .gallery-item,
    #gallery-page .thumbnail-classic,
    #gallery-page .project-classic {
        padding: 6px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.35);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    }

    #gallery-page img {
        border-radius: 14px;
    }

    #gallery-page img:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 8px 16px rgba(79, 73, 70, 0.12);
    }

    .blanc-gallery-page-wave-bottom {
        height: 48px;
    }
}
/* không đè lên popup/swiper */
.swiper-button-next,
.swiper-button-prev,
.lightbox-button,
.pswp__button,
.pswp__button--arrow--left,
.pswp__button--arrow--right {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
}

/* tránh gallery item che nút popup */
#gallery-page,
#gallery-page > div,
#gallery-page a,
#gallery-page .gallery-item,
#gallery-page .thumbnail-classic,
#gallery-page .project-classic {
    overflow: visible !important;
}

/* chỉ bo góc cho ảnh, không ép lên toàn bộ popup trigger */
#gallery-page > div > *,
#gallery-page .gallery-item,
#gallery-page .thumbnail-classic,
#gallery-page .project-classic {
    position: relative;
    z-index: 1;
}
/* =========================
   CONTACT PAGE
========================= */
/* .blanc-contact-page-hero {
    position: relative;
    background: var(--brand-bg-main);
    padding-top: 0;
} */

.blanc-contact-page-hero-media {
    position: relative;
    height: 430px;
    overflow: hidden;
}

.blanc-contact-page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blanc-contact-page-badge {
    position: relative;
    z-index: 3;
    width: fit-content;
    margin: -68px auto 0;
    background: var(--brand-bg-soft);
    padding: 18px 42px 14px;
    border-radius: 56px 56px 0 0;
    box-shadow: 0 -4px 18px rgba(79, 73, 70, 0.04);
}

.blanc-contact-page-title {
    margin: 0;
    color: var(--brand-title);
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.blanc-contact-page-main {
    position: relative;
    /* background: var(--brand-bg-soft); */
    padding: 24px 20px 95px;
    overflow: hidden;
}

.blanc-contact-page-shell {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blanc-contact-page-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.blanc-contact-page-section-title {
    margin: 0;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.blanc-contact-page-text {
    margin: 0 auto;
    max-width: 820px;
    color: var(--brand-text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.blanc-contact-page-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.blanc-contact-page-map-card,
.blanc-contact-page-info-card {
    background: var(--brand-wave);
    border: 1px solid rgba(159, 123, 78, 0.12);
    box-shadow: var(--brand-shadow);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.blanc-contact-page-map {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
}

.blanc-contact-page-info-card {
    padding: 28px 24px;
}

.blanc-contact-page-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blanc-contact-page-item + .blanc-contact-page-item {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(79, 73, 70, 0.08);
}

.blanc-contact-page-item-title {
    margin: 0 0 12px;
    color: var(--brand-title);
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 600;
}

.blanc-contact-page-item-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--brand-text);
}

.blanc-contact-page-item-content .icon {
    margin-top: 4px;
    color: var(--brand-accent);
    font-size: 18px;
    flex: 0 0 auto;
}

.blanc-contact-page-link {
    color: var(--brand-text) !important;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.7;
    word-break: break-word;
}

.blanc-contact-page-link:hover {
    color: var(--brand-accent) !important;
}

.blanc-contact-page-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blanc-contact-page-hours li {
    color: var(--brand-text);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 4px;
}

.blanc-contact-page-social-wrap {
    margin-top: 4px;
}

.blanc-contact-page-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.blanc-contact-page-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--brand-title);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-title);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blanc-contact-page-social a:hover {
    background: var(--brand-title);
    color: var(--brand-white);
}

.blanc-contact-page-wave-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    z-index: 1;
    pointer-events: none;
}

.blanc-contact-page-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

.blanc-contact-page-wave-bottom svg path {
    fill: var(--brand-wave);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .blanc-contact-page-grid {
        grid-template-columns: 1fr;
    }

    .blanc-contact-page-map {
        min-height: 380px;
    }
}

@media (max-width: 767px) {
    .blanc-contact-page-hero-media {
        height: 290px;
    }

    .blanc-contact-page-badge {
        margin-top: -40px;
        padding: 14px 26px 10px;
        border-radius: 34px 34px 0 0;
    }

    .blanc-contact-page-title {
        font-size: 2.4rem;
    }

    .blanc-contact-page-main {
        padding: 18px 16px 80px;
    }

    .blanc-contact-page-section-title {
        font-size: 2rem;
    }

    .blanc-contact-page-text,
    .blanc-contact-page-link,
    .blanc-contact-page-hours li {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .blanc-contact-page-info-card {
        padding: 22px 18px;
    }

    .blanc-contact-page-item + .blanc-contact-page-item {
        margin-top: 22px;
        padding-top: 20px;
    }

    .blanc-contact-page-map {
        min-height: 300px;
    }

    .blanc-contact-page-wave-bottom {
        height: 48px;
    }
}


/* =========================
   SERVICE API - HOMEPAGE
========================= */

/* .blanc-service-zone {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.55) 0%, transparent 28%),
        radial-gradient(circle at 80% 35%, rgba(255,255,255,0.40) 0%, transparent 24%),
        radial-gradient(circle at 50% 85%, rgba(255,255,255,0.28) 0%, transparent 30%),
        linear-gradient(180deg, #f4ede4 0%, #efe5da 45%, #f6f0e8 100%);
} */

.blanc-service-wave {
    line-height: 0;
    position: relative;
    z-index: 1;
}

.blanc-service-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

.blanc-service-wave path {
    fill: #f8f4ee;
}

.blanc-service-wave-top {
    margin-bottom: -1px;
}

.blanc-service-wave-bottom {
    margin-top: -1px;
}

.service-top-banner {
    position: relative;
    z-index: 2;
    background: transparent !important;
    margin: 0;
}

.service-top-title {
    color: var(--brand-accent) !important;
}

/* section */
.creative-service-section {
    position: relative;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 60px;
    background: transparent;
}

/* title */
.service-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 500;
    /* color: #2c2f67 !important; */
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}

/* board */
.creative-service-board {
    position: relative;
    overflow: hidden;
    padding: 34px 26px 26px;
    border: 1.5px solid #b79a73;
    border-radius: 28px;
    background: var(--brand-bg-soft);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow:
        0 10px 30px rgba(110, 84, 52, 0.08),
        inset 0 0 0 1px rgba(255,255,255,0.45);
}

.creative-service-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* background:
        radial-gradient(circle at 25% 35%, rgba(255,255,255,0.45) 0%, transparent 22%),
        radial-gradient(circle at 65% 55%, rgba(255,255,255,0.25) 0%, transparent 24%),
        radial-gradient(circle at 82% 80%, rgba(255,255,255,0.18) 0%, transparent 20%); */
    opacity: 0.85;
}

/* menu container */
#menu-container {
    position: relative;
    z-index: 2;
}

/* category block */
#menu-container .service-category-block {
    margin-bottom: 28px;
}

#menu-container .service-category-head {
    margin-bottom: 16px;
}

/* image */
#menu-container .service-category-image {
    width: 100%;
    height: 210px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(183, 154, 115, 0.30);
    box-shadow: 0 10px 22px rgba(122, 96, 62, 0.10);
    position: relative;
}

#menu-container .service-category-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(36, 30, 21, 0.18), rgba(36, 30, 21, 0.02));
}

#menu-container .service-category-image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.5s ease;
}

#menu-container .service-category-block:hover .service-category-image-inner {
    transform: scale(1.05);
}

/* category title */
#menu-container .service-category-title {
 
    color: var(--brand-title) !important;
    font-weight: 600;
    text-align: center !important;
    margin-bottom: 8px;
}

#menu-container .service-category-title a {
    color: inherit !important;
    text-decoration: none;
    
}

/* category description */
#menu-container .service-category-desc {
    text-align: center !important;
    color: var(--brand-text)!important;
    font-size: 17px;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto 6px;
}

/* service rows */
#menu-container .service-items-row {
    margin-bottom: 10px;
}

/* item */
#menu-container .pricing-item {
    background: transparent;
    border: 0;
    margin: 0 !important;
    padding: 0;
}

#menu-container .pricing-body {
    padding: 0;
}

/* link */
#menu-container .service-line-link {
    display: block;
    text-decoration: none;
    padding: 8px 0;
    color: #4f4b46 !important;
    transition: all 0.25s ease;
}

#menu-container .service-line-link:hover {
    opacity: 0.88;
    transform: translateX(2px);
}

/* name + divider + price */
#menu-container .service-line-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

#menu-container .service-line-name {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.45;
    color: var(--brand-text);
    white-space: nowrap;
}

#menu-container .service-line-divider {
    flex: 1;
    border-bottom: 1px dotted rgba(183, 154, 115, 0.85);
    transform: translateY(1px);
}

#menu-container .service-line-price {
    margin: 0;
    font-size: 1.03rem;
    font-weight: 500;
    color: var(--brand-text);
    white-space: nowrap;
}

#menu-container .service-note {
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 0.92rem;
    color: #7a7167;
    line-height: 1.6;
}

/* divider */
#menu-container .service-category-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(183, 154, 115, 0.55), transparent);
    margin: 16px 0 0;
}

/* button */
.service-more-wrap {
    margin-top: 22px;
}

.service-show-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 52px;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1.5px solid #b79a73;
    background: rgba(255,255,255,0.45);
    color: #9d7a4d;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(122, 96, 62, 0.08);
}

.service-show-more-btn:hover {
    color: #fff;
    background: #b79a73;
    transform: translateY(-2px);
}

.disbled-link {
    pointer-events: none;
    opacity: 0.7;
}

/* responsive */
@media (max-width: 991.98px) {
    .creative-service-board {
        padding: 24px 18px 18px;
        border-radius: 22px;
    }

    #menu-container .service-category-image {
        height: 180px;
        border-radius: 16px;
    }

    #menu-container .service-category-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .blanc-service-wave svg {
        height: 42px;
    }

    .creative-service-section {
        padding-top: 40px;
        padding-bottom: 45px;
    }

    .creative-service-board {
        padding: 18px 14px 16px;
        border-radius: 18px;
    }

    #menu-container .service-category-image {
        height: 160px;
        margin-bottom: 14px;
    }

    #menu-container .service-category-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    #menu-container .service-category-desc {
        font-size: 0.95rem;
    }

    #menu-container .service-line-link {
        padding: 7px 0;
    }

    #menu-container .service-line-name,
    #menu-container .service-line-price {
        font-size: 0.97rem;
    }

    .service-show-more-btn {
        min-width: 138px;
        min-height: 48px;
        font-size: 0.96rem;
    }
}


/* =========================
   SERVICES PAGE ONLY
========================= */
/* .blanc-service-page-hero {
    position: relative;
    background: var(--brand-bg-soft);
    padding-top: 0;
}

.blanc-service-page-hero-media {
    position: relative;
    height: 430px;
    overflow: hidden;
} */

.blanc-service-page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blanc-service-page-badge {
    position: relative;
    z-index: 3;
    width: fit-content;
    margin: -68px auto 0;
    background: var(--brand-bg-soft);
    padding: 18px 42px 14px;
    border-radius: 56px 56px 0 0;
    box-shadow: 0 -4px 18px rgba(79, 73, 70, 0.04);
}

.blanc-service-page-title {
    margin: 0;
    color: var(--brand-title);
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
}

.blanc-service-page-promo {
    padding-top: 34px;
}

.blanc-service-page-main {
    /* background: var(--brand-bg-soft); */
    padding: 24px 20px 90px;
}

.blanc-service-page-shell {
    max-width: 1100px;
    margin: 0 auto;
}

.blanc-service-page-head {
    text-align: center;
    max-width: 930px;
    margin: 0 auto 40px;
}

.blanc-service-page-section-title {
    margin: 0;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.blanc-service-page-intro {
    margin: 0 auto;
    max-width: 900px;
    color: var(--brand-text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.blanc-service-page-note {
    margin-top: 14px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blanc-service-page-note-title {
    margin: 0 0 18px;
    color: var(--brand-title);
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 600;
}

.blanc-service-page-note-text {
    margin: 0 0 14px;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.75;
}

.nav-current-blanc {
    color: var(--brand-accent) !important;
}

/* services page API container riêng */
#services-page-menu-container {
    row-gap: 36px;
}

/* services page API block riêng */
.blanc-services-page-section {
    margin-bottom: 28px;
}

.blanc-services-page-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    background: var(--brand-bg-soft);
    border: 1.5px solid #b79a73;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(110, 84, 52, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(2px);
}

/* trái - phải xen kẽ */
.blanc-services-page-section.is-reverse .blanc-services-page-card {
    grid-template-columns: minmax(0, 1fr) 220px;
}

.blanc-services-page-section.is-reverse .blanc-services-page-media {
    order: 2;
}

.blanc-services-page-section.is-reverse .blanc-services-page-content {
    order: 1;
}

/* nếu không có ảnh */
.blanc-services-page-section.no-image .blanc-services-page-card {
    grid-template-columns: 1fr;
}

/* media */
.blanc-services-page-media {
    width: 100%;
    align-self: start;
}

/* gallery nhiều ảnh xếp dọc */
.blanc-services-page-manual-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: space-between;
}

.blanc-services-page-manual-gallery.count-2,
.blanc-services-page-manual-gallery.count-3 {
    min-height: 420px;
}

.blanc-services-page-manual-gallery-item {
    flex: 1 1 0;
    display: flex;
    min-height: 0;
}

/* frame chung */
.blanc-services-page-image-frame {
    position: relative;
    width: 100%;
    padding: 8px;
    background: rgba(255, 250, 245, 0.62);
    border: 1.5px solid rgba(216, 202, 188, 0.95);
    overflow: hidden;
    box-shadow:
        0 10px 24px rgba(79, 73, 70, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

/* default 1 hình: arch nhỏ, chỉ khoảng 30% nhìn tổng thể */
.blanc-services-page-image-frame-single {
    border-radius: 120px 120px 0 0;
}

.blanc-services-page-image-frame-single::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(183, 158, 132, 0.38);
    border-radius: 112px 112px 0 0;
    pointer-events: none;
}

.blanc-services-page-image-frame-single::after {
    content: "";
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 104px 104px 0 0;
    pointer-events: none;
}

/* gallery 2-3 hình: vòm nhỏ hơn để nhìn gọn */
.blanc-services-page-image-frame-gallery {
    border-radius: 36px 36px 0 0;
    height: 100%;
    min-height: 0;
}

.blanc-services-page-image-frame-gallery::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(183, 158, 132, 0.36);
    border-radius: 30px 30px 0 0;
    pointer-events: none;
}

.blanc-services-page-image-frame-gallery::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.blanc-services-page-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.45s ease;
}

.blanc-services-page-image-frame:hover .blanc-services-page-image {
    transform: scale(1.03);
}

/* default 1 ảnh */
.blanc-services-page-image-frame-single .blanc-services-page-image {
    height: 220px;
    border-radius: 102px 102px 0 0;
}

/* 2-3 ảnh dọc */
.blanc-services-page-image-frame-gallery .blanc-services-page-image {
    height: 100%;
    min-height: 110px;
    border-radius: 20px 20px 0 0;
}

.blanc-services-page-manual-gallery.count-2 .blanc-services-page-image-frame-gallery {
    min-height: 190px;
}

.blanc-services-page-manual-gallery.count-3 .blanc-services-page-image-frame-gallery {
    min-height: 120px;
}

.blanc-services-page-media.no-image {
    display: none;
}

/* content */
.blanc-services-page-content {
    min-width: 0;
    padding-top: 4px;
}

.blanc-services-page-head {
    margin-bottom: 16px;
}

.blanc-services-page-category-title {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--brand-title) !important;
    margin-bottom: 10px;
    text-transform: none;
}

.blanc-services-page-category-title:hover {
    color: #7f573f !important;
}

.blanc-services-page-category-desc {
    color: #7d746d;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    max-width: 760px;
}

.blanc-services-page-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(167, 137, 111, 0.5), rgba(167, 137, 111, 0.12));
    margin: 0 0 18px;
    border: 0;
}

/* services list */
.blanc-services-page-services {
    row-gap: 4px;
}

.blanc-services-page-item {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.blanc-services-page-body {
    padding: 0 0 10px;
    border-bottom: 1px dashed rgba(154, 122, 97, 0.24);
}

.blanc-services-page-link {
    text-decoration: none;
}

.blanc-services-page-line {
    align-items: flex-start;
    margin: 0;
}

.blanc-services-page-name,
.blanc-services-page-price {
    margin: 0 !important;
    font-size: 1.18rem !important;
    line-height: 1.55;
    color: var(--brand-text)!important;
    font-weight: 400;
}

.blanc-services-page-name {
    position: relative;
    padding-left: 18px;
}

.blanc-services-page-name::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #8f6a50;
    font-size: 1.1em;
    line-height: 1.4;
}

.blanc-services-page-price {
    white-space: nowrap;
    color: #7f6450 !important;
    font-weight: 500;
}

.blanc-services-page-desc {
    font-size: 17px !important;
    line-height: 1.7;
    color: var(--brand-text)!important;
    padding-left: 18px;
    margin-top: 3px !important;
    font-style: italic;
}

/* responsive */
@media (max-width: 991px) {
    .blanc-services-page-card,
    .blanc-services-page-section.is-reverse .blanc-services-page-card {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 22px;
    }

    .blanc-services-page-section.is-reverse .blanc-services-page-card {
        grid-template-columns: minmax(0, 1fr) 180px;
    }

    .blanc-services-page-image-frame-single {
        border-radius: 100px 100px 0 0;
    }

    .blanc-services-page-image-frame-single::before {
        border-radius: 92px 92px 0 0;
    }

    .blanc-services-page-image-frame-single::after {
        border-radius: 84px 84px 0 0;
    }

    .blanc-services-page-image-frame-single .blanc-services-page-image {
        height: 180px;
        border-radius: 82px 82px 0 0;
    }

    .blanc-services-page-manual-gallery.count-2,
    .blanc-services-page-manual-gallery.count-3 {
        min-height: 360px;
    }

    .blanc-services-page-category-title {
        font-size: clamp(1.65rem, 2.8vw, 2.2rem);
    }
}

@media (max-width: 767px) {
    .blanc-service-page-hero-media {
        height: 290px;
    }

    .blanc-service-page-badge {
        margin-top: -40px;
        padding: 14px 26px 10px;
        border-radius: 34px 34px 0 0;
    }

    .blanc-service-page-title {
        font-size: 2.4rem;
    }

    .blanc-service-page-main {
        padding: 18px 16px 70px;
    }

    .blanc-service-page-section-title {
        font-size: 2rem;
    }

    .blanc-service-page-intro,
    .blanc-service-page-note-text {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .blanc-service-page-note-title {
        font-size: 1.08rem;
    }

    .blanc-services-page-card,
    .blanc-services-page-section.is-reverse .blanc-services-page-card {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 18px;
        border-radius: 22px;
    }

    .blanc-services-page-section.is-reverse .blanc-services-page-media,
    .blanc-services-page-section.is-reverse .blanc-services-page-content {
        order: initial;
    }

    .blanc-services-page-media {
        width: 100%;
        max-width: 220px;
        align-self: center;
    }

    .blanc-services-page-manual-gallery {
        gap: 12px;
        min-height: unset !important;
    }

    .blanc-services-page-manual-gallery-item {
        flex: unset;
    }

    .blanc-services-page-image-frame-single {
        border-radius: 90px 90px 0 0;
        padding: 6px;
    }

    .blanc-services-page-image-frame-single::before {
        inset: 4px;
        border-radius: 82px 82px 0 0;
    }

    .blanc-services-page-image-frame-single::after {
        inset: 9px;
        border-radius: 74px 74px 0 0;
    }

    .blanc-services-page-image-frame-single .blanc-services-page-image {
        height: 180px;
        border-radius: 72px 72px 0 0;
    }

    .blanc-services-page-image-frame-gallery {
        min-height: unset !important;
        border-radius: 24px 24px 0 0;
    }

    .blanc-services-page-image-frame-gallery::before {
        border-radius: 18px 18px 0 0;
    }

    .blanc-services-page-image-frame-gallery::after {
        border-radius: 12px 12px 0 0;
    }

    .blanc-services-page-image-frame-gallery .blanc-services-page-image {
        height: 130px;
        min-height: unset;
        border-radius: 10px 10px 0 0;
    }

    .blanc-services-page-category-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .blanc-services-page-category-desc {
        font-size: 0.97rem;
        line-height: 1.7;
    }

    .blanc-services-page-name,
    .blanc-services-page-price {
        font-size: 1.02rem !important;
    }

    .blanc-services-page-desc {
        font-size: 0.92rem !important;
    }
}
/* #NEW SERVICES */
.blanc-menu-api-wrap {
    margin-top: 40px;
}

.blanc-menu-filter {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 36px;
    align-items: stretch;
}

.blanc-menu-tab {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    background: transparent;
    color: var(--brand-title);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
}

.blanc-menu-tab:hover {
    color: rgba(212, 176, 106, 0.55);
    border-color: rgba(212, 176, 106, 0.55);
    background: rgba(255, 255, 255, 0.03);
}

.blanc-menu-tab.active {
    background: #d4b06a;
    color: #111;
    border-color: #d4b06a;
    box-shadow: 0 0 18px rgba(212, 176, 106, 0.24);
}

.blanc-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.blanc-service-api-card {
    position: relative;
    overflow: hidden;
    background:
       var(--brand-bg-soft);
    border: 1px solid rgba(212, 176, 106, 0.35);
    border-radius: 16px;
    padding: 22px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    transition: all 0.28s ease;
}

.blanc-service-api-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 176, 106, 0.72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.blanc-service-api-card.is-featured {
    border-color: rgba(212, 176, 106, 0.68);
    box-shadow: 0 10px 24px rgba(212, 176, 106, 0.08);
}

/* no descriptioni */
.blanc-service-api-card.no-desc {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 18px;
}

.blanc-service-api-card.no-desc .blanc-service-api-title {
    margin-bottom: 8px;
}

.blanc-service-api-card.no-desc .blanc-service-api-bottom {
    margin-top: 0;
}

/* Ribbon */
.blanc-service-api-ribbon {
    position: absolute;
    top: 14px;
    right: -38px;
    width: 150px;
    transform: rotate(38deg);
    z-index: 2;
    pointer-events: none;
}

.blanc-service-api-ribbon span {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #f4d48d 0%, #d4b06a 50%, #b88b3e 100%);
    color: #111;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.blanc-service-api-title {
    font-size: 22px;
    line-height: 1.35;
    color: var(--brand-title);
    margin: 0 0 12px;
    padding-right: 38px;
}

.blanc-service-api-title a {
    color: inherit;
    text-decoration: none;
}

.blanc-service-api-desc {
    color: var(--brand-text);
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 68px;
}

.blanc-service-api-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: auto;
    margin-bottom: 18px;
}

.blanc-service-api-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.blanc-service-api-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--brand-text);
    white-space: nowrap;
}

.blanc-service-api-time {
    font-weight: bold;
    color: var(--brand-text);
    white-space: nowrap;
}

.blanc-service-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    padding: 20px 0;
    font-size: 14px;
}

.desc-line,
.desc-bullet {
    display: block;
    margin-bottom: 6px;
}

/* Tablet */
@media (max-width: 1199px) {
    .blanc-menu-filter {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

/* Mobile */
@media (max-width: 767px) {
    .blanc-menu-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 28px;
    }

    .blanc-menu-tab {
        min-height: 40px;
        padding: 8px 10px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

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

    .blanc-service-api-card {
        padding: 16px;
        min-height: 220px;
        border-radius: 14px;
    }

    .blanc-service-api-card.no-desc {
        min-height: auto;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .blanc-service-api-title {
        margin-bottom: 10px;
        padding-right: 22px;
    }

    .blanc-service-api-desc {
        font-size: 13px;
        min-height: 52px;
        margin-bottom: 18px;
    }

    .blanc-service-api-price {
        font-size: 18px;
    }

    .blanc-service-api-time {
        font-size: 18px;
    }

    .blanc-service-api-ribbon {
        top: 10px;
        right: -42px;
        width: 135px;
    }

    .blanc-service-api-ribbon span {
        font-size: 10px;
        padding: 6px 0;
    }
}

/* Very small mobile */
@media (max-width: 390px) {
    .blanc-menu-tab {
        font-size: 11px;
        padding: 8px 6px;
    }

    .blanc-service-api-title {
        font-size: 17px;
    }

    .blanc-service-api-price {
        font-size: 17px;
    }

    .blanc-service-api-time {
        font-size: 18px;
    }

    .blanc-service-api-ribbon {
        right: -46px;
        width: 130px;
    }
}

/* <banner services> */
.blanc-menu-category-hero {
    position: relative;
    width: 100%;
    min-height: 260px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 34px;
    background: #1a1a1a;
    border: 1px solid rgba(212, 176, 106, 0.24);
}

.blanc-menu-category-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.blanc-menu-category-hero:hover .blanc-menu-category-hero-media {
    transform: scale(1.03);
}

.blanc-menu-category-hero-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to right, rgba(15, 61, 51, 0.75), rgba(15, 61, 51, 0.25)),
    linear-gradient(to top, rgba(15, 61, 51, 0.65), rgba(15, 61, 51, 0.08));
}

.blanc-menu-category-hero-content {
    position: relative;
    z-index: 2;
    padding: 34px 38px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blanc-menu-category-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(212, 176, 106, 0.16);
    border: 1px solid rgba(212, 176, 106, 0.35);
    color: #f1d8a5;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.blanc-menu-category-title {
    font-size: 34px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 10px;
}

.blanc-menu-category-text {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
    /* font-size: 15px; */
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .blanc-menu-category-hero {
        min-height: 210px;
        margin-bottom: 24px;
        border-radius: 14px;
    }

    .blanc-menu-category-hero-content {
        min-height: 210px;
        padding: 24px 20px;
    }

    .blanc-menu-category-title {
        font-size: 24px;
    }

    .blanc-menu-category-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .blanc-menu-category-label {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 10px;
    }
}

/* New light Gallery */
.custom-gallery-trigger {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.custom-gallery-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#custom-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

#custom-gallery-lightbox.active {
    display: block;
}

.custom-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.custom-gallery-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 1000px);
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-gallery-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.custom-gallery-close,
.custom-gallery-prev,
.custom-gallery-next {
    position: absolute;
    z-index: 100000;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    font-size: 28px;
    line-height: 1;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.28s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-gallery-close:hover,
.custom-gallery-prev:hover,
.custom-gallery-next:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.custom-gallery-close {
    top: 20px;
    right: 20px;
    font-size: 24px;
}

.custom-gallery-prev {
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
}

.custom-gallery-next {
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .custom-gallery-close,
    .custom-gallery-prev,
    .custom-gallery-next {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .custom-gallery-close {
        top: 12px;
        right: 12px;
    }

    .custom-gallery-prev {
        left: 10px;
    }

    .custom-gallery-next {
        right: 10px;
    }
}
    .blanc-gallery-page-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
    height: 100%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.blanc-gallery-page-card .custom-gallery-trigger,
.blanc-gallery-page-card .video-wrapper {
    display: block;
    width: 100%;
    height: 100%;
}

.blanc-gallery-page-card img,
.blanc-gallery-page-card video {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blanc-gallery-page-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 991px) {
    .blanc-gallery-page-card img,
    .blanc-gallery-page-card video {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .blanc-gallery-page-card {
        border-radius: 12px;
    }

    .blanc-gallery-page-card img,
    .blanc-gallery-page-card video {
        height: 220px;
    }
}
/* NEW TESTIMONIALS */
.flane-reviews-section {
    position: relative;
    background: #ebe6df;
    padding: 0 0 80px;
    overflow: hidden;
}

.flane-reviews-wave-top svg {
    display: block;
    width: 100%;
    height: 85px;
}

.flane-reviews-wave-top path {
    fill: #ebe6df;
}

.flane-reviews-shell {
    padding-top: 10px;
}

.flane-reviews-head {
    max-width: 900px;
    margin: 0 auto 42px;
}

.flane-reviews-title {
    font-size: 56px;
    line-height: 1.15;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
}

.flane-reviews-subtitle {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--primary);
    margin: 0;
}

.flane-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.flane-review-card {
    background: var(--brand-bg-main);
    border: 1px solid rgba(160, 136, 113, 0.18);
    border-radius: 24px;
    padding: 28px 26px 24px;
    box-shadow: 0 10px 24px rgba(89, 66, 48, 0.06);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    min-height: 290px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.flane-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(89, 66, 48, 0.1);
}

.flane-review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.flane-review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 56px;
    border: 2px solid rgba(198, 164, 106, 0.18);
}

.flane-review-meta {
    min-width: 0;
}

.flane-review-name {
    font-size: 1.28rem;
    line-height: 1.2;
    color:var(--brand-title);
    font-weight: 500;
    margin: 0 0 6px;
}

.flane-review-verified {
 
    color: #a18e7d;
    margin-bottom: 6px;
}

.flane-review-stars {
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #c6a46a;
    line-height: 1;
}

/* TEXT CLAMP - ALL DEVICES */
.flane-review-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;  
    -webkit-box-orient: vertical;
    overflow: hidden;

    line-height: 1.8;       
    max-height: calc(1.8em * 3); 

    word-break: break-word;
}

/* expand */
.flane-review-text.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
}

/* READ MORE */
.flane-read-more {
    margin-top: 6px;
    font-size: 0.95rem;
    color: #c6a46a;
    cursor: pointer;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.flane-read-more:hover {
    opacity: 0.7;
}

.flane-review-divider {
    height: 1px;
    width: 100%;
    background: rgba(160, 136, 113, 0.2);
    margin: 22px 0;
}

.flane-review-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.flane-review-tag {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #f2ede6;
    border: 1px solid rgba(198, 164, 106, 0.22);
    color: #6a5242;
    font-size: 0.96rem;
    line-height: 1;
    white-space: nowrap;
}

.flane-review-note {
    font-size: 0.95rem;
    color: #a18e7d;
    white-space: nowrap;
}

.flane-reviews-footer {
    margin-top: 46px;
}

.flane-reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 56px;
    padding: 14px 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(160, 136, 113, 0.25);
    color: #5a4334;
    text-decoration: none;
    font-size: 1.02rem;
    transition: all 0.28s ease;
}

.flane-reviews-btn:hover {
    background: #ffffff;
    color: #4d372c;
    box-shadow: 0 10px 24px rgba(89, 66, 48, 0.08);
    text-decoration: none;
}

@media (max-width: 1199px) {
    .flane-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .flane-reviews-section {
        padding-bottom: 60px;
    }

    .flane-reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .flane-review-card {
        min-height: auto;
        padding: 22px 18px 20px;
        border-radius: 20px;
    }


    .flane-review-text {
        font-size: 1rem;
        line-height: 1.75;
    }

    .flane-review-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .flane-review-note {
        white-space: normal;
    }

    .flane-reviews-btn {
        min-width: 220px;
        width: 100%;
        max-width: 320px;
    }
}
/* TESTIMONIALS */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

.logo-blanc > a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.header-domain {
    margin-top: 0.2rem;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: lowercase;
}

.header-brand {
    color: #d1ad62;
    font-family: "Great Vibes", "Lora", serif;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 500;
    line-height: 0.9;
    white-space: nowrap;
}

.ivy-hero-background {
    background:
        linear-gradient(90deg, rgba(10, 45, 37, 0.8), rgba(10, 45, 37, 0.25)),
        url("../photos/home/slide-1111.jpg") center 35% / cover no-repeat;
}

.ivy-hero-brand {
    margin: 0;
    color: #d7b66e;
    font-family: "Great Vibes", "Lora", serif;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 0.9;
    text-shadow: 0 0.2rem 1.4rem rgba(0, 0, 0, 0.28);
}

.ivy-hero-location {
    margin: 0.75rem 0 0;
    color: #f6efe2;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

section[id] {
    scroll-margin-top: 110px;
}

/* Ivy Nails Salon: palette inspired by Jack Studio Nails */
:root {
    --brand-bg-main: #9fd8cc;
    --brand-bg-soft: #f2fbf8;
    --brand-wave: #9fd8cc;
    --brand-title: #12372c;
    --brand-text: #4b6b65;
    --brand-accent: #63b7a5;
    --brand-white: #ffffff;
    --brand-glass: rgba(159, 216, 204, 0.35);
    --brand-shadow: 0 12px 28px rgba(63, 114, 104, 0.14);
    --fs-section-title: clamp(2rem, 4vw, 3.5rem);
    --fs-section-subtitle: clamp(1.35rem, 2vw, 2rem);
    --fs-body: 1.08rem;
    --fs-card-title: 1.15rem;
    --fs-card-text: 1.02rem;
    --fs-nav: 14px;
    --fs-btn: 14px;
    --lh-title: 1.1;
    --lh-subtitle: 1.3;
    --lh-body: 1.75;
    --lh-card: 1.6;

    --primary: var(--brand-accent);
    --primary-gradient: var(--brand-accent);
    --secondary: var(--brand-white);
    --brand-forest: var(--brand-bg-main);
    --brand-forest-deep: #12372c;
    --brand-slate: var(--brand-text);
    --brand-mint: var(--brand-accent);
    --brand-champagne: var(--brand-accent);
    --brand-ivory: var(--brand-white);
}

body {
    color: var(--brand-text);
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.7), transparent 28rem),
        linear-gradient(180deg, var(--brand-bg-soft) 0%, var(--brand-white) 100%);
}

body::before {
    position: fixed;
    z-index: 20;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
    content: "";
    opacity: 0.025;
    pointer-events: none;
}

.nav-blanc-wrap {
    background: rgba(159, 216, 204, 0.94);
    border-bottom: 1px solid rgba(18, 55, 44, 0.08);
    box-shadow: var(--brand-shadow);
}

.logo-blanc > a,
.rd-navbar-brand > a {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
}

.header-brand-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.ivy-logo-mark {
    display: block;
    object-fit: contain;
}

.ivy-logo-mark-header {
    width: 2.4rem;
    height: 2.8rem;
}

.ivy-logo-mark-hero {
    width: clamp(3.75rem, 7vw, 5.5rem) !important;
    height: auto !important;
    margin: 0 auto 0.75rem;
    filter: drop-shadow(0 0.8rem 1.4rem rgba(5, 31, 26, 0.25));
}

.header-brand {
    color: var(--brand-title);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(0.92rem, 1.2vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
}

.header-domain {
    color: var(--brand-text);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
}

.menu-blanc a {
    color: var(--brand-title);
    transition: color 520ms cubic-bezier(0.32, 0.72, 0, 1),
        transform 520ms cubic-bezier(0.32, 0.72, 0, 1);
}

.menu-blanc a:hover,
.menu-blanc a:focus-visible {
    color: var(--brand-white);
    transform: translateY(-0.12rem);
}

.btn-nav-blanc,
.booking-link,
.blanc-gallery-btn,
.flane-reviews-btn,
.blanc-contact-lite-btn {
    border-color: rgba(159, 214, 203, 0.55) !important;
    color: var(--brand-white) !important;
    background: var(--brand-accent) !important;
    box-shadow: var(--brand-shadow) !important;
    transition: transform 520ms cubic-bezier(0.32, 0.72, 0, 1),
        background-color 520ms cubic-bezier(0.32, 0.72, 0, 1) !important;
}

.btn-nav-blanc:hover,
.booking-link:hover,
.blanc-gallery-btn:hover,
.flane-reviews-btn:hover,
.blanc-contact-lite-btn:hover {
    background: var(--brand-ivory) !important;
    color: var(--brand-title) !important;
    transform: translateY(-0.18rem);
}

.ivy-hero-background {
    background:
        linear-gradient(90deg, rgba(18, 55, 44, 0.88), rgba(24, 59, 54, 0.46)),
        url("../photos/home/slide-1111.jpg") center 35% / cover no-repeat;
}

.hero-card-x {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(24, 59, 54, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 2rem 5rem rgba(5, 31, 26, 0.26);
}

.hero-logo-x {
    flex-direction: column;
}

.ivy-hero-brand,
.blanc-service-title,
.blanc-story-title,
.flane-reviews-title,
.blanc-contact-lite-title,
.blanc-gallery-title {
    color: var(--brand-ivory) !important;
}

.ivy-hero-brand {
    font-family: "Lora", Georgia, serif;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    font-weight: 500;
    letter-spacing: -0.045em;
}

.ivy-hero-location,
.hero-info-x h5,
.blanc-service-subtitle,
.flane-review-stars {
    color: var(--brand-mint) !important;
}

.aboutv2,
.blanc-service-zone,
.blanc-story-zone,
.flane-reviews-section,
.staff-section,
.blanc-contact-lite,
.blanc-gallery-zone {
    background-color: var(--brand-bg-soft) !important;
    background-image: none !important;
}

.aboutv2-desc,
.blanc-service-text,
.blanc-story-text,
.flane-reviews-subtitle,
.blanc-contact-lite-sub {
    color: var(--brand-text) !important;
}

.blanc-service-title,
.blanc-story-title,
.flane-reviews-title,
.blanc-contact-lite-title,
.blanc-gallery-title,
.aboutv2-title,
.aboutv2-subtitle,
.blanc-service-card-title,
.flane-review-name,
.blanc-contact-lite-label {
    color: var(--brand-title) !important;
}

.blanc-service-card,
.flane-review-card,
.blanc-contact-lite-card {
    border: 1px solid rgba(99, 183, 165, 0.18) !important;
    background: var(--brand-white) !important;
    box-shadow: var(--brand-shadow) !important;
}

.blanc-service-wave path,
.blanc-story-wave-top path,
.flane-reviews-wave-top path {
    fill: var(--brand-wave) !important;
}

@media (max-width: 767px) {
    .ivy-logo-mark-header {
        width: 2rem;
        height: 2.25rem;
    }

    .header-brand-lockup {
        display: none;
    }

    .ivy-logo-mark-hero {
        width: 3.75rem !important;
    }

    .ivy-hero-location {
        max-width: 100%;
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        white-space: normal;
    }
}

/* Final hero overrides: keep after the global palette rules */
.hero-slider-x {
    height: clamp(590px, 72vh, 760px);
    min-height: 590px;
    background: var(--brand-bg-main);
}

.ivy-hero-background {
    transform: scale(1.015);
    background: var(--brand-bg-main);
}

.hero-overlay-x {
    padding: 2.5rem 1.25rem 3rem;
}

.hero-card-x {
    max-width: 660px;
    width: min(92%, 660px);
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 5vw, 4rem);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 2rem;
    background: rgba(242, 251, 248, 0.9);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), var(--brand-shadow);
    color: var(--brand-text);
}

.hero-logo-x {
    flex-direction: column;
}

.ivy-logo-mark-hero {
    width: clamp(3.25rem, 5vw, 4.5rem) !important;
    height: auto !important;
    margin-bottom: 0.65rem;
}

.ivy-hero-brand {
    color: var(--brand-title) !important;
    font-size: clamp(2.75rem, 5.4vw, 4.8rem);
    line-height: 0.95;
    text-shadow: none;
}

.ivy-hero-location {
    color: var(--brand-accent) !important;
}

.hero-slogan-x,
.hero-info-link-x,
.hero-info-x p {
    color: var(--brand-text) !important;
}

.hero-info-x h5 {
    color: var(--brand-title) !important;
}

@media (max-width: 767px) {
    .hero-slider-x {
        height: auto;
        min-height: 690px;
    }

    .ivy-hero-background {
        transform: none;
        object-position: center center;
    }

    .hero-single-video-x::after {
        background:
            linear-gradient(180deg, rgba(159, 216, 204, 0.56), rgba(242, 251, 248, 0.44));
    }

    .hero-overlay-x {
        min-height: 690px;
        padding: 1.5rem 0.9rem 5.75rem;
    }

    .hero-card-x {
        width: 100%;
        max-width: 21.5rem;
        padding: 1.75rem 1.2rem;
        border-radius: 1.65rem;
    }

    .ivy-logo-mark-hero {
        width: 3.5rem !important;
    }

    .ivy-hero-brand {
        font-size: clamp(2.35rem, 12vw, 3.2rem);
    }
}

@media (min-width: 768px) {
    .floating-button {
        display: none;
    }
}

/* Ivy Nails Salon logo lockup v2 */
.ivy-logo-lockup {
    display: block;
    object-fit: contain;
}

.ivy-logo-lockup-header {
    width: clamp(9.5rem, 15vw, 12rem);
    height: auto;
}

.hero-logo-x .ivy-logo-lockup-hero {
    width: min(100%, 27rem) !important;
    height: auto !important;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .ivy-logo-lockup-header {
        width: 8.25rem;
        height: auto;
    }

    .hero-logo-x .ivy-logo-lockup-hero {
        width: min(100%, 16rem) !important;
    }
}

/* Editorial split hero */
.ivy-editorial-hero {
    position: relative;
    overflow: hidden;
    min-height: min(760px, calc(100dvh - 90px));
    padding: clamp(2rem, 4vw, 4rem);
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.92), transparent 28rem),
        var(--brand-bg-soft);
}

.ivy-editorial-hero::before {
    position: absolute;
    inset: auto auto 7% -5%;
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(99, 183, 165, 0.2);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.ivy-editorial-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 7rem);
    width: min(100%, 1380px);
    min-height: 640px;
    margin: 0 auto;
}

.ivy-editorial-copy {
    max-width: 37rem;
    padding-left: clamp(0rem, 3vw, 3rem);
    animation: ivyEditorialCopyIn 900ms cubic-bezier(0.32, 0.72, 0, 1) both;
}

@keyframes ivyEditorialCopyIn {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ivy-editorial-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1.5rem;
    color: var(--brand-text);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.ivy-editorial-eyebrow::before {
    width: 2.4rem;
    height: 1px;
    background: var(--brand-accent);
    content: "";
}

.ivy-editorial-copy h1 {
    max-width: 10ch;
    margin: 0;
    color: var(--brand-title);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(3.5rem, 6.1vw, 7rem);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.88;
    text-wrap: balance;
}

.ivy-editorial-copy h1 em {
    color: var(--brand-accent);
    font-weight: 400;
}

.ivy-editorial-lead {
    max-width: 31rem;
    margin: 2rem 0 0;
    color: var(--brand-text);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.75;
    text-wrap: pretty;
}

.ivy-editorial-actions {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    margin-top: 2.25rem;
}

.ivy-editorial-primary.booking-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-height: 3.75rem;
    padding: 0.42rem 0.45rem 0.42rem 1.4rem;
    border: 0 !important;
    border-radius: 999px;
    background: var(--brand-title) !important;
    box-shadow: 0 1rem 2.5rem rgba(18, 55, 44, 0.16) !important;
    color: var(--brand-white) !important;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ivy-editorial-action-icon {
    display: inline-grid;
    width: 2.9rem;
    height: 2.9rem;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-accent);
    color: var(--brand-title);
    font-size: 1.15rem;
    transition: transform 650ms cubic-bezier(0.32, 0.72, 0, 1);
}

.ivy-editorial-primary:hover {
    transform: translateY(-0.2rem);
}

.ivy-editorial-primary:hover .ivy-editorial-action-icon {
    transform: translate(0.12rem, -0.12rem) rotate(8deg);
}

.ivy-editorial-call {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    color: var(--brand-title);
}

.ivy-editorial-call-label {
    color: var(--brand-text);
    font-size: 0.67rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ivy-editorial-phone-value {
    font-family: "Lora", Georgia, serif;
    font-size: 1rem;
}

.ivy-editorial-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2.5rem;
}

.ivy-editorial-services span {
    padding: 0.52rem 0.85rem;
    border: 1px solid rgba(99, 183, 165, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--brand-text);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.ivy-editorial-visual-shell {
    position: relative;
    padding: 0.55rem;
    border: 1px solid rgba(99, 183, 165, 0.2);
    border-radius: 2.6rem;
    background: rgba(159, 216, 204, 0.22);
    box-shadow: var(--brand-shadow);
    animation: ivyEditorialVisualIn 1050ms 120ms cubic-bezier(0.32, 0.72, 0, 1) both;
}

@keyframes ivyEditorialVisualIn {
    from {
        opacity: 0;
        transform: translateX(2.5rem) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.ivy-editorial-visual {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    border-radius: 2.08rem;
    background: var(--brand-bg-main);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.ivy-editorial-visual video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ivy-editorial-video-tint {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 55, 44, 0.04), rgba(18, 55, 44, 0.34)),
        linear-gradient(90deg, rgba(159, 216, 204, 0.16), transparent 55%);
    pointer-events: none;
}

.ivy-editorial-frame-number {
    position: absolute;
    top: 1.6rem;
    right: 1.7rem;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Lora", Georgia, serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
}

.ivy-editorial-contact {
    position: absolute;
    right: clamp(1.2rem, 3vw, 2.5rem);
    bottom: clamp(1.2rem, 3vw, 2.5rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem 1rem;
    width: min(72%, 25rem);
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 1.35rem;
    background: rgba(242, 251, 248, 0.9);
    box-shadow: 0 1rem 2.7rem rgba(18, 55, 44, 0.16);
}

.ivy-editorial-contact-label {
    grid-column: 1;
    margin: 0;
    color: var(--brand-title);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ivy-editorial-contact .address {
    grid-column: 1;
    color: var(--brand-text);
    font-size: 0.8rem;
    line-height: 1.45;
}

.ivy-editorial-contact-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--brand-accent);
    font-size: 1.25rem;
}

@media (max-width: 900px) {
    .ivy-editorial-hero {
        min-height: auto;
        padding: 3.25rem 1rem 6.5rem;
    }

    .ivy-editorial-hero::before {
        display: none;
    }

    .ivy-editorial-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.8rem;
        min-height: auto;
    }

    .ivy-editorial-copy {
        max-width: 42rem;
        padding: 0 0.25rem;
    }

    .ivy-editorial-copy h1 {
        max-width: 9ch;
        font-size: clamp(3.2rem, 14vw, 5rem);
    }

    .ivy-editorial-lead {
        margin-top: 1.5rem;
    }

    .ivy-editorial-visual {
        min-height: min(128vw, 590px);
    }
}

@media (max-width: 520px) {
    .ivy-editorial-hero {
        padding-top: 2.5rem;
    }

    .ivy-editorial-eyebrow {
        margin-bottom: 1.15rem;
        font-size: 0.62rem;
    }

    .ivy-editorial-copy h1 {
        font-size: clamp(3rem, 16vw, 4.25rem);
    }

    .ivy-editorial-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
    }

    .ivy-editorial-primary.booking-link {
        justify-content: space-between;
        width: 100%;
    }

    .ivy-editorial-call {
        padding-left: 0.25rem;
    }

    .ivy-editorial-services {
        margin-top: 1.7rem;
    }

    .ivy-editorial-visual-shell {
        border-radius: 2rem;
    }

    .ivy-editorial-visual {
        min-height: 31rem;
        border-radius: 1.55rem;
    }

    .ivy-editorial-contact {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        width: auto;
        padding: 1.05rem 1.1rem;
    }
}

/* Luxury beauty hero: full-bleed video with a soft mint wash */
.ivy-cinematic-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100dvh - 90px);
    isolation: isolate;
    background: var(--brand-title);
    color: var(--brand-white);
}

/* =========================================================
   IVY 2026 EDITORIAL REDESIGN
   Typography, section rhythm, API categories and gallery
========================================================= */
:root {
    --ivy-ink: #12372c;
    --ivy-copy: #3f625b;
    --ivy-muted: #6d8983;
    --ivy-line: rgba(18, 55, 44, 0.16);
    --ivy-paper: #f7fcfa;
}

body {
    color: var(--ivy-copy);
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.72;
}

h1,
h2,
h3,
h4,
.aboutv2-title,
.aboutv2-subtitle,
.blanc-service-title,
.blanc-story-title,
.flane-reviews-title,
.blanc-contact-lite-title,
.blanc-gallery-title {
    color: var(--ivy-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.ivy-section-label {
    margin: 0 0 0.8rem;
    color: var(--brand-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.aboutv2,
.blanc-service-zone,
.blanc-story-zone,
.flane-reviews-section,
.staff-section,
.blanc-contact-lite,
.blanc-gallery-zone {
    padding-top: clamp(6rem, 10vw, 9rem);
    padding-bottom: clamp(7rem, 11vw, 10rem);
}

/* About: large editorial image paired with concise copy. */
.aboutv2 {
    background:
        radial-gradient(circle at 92% 10%, rgba(159,216,204,0.2), transparent 28%),
        var(--ivy-paper);
}

.aboutv2-wrapper {
    max-width: 1220px;
}

.aboutv2-top {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 7.5rem);
}

.aboutv2-gallery {
    display: block;
    min-height: 0;
}

.aboutv2-editorial-image {
    position: relative;
    margin: 0;
}

.aboutv2-editorial-image::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(18,55,44,0.2);
    border-radius: 16px;
}

.aboutv2-editorial-image img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 26px 60px rgba(63,114,104,0.14);
}

.aboutv2-editorial-image figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    background: rgba(247,252,250,0.88);
    color: var(--ivy-ink);
    backdrop-filter: blur(12px);
    font: 600 0.66rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aboutv2-title {
    max-width: 11ch;
    margin-bottom: 1.6rem;
    font-size: clamp(2.6rem, 5.2vw, 5.4rem);
    line-height: 0.98;
}

.aboutv2-desc {
    max-width: 58ch;
    color: var(--ivy-copy);
    font-size: 1.07rem;
    line-height: 1.8;
}

.aboutv2-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    align-items: start;
    gap: clamp(3rem, 8vw, 8rem);
    margin-top: clamp(5rem, 9vw, 8rem);
    padding-top: clamp(3rem, 5vw, 4.5rem);
    border-top: 1px solid var(--ivy-line);
}

.aboutv2-subtitle {
    max-width: 18ch;
    font-size: clamp(2rem, 3.4vw, 3.3rem);
    line-height: 1.08;
}

.aboutv2-note {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--ivy-ink);
}

.aboutv2-note strong,
.aboutv2-note span {
    padding: 1rem 0;
    border-bottom: 1px solid var(--ivy-line);
}

.aboutv2-note strong {
    color: var(--ivy-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.aboutv2-note span {
    color: var(--ivy-muted);
    font: 600 0.72rem/1.4 "Montserrat", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Services: category-only API cards centered on the page. */
.blanc-service-zone {
    background:
        radial-gradient(circle at 8% 15%, rgba(255,255,255,0.82), transparent 24%),
        linear-gradient(145deg, #d8f0ea, #f5fcfa 58%, #cce9e2);
}

.blanc-service-shell {
    max-width: 1240px;
}

.blanc-service-head {
    max-width: 780px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.blanc-service-title {
    max-width: 12ch;
    margin: 0 auto 1.3rem;
    color: var(--ivy-ink);
    font-size: clamp(2.8rem, 5.5vw, 5.8rem);
    line-height: 0.98;
    text-transform: none;
}

.blanc-service-text {
    max-width: 62ch;
    margin: 0 auto;
    color: var(--ivy-copy);
    font-size: 1.08rem;
}

.blanc-service-grid.service-list {
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    gap: 22px;
    margin: 0 auto;
}

.ivy-category-card {
    min-width: 0;
}

.ivy-category-link {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(18,55,44,0.14);
    border-radius: 16px;
    background: rgba(247,252,250,0.82);
    color: inherit;
    box-shadow: 0 18px 44px rgba(63,114,104,0.1);
    text-decoration: none;
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.ivy-category-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px rgba(63,114,104,0.17);
}

.ivy-category-media {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.ivy-category-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: block;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.ivy-category-link:hover .ivy-category-media img {
    transform: scale(1.035);
}

.ivy-category-count {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    background: rgba(18,55,44,0.86);
    color: white;
    font: 600 0.66rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.06em;
    backdrop-filter: blur(10px);
}

.ivy-category-copy {
    display: flex;
    flex-direction: column;
    padding: 1.7rem;
}

.ivy-category-copy h3 {
    margin: 0 0 0.8rem;
    color: var(--ivy-ink);
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    line-height: 1.05;
}

.ivy-category-copy p {
    margin: 0 0 1.5rem;
    color: var(--ivy-copy);
    font-size: 0.98rem;
    line-height: 1.65;
}

.ivy-category-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--ivy-line);
    color: var(--ivy-ink);
    font: 700 0.72rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ivy-category-cta b {
    font-size: 1rem;
}

/* Shared section title hierarchy. */
.blanc-story-title,
.flane-reviews-title,
.blanc-contact-lite-title,
.blanc-gallery-title {
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: 1;
    text-transform: none;
}

.blanc-story-text,
.flane-reviews-subtitle,
.blanc-contact-lite-sub {
    color: var(--ivy-copy);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Gallery: framed editorial grid, view switch and progressive reveal. */
.blanc-gallery-zone {
    background:
        radial-gradient(circle at 90% 15%, rgba(159,216,204,0.26), transparent 28%),
        #f7fcfa;
}

.blanc-gallery-shell {
    width: min(1240px, calc(100% - 40px));
    max-width: none;
    padding: clamp(2rem, 5vw, 4.5rem);
    border: 1px solid rgba(18,55,44,0.22);
    border-radius: 20px;
    background: rgba(255,255,255,0.42);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.blanc-gallery-head {
    max-width: 700px;
    margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
    text-align: left;
}

.blanc-gallery-title {
    margin: 0 0 1rem;
}

.blanc-gallery-intro {
    max-width: 56ch;
    margin: 0;
    color: var(--ivy-copy);
}

.blanc-gallery-view-switch {
    display: flex;
    gap: 0.4rem;
    margin-top: 1.6rem;
}

.gallery-view-button {
    padding: 0.7rem 1rem;
    border: 1px solid var(--ivy-line);
    border-radius: 999px;
    background: transparent;
    color: var(--ivy-copy);
    font: 600 0.7rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.05em;
    transition: color 180ms ease, background-color 180ms ease;
}

.gallery-view-button.is-active {
    background: var(--ivy-ink);
    color: white;
}

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

.blanc-gallery-card {
    grid-column: span 4;
    height: auto;
    overflow: hidden;
    border: 1px solid rgba(18,55,44,0.15);
    border-radius: 12px;
    background: #d9eee9;
}

.blanc-gallery-card:nth-child(4n + 2) {
    grid-column: span 5;
}

.blanc-gallery-card:nth-child(4n + 3) {
    grid-column: span 3;
}

.blanc-gallery-card-large {
    grid-column: span 7;
    grid-row: span 2;
}

.custom-gallery-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.blanc-gallery-card img {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
    transition: transform 520ms cubic-bezier(.2,.7,.2,1);
}

.blanc-gallery-card-large img {
    height: 674px;
}

.custom-gallery-trigger:hover img {
    transform: scale(1.035);
}

.gallery-image-index,
.gallery-image-open {
    position: absolute;
    bottom: 0.75rem;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    background: rgba(18,55,44,0.78);
    color: white;
    backdrop-filter: blur(10px);
    font: 600 0.66rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-image-index {
    left: 0.75rem;
    transform: translateY(5px);
}

.gallery-image-open {
    right: 0.75rem;
    transform: translateY(5px);
}

.custom-gallery-trigger:hover .gallery-image-index,
.custom-gallery-trigger:hover .gallery-image-open,
.custom-gallery-trigger:focus-visible .gallery-image-index,
.custom-gallery-trigger:focus-visible .gallery-image-open {
    opacity: 1;
    transform: translateY(0);
}

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

.blanc-gallery-grid.is-list-view .blanc-gallery-card {
    grid-column: auto;
    grid-row: auto;
}

.blanc-gallery-grid.is-list-view .blanc-gallery-card img {
    height: 240px;
}

.blanc-gallery-action {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.blanc-gallery-more,
.blanc-gallery-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.45rem;
    border: 1px solid var(--ivy-ink);
    border-radius: 999px;
    font: 700 0.72rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease;
}

.blanc-gallery-more {
    background: transparent;
    color: var(--ivy-ink);
}

.blanc-gallery-btn {
    background: var(--ivy-ink);
    color: white !important;
}

.blanc-gallery-more:hover,
.blanc-gallery-btn:hover {
    transform: translateY(-2px);
}

.blanc-gallery-more[hidden] {
    display: none;
}

@media (max-width: 991px) {
    .aboutv2-top {
        grid-template-columns: 1fr;
    }

    .aboutv2-content {
        max-width: 700px;
    }

    .aboutv2-bottom {
        grid-template-columns: 1fr;
    }

    .blanc-service-grid.service-list {
        width: min(760px, 100%);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blanc-gallery-card,
    .blanc-gallery-card:nth-child(n),
    .blanc-gallery-card-large {
        grid-column: span 6;
        grid-row: auto;
    }

    .blanc-gallery-card img,
    .blanc-gallery-card-large img {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .aboutv2,
    .blanc-service-zone,
    .blanc-story-zone,
    .flane-reviews-section,
    .staff-section,
    .blanc-contact-lite,
    .blanc-gallery-zone {
        padding-top: 5rem;
        padding-bottom: 6rem;
    }

    .aboutv2-wrapper,
    .blanc-service-shell {
        width: min(100% - 32px, 680px);
    }

    .aboutv2-editorial-image::before {
        inset: 10px -8px -10px 8px;
    }

    .aboutv2-title,
    .blanc-service-title,
    .blanc-story-title,
    .flane-reviews-title,
    .blanc-contact-lite-title,
    .blanc-gallery-title {
        font-size: clamp(2.35rem, 11vw, 3.7rem);
    }

    .blanc-service-grid.service-list {
        width: min(420px, 100%);
        grid-template-columns: 1fr;
    }

    .ivy-category-media img {
        aspect-ratio: 4 / 4.6;
    }

    .blanc-gallery-shell {
        width: calc(100% - 24px);
        padding: 1.2rem;
        border-radius: 16px;
    }

    .blanc-gallery-grid,
    .blanc-gallery-grid.is-list-view {
        grid-template-columns: 1fr;
    }

    .blanc-gallery-card,
    .blanc-gallery-card:nth-child(n),
    .blanc-gallery-card-large,
    .blanc-gallery-grid.is-list-view .blanc-gallery-card {
        grid-column: auto;
        grid-row: auto;
    }

    .blanc-gallery-card img,
    .blanc-gallery-card-large img,
    .blanc-gallery-grid.is-list-view .blanc-gallery-card img {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .blanc-gallery-action {
        flex-direction: column;
    }

    .blanc-gallery-more,
    .blanc-gallery-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ivy-category-link,
    .ivy-category-media img,
    .blanc-gallery-card img,
    .gallery-image-index,
    .gallery-image-open {
        transition: none;
    }
}

.ivy-cinematic-video {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(0.94) brightness(0.82);
    transform: scale(1.015);
}

.ivy-cinematic-wash {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 55, 44, 0.82) 0%, rgba(18, 55, 44, 0.52) 46%, rgba(99, 183, 165, 0.28) 100%),
        linear-gradient(180deg, rgba(159, 216, 204, 0.2), rgba(18, 55, 44, 0.2) 55%, rgba(18, 55, 44, 0.62));
    box-shadow: inset 0 0 10rem rgba(18, 55, 44, 0.18);
}

.ivy-cinematic-wash::after {
    position: absolute;
    inset: 0;
    background: rgba(159, 216, 204, 0.08);
    content: "";
}

.ivy-cinematic-inner {
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(100%, 1440px);
    min-height: calc(100dvh - 90px);
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 4.25rem) clamp(1.25rem, 6vw, 6.5rem) clamp(3.5rem, 6vw, 6rem);
}

.ivy-cinematic-topline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: ivyCinematicFade 900ms cubic-bezier(0.32, 0.72, 0, 1) both;
}

.ivy-cinematic-topline p {
    margin: 0;
}

.ivy-cinematic-title-wrap {
    align-self: center;
    max-width: 70rem;
    padding: clamp(3rem, 7vh, 6rem) 0;
    animation: ivyCinematicRise 1100ms 100ms cubic-bezier(0.32, 0.72, 0, 1) both;
}

.ivy-cinematic-kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    color: #d9f2ec;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.ivy-cinematic-kicker::before {
    width: 2.75rem;
    height: 1px;
    background: #d9f2ec;
    content: "";
}

.ivy-cinematic-title-wrap h1 {
    max-width: 10ch;
    margin: 0;
    color: var(--brand-white);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(4.4rem, 9.1vw, 9rem);
    font-weight: 500;
    letter-spacing: -0.072em;
    line-height: 0.82;
    text-shadow: 0 1.4rem 3.8rem rgba(18, 55, 44, 0.2);
    text-wrap: balance;
}

.ivy-cinematic-title-wrap h1 em {
    color: #bfe7de;
    font-weight: 400;
}

.ivy-cinematic-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    animation: ivyCinematicFade 1100ms 240ms cubic-bezier(0.32, 0.72, 0, 1) both;
}

.ivy-cinematic-intro > p {
    max-width: 34rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    line-height: 1.65;
    text-wrap: pretty;
}

.ivy-cinematic-service-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ivy-cinematic-service-line span + span::before {
    margin-right: 1.5rem;
    color: #bfe7de;
    content: "·";
}

.ivy-cinematic-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ivy-cinematic-book.booking-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-height: 3.8rem;
    padding: 0.42rem 0.45rem 0.42rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 999px;
    background: rgba(242, 251, 248, 0.94) !important;
    box-shadow: 0 1.25rem 3rem rgba(18, 55, 44, 0.2) !important;
    color: var(--brand-title) !important;
    font-size: 0.83rem;
    font-weight: 700;
    transition: transform 650ms cubic-bezier(0.32, 0.72, 0, 1) !important;
}

.ivy-cinematic-book-icon {
    display: inline-grid;
    width: 2.9rem;
    height: 2.9rem;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-accent);
    color: var(--brand-title);
    font-size: 1.1rem;
    transition: transform 650ms cubic-bezier(0.32, 0.72, 0, 1);
}

.ivy-cinematic-book:hover {
    transform: translateY(-0.2rem);
}

.ivy-cinematic-book:hover .ivy-cinematic-book-icon {
    transform: translate(0.12rem, -0.12rem) rotate(8deg);
}

.ivy-cinematic-call {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    color: var(--brand-white);
}

.ivy-cinematic-call > span {
    color: #bfe7de;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ivy-cinematic-call strong {
    color: var(--brand-white);
    font-family: "Lora", Georgia, serif;
    font-size: 0.98rem;
    font-weight: 500;
}

.ivy-cinematic-scroll {
    position: absolute;
    right: 1.25rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

@keyframes ivyCinematicRise {
    from {
        opacity: 0;
        transform: translateY(3rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ivyCinematicFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .ivy-cinematic-hero,
    .ivy-cinematic-inner {
        min-height: calc(100dvh - 90px);
    }

    .ivy-cinematic-video {
        object-position: center;
        filter: saturate(0.78) contrast(0.92) brightness(0.8);
        transform: none;
    }

    .ivy-cinematic-wash {
        background:
            linear-gradient(180deg, rgba(18, 55, 44, 0.52), rgba(18, 55, 44, 0.38) 42%, rgba(18, 55, 44, 0.78)),
            rgba(99, 183, 165, 0.22);
    }

    .ivy-cinematic-inner {
        grid-template-rows: auto 1fr auto;
        padding: 1.6rem 1.25rem 6.75rem;
    }

    .ivy-cinematic-topline p:last-child {
        display: none;
    }

    .ivy-cinematic-title-wrap {
        align-self: center;
        padding: 2.5rem 0;
    }

    .ivy-cinematic-kicker {
        font-size: 0.6rem;
    }

    .ivy-cinematic-title-wrap h1 {
        max-width: 8ch;
        font-size: clamp(3.6rem, 18vw, 5.5rem);
        line-height: 0.86;
    }

    .ivy-cinematic-bottom {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        padding-top: 1.25rem;
    }

    .ivy-cinematic-intro > p {
        font-size: 0.92rem;
    }

    .ivy-cinematic-service-line {
        display: none;
    }

    .ivy-cinematic-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 0.85rem;
    }

    .ivy-cinematic-book.booking-link {
        justify-content: space-between;
        width: 100%;
    }

    .ivy-cinematic-call {
        padding-left: 0.2rem;
    }

    .ivy-cinematic-scroll {
        display: none;
    }
}

/* Section-specific compositions for the editorial redesign. */
.blanc-story-zone {
    background:
        radial-gradient(circle at 12% 8%, rgba(159,216,204,0.18), transparent 28%),
        var(--ivy-paper);
}

.blanc-story-shell {
    max-width: 1220px;
}

.blanc-team-block {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(3rem, 8vw, 8rem);
    margin-bottom: clamp(6rem, 10vw, 9rem);
}

.blanc-team-copy {
    max-width: 520px;
}

.blanc-team-photo-wrap {
    border-radius: 16px 100px 16px 16px;
    background: var(--brand-bg-main);
    box-shadow: 0 24px 58px rgba(63,114,104,0.15);
}

.blanc-values-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    align-items: stretch;
    gap: 16px;
}

.blanc-flip-face {
    border-radius: 16px;
}

.blanc-flip-back {
    border-color: rgba(18,55,44,0.14);
    background:
        radial-gradient(circle at 85% 10%, rgba(159,216,204,0.3), transparent 32%),
        #edf8f5;
}

.flane-reviews-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.86), transparent 25%),
        #dcefe9;
}

.flane-reviews-shell {
    max-width: 1220px;
    margin: 0 auto;
}

.flane-reviews-head {
    max-width: 720px;
    margin-left: 0;
    text-align: left;
}

.flane-reviews-grid {
    grid-template-columns: 1.18fr 0.82fr 0.82fr;
    align-items: start;
}

.flane-review-card {
    min-height: 310px;
    border: 1px solid rgba(18,55,44,0.13);
    border-radius: 16px;
    background: rgba(247,252,250,0.78);
    box-shadow: 0 16px 38px rgba(63,114,104,0.09);
}

.flane-review-card:first-child {
    min-height: 360px;
    background: var(--ivy-ink);
}

.flane-review-card:first-child .flane-review-name,
.flane-review-card:first-child .flane-review-text {
    color: white;
}

.flane-review-card:first-child .flane-review-verified,
.flane-review-card:first-child .flane-review-note {
    color: rgba(255,255,255,0.65);
}

.staff-section {
    background:
        linear-gradient(90deg, rgba(159,216,204,0.24) 1px, transparent 1px),
        linear-gradient(rgba(159,216,204,0.18) 1px, transparent 1px),
        #f7fcfa;
    background-size: 72px 72px;
}

.staff-section > .container {
    max-width: 1180px;
}

.blanc-contact-lite {
    background: #d6ece6;
}

.blanc-contact-lite-bg {
    background:
        radial-gradient(circle at 10% 8%, rgba(255,255,255,0.9), transparent 26%),
        linear-gradient(145deg, #edf8f5, #cce8e1);
}

.blanc-contact-lite-inner {
    max-width: 1180px;
}

.blanc-contact-lite-head {
    max-width: 720px;
    margin-left: 0;
    text-align: left !important;
}

.blanc-contact-lite-main {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 18px;
}

.blanc-contact-lite-card {
    border: 1px solid rgba(18,55,44,0.13);
    border-radius: 16px;
    background: rgba(247,252,250,0.82);
    box-shadow: 0 18px 44px rgba(63,114,104,0.09);
    text-align: left;
}

.blanc-contact-lite-social {
    justify-content: flex-start;
}

.blanc-contact-lite-map-wrap {
    border-color: rgba(18,55,44,0.14);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(63,114,104,0.11);
}

@media (max-width: 991px) {
    .blanc-team-block,
    .blanc-contact-lite-main {
        grid-template-columns: 1fr;
    }

    .blanc-values-grid,
    .flane-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .blanc-values-grid,
    .flane-reviews-grid {
        grid-template-columns: 1fr;
    }

    .flane-review-card:first-child {
        min-height: auto;
    }

    .blanc-contact-lite-head {
        text-align: center !important;
    }
}

/* About Us v3: alternating editorial story with a real service moment. */
.aboutv2-title {
    max-width: 12.5ch;
    font-size: clamp(2.55rem, 4.7vw, 4.9rem);
    line-height: 0.99;
}

.aboutv2-text-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.6rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--ivy-ink);
    color: var(--ivy-ink);
    font: 700 0.72rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.aboutv2-text-link span {
    transition: transform 180ms ease;
}

.aboutv2-text-link:hover span {
    transform: translateY(3px);
}

.aboutv2-bottom {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
}

.aboutv2-lower-image {
    position: relative;
    margin: 0;
}

.aboutv2-lower-image::after {
    content: "";
    position: absolute;
    inset: -14px 14px 14px -14px;
    z-index: -1;
    border-radius: 16px;
    background:
        repeating-radial-gradient(circle at 0 0, transparent 0 24px, rgba(18,55,44,0.08) 25px 26px),
        var(--brand-bg-main);
}

.aboutv2-lower-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 58px rgba(63,114,104,0.15);
}

.aboutv2-lower-image figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    background: rgba(18,55,44,0.82);
    color: white;
    backdrop-filter: blur(10px);
    font: 600 0.65rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aboutv2-experience-copy {
    max-width: 500px;
}

.aboutv2-experience-copy .aboutv2-subtitle {
    max-width: 14ch;
    margin-bottom: 1.4rem;
}

.aboutv2-service-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.8rem;
}

.aboutv2-service-notes span {
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(18,55,44,0.18);
    border-radius: 999px;
    background: rgba(159,216,204,0.2);
    color: var(--ivy-ink);
    font: 600 0.67rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.04em;
}

@media (max-width: 991px) {
    .aboutv2-bottom {
        grid-template-columns: 1fr;
    }

    .aboutv2-experience-copy {
        max-width: 680px;
    }
}

@media (max-width: 767px) {
    .aboutv2-title {
        font-size: clamp(2.3rem, 10.5vw, 3.6rem);
    }

    .aboutv2-lower-image::after {
        inset: -8px 8px 8px -8px;
    }

    .aboutv2-lower-image figcaption {
        right: 0.7rem;
        bottom: 0.7rem;
        max-width: calc(100% - 1.4rem);
    }

    .aboutv2-service-notes {
        display: grid;
        grid-template-columns: 1fr;
    }

    .aboutv2-service-notes span {
        width: fit-content;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aboutv2-text-link span {
        transition: none;
    }
}

/* Team, experience, reviews and API-aware staff profiles. */
.blanc-team-photo {
    aspect-ratio: 3 / 2;
    min-height: 0;
}

.blanc-values-head {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.blanc-values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blanc-flip-value,
.blanc-flip-value-inner {
    min-height: 360px;
    height: 360px;
}

.blanc-flip-front img {
    object-position: center;
}

.blanc-flip-overlay {
    background:
        linear-gradient(180deg, transparent 35%, rgba(10,40,32,0.72)),
        rgba(18,55,44,0.08);
}

.blanc-flip-title {
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    text-align: left;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.6rem, 2.3vw, 2.35rem);
    font-weight: 400;
}

.flane-reviews-head {
    max-width: 760px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

.flane-reviews-title {
    text-align: center;
}

.flane-reviews-subtitle {
    max-width: 60ch;
    margin-inline: auto;
    text-align: center;
}

.staff-section .text-center {
    max-width: 760px;
    margin-inline: auto;
}

.staff-list {
    margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.ivy-staff-grid {
    width: min(1040px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 0 auto;
}

.ivy-staff-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(18,55,44,0.14);
    border-radius: 16px;
    background: rgba(247,252,250,0.9);
    box-shadow: 0 18px 42px rgba(63,114,104,0.1);
}

.ivy-staff-avatar {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 230px;
    padding: 2rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.9), transparent 26%),
        linear-gradient(145deg, #d9f0ea, #9fd8cc);
}

.ivy-staff-card:nth-child(2) .ivy-staff-avatar {
    background:
        radial-gradient(circle at 82% 18%, rgba(255,255,255,0.82), transparent 25%),
        linear-gradient(145deg, #eff9f6, #b9e2d9);
}

.ivy-staff-card:nth-child(3) .ivy-staff-avatar {
    background:
        radial-gradient(circle at 15% 80%, rgba(255,255,255,0.75), transparent 27%),
        linear-gradient(145deg, #c8e8e0, #72bfad);
}

.ivy-staff-monogram {
    width: 128px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 50%;
    background: rgba(18,55,44,0.9);
    color: var(--brand-bg-main);
    box-shadow:
        0 18px 42px rgba(18,55,44,0.2),
        inset 0 0 0 7px rgba(255,255,255,0.06);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 4rem;
    line-height: 1;
}

.ivy-staff-photo {
    width: 180px;
    aspect-ratio: 1;
    display: block;
    object-fit: cover;
    border: 6px solid rgba(255,255,255,0.62);
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(18,55,44,0.2);
}

.ivy-staff-copy {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 1.7rem;
}

.ivy-staff-role {
    margin: 0 0 0.55rem;
    color: var(--brand-accent);
    font: 700 0.66rem/1.3 "Montserrat", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ivy-staff-copy h3 {
    margin: 0 0 0.9rem;
    color: var(--ivy-ink);
    font-size: 2rem;
    line-height: 1;
}

.ivy-staff-description {
    margin: 0 0 1.5rem;
    color: var(--ivy-copy);
    font-size: 0.98rem;
    line-height: 1.7;
}

.ivy-staff-book {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--ivy-line);
    color: var(--ivy-ink);
    font: 700 0.7rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.ivy-staff-book span {
    font-size: 1rem;
    transition: transform 180ms ease;
}

.ivy-staff-book:hover span {
    transform: translate(2px, -2px);
}

@media (max-width: 991px) {
    .blanc-values-grid,
    .ivy-staff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ivy-staff-card:last-child {
        grid-column: 1 / -1;
        width: min(500px, 100%);
        justify-self: center;
    }
}

@media (max-width: 767px) {
    .blanc-values-grid,
    .ivy-staff-grid {
        grid-template-columns: 1fr;
    }

    .blanc-flip-value,
    .blanc-flip-value-inner {
        height: 390px;
    }

    .ivy-staff-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .ivy-staff-copy {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ivy-staff-book span {
        transition: none;
    }
}

/* Review contrast correction. */
.flane-review-card:first-child {
    background: rgba(247,252,250,0.9) !important;
}

.flane-review-card:first-child .flane-review-name,
.flane-review-card:first-child .flane-review-text {
    color: var(--ivy-ink) !important;
}

.flane-review-card:first-child .flane-review-verified,
.flane-review-card:first-child .flane-review-note {
    color: var(--ivy-muted) !important;
}

/* Gallery business card shown on the eight Ivy editorial images. */
.gallery-visit-card {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: calc(100% - 1.6rem);
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    background: rgba(247,252,250,0.84);
    color: var(--ivy-copy);
    box-shadow: 0 10px 26px rgba(18,55,44,0.13);
    backdrop-filter: blur(12px);
    text-align: left;
}

.gallery-visit-card img {
    width: 30px !important;
    height: 30px !important;
    aspect-ratio: 1 !important;
    flex: 0 0 30px;
    border-radius: 7px;
    object-fit: contain !important;
    transform: none !important;
}

.gallery-visit-card > span {
    display: grid;
    gap: 0.15rem;
    font: 500 0.6rem/1.2 "Montserrat", sans-serif;
    letter-spacing: 0.02em;
}

.gallery-visit-card strong {
    color: var(--ivy-ink);
    font-size: 0.68rem;
    font-weight: 700;
}

/* Closing statement: the strongest visual moment before the footer. */
.ivy-closing-cta {
    position: relative;
    isolation: isolate;
    min-height: 680px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 9rem) 24px;
    color: white;
}

.ivy-closing-bg,
.ivy-closing-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.ivy-closing-bg {
    object-fit: cover;
    transform: scale(1.03);
}

.ivy-closing-overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(10,39,31,0.92), rgba(18,55,44,0.66) 58%, rgba(18,55,44,0.34)),
        linear-gradient(180deg, transparent, rgba(10,39,31,0.55));
}

.ivy-closing-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.ivy-closing-label {
    margin: 0 0 1rem;
    color: var(--brand-bg-main);
    font: 700 0.7rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ivy-closing-inner h2 {
    max-width: 9ch;
    margin: 0 0 1.6rem;
    color: white;
    font-size: clamp(4rem, 8.5vw, 8.8rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
}

.ivy-closing-inner > p:not(.ivy-closing-label) {
    max-width: 53ch;
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.ivy-closing-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ivy-closing-book,
.ivy-closing-call {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font: 700 0.73rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.ivy-closing-book {
    gap: 1.8rem;
    padding: 0.75rem 0.75rem 0.75rem 1.5rem;
    background: var(--brand-bg-main);
    color: var(--ivy-ink) !important;
}

.ivy-closing-book span {
    width: 40px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ivy-ink);
    color: white;
}

.ivy-closing-call {
    padding: 0.75rem 1.45rem;
    border: 1px solid rgba(255,255,255,0.45);
    color: white;
}

/* Footer based on the supplied three-column reference. */
.ivy-footer {
    padding: clamp(4rem, 7vw, 6rem) 24px 2rem;
    background: #153b31;
    color: rgba(242,251,248,0.76);
}

.ivy-footer-inner {
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.55fr) minmax(190px, 0.65fr);
    gap: clamp(3rem, 8vw, 8rem);
    margin: 0 auto;
}

.ivy-footer-brand img {
    width: min(250px, 100%);
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.ivy-footer-brand p {
    max-width: 46ch;
    margin: 1.8rem 0 1.2rem;
}

.ivy-footer-brand address {
    margin: 0 0 1rem;
    color: inherit;
    font-style: normal;
}

.ivy-footer a {
    color: rgba(242,251,248,0.82);
    text-decoration: none;
}

.ivy-footer a:hover,
.ivy-footer-visit span {
    color: var(--brand-bg-main);
}

.ivy-footer-nav,
.ivy-footer-visit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.ivy-footer-nav h2,
.ivy-footer-visit h2 {
    margin: 0 0 0.15rem;
    color: var(--brand-bg-main);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ivy-footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1.7rem;
    border-top: 1px solid rgba(242,251,248,0.15);
    font-size: 0.88rem;
}

.ivy-footer-bottom p {
    margin: 0;
}

@media (max-width: 767px) {
    .ivy-closing-cta {
        min-height: 620px;
        padding-inline: 20px;
    }

    .ivy-closing-inner h2 {
        font-size: clamp(3.5rem, 17vw, 5.2rem);
    }

    .ivy-closing-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ivy-closing-book,
    .ivy-closing-call {
        width: 100%;
    }

    .ivy-closing-book {
        justify-content: space-between;
    }

    .ivy-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1.5rem;
    }

    .ivy-footer-brand,
    .ivy-footer-bottom {
        grid-column: 1 / -1;
    }

    .ivy-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
    }
}

/* Terms page — editorial index with readable legal sections. */
.ivy-terms-main {
    padding: clamp(5rem, 9vw, 8.5rem) 24px clamp(6rem, 10vw, 9rem);
    background:
        radial-gradient(circle at 8% 8%, rgba(159,216,204,0.28), transparent 30rem),
        linear-gradient(180deg, #f7fcfa 0%, var(--brand-bg-soft) 100%);
}

.ivy-terms-intro,
.ivy-terms-layout {
    width: min(1160px, 100%);
    margin-inline: auto;
}

.ivy-terms-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 1rem clamp(3rem, 9vw, 8rem);
    align-items: end;
    padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.ivy-terms-intro .ivy-legal-kicker {
    grid-column: 1 / -1;
    margin: 0 0 0.35rem;
    color: var(--brand-accent);
    font: 700 0.7rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.ivy-terms-intro h2 {
    max-width: 10ch;
    margin: 0;
    color: var(--brand-title);
    font: 400 clamp(3.2rem, 6.5vw, 6.7rem)/0.92 "Playfair Display", Georgia, serif;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.ivy-terms-intro > p:not(.ivy-legal-kicker) {
    max-width: 48ch;
    margin: 0;
    color: var(--brand-text);
    font-size: 1.04rem;
    line-height: 1.78;
}

.ivy-terms-intro > span {
    grid-column: 2;
    color: var(--brand-accent);
    font: 700 0.69rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ivy-terms-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: start;
}

.ivy-terms-aside {
    position: sticky;
    top: 130px;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(18,55,44,0.28);
}

.ivy-terms-aside > p,
.ivy-terms-help > span {
    margin: 0 0 1rem;
    color: var(--brand-accent);
    font: 700 0.68rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ivy-terms-aside nav {
    display: grid;
}

.ivy-terms-aside nav a {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.55rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(18,55,44,0.1);
    color: var(--brand-text);
    font-size: 0.88rem;
    line-height: 1.35;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.ivy-terms-aside nav a span {
    color: var(--brand-accent);
    font-size: 0.67rem;
    font-variant-numeric: tabular-nums;
}

.ivy-terms-aside nav a:hover {
    color: var(--brand-title);
    transform: translateX(4px);
}

.ivy-terms-help {
    display: grid;
    margin-top: 2rem;
    padding: 1.2rem;
    border-radius: 4px 22px 4px 4px;
    background: var(--brand-bg-main);
}

.ivy-terms-help > span {
    margin-bottom: 0.5rem;
    color: var(--brand-title);
}

.ivy-terms-help a {
    color: var(--brand-title);
    font-weight: 700;
    text-decoration: none;
}

.ivy-terms-content {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(99,183,165,0.22);
    border-radius: 8px 44px 8px 8px;
    background: rgba(99,183,165,0.18);
    box-shadow: 0 28px 80px rgba(63,114,104,0.1);
}

.ivy-terms-section {
    scroll-margin-top: 130px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    padding: clamp(2rem, 5vw, 4.2rem);
    background: rgba(255,255,255,0.93);
}

.ivy-terms-overview {
    background:
        radial-gradient(circle at 100% 0, rgba(159,216,204,0.28), transparent 22rem),
        rgba(255,255,255,0.95);
}

.ivy-terms-number {
    color: var(--brand-accent);
    font: 500 clamp(1.5rem, 3vw, 2.3rem)/1 "Playfair Display", Georgia, serif;
    font-variant-numeric: tabular-nums;
}

.ivy-terms-label,
.ivy-terms-contact > p {
    margin: 0 0 0.55rem;
    color: var(--brand-accent);
    font: 700 0.67rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ivy-terms-section h3,
.ivy-terms-contact h3 {
    margin: 0 0 1.3rem;
    color: var(--brand-title);
    font: 500 clamp(1.7rem, 3.3vw, 2.6rem)/1.1 "Playfair Display", Georgia, serif;
    letter-spacing: -0.025em;
}

.ivy-terms-section p:not(.ivy-terms-label),
.ivy-terms-section li {
    max-width: 68ch;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.78;
}

.ivy-terms-section p:last-child {
    margin-bottom: 0;
}

.ivy-terms-section ul {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding-left: 1.2rem;
}

.ivy-terms-section li::marker {
    color: var(--brand-accent);
}

.ivy-terms-section a {
    color: var(--brand-title);
    font-weight: 700;
}

.ivy-terms-contact {
    padding: clamp(2.5rem, 6vw, 5rem);
    background:
        linear-gradient(110deg, rgba(18,55,44,0.97), rgba(33,88,72,0.94)),
        var(--brand-title);
    color: white;
}

.ivy-terms-contact > p {
    color: var(--brand-bg-main);
}

.ivy-terms-contact h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.ivy-terms-contact address {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-style: normal;
    line-height: 1.7;
}

.ivy-terms-contact > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.ivy-terms-contact a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    padding: 0.8rem 1.3rem;
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 999px;
    color: white;
    font: 700 0.73rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.045em;
    text-decoration: none;
}

.ivy-terms-contact .booking-link {
    border-color: var(--brand-bg-main);
    background: var(--brand-bg-main);
    color: var(--brand-title);
}

@media (max-width: 900px) {
    .ivy-terms-intro {
        grid-template-columns: 1fr;
    }

    .ivy-terms-intro > span {
        grid-column: 1;
    }

    .ivy-terms-layout {
        grid-template-columns: 1fr;
    }

    .ivy-terms-aside {
        position: static;
        display: none;
    }
}

@media (max-width: 600px) {
    .ivy-terms-main {
        padding-inline: 18px;
    }

    .ivy-terms-section {
        grid-template-columns: 1fr;
        padding: 1.6rem;
    }

    .ivy-terms-number {
        padding-bottom: 0.8rem;
        border-bottom: 1px solid rgba(99,183,165,0.24);
    }

    .ivy-terms-contact {
        padding: 2rem 1.6rem;
    }

    .ivy-terms-contact > div,
    .ivy-terms-contact a {
        width: 100%;
    }
}
