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

/* =========================
   ROOT / DESIGN SYSTEM
========================= */
:root {
    /* MAIN BACKGROUND (taupe warm) */
    --brand-bg-main: #bfa58a;      
    --brand-bg-soft: #f5f1ec;     
    --brand-wave: #f1efe9;           

    /* TEXT */
    --brand-title: #553b2e;;          
    --brand-text: #3b3128;        
    
    /* ACCENT */
    --brand-accent: #7a5c3e;         
    --brand-white: #ffffff;

    /* GLASS / OVERLAY */
    --brand-glass: rgba(198, 174, 142, 0.4); 
    
    /* SHADOW */
    --brand-shadow: 0 12px 28px rgba(60, 50, 40, 0.12);
    --font-display: "OnglesDisplay", "Bodoni 72", "Playfair Display", Georgia, serif;
    --font-body: "OnglesText", Lora, Georgia, "Times New Roman", serif;
    --font-ui: "Open Sans", Arial, sans-serif;

    /* 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: 150px;
    color: var(--brand-text);
    background: var(--brand-bg-soft);
    font-family: var(--font-body);
    font-size: 17px;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

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

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

.nav-blanc-wrap.nav-top-x {
    background: var(--brand-bg-soft)!important;
    backdrop-filter: blur(4px);
}

.nav-blanc-wrap.nav-scroll-x {
    background: var(--brand-bg-soft) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-blanc-inner {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 20px 12px;
    min-height: 150px;
    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: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--brand-title);
    text-decoration: none;
    font-size: var(--fs-btn);
    color: var(--brand-title);
    transition: 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

/* 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-flex;
}

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

.header-logo-img {
    height: 110px !important;
    width: auto !important;
    margin: 0 auto !important;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.nav-scroll-x .header-logo-img {
    height: 80px !important;
}

.logo-blanc .logo-wordmark {
    min-height: 58px;
}

.logo-blanc .logo-wordmark span {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.logo-blanc .logo-wordmark small {
    margin-top: 3px;
}

/* 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: 14px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    font-family: var(--font-ui);
    font-weight: 600;
    text-transform: uppercase;
    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: 22px;
    cursor: pointer;
    color: var(--brand-title);
    position: relative;
    z-index: 4;
}

/* MOBILE */
@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }

    .nav-blanc-wrap {
        height: 120px;
    }

    .nav-blanc-inner {
        min-height: 108px;
        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: 75px;
    }

    .header-logo-img {
        height: 75px !important;
    }

    .nav-scroll-x .header-logo-img {
        height: 60px !important;
    }

    .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;
 
    margin-top: 6px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-style: italic;
}
.hero-slider-x {
    position: relative;
    height: 92vh;
    min-height: 820px;
    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: rgba(245, 241, 236, 0.66);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 38px 34px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.38);
    text-align: center;
    max-width: 500px;
    width: 90%;
    color: var(--brand-text);
    animation: fadeUpX 1s ease;
    box-shadow: 0 22px 55px rgba(45, 35, 28, 0.18);
}

/* =========================
   HERO PREMIUM CARD
========================= */
.hero-card-premium {
    max-width: 720px;
    padding: 58px 52px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.88) 0%, rgba(245, 241, 236, 0.78) 100%);
    border: 1px solid rgba(192, 161, 117, 0.45);
    border-radius: 14px;
    box-shadow:
        0 30px 80px rgba(45, 35, 28, 0.28),
        0 0 0 1px rgba(192, 161, 117, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

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

.hero-logo-img {
    height: 380px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 22px rgba(45, 35, 28, 0.25));
    animation: logoFloatX 6s ease-in-out infinite;
}

@keyframes logoFloatX {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Luxury diamond divider */
.hero-lux-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px auto 14px;
    max-width: 280px;
}

.hero-lux-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 92, 62, 0.55), transparent);
}

.hero-lux-diamond {
    width: 8px;
    height: 8px;
    background: var(--brand-accent);
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(192, 161, 117, 0.5);
}

.hero-slogan-x {
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    margin: 6px 0 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-display);
    color: var(--brand-title);
    font-weight: 600;
    font-style: normal;
}

.hero-tagline-x {
    margin: 0 0 18px;
    color: var(--brand-text);
    font-size: 0.92rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-family: var(--font-ui);
    opacity: 0.85;
}

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

/* CTA buttons */
.hero-cta-x {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all 0.35s ease;
    cursor: pointer;
    min-width: 150px;
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--brand-accent) 0%, #5b3f25 100%);
    color: var(--brand-white);
    border: 1px solid var(--brand-accent);
    box-shadow: 0 8px 20px rgba(122, 92, 62, 0.35);
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, #5b3f25 0%, var(--brand-accent) 100%);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(122, 92, 62, 0.45);
}

.hero-cta-secondary {
    background: transparent;
    color: var(--brand-title);
    border: 1px solid var(--brand-title);
}

.hero-cta-secondary:hover {
    background: var(--brand-title);
    color: var(--brand-white);
    transform: translateY(-2px);
}

/* =========================
   HERO SLIDE VARIANTS
========================= */
.hero-slide-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    color: var(--brand-title);
    margin: 0 0 8px;
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-slide-title em {
    font-style: italic;
    color: var(--brand-accent);
    text-transform: none;
    font-weight: 600;
}

.hero-slide-text {
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 18px;
    opacity: 0.92;
}

.hero-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
}

.hero-services-list li {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-title);
    font-weight: 600;
    padding: 6px 14px;
    border: 1px solid rgba(122, 92, 62, 0.4);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.hero-services-list li i {
    color: var(--brand-accent);
    margin-right: 6px;
}

.hero-offer-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b8895e 0%, #7a5c3e 100%);
    color: var(--brand-white);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(122, 92, 62, 0.35);
}

.hero-offer-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    color: var(--brand-title);
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.1;
}

.hero-offer-amount {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    color: var(--brand-accent);
    font-weight: 700;
    margin: 0 4px;
    line-height: 1;
}

/* =========================
   HERO SLIDE 2 — SIGNATURE SERVICES
========================= */
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--brand-accent);
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    padding: 0 28px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 1px;
    background: var(--brand-accent);
    opacity: 0.55;
}

.hero-eyebrow::before { left: 0; }
.hero-eyebrow::after { right: 0; }

.hero-title-display {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    color: var(--brand-title);
    margin: 0 0 14px;
    font-weight: 600;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-title-display em {
    font-style: italic;
    color: var(--brand-accent);
    text-transform: none;
    font-weight: 600;
}

.hero-title-script {
    font-family: "Alex Brush", "Great Vibes", cursive;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    color: var(--brand-accent);
    margin: 0 0 12px;
    font-weight: 400;
    line-height: 1;
}

.hero-subtitle {
    color: var(--brand-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 auto 24px;
    max-width: 420px;
    opacity: 0.9;
    font-style: italic;
}

/* Service grid */
.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 0 26px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(192, 161, 117, 0.35);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-service-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--brand-accent);
    transform: translateY(-2px);
}

.hero-service-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #5b3f25 100%);
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(122, 92, 62, 0.3);
}

.hero-service-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--brand-white);
    fill: none;
}

.hero-service-name {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-title);
    font-weight: 600;
}

/* =========================
   HERO SLIDE 3 — HEAD SPA
========================= */
.hero-spa-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 0 0 28px;
    flex-wrap: wrap;
}

.hero-spa-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 100px;
}

.hero-spa-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(192, 161, 117, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--brand-accent);
    transition: all 0.4s ease;
    box-shadow: 0 6px 14px rgba(122, 92, 62, 0.18);
}

.hero-spa-feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--brand-accent);
    fill: none;
    transition: stroke 0.4s ease;
}

.hero-spa-feature:hover .hero-spa-feature-icon svg {
    stroke: var(--brand-white);
}

.hero-spa-feature:hover .hero-spa-feature-icon {
    background: linear-gradient(135deg, var(--brand-accent) 0%, #5b3f25 100%);
    color: var(--brand-white);
    transform: rotate(360deg) scale(1.05);
}

.hero-spa-feature-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-title);
    font-weight: 600;
    text-align: center;
}

/* =========================
   HERO SLIDE 4 — SPECIAL OFFER
========================= */
.hero-offer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 22px;
}

.hero-offer-discount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.hero-offer-amount-big {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6.5rem);
    color: var(--brand-accent);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 18px rgba(122, 92, 62, 0.25);
}

.hero-offer-symbol {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--brand-accent);
    font-weight: 600;
    line-height: 1;
}

.hero-offer-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    margin: 12px auto 14px;
}

.hero-offer-text {
    color: var(--brand-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 auto 22px;
    max-width: 440px;
    font-style: italic;
    opacity: 0.92;
}

.hero-offer-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-title);
    font-weight: 600;
}

.hero-offer-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-offer-meta i {
    color: var(--brand-accent);
    font-size: 0.85rem;
}

.hero-offer-meta svg {
    color: var(--brand-accent);
    fill: none;
}

/* Responsive adjustments for new slides */
@media (max-width: 768px) {
    .hero-services-grid {
        gap: 8px;
    }

    .hero-service-item {
        padding: 10px;
        gap: 8px;
    }

    .hero-service-icon {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .hero-service-name {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }

    .hero-spa-features {
        gap: 16px;
    }

    .hero-spa-feature-icon {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .hero-spa-feature-label {
        font-size: 0.62rem;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.3em;
        padding: 0 20px;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
        width: 12px;
    }
}

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

.hero-title-x {
    margin: 0;
    color: var(--brand-title);
    font-family: var(--font-display);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-brand-main {
    font-size: clamp(2.25rem, 4.4vw, 4.35rem);
}

.hero-brand-sub {
    margin-top: 4px;
    font-size: clamp(1.15rem, 2vw, 1.85rem);
    font-family: var(--font-ui);
    letter-spacing: 0.18em;
    font-weight: 600;
}

.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-title);
    font-weight: 600;
}

.hero-info-x p {
    margin: 0;
    line-height: 1.6;
}

.hero-info-link-x {
    color: inherit;
    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%;
}

.hero-video-single-x {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.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: 95vh;
        min-height: 880px;
    }

    /* 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-card-premium {
        padding: 32px 22px;
        max-width: 94%;
    }

    .hero-logo-img {
        height: 260px;
    }

    .hero-slogan-x {
        letter-spacing: 1.5px;
    }

    .hero-tagline-x {
        font-size: 0.78rem;
        letter-spacing: 0.25em;
    }

    .hero-cta-btn {
        padding: 11px 22px;
        font-size: 12px;
        min-width: 130px;
    }

    .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 {
    background: var(--brand-bg-main) !important;
    color: var(--brand-text);
    padding: 90px 20px;
    text-align: center;
}

.promotions h2 {
    margin: 0;
    color: var(--brand-title) !important;
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    font-family: var(--font-display);
    letter-spacing: 0;
    font-weight: 600;
    text-transform: uppercase;
}

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

.promotions a,
.promotions small,
.promotion-text-color {
    color: var(--brand-text) !important;
    font-size: 0.98rem;
    line-height: 1.6;
    text-decoration: none;
}

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

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

.aboutv2-top {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 58px;
    align-items: center;
    margin-bottom: 0;
}

.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);
    font-family: var(--font-display);
    letter-spacing: 0;
    font-weight: 600;
    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: 1.85;
}

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

.aboutv2-right img {
    width: 60%;
    border-radius: 120px 0 120px 0;
    object-fit: cover;
    box-shadow: var(--brand-shadow);
}
/* =========================
   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);
    font-family: var(--font-display);
    letter-spacing: 0;
    font-weight: 600;
    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);
    font-family: var(--font-display);
    letter-spacing: 0;
    font-weight: 600;
    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: 1.82;
}

.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;
    }
}
/* =========================
   CONTACT LITE
========================= */
.blanc-contact-lite {
    position: relative;
    background: #f3ede4;
    padding: 90px 20px 100px;
    overflow: hidden;
}

.blanc-contact-lite-bg {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(rgba(120, 100, 80, 0.95), rgba(154, 132, 107, 0.85)),
            url('/photos/home/contact-bg.jpg') center/cover no-repeat;
    opacity: 0.95;
}

.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(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.blanc-contact-lite-sub {
    margin: 0;
    color: var(--brand-text);
    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: rgba(245, 241, 236, 0.76);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(159, 123, 78, 0.12);
    border-radius: 8px;
    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-family: var(--font-display);
    font-weight: 600;
}

.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;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    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-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0;
}

.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-soft);
    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:
        
        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(--brand-title);
    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: rgba(255, 255, 255, 0.95);
    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(--brand-title);
    font-size: clamp(1.45rem, 2vw, 2.1rem);
    line-height: 1.15;
    font-weight: 500;
}

.blanc-choose-card-text {
    margin: 0;
    color: var(--brand-text);
    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(--brand-text);
    font-size: 1rem;
    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(--brand-title);
    background: transparent;
    color: var(--brand-title);
    text-decoration: none;
    font-size: var(--fs-btn);
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* 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: rgba(255, 255, 255, 0.55);
    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;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0;
}

/* section */
.creative-service-section {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    padding-bottom: 40px;
    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: 32px 32px 28px;
    border: 1px solid rgba(192, 161, 117, 0.4);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.7) 0%, rgba(245, 241, 236, 0.55) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 18px 50px rgba(110, 84, 52, 0.10),
        inset 0 0 0 1px rgba(255,255,255,0.5);
}

.creative-service-board::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    opacity: 0.5;
}

.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: 18px;
    padding: 4px 4px;
}

#menu-container .service-category-block:last-child {
    margin-bottom: 8px;
}

#menu-container .service-category-head {
    margin-bottom: 14px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

#menu-container .service-category-head::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    opacity: 0.55;
}

/* image */
#menu-container .service-category-image {
    width: 100%;
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid rgba(192, 161, 117, 0.4);
    box-shadow: 0 14px 30px rgba(122, 96, 62, 0.14);
    position: relative;
}

#menu-container .service-category-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(45, 35, 28, 0.4) 100%);
}

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

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

/* category title */
#menu-container .service-category-title {
    color: var(--brand-title) !important;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.85rem;
    letter-spacing: 0.02em;
    text-align: center !important;
    margin: 0 0 10px;
    padding: 0;
    text-transform: capitalize;
    position: relative;
}

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

#menu-container .service-category-title a:hover {
    color: var(--brand-accent) !important;
}

/* category description */
#menu-container .service-category-desc {
    text-align: center !important;
    color: var(--brand-text)!important;
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
    font-style: italic;
    opacity: 0.85;
}

/* service rows */
#menu-container .service-items-row {
    margin-bottom: 8px;
    padding-top: 10px;
    border-top: 1px dashed rgba(183, 154, 115, 0.4);
    position: relative;
}

#menu-container .service-items-row::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--brand-bg-soft);
    border: 1px solid rgba(192, 161, 117, 0.55);
}

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

/* item col */
#menu-container .service-item-col {
    margin-bottom: 4px;
}

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

/* link */
#menu-container .service-line-link {
    display: block;
    text-decoration: none;
    padding: 10px 14px;
    color: #4f4b46 !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid rgba(192, 161, 117, 0.25);
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

#menu-container .service-line-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 161, 117, 0.12), transparent);
    transition: left 0.5s ease;
}

#menu-container .service-line-link:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--brand-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(122, 92, 62, 0.12);
}

#menu-container .service-line-link:hover::before {
    left: 100%;
}

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

#menu-container .service-line-name {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.45;
    color: var(--brand-title);
    white-space: nowrap;
    font-weight: 600;
    font-family: var(--font-ui);
    letter-spacing: 0.01em;
}

#menu-container .service-line-divider {
    flex: 1;
    border-bottom: 1px dotted rgba(122, 92, 62, 0.45);
    transform: translateY(-3px);
    transition: border-color 0.3s ease;
}

#menu-container .service-line-link:hover .service-line-divider {
    border-bottom-color: var(--brand-accent);
}

#menu-container .service-line-price {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-accent);
    white-space: nowrap;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

#menu-container .service-note {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 0.88rem;
    color: #7a7167;
    line-height: 1.55;
    font-style: italic;
    padding-left: 4px;
    opacity: 0.85;
}

/* "more services" indicator */
.service-more-dots {
    text-align: center;
    color: var(--brand-accent);
    font-size: 1rem;
    letter-spacing: 0.4em;
    margin: 4px 0 8px;
    opacity: 0.6;
    font-weight: 700;
}

/* divider between categories */
#menu-container .service-category-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(192, 161, 117, 0.5), transparent);
    margin: 14px 0 4px;
    position: relative;
}

#menu-container .service-category-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px;
    height: 7px;
    background: var(--brand-accent);
    opacity: 0.7;
    box-shadow: 0 0 0 4px var(--brand-bg-soft);
}

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

.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;
    font-family: var(--font-ui);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    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: 36px;
}

.blanc-services-page-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
    align-items: stretch;
    background: linear-gradient(180deg, #ffffff 0%, rgba(245, 241, 236, 0.7) 100%);
    border: 1px solid rgba(192, 161, 117, 0.4);
    border-radius: 20px;
    padding: 0;
    box-shadow:
        0 18px 50px rgba(60, 50, 40, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.blanc-services-page-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 60px rgba(60, 50, 40, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: var(--brand-accent);
}

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

.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 - vertical full-bleed image */
.blanc-services-page-media {
    width: 100%;
    align-self: stretch;
    min-height: 460px;
    position: relative;
    overflow: hidden;
}

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

/* gallery nhiều ảnh xếp dọc */
.blanc-services-page-manual-gallery {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

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

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

/* Vertical full-bleed image (no window frame) */
.blanc-services-page-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    background: var(--brand-bg-soft);
    overflow: hidden;
    box-shadow: none;
}

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

.blanc-services-page-image-frame-single::before,
.blanc-services-page-image-frame-single::after {
    display: none;
}

/* gallery 2-3 hình */
.blanc-services-page-image-frame-gallery {
    border-radius: 0;
    height: 100%;
    flex: 1 1 0;
}

.blanc-services-page-image-frame-gallery::before,
.blanc-services-page-image-frame-gallery::after {
    display: none;
}

/* Add subtle gold accent overlay on image */
.blanc-services-page-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(45, 35, 28, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Add a subtle divider between manual gallery images */
.blanc-services-page-manual-gallery-item + .blanc-services-page-manual-gallery-item .blanc-services-page-image-frame {
    border-top: 2px solid rgba(255, 255, 255, 0.5);
}
    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.6s ease;
}

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

/* default 1 ảnh - vertical full-bleed */
.blanc-services-page-image-frame-single .blanc-services-page-image {
    height: 100%;
    min-height: 460px;
    border-radius: 0;
}

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

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

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

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

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

.blanc-services-page-section.is-reverse .blanc-services-page-content {
    padding: 32px 0 32px 36px;
}

.blanc-services-page-section.no-image .blanc-services-page-content {
    padding: 32px 36px;
}

.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: 240px minmax(0, 1fr);
        gap: 24px;
    }

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

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

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

    .blanc-services-page-content,
    .blanc-services-page-section.is-reverse .blanc-services-page-content {
        padding: 26px 28px 26px 0;
    }

    .blanc-services-page-section.is-reverse .blanc-services-page-content {
        padding: 26px 0 26px 28px;
    }

    .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: 0;
        padding: 0;
        border-radius: 18px;
    }

    .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: 100%;
        align-self: stretch;
        min-height: 320px;
    }

    .blanc-services-page-content,
    .blanc-services-page-section.is-reverse .blanc-services-page-content {
        padding: 24px 22px 26px;
    }

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

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

    .blanc-services-page-image-frame-single {
        border-radius: 0;
        padding: 0;
        min-height: 320px;
    }

    .blanc-services-page-image-frame-single::before,
    .blanc-services-page-image-frame-single::after {
        display: none;
    }

    .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;
    }
}

/* =========================
   SECTION ORNAMENT (small accent under titles)
========================= */
.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px auto 18px;
    max-width: 220px;
}

.section-ornament::before,
.section-ornament::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 92, 62, 0.55), transparent);
}

.section-ornament span {
    width: 7px;
    height: 7px;
    background: var(--brand-accent);
    transform: rotate(45deg);
    box-shadow: 0 0 6px rgba(192, 161, 117, 0.5);
}

/* =========================
   SECTION DIVIDERS (between sections)
========================= */

/* Curve SVG separator - lighter version */
.section-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

@media (max-width: 768px) {
    .section-divider svg {
        height: 40px;
    }
}

/* Premium gold line separator with diamond */
.section-divider-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 32px 20px;
    background: var(--brand-bg-soft);
    position: relative;
}

.section-divider-line::before,
.section-divider-line::after {
    content: "";
    flex: 1;
    max-width: 280px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-accent) 50%, transparent 100%);
    opacity: 0.85;
}

.section-divider-diamond {
    width: 11px;
    height: 11px;
    background: linear-gradient(135deg, #b8895e 0%, var(--brand-accent) 50%, #5b3f25 100%);
    transform: rotate(45deg);
    box-shadow:
        0 2px 8px rgba(122, 92, 62, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    flex: 0 0 auto;
}

/* =========================
   PREMIUM SERVICE CARDS UPGRADE
========================= */
.blanc-service-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-bg-soft) 100%);
    box-shadow: 0 8px 24px rgba(79, 73, 70, 0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(192, 161, 117, 0.15);
}

.blanc-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 73, 70, 0.18);
    border-color: rgba(122, 92, 62, 0.4);
}

.blanc-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.blanc-service-card:hover::before {
    opacity: 1;
}

.blanc-service-photo {
    height: 240px;
    overflow: hidden;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: relative;
}

.blanc-service-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(45, 35, 28, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blanc-service-card:hover .blanc-service-photo::after {
    opacity: 1;
}

.blanc-service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blanc-service-card:hover .blanc-service-photo img {
    transform: scale(1.08);
}

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

.blanc-service-body::before {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: var(--brand-accent);
    margin: 0 auto 14px;
    transition: width 0.4s ease;
}

.blanc-service-card:hover .blanc-service-body::before {
    width: 60px;
}

.blanc-service-card-title {
    margin: 0 0 12px;
    color: var(--brand-title);
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.blanc-service-card-text {
    margin: 0;
    color: var(--brand-text);
    font-size: 0.98rem;
    line-height: 1.65;
    opacity: 0.92;
}

/* =========================
   ENHANCED SECTION HEADER
========================= */
.section-pre-head {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.74rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--brand-accent);
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    padding: 0 24px;
}

.section-pre-head::before,
.section-pre-head::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 1px;
    background: var(--brand-accent);
    opacity: 0.5;
}

.section-pre-head::before { left: 0; }
.section-pre-head::after { right: 0; }

/* =========================
   REVIEWS SUMMARY BADGE
========================= */
.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(192, 161, 117, 0.3);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(122, 92, 62, 0.08);
}

.reviews-summary-stars {
    color: #d4a857;
    font-size: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(212, 168, 87, 0.3);
}

.reviews-summary-text {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--brand-title);
    letter-spacing: 0.04em;
}

.reviews-summary-text strong {
    color: var(--brand-accent);
    font-weight: 700;
    font-size: 0.95rem;
}

/* =========================
   SERVICE SECTION ENHANCEMENTS
========================= */
.service-premium-header {
    text-align: center;
    margin-bottom: 28px;
}

.service-premium-header .blanc-story-title {
    margin-top: 0;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* =========================
   MONOLITHIC SOCIAL ICONS
========================= */
.social-monolith {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f5f1ec 100%);
    border: 1px solid rgba(192, 161, 117, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(122, 92, 62, 0.08);
    position: relative;
    overflow: hidden;
}

.social-monolith::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #5b3f25 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.social-monolith:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--brand-accent);
    box-shadow: 0 10px 22px rgba(122, 92, 62, 0.25);
}

.social-monolith:hover::before {
    opacity: 1;
}

.social-monolith-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease;
}

.social-monolith-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.social-monolith:hover .social-monolith-icon {
    transform: scale(1.1);
}

/* Smaller variant for headbar nav */
.nav-social-blanc .social-monolith {
    width: 36px;
    height: 36px;
}

.nav-social-blanc .social-monolith-icon {
    width: 18px;
    height: 18px;
}

/* =========================
   PREMIUM CONTACT US GRID
========================= */
.blanc-contact-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 36px 0;
}

.blanc-contact-premium-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, rgba(245, 241, 236, 0.7) 100%);
    border: 1px solid rgba(192, 161, 117, 0.4);
    border-radius: 16px;
    padding: 28px 24px 26px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow:
        0 12px 30px rgba(60, 50, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blanc-contact-premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    border-radius: 0 0 6px 6px;
    opacity: 0.7;
}

.blanc-contact-premium-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 44px rgba(60, 50, 40, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: var(--brand-accent);
}

.blanc-contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #5b3f25 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow:
        0 8px 18px rgba(122, 92, 62, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease;
}

.blanc-contact-card-icon svg {
    width: 26px;
    height: 26px;
}

.blanc-contact-premium-card:hover .blanc-contact-card-icon {
    transform: scale(1.08) rotate(-4deg);
}

.blanc-contact-card-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--brand-accent);
    font-weight: 700;
    margin-bottom: 4px;
}

.blanc-contact-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brand-title);
    margin: 0 0 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.blanc-contact-card-link {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--brand-text);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
}

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

.blanc-contact-card-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0 0;
    padding: 5px 12px;
    background: rgba(192, 161, 117, 0.12);
    border: 1px solid rgba(192, 161, 117, 0.3);
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--brand-accent);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

a.blanc-contact-card-hint:hover {
    background: linear-gradient(135deg, var(--brand-accent) 0%, #5b3f25 100%);
    border-color: var(--brand-accent);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(122, 92, 62, 0.25);
}

.blanc-contact-card-hint svg {
    flex: 0 0 14px;
}

/* Hours list */
.blanc-contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--brand-text);
}

.blanc-contact-hours-list li {
    padding: 6px 0;
    border-bottom: 1px dashed rgba(192, 161, 117, 0.25);
}

.blanc-contact-hours-list li:last-child {
    border-bottom: 0;
}

.blanc-contact-hours-list li.fw-bold {
    color: var(--brand-title);
    font-weight: 600;
}

/* Social card */
.blanc-contact-social-card {
    background: linear-gradient(180deg, rgba(122, 92, 62, 0.06) 0%, rgba(245, 241, 236, 0.7) 100%);
}

.blanc-contact-social-list {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 4px 0 12px;
}

.blanc-contact-social-list .social-monolith {
    width: 46px;
    height: 46px;
}

.blanc-contact-social-list .social-monolith-icon {
    width: 24px;
    height: 24px;
}

/* Map + CTA */
.blanc-contact-map-cta-wrap {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: stretch;
}

.blanc-contact-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(192, 161, 117, 0.4);
    box-shadow: 0 14px 40px rgba(60, 50, 40, 0.12);
    min-height: 380px;
}

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

.blanc-contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #5b3f25 100%);
    color: #fff;
    border: 1px solid var(--brand-accent);
    border-radius: 14px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 14px 32px rgba(122, 92, 62, 0.3);
    min-width: 220px;
    align-self: center;
    position: relative;
    overflow: hidden;
}

.blanc-contact-cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.blanc-contact-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(122, 92, 62, 0.45);
    color: #fff;
}

.blanc-contact-cta-btn:hover::before {
    transform: translateX(100%);
}

.blanc-contact-cta-btn svg {
    transition: transform 0.3s ease;
}

.blanc-contact-cta-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .blanc-contact-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .blanc-contact-map-cta-wrap {
        grid-template-columns: 1fr;
    }

    .blanc-contact-cta-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .blanc-contact-premium-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PREMIUM STAFF CARDS
========================= */
.staff-row {
    margin-top: 18px;
}

.staff-col {
    display: flex;
}

.staff-card {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, rgba(245, 241, 236, 0.7) 100%);
    border: 1px solid rgba(192, 161, 117, 0.35);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow:
        0 14px 36px rgba(60, 50, 40, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 28px 60px rgba(60, 50, 40, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: var(--brand-accent);
}

.staff-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.staff-card:hover::before {
    opacity: 1;
}

/* Top section with avatar (arched) */
.staff-card-top {
    position: relative;
    padding: 32px 24px 26px;
    background:
        radial-gradient(ellipse at center top, rgba(192, 161, 117, 0.18) 0%, transparent 65%),
        linear-gradient(180deg, rgba(192, 161, 117, 0.12) 0%, transparent 100%);
    text-align: center;
    overflow: hidden;
}

.staff-card-top::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    opacity: 0.4;
}

/* Avatar with decorative arch */
.staff-avatar-wrap {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.staff-avatar-inner {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #5b3f25 100%);
    padding: 4px;
    margin: 0 auto;
    box-shadow:
        0 14px 32px rgba(122, 92, 62, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.staff-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    display: block;
    transition: transform 0.5s ease;
}

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

.staff-avatar-decoration {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(192, 161, 117, 0.5);
    opacity: 0;
    transform: scale(0.85) rotate(0deg);
    transition: opacity 0.4s ease, transform 0.6s ease;
    pointer-events: none;
}

.staff-card:hover .staff-avatar-decoration {
    opacity: 1;
    transform: scale(1.02) rotate(45deg);
}

/* Divider between top and body */
.staff-card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    margin-top: -6px;
}

.staff-card-divider::before,
.staff-card-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 161, 117, 0.4), transparent);
}

.staff-card-divider span {
    width: 6px;
    height: 6px;
    background: var(--brand-accent);
    transform: rotate(45deg);
    opacity: 0.7;
}

/* Body */
.staff-card-body {
    padding: 22px 24px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.staff-card-pre {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--brand-accent);
    font-weight: 700;
    margin-bottom: 6px;
}

.staff-card-name {
    margin: 0;
    font-family: var(--font-display, "OnglesDisplay", Georgia, serif);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--brand-title);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.staff-card-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px auto 14px;
    max-width: 80px;
}

.staff-card-ornament::before,
.staff-card-ornament::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--brand-accent);
    opacity: 0.5;
}

.staff-card-ornament span {
    width: 5px;
    height: 5px;
    background: var(--brand-accent);
    transform: rotate(45deg);
}

.staff-card-desc-wrap {
    width: 100%;
    margin-bottom: 18px;
    flex: 1;
}

.staff-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--brand-text);
    margin: 0 0 8px;
    opacity: 0.9;
}

.staff-toggle-desc {
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--brand-accent);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
}

.staff-toggle-desc:hover {
    color: var(--brand-title);
}

.staff-toggle-desc::after {
    content: " →";
    transition: margin 0.3s ease;
}

.staff-toggle-desc[aria-expanded="true"]::after {
    content: " ↑";
}

/* Booking button */
.staff-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    margin-top: auto;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #5b3f25 100%);
    color: #fff;
    border: 1px solid var(--brand-accent);
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 8px 18px rgba(122, 92, 62, 0.25);
    overflow: hidden;
    position: relative;
}

.staff-book-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.staff-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(122, 92, 62, 0.4);
    color: #fff;
}

.staff-book-btn:hover::before {
    left: 100%;
}

.staff-book-btn-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.staff-book-btn-arrow svg {
    width: 14px;
    height: 14px;
}

.staff-book-btn:hover .staff-book-btn-arrow {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .staff-avatar-inner {
        width: 120px;
        height: 120px;
    }

    .staff-card-name {
        font-size: 1.35rem;
    }

    .staff-card-body {
        padding: 18px 18px 22px;
    }
}

/* =========================
   POLICY PAGES DESIGN SYSTEM
========================= */

/* Hero */
.policy-hero {
    position: relative;
    height: 380px;
    overflow: hidden;
    margin-top: -20px;
}

.policy-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../photos/home/slide-1.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: policyHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes policyHeroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.policy-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(45, 35, 28, 0.55) 0%, rgba(45, 35, 28, 0.35) 50%, rgba(45, 35, 28, 0.65) 100%);
    z-index: 1;
}

.policy-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.policy-hero-eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #f5e6c8;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    padding: 0 24px;
}

.policy-hero-eyebrow::before,
.policy-hero-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 1px;
    background: #f5e6c8;
    opacity: 0.6;
}

.policy-hero-eyebrow::before { left: 0; }
.policy-hero-eyebrow::after { right: 0; }

.policy-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 0;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.policy-hero-sub {
    font-family: "Alex Brush", "Great Vibes", cursive;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #f5e6c8;
    margin: 14px 0 0;
    font-weight: 400;
}

.policy-hero-breadcrumb {
    margin-top: 16px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
}

.policy-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-hero-breadcrumb a:hover {
    color: #f5e6c8;
}

.policy-hero-breadcrumb span {
    margin: 0 8px;
    opacity: 0.5;
}

/* Breadcrumb ribbon (below hero) */
.policy-breadcrumb-bar {
    background: var(--brand-bg-soft);
    padding: 14px 0;
    border-bottom: 1px solid rgba(192, 161, 117, 0.2);
}

.policy-breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--brand-text);
}

.policy-breadcrumb-bar a {
    color: var(--brand-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-breadcrumb-bar a:hover {
    color: var(--brand-title);
}

.policy-breadcrumb-bar .current {
    color: var(--brand-title);
    font-weight: 600;
}

.policy-breadcrumb-bar .sep {
    color: rgba(122, 92, 62, 0.5);
}

/* Main shell */
.policy-page-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 2 column layout: sidebar + content */
.policy-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

/* Sidebar TOC */
.policy-sidebar {
    position: sticky;
    top: 160px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(245, 241, 236, 0.7) 100%);
    border: 1px solid rgba(192, 161, 117, 0.35);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 12px 32px rgba(60, 50, 40, 0.08);
}

.policy-sidebar-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--brand-title);
    margin: 0 0 6px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.policy-sidebar-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--brand-accent);
    font-weight: 700;
    margin-bottom: 14px;
}

.policy-toc {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.policy-toc li {
    counter-increment: toc-counter;
    margin-bottom: 2px;
}

.policy-toc a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    color: var(--brand-text);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    line-height: 1.3;
    border-radius: 8px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.policy-toc a::before {
    content: counter(toc-counter, decimal-leading-zero);
    flex: 0 0 24px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    color: var(--brand-accent);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.policy-toc a:hover {
    background: rgba(192, 161, 117, 0.1);
    border-color: rgba(192, 161, 117, 0.3);
    color: var(--brand-title);
    transform: translateX(2px);
}

.policy-toc a.active {
    background: linear-gradient(90deg, rgba(192, 161, 117, 0.18), transparent);
    border-color: rgba(122, 92, 62, 0.4);
    color: var(--brand-title);
    font-weight: 600;
}

/* Content area */
.policy-content {
    min-width: 0;
}

.policy-intro-card {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.95) 0%, rgba(245, 241, 236, 0.75) 100%);
    border: 1px solid rgba(192, 161, 117, 0.35);
    border-left: 4px solid var(--brand-accent);
    border-radius: 14px;
    padding: 32px 32px 30px;
    margin-bottom: 36px;
    box-shadow: 0 12px 30px rgba(60, 50, 40, 0.08);
    position: relative;
}

.policy-intro-card::before {
    content: "";
    position: absolute;
    top: 16px;
    right: 18px;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M0 18.4C0 11.2 4.8 4.8 12 0L13.6 2.4C9.6 6.4 8 9.6 8 13.6c.8-.4 1.6-.4 2.4-.4 3.6 0 6 2.4 6 6 0 3.6-2.8 6.4-6.4 6.4-3.6 0-6-2.4-6-6 0-.4 0-.8 0-1.2zm16 0C16 11.2 20.8 4.8 28 0L29.6 2.4C25.6 6.4 24 9.6 24 13.6c.8-.4 1.6-.4 2.4-.4 3.6 0 6 2.4 6 6 0 3.6-2.8 6.4-6.4 6.4-3.6 0-6-2.4-6-6 0-.4 0-.8 0-1.2z' fill='%23c0a175' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0.6;
}

.policy-intro-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--brand-accent);
    font-weight: 700;
    margin-bottom: 8px;
}

.policy-intro-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--brand-title);
    margin: 0 0 14px;
    font-weight: 600;
    line-height: 1.2;
}

.policy-intro-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--brand-text);
    margin: 0;
}

.policy-intro-text .brand {
    font-weight: 700;
    color: var(--brand-title);
}

.policy-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(192, 161, 117, 0.3);
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--brand-text);
    letter-spacing: 0.04em;
}

.policy-updated i {
    color: var(--brand-accent);
}

/* Policy section */
.policy-section {
    background: #ffffff;
    border: 1px solid rgba(192, 161, 117, 0.3);
    border-radius: 14px;
    padding: 28px 30px;
    margin-bottom: 22px;
    box-shadow: 0 8px 22px rgba(60, 50, 40, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.policy-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-accent), transparent);
    opacity: 0.7;
}

.policy-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(60, 50, 40, 0.12);
    border-color: var(--brand-accent);
}

.policy-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.policy-section-num {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #5b3f25 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(122, 92, 62, 0.3);
}

.policy-section-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(192, 161, 117, 0.15);
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(192, 161, 117, 0.4);
}

.policy-section-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.policy-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    color: var(--brand-title);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.policy-section-content {
    color: var(--brand-text);
    font-size: 0.97rem;
    line-height: 1.75;
}

.policy-section-content p {
    margin: 0 0 12px;
}

.policy-section-content p:last-child {
    margin-bottom: 0;
}

.policy-section-content ul,
.policy-section-content ol {
    margin: 6px 0 0;
    padding-left: 0;
    list-style: none;
}

.policy-section-content li {
    position: relative;
    padding: 8px 0 8px 26px;
    border-bottom: 1px dashed rgba(192, 161, 117, 0.2);
}

.policy-section-content li:last-child {
    border-bottom: 0;
}

.policy-section-content li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 18px;
    width: 6px;
    height: 6px;
    background: var(--brand-accent);
    transform: rotate(45deg);
}

.policy-section-content .brand {
    font-weight: 700;
    color: var(--brand-title);
}

.policy-section-content strong {
    color: var(--brand-title);
}

/* CTA box at bottom */
.policy-cta-box {
    margin-top: 36px;
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(122, 92, 62, 0.95) 0%, rgba(91, 63, 37, 0.95) 100%);
    border-radius: 18px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(60, 50, 40, 0.18);
}

.policy-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'%3E%3Cpath d='M0 18.4C0 11.2 4.8 4.8 12 0L13.6 2.4C9.6 6.4 8 9.6 8 13.6c.8-.4 1.6-.4 2.4-.4 3.6 0 6 2.4 6 6 0 3.6-2.8 6.4-6.4 6.4-3.6 0-6-2.4-6-6 0-.4 0-.8 0-1.2z' fill='%23ffffff' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

.policy-cta-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.74rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.9);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.policy-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 8px;
    font-weight: 600;
    position: relative;
}

.policy-cta-text {
    margin: 0 auto 22px;
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.policy-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

.policy-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.policy-cta-btn.primary {
    background: #fff;
    color: var(--brand-accent);
    border-color: #fff;
}

.policy-cta-btn.primary:hover {
    background: var(--brand-accent);
    color: #fff;
    transform: translateY(-2px);
}

.policy-cta-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.policy-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.policy-cta-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Address card */
.policy-address-card {
    margin-top: 28px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(245, 241, 236, 0.6) 100%);
    border: 1px solid rgba(192, 161, 117, 0.3);
    border-radius: 14px;
    padding: 24px 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    box-shadow: 0 10px 28px rgba(60, 50, 40, 0.06);
}

.policy-address-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 220px;
    min-width: 220px;
}

.policy-address-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(192, 161, 117, 0.15);
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(192, 161, 117, 0.4);
}

.policy-address-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.policy-address-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-accent);
    font-weight: 700;
    margin-bottom: 2px;
}

.policy-address-value {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--brand-title);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.policy-address-value:hover {
    color: var(--brand-accent);
}

/* Responsive */
@media (max-width: 991px) {
    .policy-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .policy-sidebar {
        position: static;
        top: auto;
    }

    .policy-hero {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        height: 280px;
        margin-top: 0;
    }

    .policy-page-shell {
        padding: 40px 16px;
    }

    .policy-section {
        padding: 22px 20px;
    }

    .policy-intro-card {
        padding: 24px 22px;
    }

    .policy-section-header {
        gap: 12px;
    }

    .policy-section-num,
    .policy-section-icon {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
    }

    .policy-section-num {
        font-size: 0.95rem;
    }

    .policy-section-icon svg {
        width: 18px;
        height: 18px;
    }

    .policy-section-title {
        font-size: 1.15rem;
    }

    .policy-cta-box {
        padding: 28px 22px;
    }

    .policy-address-card {
        padding: 18px 20px;
        gap: 16px;
    }

    .policy-address-item {
        flex: 1 1 100%;
        min-width: 0;
    }
}
