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

@font-face {
    font-family: 'GreatVibes-Regular';
    src: url('/fonts/GreatVibes-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.greatvibes {
    font-family: 'GreatVibes-Regular', cursive;
}

.title-main {
    font-family: CinzelDecorative-Black;
    letter-spacing: 2px;
    font-size: 30px !important;
    font-weight: bolder !important;
}

/* =========================
   ROOT / DESIGN SYSTEM
========================= */
:root {
    --brand-bg-main: linear-gradient(
        135deg,
        #faf3e8 0%,
        #f0e3d2 45%,
        #e8d8c4 100%
    );

    --brand-bg-soft: linear-gradient(
        135deg,
        #fefcf8 0%,
        #f9f1e5 45%,
        #f0e3d2 100%
    );

    --brand-cream: #f5ede1;
    --brand-cream-deep: #ead9c2;
    --brand-tan: #d9c8b6;
    --brand-mauve: #b89994;
    --brand-mauve-deep: #a87e76;
    --brand-mauve-soft: #c9a89f;

    --brand-wave: #c9a89f;

    --brand-title: #2a2522;
    --brand-title-soft: #3a2f2a;

    --brand-text: #6b5d52;
    --brand-text-light: #8a7d70;

    --brand-accent: #a87e76;
    --brand-accent-hover: #8e6960;

    --brand-white: #ffffff;

    --brand-glass: rgba(255, 255, 255, 0.7);

    --brand-shadow: 0 18px 45px rgba(168, 126, 118, 0.18);
    --brand-shadow-soft: 0 10px 30px rgba(58, 47, 42, 0.08);
    --brand-shadow-hover: 0 16px 30px rgba(79, 73, 70, 0.14);

    --fs-section-title: clamp(2rem, 4vw, 3.5rem);
    --fs-section-subtitle: clamp(1.35rem, 2vw, 2rem);
    --fs-body: 1.08rem;
    --fs-card-title: 1.15rem;
    --fs-card-text: 1.02rem;
    --fs-nav: 14px;
    --fs-btn: 14px;
    --lh-title: 1.1;
    --lh-subtitle: 1.3;
    --lh-body: 1.75;
    --lh-card: 1.6;

    /* === TYPOGRAPHY (Maison Belle inspired) === */
    --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-script: 'GreatVibes-Regular', 'Brush Script MT', cursive;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* =========================
   GLOBAL
========================= */
body {
    padding-top: 128px;
    color: var(--brand-text);
    background: var(--brand-bg-soft);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--brand-title);
    letter-spacing: 0.3px;
}

/* Script accent — accent word INSIDE the title (same size as title text) */
.script-accent {
    font-family: var(--font-script);
    color: var(--brand-mauve-deep);
    font-weight: 400;
    font-size: 1.25em;
    line-height: 1;
    display: inline-block;
    transform: translateY(0.08em);
    letter-spacing: 0;
    font-style: normal;
}

/* Eyebrow — small UPPERCASE letter-spaced label above section title (Maison Belle style) */
.blanc-eyebrow {
    display: block;
    font-family: var(--font-body);
    color: var(--brand-mauve-deep);
    font-size: 0.78rem;
    line-height: 1;
    letter-spacing: 4px;
    margin: 0 0 14px;
    font-weight: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

/* Variant: eyebrow with a small flanking line on each side */
.blanc-eyebrow.has-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.blanc-eyebrow.has-lines::before,
.blanc-eyebrow.has-lines::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--brand-tan);
}

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

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

.nav-blanc-wrap.nav-top-x {
    background: rgba(250, 243, 232, 0.78) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(168, 126, 118, 0.18);
    top: 28px;
}

.nav-blanc-wrap.nav-scroll-x {
    background: rgba(250, 243, 232, 0.78) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 6px 28px rgba(58, 47, 42, 0.08);
    border-bottom: 1px solid rgba(168, 126, 118, 0.22);
    top: 28px;
}

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

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

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

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

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

.btn-nav-blanc {
    padding: 9px 22px;
    border-radius: 999px;
    border: 1px solid var(--brand-mauve-deep);
    text-decoration: none;
    font-size: var(--fs-btn);
    color: var(--brand-mauve-deep);
    transition: all 0.3s ease;
    white-space: nowrap;
    background: transparent;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-nav-blanc:hover {
    background: var(--brand-mauve-deep);
    border-color: var(--brand-mauve-deep);
    color: var(--brand-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(168, 126, 118, 0.3);
}

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

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

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

/* Text-based logo (fallback when no image is available) */
.nav-logo-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.55rem;
    color: var(--brand-title);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1;
    transition: color 0.3s ease;
}

.nav-logo-text:hover {
    color: var(--brand-mauve-deep);
}

.nav-logo-text .script-accent {
    font-size: 1.4em;
    color: var(--brand-mauve-deep);
}

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

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

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

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

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

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

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

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

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

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

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

    .logo-blanc img {
        height: 80px;
        position: relative;

    left: 50px;
    }

    .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: 18px;
        color: #0b0b0b;
    }

    .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: 65vh;
    min-height: 520px;
    overflow: hidden;
}

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

.hero-text-slide-single {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

/* =========================================
   OLD MODE: MULTIPLE SLIDES (IMAGE OR VIDEO)
========================================= */
.hero-slide-x {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeSlideX 18s infinite;
}

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

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

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

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

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

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

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

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

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

/* =========================================
   SHARED OVERLAY / CARD
========================================= */
.hero-overlay-x {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-card-x {
    position: relative;
    z-index: 4;
    background: rgba(254, 252, 248, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 48px 56px 42px;
    border-radius: 6px;
    text-align: center;
    max-width: 560px;
    width: 92%;
    color: var(--brand-text);
    animation: fadeUpX 1s ease;
    box-shadow:
        0 24px 60px rgba(58, 47, 42, 0.18),
        0 4px 12px rgba(168, 126, 118, 0.12);
    border: 1px solid rgba(168, 126, 118, 0.2);
}

/* Top + bottom thin line accents on hero card */
.hero-card-x::before,
.hero-card-x::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--brand-mauve-deep);
    opacity: 0.6;
}

.hero-card-x::before { top: 18px; }
.hero-card-x::after  { bottom: 18px; }

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

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

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

.hero-logo-x img {
    height: 140px;
    width: auto;
    object-fit: contain;
    display: block;
}

.hero-eyebrow-x {
    display: block;
    font-family: var(--font-body);
    color: var(--brand-mauve-deep);
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 4px;
    margin: 0 0 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-title-x {
    margin: 0;
    color: var(--brand-title);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-style: italic;
    text-transform: none;
}

.hero-sub-x {
    margin-top: 12px;
    color: var(--brand-text);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Ornament inside hero card */
.hero-card-x .blanc-ornament {
    margin: 14px auto 16px;
    max-width: 200px;
}

.hero-card-x .blanc-ornament svg {
    width: 28px;
    height: 14px;
}

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

.hero-info-block-x {
    min-width: 160px;
    text-align: center;
}

.hero-info-x h5 {
    font-size: 0.7rem;
    margin-bottom: 6px;
    letter-spacing: 3px;
    color: var(--brand-mauve-deep);
    font-weight: 600;
    text-transform: uppercase;
}

.hero-info-x p {
    margin: 0;
    line-height: 1.5;
    font-family: var(--font-serif);
    font-size: 1rem;
}

.hero-info-link-x {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Hero card animation enhancements — staggered fade-in */
.hero-card-x .hero-logo-x,
.hero-card-x .hero-eyebrow-x,
.hero-card-x .hero-title-x,
.hero-card-x .hero-sub-x,
.hero-card-x .blanc-ornament,
.hero-card-x .hero-info-x {
    animation: heroFadeUp 0.9s ease both;
}

.hero-card-x .hero-logo-x      { animation-delay: 0.10s; }
.hero-card-x .hero-eyebrow-x   { animation-delay: 0.25s; }
.hero-card-x .hero-title-x     { animation-delay: 0.40s; }
.hero-card-x .hero-sub-x       { animation-delay: 0.55s; }
.hero-card-x .blanc-ornament   { animation-delay: 0.70s; }
.hero-card-x .hero-info-x      { animation-delay: 0.85s; }

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

/* Hero card responsive */
@media (max-width: 600px) {
    .hero-card-x {
        padding: 36px 24px 32px;
        max-width: 92%;
    }

    .hero-logo-x img {
        height: 110px;
    }

    .hero-info-x {
        gap: 18px;
    }

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

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

/* Warm gradient overlay — blends video with Maison Belle palette */
.hero-single-video-x::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 40%,
            rgba(250, 243, 232, 0.55) 0%,
            rgba(232, 216, 196, 0.25) 45%,
            rgba(58, 47, 42, 0.55) 100%),
        linear-gradient(180deg,
            rgba(250, 243, 232, 0.35) 0%,
            rgba(250, 243, 232, 0.05) 30%,
            rgba(58, 47, 42, 0.25) 70%,
            rgba(58, 47, 42, 0.55) 100%);
}

.hero-single-video-x::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(135deg,
            rgba(168, 126, 118, 0.18) 0%,
            transparent 40%,
            transparent 60%,
            rgba(168, 126, 118, 0.18) 100%);
}

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

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

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

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

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

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

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

@keyframes heroTextFadeX {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

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

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

    35% {
        opacity: 0;
        transform: translateY(-10px) scale(1.01);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px) scale(1.01);
    }
}

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

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

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

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

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

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

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

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

    .hero-card-x {
        padding: 36px 24px 32px;
        max-width: 92%;
    }

    .hero-title-x {
        font-size: 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);
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

.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-soft);
    padding: 90px 20px 100px;
    color: var(--brand-text);
    overflow: hidden;
}

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

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

.aboutv2-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 40px 4px 44px;
    position: relative;
}

/* Soft cream-blush elliptical backdrop — adds atmosphere behind the trio */
.aboutv2-gallery::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 40px);
    height: calc(100% + 50px);
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse at center,
        rgba(233, 196, 106, 0.10) 0%,
        rgba(168, 126, 118, 0.05) 45%,
        transparent 75%
    );
    pointer-events: none;
    z-index: 0;
}

/* Thin gold ornament line under gallery (centered, gradient fade) */
.aboutv2-gallery::after {
    content: "";
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--brand-accent) 50%,
        transparent);
    opacity: 0.55;
    z-index: 2;
}

.aboutv2-img {
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(168, 126, 118, 0.20),
        0 6px 14px rgba(58, 47, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
    transform: translateZ(0);                  /* GPU layer for smooth motion */
    will-change: transform;
}

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

/* Aligned baseline — same row, same height.
   Smooth vertical breathing — no drift, no rotation (caused choppiness). */
.aboutv2-img-1 {
    border-radius: 70px 70px 20px 70px;
    animation: gentleFloat 9s ease-in-out infinite;
}
.aboutv2-img-2 {
    border-radius: 70px;
    animation: gentleFloat 11s ease-in-out infinite;
    animation-delay: -3.5s;
}
.aboutv2-img-3 {
    border-radius: 70px 70px 70px 20px;
    animation: gentleFloat 10s ease-in-out infinite;
    animation-delay: -7s;
}

/* Pure vertical motion — small amplitude, long duration, perfect ease.
   Why this is smooth: translate3d (GPU), one axis only, no rotation stacking,
   cubic-bezier approximates a true sine wave. */
@keyframes gentleFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%      { transform: translate3d(0, -6px, 0); }
}

/* Decorative dots removed in this version — keeping composition clean */

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

.aboutv2-title {
    margin: 0 0 18px;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

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

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

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

.aboutv2-right img {
    width: 100%;
    border-radius: 120px 0 120px 0;
    object-fit: cover;
    box-shadow: var(--brand-shadow);
}

.aboutv2-video-wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.aboutv2-video-item {
    width: 50%;
    text-align: center;
}

.aboutv2-video-item video {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 120px 0 120px 0;
    box-shadow: var(--brand-shadow);
}

.aboutv2-video-note {
    margin-top: 14px;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--brand-title);
    opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {

    .aboutv2-video-wrap {
        gap: 12px;
    }

    .aboutv2-video-item video {
        height: 340px;
        border-radius: 60px 0 60px 0;
    }

    .aboutv2-video-note {
        font-size: 12px;
    }
}

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

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

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

.blanc-service-title {
    margin: 0;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

/* =========================
   ORNAMENT (Maison Belle)
========================= */
.blanc-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 18px auto 22px;
    max-width: 320px;
    color: var(--brand-mauve-deep);
    opacity: 0.9;
}

.blanc-ornament::before,
.blanc-ornament::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--brand-tan) 30%,
            var(--brand-mauve) 100%);
}

.blanc-ornament::after {
    background: linear-gradient(90deg,
            var(--brand-mauve) 0%,
            var(--brand-tan) 70%,
            transparent 100%);
}

.blanc-ornament svg {
    flex: 0 0 auto;
    width: 36px;
    height: 18px;
    fill: var(--brand-mauve-deep);
}

/* Standalone floral divider (centered, larger) */
.blanc-ornament-lg {
    margin: 26px auto 30px;
    max-width: 460px;
}

.blanc-ornament-lg svg {
    width: 56px;
    height: 26px;
}

/* Keep legacy divider for backwards compat */
.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: 22px;

    justify-content: center;

}

/* =========================
   FEATURED / SIGNATURE SERVICE
========================= */
.blanc-featured-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0 auto 70px;
    max-width: 1100px;
    background: var(--brand-cream);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(58, 47, 42, 0.16),
        0 4px 12px rgba(168, 126, 118, 0.12);
    border: 1px solid rgba(168, 126, 118, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blanc-featured-service:hover {
    transform: translateY(-4px);
    box-shadow:
        0 40px 90px rgba(58, 47, 42, 0.22),
        0 6px 18px rgba(168, 126, 118, 0.18);
}

.blanc-featured-photo {
    position: relative;
    min-height: 480px;
    overflow: hidden;
}

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

.blanc-featured-service:hover .blanc-featured-photo img {
    transform: scale(1.04);
}

.blanc-featured-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--brand-mauve-deep);
    color: var(--brand-white);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    padding: 8px 18px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(168, 126, 118, 0.35);
}

.blanc-featured-body {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blanc-featured-title {
    margin: 8px 0 18px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--brand-title);
    line-height: 1.15;
    letter-spacing: 0.3px;
}

.blanc-featured-text {
    margin: 0 0 22px;
    color: var(--brand-text);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.65;
}

.blanc-featured-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.blanc-featured-list li {
    position: relative;
    padding-left: 22px;
    color: var(--brand-text);
    font-size: 0.98rem;
    line-height: 1.5;
}

.blanc-featured-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-mauve-deep);
    font-size: 0.9rem;
}

.blanc-featured-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    padding: 13px 32px;
    background: var(--brand-title);
    color: var(--brand-white);
    text-decoration: none;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(58, 47, 42, 0.2);
}

.blanc-featured-btn:hover {
    background: var(--brand-mauve-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(168, 126, 118, 0.4);
    color: var(--brand-white);
}

@media (max-width: 900px) {
    .blanc-featured-service {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }

    .blanc-featured-photo {
        min-height: 320px;
    }

    .blanc-featured-body {
        padding: 40px 28px;
    }

    .blanc-featured-list {
        grid-template-columns: 1fr;
    }
}

.blanc-service-card {
    position: relative;
    background: var(--brand-bg-soft);
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
    box-shadow: var(--brand-shadow);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(168, 126, 118, 0.15);
}

.blanc-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
    background: linear-gradient(180deg,
            rgba(168, 126, 118, 0) 0%,
            rgba(168, 126, 118, 0) 60%,
            rgba(168, 126, 118, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.blanc-service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 50px rgba(58, 47, 42, 0.18),
        0 4px 12px rgba(168, 126, 118, 0.12);
    border-color: rgba(168, 126, 118, 0.3);
}

.blanc-service-photo {
    height: 220px;
    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: 20px 16px 22px;
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

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

/* Mini ornament inside each service card */
.blanc-card-ornament {
    display: flex;
    justify-content: center;
    margin: 4px 0 14px;
    color: var(--brand-mauve);
}

.blanc-card-ornament svg {
    width: 60px;
    height: 14px;
    fill: currentColor;
}

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

/* =========================
   STATS BAR + PROMISE
========================= */
.blanc-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 30px auto 60px;
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(168, 126, 118, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.blanc-stat {
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.blanc-stat + .blanc-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--brand-tan) 50%,
            transparent 100%);
}

.blanc-stat-number {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--brand-mauve-deep);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.blanc-stat-star {
    color: #d4a847;
    font-style: normal;
    margin-left: 4px;
}

.blanc-stat-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--brand-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.blanc-promise {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 30px 0;
    text-align: center;
}

.blanc-promise .blanc-eyebrow {
    color: var(--brand-title);
    margin-bottom: 18px;
}

.blanc-promise-text {
    margin: 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--brand-text);
    font-weight: 500;
}

@media (max-width: 768px) {
    .blanc-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 18px;
        padding: 28px 18px;
    }

    .blanc-stat + .blanc-stat::before {
        display: none;
    }

    .blanc-stat:nth-child(2)::before {
        display: block;
    }

    .blanc-stat:nth-child(1),
    .blanc-stat:nth-child(2) {
        padding-bottom: 18px;
        border-bottom: 1px solid var(--brand-tan);
    }

    .blanc-promise-text {
        font-size: 1.1rem;
    }
}

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

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

    .blanc-service-body {
        min-height: 200px;
    }
}

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

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

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

@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-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-card {
        max-width: 390px;
        margin: 0 auto;
        width: 100%;
    }

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

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

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

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

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

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

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

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

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

.blanc-story-title {
    margin: 0 0 20px;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 1px;
    font-weight: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* =========================
   CONTACT LITE
========================= */
.blanc-contact-lite {
    position: relative;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(168, 126, 118, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(168, 126, 118, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #2a2522 0%, #1f1b18 100%);
    padding: 100px 24px 110px;
    overflow: hidden;
    color: var(--brand-cream);
}

/* Decorative ornaments */
.blanc-contact-lite::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-mauve), transparent);
    opacity: 0.6;
}

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

.blanc-contact-lite-head {
    text-align: center;
    margin-bottom: 60px;
}

.blanc-contact-lite-eyebrow {
    display: inline-block;
    font-family: var(--font-script);
    color: var(--brand-mauve-soft);
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 400;
}

.blanc-contact-lite-title {
    margin: 0;
    color: var(--brand-cream);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 600;
    font-family: var(--font-display);
    font-style: italic;
    letter-spacing: 0.5px;
    text-transform: none;
}

.blanc-contact-lite-title .script-accent {
    color: var(--brand-mauve-soft);
}

/* 2-column main grid */
.blanc-contact-lite-main {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

/* LEFT: Map */
.blanc-contact-lite-map-wrap {
    position: relative;
}

.blanc-map-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.5),
        0 6px 18px rgba(168, 126, 118, 0.18);
    border: 1px solid rgba(254, 252, 248, 0.12);
    aspect-ratio: 5 / 4;
    background: var(--brand-cream);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.blanc-map-frame:hover {
    transform: translateY(-4px);
    box-shadow:
        0 36px 80px rgba(0, 0, 0, 0.55),
        0 8px 24px rgba(168, 126, 118, 0.25);
}

/* Decorative pin badge in corner */
.blanc-map-frame::after {
    content: "📍";
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand-mauve-deep);
    color: var(--brand-white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(168, 126, 118, 0.45);
    border: 3px solid rgba(254, 252, 248, 0.9);
}

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

/* RIGHT: Content */
.blanc-contact-lite-content {
    padding: 4px 0;
}

.blanc-contact-lite-intro {
    margin: 0 0 14px;
    color: rgba(254, 252, 248, 0.78);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

.blanc-contact-lite-intro .brand {
    color: var(--brand-cream);
}

/* Contact details list with icons */
.blanc-contact-lite-details {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blanc-contact-lite-details li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blanc-contact-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(168, 126, 118, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-mauve-soft);
    font-size: 0.95rem;
    background: rgba(168, 126, 118, 0.06);
    transition: all 0.3s ease;
}

.blanc-contact-lite-details li:hover .blanc-contact-icon {
    background: var(--brand-mauve-deep);
    border-color: var(--brand-mauve-deep);
    color: var(--brand-white);
}

.blanc-contact-lite-details li > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blanc-contact-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--brand-mauve-soft);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.blanc-contact-link,
.blanc-contact-value {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--brand-cream);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blanc-contact-link:hover {
    color: var(--brand-mauve-soft);
}

/* Business hours (from API) — desktop minimal */
.blanc-contact-hours {
    margin-top: 24px;
}

.blanc-contact-hours-title {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--brand-mauve-soft);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 14px;
}

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

.blanc-contact-hours-list li {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: rgba(254, 252, 248, 0.85);
    line-height: 1.6;
}

.blanc-contact-hours-list li .row p,
.blanc-contact-hours-list li .row span {
    color: inherit;
}

.blanc-contact-hours-list li p.fw-bold,
.blanc-contact-hours-list li .fw-bold {
    color: var(--brand-cream) !important;
    font-weight: 600 !important;
}

.blanc-contact-hours-list li .text-primary {
    color: var(--brand-mauve-soft) !important;
}

.blanc-contact-hours-list li .text-gray-600 {
    color: rgba(254, 252, 248, 0.7) !important;
}

/* Mobile card-style override */
@media (max-width: 767px) {
    .blanc-contact-hours {
        margin-top: 24px;
        padding: 20px 18px;
        background: rgba(168, 126, 118, 0.06);
        border: 1px solid rgba(168, 126, 118, 0.2);
        border-radius: 12px;
    }

    .blanc-contact-hours-title {
        text-align: center;
        margin-bottom: 18px;
    }

    .blanc-contact-hours-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }

    .blanc-contact-hours-list li {
        width: 100%;
    }

    .blanc-contact-hours-list li .row {
        display: flex !important;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        margin: 0;
        padding: 6px 0;
        border-bottom: 1px dashed rgba(168, 126, 118, 0.18);
    }

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

    .blanc-contact-hours-list li p[class*="col-"] {
        flex: 0 0 70px !important;
        margin: 0 !important;
        text-align: left !important;
        width: auto !important;
        max-width: none !important;
        font-family: var(--font-body);
        font-size: 0.8rem;
        color: var(--brand-mauve-soft);
        letter-spacing: 1.2px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .blanc-contact-hours-list li span[class*="col-"] {
        flex: 1;
        text-align: right;
        font-family: var(--font-serif);
        font-size: 0.95rem;
        color: var(--brand-cream);
        font-style: italic;
    }

    /* Mobile card style for contact details */
    .blanc-contact-lite-details {
        gap: 10px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .blanc-contact-lite-details li {
        padding: 10px 14px;
        background: rgba(168, 126, 118, 0.04);
        border: 1px solid rgba(168, 126, 118, 0.12);
        border-radius: 12px;
    }

    .blanc-contact-lite-details li:hover {
        background: rgba(168, 126, 118, 0.1);
        border-color: rgba(168, 126, 118, 0.3);
        transform: translateX(4px);
    }

    .blanc-contact-lite-details li > div {
        flex: 1;
        min-width: 0;
    }

    .blanc-contact-lite-details li > div > a,
    .blanc-contact-lite-details li > div > span:not(.blanc-contact-label) {
        word-break: break-word;
    }
}

/* Footer of right column — social + CTA */
.blanc-contact-lite-footer {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(168, 126, 118, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.blanc-contact-lite-social {
    display: flex;
    gap: 10px;
    min-height: 32px;
}

.blanc-contact-lite-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(168, 126, 118, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cream);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(168, 126, 118, 0.06);
}

.blanc-contact-lite-social a:hover {
    background: var(--brand-mauve-deep);
    border-color: var(--brand-mauve-deep);
    color: var(--brand-white);
    transform: translateY(-2px);
}

.blanc-contact-lite-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    border-radius: 999px;
    background: var(--brand-mauve-deep);
    border: 1px solid var(--brand-mauve-deep);
    color: var(--brand-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(168, 126, 118, 0.3);
}

.blanc-contact-lite-btn:hover {
    background: var(--brand-accent-hover);
    border-color: var(--brand-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(168, 126, 118, 0.42);
    color: var(--brand-white);
}

/* 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: 36px;
    }

    .blanc-map-frame {
        border-radius: 50% / 38%;
        border-width: 4px;
    }

    .blanc-contact-lite-footer {
        justify-content: center;
        text-align: center;
    }

    .blanc-map-frame::after {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        bottom: 14px;
        right: 14px;
    }
}

/* =========================
   GALLERY SECTION
========================= */
.blanc-gallery-zone {
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0%,
            rgba(168, 126, 118, 0.08) 0%,
            transparent 50%),
        var(--brand-bg-soft);
    padding: 90px 12px 80px;
    overflow: hidden;
}

/* Decorative floral corner accents */
.blanc-gallery-zone::before,
.blanc-gallery-zone::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background-image: radial-gradient(circle,
            rgba(168, 126, 118, 0.10) 0%,
            rgba(168, 126, 118, 0.05) 30%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.blanc-gallery-zone::before {
    top: -60px;
    left: -60px;
}

.blanc-gallery-zone::after {
    bottom: -60px;
    right: -60px;
}

.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;
    max-width: 760px;
    margin: 0 auto 50px;
}

.blanc-gallery-title {
    margin: 0;
    color: var(--brand-title);
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

.blanc-gallery-subtitle {
    margin: 16px 0 0;
    color: var(--brand-title);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.4;
}

.blanc-gallery-text {
    margin: 16px auto 0;
    max-width: 640px;
    color: var(--brand-text);
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.75;
}

.blanc-gallery-head .blanc-ornament {
    margin: 24px auto 0;
    max-width: 240px;
}

/* Filter tabs */
.blanc-gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px auto 0;
    max-width: 720px;
}

.blanc-filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--brand-tan);
    background: transparent;
    border-radius: 999px;
    color: var(--brand-text);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blanc-filter-btn:hover {
    border-color: var(--brand-mauve-deep);
    color: var(--brand-mauve-deep);
    transform: translateY(-1px);
}

.blanc-filter-btn.active {
    background: var(--brand-mauve-deep);
    color: var(--brand-white);
    border-color: var(--brand-mauve-deep);
    box-shadow: 0 4px 14px rgba(168, 126, 118, 0.3);
}

.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;
    transition: opacity 0.3s ease;
}

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

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

/* Hover overlay (inside the anchor trigger) */
.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg,
            rgba(58, 47, 42, 0) 40%,
            rgba(58, 47, 42, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-hover-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand-mauve-deep);
    color: var(--brand-white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.6);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(168, 126, 118, 0.45);
}

.gallery-hover-text {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: var(--brand-white);
    text-transform: uppercase;
    font-weight: 500;
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.blanc-gallery-card:hover .gallery-hover-overlay {
    opacity: 1;
}

.blanc-gallery-card:hover .gallery-hover-icon {
    transform: scale(1);
}

.blanc-gallery-card:hover .gallery-hover-text {
    opacity: 1;
    transform: translateY(0);
}

/* When uniform (show all mode), smaller hover icon */
.hl-gallery-card-uniform .gallery-hover-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
}

/* RESPONSIVE for gallery */
@media (max-width: 991px) {
    .blanc-gallery-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }

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

/* Mobile — compact 2-column grid (initial state + show-all) */
@media (max-width: 600px) {
    .blanc-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 160px);
        gap: 8px;
    }

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

/* Small phones — same 2-col, tighter spacing */
@media (max-width: 380px) {
    .blanc-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 140px);
        gap: 6px;
    }

    .blanc-gallery-card {
        border-radius: 6px;
    }
}

    .gallery-hover-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

.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: 11px 26px;
    border-radius: 999px;
    border: 1px solid var(--brand-mauve-deep);
    color: var(--brand-white);
    background: var(--brand-mauve-deep);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.78rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(168, 126, 118, 0.25);
}

.blanc-gallery-btn:hover {
    background: var(--brand-accent-hover);
    border-color: var(--brand-accent-hover);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(168, 126, 118, 0.4);
}

/* 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;
        font-family: var(--font-display);
        font-style: italic;
        text-transform: none;
        letter-spacing: 0.5px;
        font-weight: 600;
    }

    .blanc-gallery-subtitle {
        font-size: 1.1rem;
    }

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

/* Gallery 300 */
/* Gallery: chỉ áp dụng khi bấm Show More */
.blanc-gallery-grid.hl-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px !important;
}

/* chỉ card trong trạng thái Show More mới bị ép đều */
.blanc-gallery-grid.hl-gallery-grid .hl-gallery-card-uniform {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    display: block;
}

.blanc-gallery-grid.hl-gallery-grid .hl-gallery-card-uniform img,
.blanc-gallery-grid.hl-gallery-grid .hl-gallery-card-uniform video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* nếu lỡ có card lớn thì khi show more bỏ đi */
.blanc-gallery-grid.hl-gallery-grid .blanc-gallery-card-large {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 1 / 1 !important;
}

/* tablet */
@media (max-width: 991px) {
    .blanc-gallery-grid.hl-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px !important;
    }
}

/* mobile */
@media (max-width: 767px) {
    .blanc-gallery-grid.hl-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px !important;
    }

    .blanc-gallery-grid.hl-gallery-grid .hl-gallery-card-uniform {
        border-radius: 12px;
    }
}


/* =========================
   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: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

.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:
        linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.65)),
        url('/photos/home/contact-bg.jpg') left center / cover no-repeat;
    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: 600;
    font-family: var(--font-display);
    font-style: italic;
    letter-spacing: 0.5px;
    text-transform: none;
}

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

.blanc-choose-card {
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.051);
    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: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

.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: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

.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: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* category title */
#menu-container .service-category-title {

    color: var(--brand-title) !important;
    font-weight: 600;
    text-align: center !important;
    margin-bottom: 8px;
}

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

.service-show-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 52px;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid var(--brand-mauve-deep);
    background: var(--brand-mauve-deep);
    color: var(--brand-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(168, 126, 118, 0.3);
}

.service-show-more-btn:hover {
    color: var(--brand-white);
    background: var(--brand-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(168, 126, 118, 0.42);
}

.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: 600;
    font-family: var(--font-display);
    font-style: italic;
    text-transform: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* responsive */
@media (max-width: 991px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .blanc-services-page-desc {
        font-size: 0.92rem !important;
    }
}

/* NEW TESTIMONIALS */
.flane-reviews-section {
    position: relative;
    /* background: var(--brand-bg-soft); */
    padding: 0 0 80px;
    overflow: hidden;
}

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

.flane-reviews-wave-top path {
    fill: var(--brand-wave);
}

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

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

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

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

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

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

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

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

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

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

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

.flane-review-verified {

    color: var(--brand-text);
    margin-bottom: 6px;
}

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

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

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

    word-break: break-word;
}

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

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

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

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

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

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

.flane-review-note {
    font-size: 0.95rem;
    color: var(--brand-text);
    white-space: nowrap;
}

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

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

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

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

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

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

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


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

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

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

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

/* =========================================
   (Promo top bar removed — see conversation)
========================================= */

/* =========================================
   TOP DECORATIVE LINE (hairline + diamond)
========================================= */
.top-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(233, 196, 106, 0.25);
    pointer-events: none;
}

.top-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--brand-accent);
    transform: translateY(-50%);
}

.top-line__diamond {
    position: relative;
    z-index: 1;
    width: 6px;
    height: 6px;
    background: var(--brand-accent);
    transform: rotate(45deg);
    box-shadow: 0 0 0 5px #000;
}

/* =========================================
   HERO v2 — Variant A
   Video background (slide-1.mp4) + Barrie-style layout overlay
========================================= */
.hero-blanc-v2 {
    position: relative;
    background: var(--brand-bg-soft);
    min-height: calc(100vh - 140px);
    overflow: hidden;
    margin-top: 0;
    isolation: isolate;
}

/* Subtle decorative pattern (faint, behind everything) */
.hero-blanc-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 80%, rgba(184, 153, 148, 0.10) 0%, transparent 35%),
        radial-gradient(circle at 85% 20%, rgba(233, 196, 106, 0.06) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
}

/* VIDEO BACKGROUND */
.hero-v2-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    animation: heroImageReveal 1.2s ease 0.15s both;
}

.hero-v2-video--mobile { display: none; }

/* Cream overlay (Barrie-style: stronger on left where text sits, lighter on right) */
.hero-v2-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        /* Strong cream on the left ~55% for text readability */
        linear-gradient(
            90deg,
            rgba(250, 243, 232, 0.94) 0%,
            rgba(250, 243, 232, 0.88) 30%,
            rgba(250, 243, 232, 0.55) 48%,
            rgba(250, 243, 232, 0.18) 65%,
            rgba(250, 243, 232, 0) 80%
        ),
        /* Slight dark vignette on the right edge so the video feels framed */
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0) 70%,
            rgba(0, 0, 0, 0.08) 100%
        );
}

/* LEFT: text content (Barrie layout) */
.hero-v2-left {
    position: relative;
    z-index: 3;
    padding: 80px 70px 80px max(70px, calc((100vw - 1320px) / 2 + 50px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    min-height: calc(100vh - 140px);
}

.hero-v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    color: var(--brand-mauve-deep);
    font-family: var(--font-body);
    font-style: normal;
    font-size: 12px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 500;
    animation: heroFadeUp 0.9s ease 0.1s both;
}

.hero-v2-eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--brand-accent);
}

.hero-v2-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(48px, 5.5vw, 84px);
    line-height: 1.02;
    color: var(--brand-title);
    margin: 0 0 32px;
    letter-spacing: -0.5px;
    animation: heroFadeUp 0.9s ease 0.25s both;
}

.hero-v2-title-it {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--brand-mauve-deep);
    margin-top: -2px;
}

.hero-v2-desc {
    max-width: 480px;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--brand-text);
    background: rgba(255, 255, 255, 0.55);
    border-left: 1px solid var(--brand-accent);
    padding: 18px 22px;
    margin: 0 0 38px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: heroFadeUp 0.9s ease 0.4s both;
}

.hero-v2-desc .brand {
    color: var(--brand-title);
    font-weight: 600;
}

/* CTA group */
.hero-v2-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.9s ease 0.55s both;
}

.hero-v2-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 17px 34px;
    border-radius: 0;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.hero-v2-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.hero-v2-cta--primary {
    background: var(--brand-title);
    color: #faf3e8;
}

.hero-v2-cta--primary:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(29, 29, 29, 0.25);
}

.hero-v2-cta--primary:hover svg {
    transform: translateX(3px);
}

.hero-v2-cta--ghost {
    background: transparent;
    color: var(--brand-title);
    border-color: var(--brand-title);
    padding: 16px 26px;
    letter-spacing: 2px;
}

.hero-v2-cta--ghost:hover {
    background: var(--brand-title);
    color: #faf3e8;
}

@keyframes heroImageReveal {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
}

/* BOTTOM RIBBON (Visit / Call / Hours) */
.hero-v2-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: rgba(29, 29, 29, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #f5ede1;
    padding: 16px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(168, 126, 118, 0.3);
    animation: heroFadeUp 0.9s ease 0.7s both;
}

.hero-v2-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #f5ede1;
}

/* Hours item: label on left, 3 stacked lines on right */
.hero-v2-meta-item--hours {
    align-items: flex-start;
    gap: 14px;
}

.hero-v2-hours-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12.5px;
    line-height: 1.35;
}

.hero-v2-hours-line {
    white-space: nowrap;
}

.hero-v2-hours-line.is-empty {
    display: none;
}

.hero-v2-meta-lbl {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2.5px;
    color: #e9c46a;
    font-weight: 600;
}

.hero-v2-meta-val {
    color: #f5ede1;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

a.hero-v2-meta-val:hover {
    color: #e9c46a;
}

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

/* ============ HERO v2 RESPONSIVE ============ */
@media (max-width: 1100px) {
    .hero-v2-left {
        padding: 60px 50px;
    }
}

@media (max-width: 900px) {
    .hero-blanc-v2 {
        min-height: auto;
    }
    .hero-v2-left {
        padding: 60px 30px 40px;
        max-width: 100%;
        min-height: auto;
    }
    .hero-v2-title {
        font-size: clamp(40px, 8vw, 56px);
    }
    .hero-v2-meta {
        position: static;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 30px;
    }
    .hero-v2-meta-item {
        width: 100%;
    }
    /* On tablet/mobile, full overlay (text not just on left) for readability */
    .hero-v2-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(250, 243, 232, 0.55) 0%,
                rgba(250, 243, 232, 0.85) 45%,
                rgba(250, 243, 232, 0.95) 100%
            );
    }
}

@media (max-width: 600px) {
    .hero-v2-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-v2-cta {
        width: 100%;
    }
    .hero-v2-desc {
        font-size: 14px;
        padding: 14px 18px;
    }
}

@media (max-width: 768px) {
    .hero-v2-video--desktop { display: none; }
    .hero-v2-video--mobile  { display: block; }
}

/* =========================================
   LUXE TITLE TYPOGRAPHY
   Soft letterpress + warm halo for big serif titles
========================================= */
.hero-v2-title,
.hero-v2-title-it,
.aboutv2-title,
.aboutv2-subtitle,
.blanc-gallery-title,
.blanc-featured-title {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.55),       /* crisp top highlight */
        0 2px 6px rgba(58, 47, 42, 0.08),         /* soft drop shadow */
        0 0 28px rgba(168, 126, 118, 0.07);      /* warm mauve halo */
}

/* Italic accent titles get a slightly stronger glow */
.hero-v2-title-it,
.aboutv2-subtitle {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.65),
        0 2px 6px rgba(58, 47, 42, 0.06),
        0 0 36px rgba(233, 196, 106, 0.10);      /* soft gold halo for italics */
}

/* TESTIMONIALS */