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

    /* BACKGROUND */
    --brand-bg-main: #e6d3b3;
    --brand-bg-soft: #fbf6ef;
    --brand-wave: #f3e7d7;

    /* TEXT */
    --brand-title: #4a2f22;
    --brand-text: #5a4636;

    /* ACCENT */
    --brand-accent: #c6a46a;
    --brand-accent-soft: rgba(198, 164, 106, 0.28);

    /* GLASS / OVERLAY */
    --brand-glass: rgba(250, 250, 250, 0.25);

    /* SHADOW */
    --brand-shadow: 0 12px 30px rgba(120, 90, 50, 0.15);

    /* FONT SIZE */
    --fs-section-title: clamp(2.35rem, 5vw, 4.4rem);
    --fs-section-subtitle: clamp(1.28rem, 2vw, 1.85rem);
    --fs-body: 1.08rem;
    --fs-card-title: 1.15rem;
    --fs-card-text: 1.02rem;
    --fs-nav: 14px;
    --fs-btn: 14px;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .logo-blanc img {
        height: 80px;
        margin-left: 30px;
    }

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

    .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: 560px;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* =========================================
   ATELIER GLASS & GOLD
   Refined hero card — gold hairline, serif
   tagline, monogram, stat lines, single CTA
========================================= */
.hero-card-luxe {
    background: rgba(252, 246, 238, 0.55);
    backdrop-filter: blur(18px) saturate(1.05);
    -webkit-backdrop-filter: blur(18px) saturate(1.05);
    border: 1px solid rgba(198, 164, 106, 0.55);
    border-radius: 4px;
    padding: 44px 40px 40px;
    max-width: 460px;
    box-shadow:
        0 18px 50px rgba(74, 47, 34, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    overflow: hidden;
    animation: heroLuxeReveal 1.1s ease both;
}

@keyframes heroLuxeReveal {
    from { opacity: 0; transform: translateY(18px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0)    scale(1);     }
}

/* top gold hairline with subtle shimmer */
.hero-card-rail {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(198, 164, 106, 0) 0%,
        rgba(198, 164, 106, 0.9) 50%,
        rgba(198, 164, 106, 0) 100%
    );
    overflow: hidden;
}
.hero-card-rail::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: heroRailShimmer 4.5s ease-in-out infinite;
}
@keyframes heroRailShimmer {
    0%   { left: -40%; }
    60%  { left: 110%; }
    100% { left: 110%; }
}

/* monogram: serif initial + tracked label */
.hero-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}
.hero-monogram-mark {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-weight: 500;
    font-style: italic;
    font-size: 2.6rem;
    line-height: 1;
    color: var(--brand-accent);
    border: 1px solid var(--brand-accent);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}
.hero-monogram-words {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
}
.hero-monogram-line {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-weight: 500;
    font-size: 1.55rem;
    color: var(--brand-title);
    letter-spacing: 0.5px;
}
.hero-monogram-sub {
    margin-top: 4px;
    font-size: 0.68rem;
    letter-spacing: 3.4px;
    text-transform: uppercase;
    color: var(--brand-text);
    font-weight: 500;
}

/* main serif tagline */
.hero-tagline {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-weight: 400;
    font-style: italic;
    color: var(--brand-title);
    font-size: clamp(1.8rem, 3.4vw, 2.45rem);
    line-height: 1.18;
    margin: 0 0 22px;
    letter-spacing: 0.2px;
}

/* divider with single ornament */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 22px;
    max-width: 70%;
}
.hero-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(198, 164, 106, 0) 0%,
        rgba(198, 164, 106, 0.7) 100%
    );
}
.hero-divider-line:last-child {
    background: linear-gradient(
        90deg,
        rgba(198, 164, 106, 0.7) 0%,
        rgba(198, 164, 106, 0) 100%
    );
}
.hero-divider-glyph {
    color: var(--brand-accent);
    font-size: 0.7rem;
    line-height: 1;
}

/* 3 stat lines */
.hero-stats {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--brand-text);
    letter-spacing: 0.4px;
}
.hero-stats li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.hero-stats-bullet {
    color: var(--brand-accent);
    font-size: 0.6rem;
    line-height: 1;
}

/* CTA — gold outlined, fills on hover */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid var(--brand-accent);
    background: transparent;
    color: var(--brand-title);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 3.4px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.hero-cta:hover {
    background: var(--brand-accent);
    color: #fff;
    transform: translateY(-1px);
}
.hero-cta-arrow {
    font-size: 0.95rem;
    letter-spacing: 0;
    transition: transform 0.3s ease;
}
.hero-cta:hover .hero-cta-arrow {
    transform: translateX(3px);
}

/* =========================================
   BOTTOM INFO STRIP
   Slim hairline-bordered line under the hero
========================================= */
.hero-bottom-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 18px 24px;
    background: linear-gradient(
        to top,
        rgba(251, 246, 239, 0.85),
        rgba(251, 246, 239, 0)
    );
    border-top: 1px solid rgba(198, 164, 106, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-bottom-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--brand-title);
}
.hero-bottom-item {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}
.hero-bottom-label {
    color: var(--brand-accent);
    font-weight: 600;
    letter-spacing: 2.2px;
}
.hero-bottom-value {
    color: var(--brand-title);
    text-decoration: none;
    font-weight: 500;
}
a.hero-bottom-value:hover {
    color: var(--brand-accent);
}
.hero-bottom-sep {
    color: var(--brand-accent);
    opacity: 0.6;
}

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

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

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

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

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

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

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

.hero-info-link-x {
    color: inherit;
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hero-info-block-x {
        min-width: 0;
        width: 100%;
    }

    .hero-card-luxe {
        padding: 30px 22px 28px;
        max-width: 92%;
    }
    .hero-monogram-mark {
        width: 44px;
        height: 44px;
        font-size: 2.1rem;
    }
    .hero-monogram-line { font-size: 1.3rem; }
    .hero-monogram-sub  { font-size: 0.6rem; letter-spacing: 2.4px; }
    .hero-tagline       { font-size: 1.7rem; }
    .hero-stats         { font-size: 0.82rem; gap: 6px; margin-bottom: 22px; }
    .hero-cta           { padding: 10px 22px; font-size: 0.7rem; letter-spacing: 2.6px; }

    .hero-bottom-strip {
        position: static;
        background: rgba(251, 246, 239, 0.9);
        padding: 14px 16px;
    }
    .hero-bottom-strip-inner {
        flex-direction: column;
        gap: 6px;
        font-size: 0.7rem;
        letter-spacing: 1.2px;
    }
    .hero-bottom-sep { display: none; }
}
/* =========================
   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-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: var(--fs-section-title);
    line-height: 0.95;
    letter-spacing: 0.02em;
    font-weight: 500;
    text-transform: none;
}

.promotions .divider-lg {
    width: 108px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    opacity: 1;
    margin: 22px auto 26px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blanc-service-divider {
    width: 60px;
    height: 1px;
    background: var(--brand-title);
    opacity: 0.6;
    margin: 22px auto 22px;
}

.blanc-service-subtitle {
    margin: 0;
    color: var(--brand-text);
    font-size: var(--fs-section-subtitle);
    line-height: var(--lh-subtitle);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.blanc-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(79, 73, 70, 0.18);
}

.blanc-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 6px;
    border-bottom: 1px solid rgba(79, 73, 70, 0.18);
    text-decoration: none;
    color: var(--brand-title);
    transition: padding 0.4s ease, color 0.4s ease, background 0.4s ease;
}

.blanc-service-item:hover,
.blanc-service-item:focus-visible {
    padding-left: 22px;
    padding-right: 22px;
    color: var(--brand-accent);
    background: rgba(255, 255, 255, 0.55);
    outline: none;
}

.blanc-service-item-head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    min-width: 0;
}

.blanc-service-item-num {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--brand-accent);
    font-weight: 500;
    flex-shrink: 0;
}

.blanc-service-item-title {
    margin: 0;
    color: inherit;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blanc-service-item-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    flex-shrink: 0;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.blanc-service-item-arrow svg {
    width: 16px;
    height: 16px;
}

.blanc-service-item:hover .blanc-service-item-arrow,
.blanc-service-item:focus-visible .blanc-service-item-arrow {
    background: var(--brand-accent);
    color: #fff;
    transform: translateX(4px);
    border-color: var(--brand-accent);
}

.blanc-service-foot {
    margin-top: 40px;
    text-align: center;
}

.blanc-service-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid var(--brand-title);
    border-radius: 999px;
    color: var(--brand-title);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.4s ease, color 0.4s ease, letter-spacing 0.4s ease;
}

.blanc-service-all svg {
    width: 14px;
    height: 14px;
    transition: transform 0.4s ease;
}

.blanc-service-all:hover,
.blanc-service-all:focus-visible {
    background: var(--brand-title);
    color: var(--brand-bg-soft);
    letter-spacing: 4px;
    outline: none;
}

.blanc-service-all:hover svg,
.blanc-service-all:focus-visible svg {
    transform: translateX(4px);
}

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

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

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

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

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

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {
    .blanc-service-shell {
        max-width: 700px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .blanc-service-item {
        padding: 22px 4px;
    }

    .blanc-service-item-title {
        font-size: 18px;
    }

    .blanc-service-item-arrow {
        width: 34px;
        height: 34px;
    }

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

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

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

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

    .aboutv2-img {
        height: 200px;
    }

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

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

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

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

    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .blanc-flip-back-inner p {
        font-size: 0.98rem;
        line-height: 1.6;
    }
}
/* =========================
   CONTACT LITE
========================= */
.blanc-contact-lite {
    position: relative;
    background: #f3ede4;
    padding: 90px 20px 100px;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blanc-choose-booking-text {
    margin: 0 0 16px;
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* #NEW SERVICES */
.blanc-menu-api-wrap {
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blanc-menu-category-hero-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to right, rgba(191, 165, 138, 0.58), rgba(191, 165, 138, 0.20)),
    linear-gradient(to top, rgba(191, 165, 138, 0.52), rgba(191, 165, 138, 0.06));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {

    .custom-gallery-close,
    .custom-gallery-prev,
    .custom-gallery-next {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

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

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

    .custom-gallery-next {
        right: 10px;
    }
}

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

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

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

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

@media (max-width: 991px) {

    .blanc-gallery-page-card img,
    .blanc-gallery-page-card video {
        height: 300px;
    }
}

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

    .blanc-gallery-page-card img,
    .blanc-gallery-page-card video {
        height: 220px;
    }
}
/* NEW TESTIMONIALS */
.flane-reviews-section {
    position: relative;
    /* background: 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-main);
    border: 1px solid rgba(160, 136, 113, 0.18);
    border-radius: 24px;
    padding: 28px 26px 24px;
    box-shadow: 0 10px 24px rgba(89, 66, 48, 0.06);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    min-height: 290px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

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

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

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

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

.flane-review-verified {
 
    color: 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;
    }
}
/* TESTIMONIALS */

/* =========================
   TNA HERO DESIGN REFRESH
========================= */
.hero-card-luxe {
    max-width: 520px;
    padding: 42px 42px 38px;
    border-radius: 28px 28px 6px 6px;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.82), rgba(251, 246, 239, 0.58));
    border: 1px solid rgba(198, 164, 106, 0.58);
    box-shadow:
        0 24px 70px rgba(74, 47, 34, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.hero-card-luxe::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(198, 164, 106, 0.24);
    border-radius: 22px 22px 4px 4px;
    pointer-events: none;
}

.hero-monogram {
    gap: 16px;
    margin-bottom: 18px;
}

.hero-monogram-mark {
    width: 66px;
    height: 66px;
    font-size: 1.62rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid rgba(198, 164, 106, 0.75);
    background: rgba(255, 255, 255, 0.36);
    box-shadow: inset 0 0 0 6px rgba(198, 164, 106, 0.08);
}

.hero-monogram-line {
    font-size: 1.85rem;
    line-height: 1;
}

.hero-monogram-sub {
    margin-top: 6px;
    font-size: 0.64rem;
    letter-spacing: 3.8px;
}

.hero-kicker {
    margin: 0 0 10px;
    color: var(--brand-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: clamp(2.25rem, 4.2vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 28px;
    font-size: 0.78rem;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.hero-stats li {
    flex-direction: column;
    gap: 7px;
    padding: 0 6px;
}

.hero-stats-bullet {
    font-size: 0.62rem;
}

.hero-cta {
    min-width: 210px;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

.hero-bottom-strip {
    padding: 16px 24px;
    background: linear-gradient(to top, rgba(251, 246, 239, 0.96), rgba(251, 246, 239, 0.26));
}

@media (max-width: 768px) {
    .hero-card-luxe {
        max-width: 94%;
        padding: 32px 20px 28px;
        border-radius: 22px 22px 6px 6px;
    }

    .hero-card-luxe::before {
        inset: 9px;
        border-radius: 17px 17px 4px 4px;
    }

    .hero-monogram {
        flex-direction: column;
        gap: 10px;
    }

    .hero-monogram-mark {
        width: 58px;
        height: 58px;
        font-size: 1.42rem;
    }

    .hero-monogram-words {
        align-items: center;
    }

    .hero-monogram-line {
        font-size: 1.62rem;
    }

    .hero-monogram-sub {
        letter-spacing: 2.8px;
        text-align: center;
    }

    .hero-kicker {
        font-size: 0.64rem;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: clamp(2rem, 10vw, 2.75rem);
        line-height: 1.02;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 7px;
        font-size: 0.74rem;
    }

    .hero-stats li {
        flex-direction: row;
        padding: 0;
    }
}

/* =========================
   TNA TITLE DESIGN REFRESH
========================= */
.promotions h2,
.aboutv2-title,
.blanc-service-title,
.blanc-story-title,
.blanc-contact-lite-title,
.blanc-gallery-title,
.blanc-overview-title,
.blanc-service-page-section-title,
.blanc-gallery-page-section-title,
.blanc-contact-page-section-title {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 18px 26px;
    color: var(--brand-title) !important;
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: var(--fs-section-title);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    text-align: center;
}

.aboutv2-title,
.blanc-team-copy .blanc-story-title {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.promotions h2::before,
.aboutv2-title::before,
.blanc-service-title::before,
.blanc-story-title::before,
.blanc-contact-lite-title::before,
.blanc-gallery-title::before,
.blanc-overview-title::before,
.blanc-service-page-section-title::before,
.blanc-gallery-page-section-title::before,
.blanc-contact-page-section-title::before {
    content: "✦";
    display: block;
    margin-bottom: 12px;
    color: var(--brand-accent);
    font-size: 0.32em;
    line-height: 1;
    letter-spacing: 0.6em;
    text-indent: 0.6em;
    opacity: 0.85;
}

.aboutv2-title::before,
.blanc-team-copy .blanc-story-title::before {
    margin-left: 4px;
    text-indent: 0.4em;
    text-align: left;
}

.promotions h2::after,
.aboutv2-title::after,
.blanc-service-title::after,
.blanc-story-title::after,
.blanc-contact-lite-title::after,
.blanc-gallery-title::after,
.blanc-overview-title::after,
.blanc-service-page-section-title::after,
.blanc-gallery-page-section-title::after,
.blanc-contact-page-section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: min(140px, 70%);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
}

.aboutv2-title::after,
.blanc-team-copy .blanc-story-title::after {
    left: 18px;
    transform: none;
    width: 120px;
    background: linear-gradient(90deg, var(--brand-accent), transparent);
}

.aboutv2-subtitle,
.blanc-service-subtitle {
    color: #7f6450;
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: clamp(1.35rem, 2.2vw, 2.05rem);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.015em;
}

.blanc-service-divider,
.promotions .divider-lg {
    display: none;
}

/* =========================
   TNA SHARED TITLE EYEBROW
========================= */
.blanc-title-eyebrow {
    display: inline-block;
    margin: 0 auto 14px;
    padding: 5px 14px;
    border: 1px solid rgba(191, 152, 96, 0.55);
    border-radius: 999px;
    color: var(--brand-accent);
    font-family: "Montserrat", "Lato", Arial, sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: left;
    background: rgba(255, 255, 255, 0.45);
}

.blanc-title-eyebrow-center {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.aboutv2-content .blanc-title-eyebrow {
    margin-left: 0;
}

/* Hide the star pseudo when an eyebrow tag is present above the title */
.blanc-service-title.has-eyebrow::before,
.blanc-story-title.has-eyebrow::before,
.aboutv2-title.has-eyebrow::before {
    content: none;
    display: none;
}

.blanc-flip-title {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

.blanc-contact-lite-title,
.blanc-contact-lite-sub {
    color: #fff !important;
}

.blanc-contact-lite-title::before,
.blanc-contact-lite-title::after {
    color: #f3d7a7;
    background: linear-gradient(90deg, transparent, #f3d7a7, transparent);
}

@media (max-width: 767px) {
    .promotions h2,
    .aboutv2-title,
    .blanc-service-title,
    .blanc-story-title,
    .blanc-contact-lite-title,
    .blanc-gallery-title,
    .blanc-overview-title,
    .blanc-service-page-section-title,
    .blanc-gallery-page-section-title,
    .blanc-contact-page-section-title {
        font-size: clamp(2.15rem, 10vw, 3rem);
        padding-bottom: 22px;
    }

    .aboutv2-title,
    .blanc-team-copy .blanc-story-title {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .aboutv2-title::before,
    .blanc-team-copy .blanc-story-title::before {
        text-align: center;
        margin-left: 0;
    }

    .aboutv2-title::after,
    .blanc-team-copy .blanc-story-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: min(120px, 70%);
        background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    }
}

/* =========================
   TNA HOME LUXURY BEIGE-GOLD SYSTEM
========================= */
:root {
    --brand-bg-main: #ead8bd;
    --brand-bg-soft: #fffaf3;
    --brand-bg-cream: #f8efe3;
    --brand-wave: #f5e8d8;
    --brand-title: #3f2c20;
    --brand-text: #6d5846;
    --brand-accent: #bf9860;
    --brand-accent-soft: rgba(191, 152, 96, 0.22);
    --brand-gold-deep: #9c7444;
    --brand-white: #ffffff;
    --brand-shadow: 0 18px 42px rgba(95, 67, 42, 0.13);
}

body {
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.62), transparent 26%),
        linear-gradient(180deg, #fffaf3 0%, #f8efe3 48%, #fffaf3 100%);
    color: var(--brand-text);
    font-family: "Montserrat", "Lato", Arial, sans-serif;
}

.page {
    background: transparent;
}

.nav-blanc-wrap.nav-top-x,
.nav-blanc-wrap.nav-scroll-x {
    background: rgba(255, 250, 243, 0.92) !important;
    border-bottom: 1px solid rgba(191, 152, 96, 0.16);
}

.menu-blanc a,
.btn-nav-blanc {
    color: var(--brand-title);
}

.btn-nav-blanc,
.hero-cta,
.blanc-gallery-btn,
.blanc-contact-lite-btn,
.staff-card .btn.btn-primary,
.button-primary,
.btn-call-us,
.btn-book-now {
    border-color: var(--brand-accent) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(191, 152, 96, 0.14)) !important;
    color: var(--brand-title) !important;
    box-shadow: 0 10px 22px rgba(95, 67, 42, 0.08) !important;
}

.btn-nav-blanc:hover,
.hero-cta:hover,
.blanc-gallery-btn:hover,
.blanc-contact-lite-btn:hover,
.staff-card .btn.btn-primary:hover,
.button-primary:hover,
.btn-call-us:hover,
.btn-book-now:hover {
    background: linear-gradient(135deg, #d4b276, var(--brand-accent)) !important;
    border-color: var(--brand-accent) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Floating Gift Card CTA - distinct gold, sits under Call / Book */
.btn-gift-card {
    border-color: #e8d4a8 !important;
    background: linear-gradient(135deg, #c6a46a 0%, #9c7444 55%, #c6a46a 100%) !important;
    color: #fffaf3 !important;
    box-shadow: 0 10px 24px rgba(156, 116, 68, 0.32) !important;
    font-weight: 700 !important;
}

.btn-gift-card:hover {
    background: linear-gradient(135deg, #9c7444, #7a5a32) !important;
    border-color: #c6a46a !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.giftcard-float-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    clear: both;
    pointer-events: none;
}

.giftcard-float-wrap .btn-gift-card {
    pointer-events: auto;
}

@media (min-width: 768px) {
    .giftcard-float-wrap {
        display: block;
        text-align: right;
    }

    .giftcard-float-wrap .btn-gift-card {
        float: right;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .giftcard-float-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 2px;
    }

    .giftcard-float-wrap .btn-gift-card {
        display: inline-block;
        width: auto;
        min-width: 180px;
        margin-left: auto;
        margin-right: auto;
    }
}

.promotions,
.blanc-story-zone,
.staff-section {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.50), transparent 32%),
        linear-gradient(180deg, #ead8bd 0%, #f4e7d5 100%) !important;
}

.aboutv2,
.blanc-gallery-zone {
    background:
        radial-gradient(circle at 82% 12%, rgba(191, 152, 96, 0.13), transparent 30%),
        linear-gradient(180deg, #fffaf3 0%, #f8efe3 100%) !important;
}

.blanc-service-zone,
.parallax-container .parallax-content {
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.58), transparent 28%),
        radial-gradient(circle at 88% 76%, rgba(191, 152, 96, 0.12), transparent 30%),
        linear-gradient(180deg, #f7ecdE 0%, #fffaf3 100%) !important;
}

.promotions,
.aboutv2,
.blanc-service-zone,
.blanc-story-zone,
.staff-section,
.blanc-contact-lite,
.blanc-gallery-zone {
    padding-top: clamp(78px, 8vw, 112px);
    padding-bottom: clamp(82px, 8vw, 118px);
}

.blanc-service-wave svg path,
.blanc-story-wave-top svg path,
.blanc-overview-wave-bottom svg path,
.blanc-gallery-page-wave-bottom svg path,
.blanc-contact-page-wave-bottom svg path {
    fill: var(--brand-wave) !important;
}

.aboutv2-wrapper,
.blanc-service-shell,
.blanc-story-shell,
.staff-section .container,
.blanc-gallery-shell,
.blanc-contact-lite-inner {
    position: relative;
    z-index: 2;
}

.aboutv2-desc,
.blanc-service-text,
.blanc-story-text,
.blanc-contact-lite-sub,
.blanc-gallery-page-text,
.blanc-contact-page-text,
.blanc-overview-text,
.blanc-service-page-intro,
.staff-section .blanc-story-text {
    color: var(--brand-text) !important;
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.85;
    font-weight: 400;
}

.brand {
    color: var(--brand-gold-deep);
}

.aboutv2-gallery,
.aboutv2-right,
.blanc-team-photo-wrap {
    filter: drop-shadow(0 16px 28px rgba(95, 67, 42, 0.12));
}

.aboutv2-img,
.aboutv2-right img,
.blanc-team-photo-wrap,
.blanc-gallery-card,
.flane-review-card,
.staff-card,
.blanc-contact-lite-card {
    border: 1px solid rgba(191, 152, 96, 0.18) !important;
    box-shadow: var(--brand-shadow) !important;
}

.staff-card,
.flane-review-card,
.blanc-contact-lite-card {
    background: rgba(255, 250, 243, 0.70) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.staff-card .card-subtitle,
.flane-review-stars,
.blanc-contact-lite-item-title,
.hero-bottom-label {
    color: var(--brand-accent) !important;
}

.staff-card .card-title,
.flane-review-name,
.blanc-contact-lite-label {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    letter-spacing: 0.01em;
}

.blanc-flip-face {
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.blanc-flip-overlay {
    background:
        linear-gradient(180deg, rgba(63, 44, 32, 0.08), rgba(63, 44, 32, 0.42)),
        rgba(191, 152, 96, 0.12);
}

.blanc-flip-back {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.56), transparent 34%),
        linear-gradient(180deg, #fffaf3, #f4e7d5) !important;
}

.blanc-contact-lite-bg {
    background:
        linear-gradient(rgba(66, 45, 31, 0.76), rgba(112, 87, 61, 0.76)),
        url('/photos/home/contact-bg.jpg') center/cover no-repeat !important;
}

.blanc-contact-lite-card {
    background: rgba(255, 250, 243, 0.78) !important;
}

.blanc-contact-lite-label,
.blanc-contact-lite-list li,
.blanc-contact-lite-link {
    color: var(--brand-title) !important;
}

.blanc-gallery-card {
    border-radius: 18px;
    background: rgba(255, 250, 243, 0.7);
    padding: 7px;
}

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

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

.flane-review-tag {
    background: rgba(255, 250, 243, 0.72);
    border-color: rgba(191, 152, 96, 0.24);
    color: var(--brand-gold-deep);
}

.page-bottom-spacing {
    background: #fffaf3;
}

@media (max-width: 767px) {
    .promotions,
    .aboutv2,
    .blanc-service-zone,
    .blanc-story-zone,
    .staff-section,
    .blanc-contact-lite,
    .blanc-gallery-zone {
        padding-top: 68px;
        padding-bottom: 76px;
    }

    .aboutv2-desc,
    .blanc-service-text,
    .blanc-story-text,
    .blanc-contact-lite-sub,
    .staff-section .blanc-story-text {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .staff-card,
    .flane-review-card,
    .blanc-contact-lite-card {
        border-radius: 20px;
    }
}

/* =========================
   TNA SERVICES API CARDS
========================= */
.blanc-service-page-main {
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.68), transparent 28%),
        radial-gradient(circle at 92% 24%, rgba(191, 152, 96, 0.14), transparent 30%),
        linear-gradient(180deg, #fffaf3 0%, #f8efe3 52%, #fffaf3 100%) !important;
}

.blanc-service-page-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(63, 44, 32, 0.05), rgba(63, 44, 32, 0.25)),
        linear-gradient(90deg, rgba(255, 250, 243, 0.14), rgba(191, 152, 96, 0.18));
}

.blanc-service-page-badge {
    background: rgba(255, 250, 243, 0.94) !important;
    border: 1px solid rgba(191, 152, 96, 0.20);
    box-shadow: 0 -8px 28px rgba(95, 67, 42, 0.10);
}

.blanc-service-page-title {
    color: var(--brand-title) !important;
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.blanc-menu-api-wrap {
    margin-top: 10px;
}

.blanc-menu-filter {
    padding: 10px;
    border: 1px solid rgba(191, 152, 96, 0.18);
    border-radius: 22px;
    background: rgba(255, 250, 243, 0.62);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 12px 26px rgba(95, 67, 42, 0.06);
}

.blanc-menu-tab {
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(191, 152, 96, 0.22);
    background: rgba(255, 255, 255, 0.44);
    color: var(--brand-title);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: none;
}

.blanc-menu-tab:hover {
    color: var(--brand-gold-deep);
    border-color: rgba(191, 152, 96, 0.52);
    background: rgba(255, 255, 255, 0.74);
    transform: translateY(-1px);
}

.blanc-menu-tab.active {
    background: linear-gradient(135deg, #d8b878, var(--brand-accent));
    color: #fff;
    border-color: var(--brand-accent);
    box-shadow: 0 10px 22px rgba(156, 116, 68, 0.20);
}

.blanc-menu-category-hero {
    min-height: 310px;
    border-radius: 34px;
    border: 1px solid rgba(191, 152, 96, 0.22);
    background: #d9c6aa;
    box-shadow: var(--brand-shadow);
}

.blanc-menu-category-hero::after {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 2;
    border: 1px solid rgba(255, 250, 243, 0.42);
    border-radius: 25px;
    pointer-events: none;
}

.blanc-menu-category-hero-overlay {
    background:
        linear-gradient(90deg, rgba(63, 44, 32, 0.70), rgba(63, 44, 32, 0.30), rgba(191, 152, 96, 0.18)),
        linear-gradient(180deg, rgba(255, 250, 243, 0.08), rgba(63, 44, 32, 0.30));
}

.blanc-menu-category-hero-content {
    min-height: 310px;
    padding: 42px 46px;
}

.blanc-menu-category-label {
    background: rgba(255, 250, 243, 0.18);
    border-color: rgba(245, 215, 167, 0.48);
    color: #f7dba9;
    font-size: 0.72rem;
    letter-spacing: 1.8px;
}

.blanc-menu-category-title {
    color: #fffaf3;
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: clamp(2.35rem, 4vw, 4rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.blanc-menu-category-text {
    max-width: 760px;
    color: rgba(255, 250, 243, 0.90);
    font-size: 1.03rem;
    line-height: 1.8;
}

.blanc-menu-grid {
    gap: 26px;
}

.blanc-service-api-card {
    overflow: hidden;
    min-height: 286px;
    padding: 26px 24px 22px;
    border-radius: 28px;
    border: 1px solid rgba(191, 152, 96, 0.22);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 34%),
        linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(248, 239, 227, 0.82));
    box-shadow: 0 16px 36px rgba(95, 67, 42, 0.10), inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.blanc-service-api-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 152, 96, 0.65), transparent);
}

.blanc-service-api-card::after {
    content: "✦";
    position: absolute;
    right: 22px;
    bottom: 18px;
    color: rgba(191, 152, 96, 0.18);
    font-size: 2.3rem;
    line-height: 1;
    pointer-events: none;
}

.blanc-service-api-card:hover {
    transform: translateY(-6px);
    border-color: rgba(191, 152, 96, 0.54);
    box-shadow: 0 22px 44px rgba(95, 67, 42, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.blanc-service-api-card.is-featured {
    border-color: rgba(191, 152, 96, 0.50);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.84), transparent 34%),
        linear-gradient(180deg, rgba(255, 248, 237, 0.98), rgba(238, 221, 196, 0.88));
}

.blanc-service-api-title {
    padding-right: 44px;
    color: var(--brand-title);
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: clamp(1.62rem, 2.2vw, 2.05rem);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.blanc-service-api-title a:hover {
    color: var(--brand-gold-deep);
}

.blanc-service-api-desc {
    color: var(--brand-text);
    font-size: 0.98rem;
    line-height: 1.72;
    min-height: 74px;
}

.desc-line,
.desc-bullet {
    position: relative;
    padding-left: 18px;
}

.desc-line::before,
.desc-bullet::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-accent);
}

.blanc-service-api-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(191, 152, 96, 0.44), rgba(191, 152, 96, 0.08));
    margin-bottom: 16px;
}

.blanc-service-api-bottom {
    position: relative;
    z-index: 2;
}

.blanc-service-api-price {
    color: var(--brand-gold-deep);
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: 1.7rem;
    font-weight: 600;
}

.blanc-service-api-time {
    color: var(--brand-text);
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.78;
}

.blanc-service-api-ribbon {
    right: -42px;
}

.blanc-service-api-ribbon span {
    background: linear-gradient(135deg, #f7dc9f 0%, #d4b276 48%, #a87c45 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.26);
    text-shadow: 0 1px 8px rgba(63, 44, 32, 0.22);
}

.blanc-service-api-card.no-desc {
    min-height: 168px;
}

.blanc-service-empty {
    color: var(--brand-text);
}

.blanc-service-page-note {
    margin-top: 44px;
    padding: 28px 30px;
    border-radius: 26px;
    border: 1px solid rgba(191, 152, 96, 0.18);
    background: rgba(255, 250, 243, 0.70);
    box-shadow: 0 14px 30px rgba(95, 67, 42, 0.07);
}

.blanc-service-page-note-title {
    color: var(--brand-title);
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.blanc-service-page-note-text {
    color: var(--brand-text);
}

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

@media (max-width: 767px) {
    .blanc-service-page-title {
        font-size: 2.65rem;
    }

    .blanc-menu-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 8px;
        border-radius: 18px;
    }

    .blanc-menu-tab {
        min-height: 42px;
        font-size: 0.72rem;
        letter-spacing: 0.55px;
    }

    .blanc-menu-category-hero,
    .blanc-menu-category-hero-content {
        min-height: 240px;
    }

    .blanc-menu-category-hero {
        border-radius: 22px;
        margin-bottom: 24px;
    }

    .blanc-menu-category-hero::after {
        inset: 8px;
        border-radius: 16px;
    }

    .blanc-menu-category-hero-content {
        padding: 28px 22px;
    }

    .blanc-menu-category-title {
        font-size: 2.2rem;
    }

    .blanc-menu-category-text {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .blanc-service-api-card {
        min-height: auto;
        padding: 22px 18px 18px;
        border-radius: 22px;
    }

    .blanc-service-api-title {
        font-size: 1.52rem;
        padding-right: 26px;
    }

    .blanc-service-api-desc {
        min-height: auto;
        font-size: 0.94rem;
    }

    .blanc-service-api-price {
        font-size: 1.45rem;
    }

    .blanc-service-page-note {
        margin-top: 30px;
        padding: 22px 18px;
        border-radius: 22px;
    }
}

/* =========================
   GIFT CARDS SECTION
========================= */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

.nav-gift-link {
    position: relative;
    color: var(--brand-gold-deep, #9c7444) !important;
    font-weight: 600 !important;
}

.nav-gift-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    opacity: 0.85;
}

.btn-nav-gift {
    background: linear-gradient(135deg, #c6a46a, #9c7444) !important;
    border-color: #9c7444 !important;
    color: #fffaf3 !important;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(156, 116, 68, 0.28);
}

.btn-nav-gift:hover {
    background: linear-gradient(135deg, #9c7444, #7a5a32) !important;
    border-color: #7a5a32 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.gift-card-zone {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 120px) 20px clamp(80px, 10vw, 130px);
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(191, 152, 96, 0.18), transparent 60%),
        linear-gradient(165deg, #2a1f18 0%, #3f2c20 42%, #1f1712 100%);
    color: #f8efe3;
}

.gift-card-zone-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
    opacity: 0.5;
}

.gift-card-zone-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(198, 164, 106, 0.22), transparent 68%);
    pointer-events: none;
    animation: gift-glow-pulse 6s ease-in-out infinite;
}

@keyframes gift-glow-pulse {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

.gift-card-shell {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.gift-card-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.gift-card-kicker {
    display: inline-block;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-style: italic;
    letter-spacing: 0.04em;
    color: #e4c89a;
    margin-bottom: 10px;
}

.gift-card-title {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.08;
    color: #fffaf3;
    letter-spacing: 0.01em;
}

.gift-card-lead {
    margin: 0 auto;
    max-width: 52ch;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(248, 239, 227, 0.78);
}

.gift-card-stage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 28px);
    perspective: 1200px;
}

.gift-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    animation: gift-float 5.5s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    will-change: transform;
}

.gift-card-item:nth-child(even) {
    animation-name: gift-float-alt;
}

.gift-card-item-featured {
    transform-origin: center bottom;
}

@keyframes gift-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.gift-card-face {
    position: relative;
    width: 100%;
    aspect-ratio: 1.58 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35),
        0 2px 0 rgba(255, 255, 255, 0.12) inset;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transform-style: preserve-3d;
    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.gift-card-item:hover,
.gift-card-item:focus-within {
    animation-play-state: paused;
    z-index: 2;
}

.gift-card-item:hover .gift-card-face,
.gift-card-item:focus-visible .gift-card-face {
    transform: rotateY(-8deg) rotateX(6deg) scale(1.04);
    box-shadow:
        0 28px 55px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 220, 160, 0.25),
        0 2px 0 rgba(255, 255, 255, 0.18) inset;
}

.gift-card-item:active .gift-card-face {
    transform: rotateY(-4deg) rotateX(3deg) scale(1.01);
}

.gift-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255, 255, 255, 0.22) 48%,
        transparent 62%
    );
    transform: translateX(-120%);
    animation: gift-shine 4.8s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    pointer-events: none;
    z-index: 3;
}

@keyframes gift-shine {
    0%, 55%, 100% { transform: translateX(-120%); }
    70% { transform: translateX(120%); }
}

.gift-card-face-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 18px 20px;
    gap: 4px;
}

.gift-card-occasion {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.gift-card-brand {
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.gift-card-tagline {
    font-size: 0.88rem;
    opacity: 0.82;
    font-style: italic;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.gift-card-ribbon {
    position: absolute;
    top: 14px;
    right: -28px;
    z-index: 4;
    width: 120px;
    padding: 5px 0;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a1f18;
    background: linear-gradient(90deg, #e8d4a8, #c6a46a, #e8d4a8);
    transform: rotate(38deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gift-card-label {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(248, 239, 227, 0.88);
    transition: color 0.3s ease;
}

.gift-card-item:hover .gift-card-label,
.gift-card-item:focus-visible .gift-card-label {
    color: #e4c89a;
}

/* Occasion themes */
.gift-card-valentine {
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 180, 200, 0.45), transparent 40%),
        linear-gradient(145deg, #6b1f3a 0%, #a63d5c 45%, #3d1528 100%);
    color: #fff5f7;
}

.gift-card-hearts span {
    position: absolute;
    width: 18px;
    height: 18px;
    background: rgba(255, 200, 214, 0.35);
    transform: rotate(-45deg);
    border-radius: 2px;
    animation: gift-heart-pulse 3s ease-in-out infinite;
}

.gift-card-hearts span::before,
.gift-card-hearts span::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: inherit;
    border-radius: 50%;
}

.gift-card-hearts span::before { top: -9px; left: 0; }
.gift-card-hearts span::after { top: 0; left: 9px; }

.gift-card-hearts span:nth-child(1) { top: 22%; left: 16%; animation-delay: 0s; }
.gift-card-hearts span:nth-child(2) { top: 18%; left: 52%; width: 12px; height: 12px; animation-delay: 0.6s; }
.gift-card-hearts span:nth-child(2)::before,
.gift-card-hearts span:nth-child(2)::after { width: 12px; height: 12px; }
.gift-card-hearts span:nth-child(2)::before { top: -6px; }
.gift-card-hearts span:nth-child(2)::after { left: 6px; top: 0; }
.gift-card-hearts span:nth-child(3) { top: 40%; left: 72%; width: 14px; height: 14px; animation-delay: 1.1s; }
.gift-card-hearts span:nth-child(3)::before,
.gift-card-hearts span:nth-child(3)::after { width: 14px; height: 14px; }
.gift-card-hearts span:nth-child(3)::before { top: -7px; }
.gift-card-hearts span:nth-child(3)::after { left: 7px; top: 0; }

@keyframes gift-heart-pulse {
    0%, 100% { opacity: 0.35; transform: rotate(-45deg) scale(1); }
    50% { opacity: 0.75; transform: rotate(-45deg) scale(1.15); }
}

.gift-card-fathers {
    background:
        linear-gradient(160deg, #1a2638 0%, #2f4058 40%, #0f1622 100%);
    color: #e8e4dc;
}

.gift-card-stripe {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -28deg,
            transparent,
            transparent 14px,
            rgba(198, 164, 106, 0.08) 14px,
            rgba(198, 164, 106, 0.08) 16px
        );
    pointer-events: none;
}

.gift-card-fathers .gift-card-ribbon {
    background: linear-gradient(90deg, #c9b896, #8a7348, #c9b896);
    color: #1a2638;
}

.gift-card-birthday {
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 230, 170, 0.35), transparent 42%),
        linear-gradient(150deg, #5c3d1e 0%, #bf9860 48%, #3f2a14 100%);
    color: #fffaf0;
}

.gift-card-confetti i {
    position: absolute;
    width: 7px;
    height: 10px;
    border-radius: 1px;
    opacity: 0.7;
    animation: gift-confetti-twinkle 2.8s ease-in-out infinite;
}

.gift-card-confetti i:nth-child(1) { top: 18%; left: 14%; background: #fff3c4; animation-delay: 0s; }
.gift-card-confetti i:nth-child(2) { top: 28%; left: 62%; background: #ffd6a5; width: 5px; height: 8px; animation-delay: 0.4s; }
.gift-card-confetti i:nth-child(3) { top: 14%; left: 78%; background: #ffb4a2; animation-delay: 0.8s; }
.gift-card-confetti i:nth-child(4) { top: 42%; left: 22%; background: #e8d4a8; width: 6px; height: 6px; border-radius: 50%; animation-delay: 1.1s; }
.gift-card-confetti i:nth-child(5) { top: 36%; left: 48%; background: #fff; width: 4px; height: 4px; border-radius: 50%; animation-delay: 1.4s; }
.gift-card-confetti i:nth-child(6) { top: 22%; left: 38%; background: #f4a261; transform: rotate(25deg); animation-delay: 0.55s; }

@keyframes gift-confetti-twinkle {
    0%, 100% { opacity: 0.35; transform: translateY(0) rotate(0deg); }
    50% { opacity: 1; transform: translateY(-4px) rotate(12deg); }
}

.gift-card-mothers {
    background:
        radial-gradient(circle at 75% 25%, rgba(255, 210, 220, 0.4), transparent 45%),
        linear-gradient(145deg, #7a4a58 0%, #c9899a 50%, #4a2e38 100%);
    color: #fff8f9;
}

.gift-card-bloom {
    position: absolute;
    top: 12%;
    left: 12%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 240, 245, 0.55), transparent 40%),
        radial-gradient(circle at 65% 55%, rgba(255, 180, 200, 0.45), transparent 45%);
    box-shadow:
        18px 8px 0 -12px rgba(255, 200, 214, 0.35),
        28px 22px 0 -16px rgba(255, 220, 230, 0.3);
    animation: gift-bloom 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gift-bloom {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.75; }
    50% { transform: scale(1.08) rotate(6deg); opacity: 1; }
}

.gift-card-christmas {
    background:
        radial-gradient(circle at 70% 20%, rgba(220, 180, 100, 0.28), transparent 40%),
        linear-gradient(155deg, #1a3a2a 0%, #2d5a40 42%, #0f2418 100%);
    color: #f5f0e4;
}

.gift-card-snow i {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    animation: gift-snow-fall 4.5s linear infinite;
}

.gift-card-snow i:nth-child(1) { left: 18%; top: -8%; animation-delay: 0s; }
.gift-card-snow i:nth-child(2) { left: 38%; top: -8%; width: 4px; height: 4px; animation-delay: 0.9s; }
.gift-card-snow i:nth-child(3) { left: 55%; top: -8%; animation-delay: 1.6s; }
.gift-card-snow i:nth-child(4) { left: 72%; top: -8%; width: 3px; height: 3px; animation-delay: 2.2s; }
.gift-card-snow i:nth-child(5) { left: 88%; top: -8%; width: 4px; height: 4px; animation-delay: 0.4s; }

@keyframes gift-snow-fall {
    0% { transform: translateY(0); opacity: 0; }
    12% { opacity: 0.85; }
    100% { transform: translateY(180px); opacity: 0; }
}

.gift-card-classic {
    background:
        linear-gradient(140deg, #3f2c20 0%, #8b6a42 45%, #2a1f18 100%);
    color: #fffaf3;
}

.gift-card-foil {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(232, 212, 168, 0.35);
    border-radius: 10px;
    pointer-events: none;
    animation: gift-foil-breathe 4s ease-in-out infinite;
}

.gift-card-foil::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 212, 168, 0.55), transparent);
}

@keyframes gift-foil-breathe {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

.gift-card-cta-wrap {
    margin-top: clamp(36px, 5vw, 52px);
    text-align: center;
}

.gift-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e8d4a8 0%, #c6a46a 50%, #9c7444 100%);
    color: #2a1f18 !important;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow:
        0 14px 32px rgba(156, 116, 68, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.35) inset;
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease;
}

.gift-card-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.gift-card-cta:hover,
.gift-card-cta:focus-visible {
    transform: translateY(-3px);
    box-shadow:
        0 20px 40px rgba(156, 116, 68, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.4) inset;
    color: #1f1712 !important;
}

.gift-card-cta:hover svg,
.gift-card-cta:focus-visible svg {
    transform: translateX(4px);
}

.gift-card-cta:active {
    transform: translateY(-1px) scale(0.98);
}

.gift-card-note {
    margin: 16px 0 0;
    font-size: 0.88rem;
    color: rgba(248, 239, 227, 0.55);
    letter-spacing: 0.02em;
}

@media (max-width: 991px) {
    .gift-card-stage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .gift-card-item-featured {
        grid-column: span 1;
    }
}

@media (max-width: 575px) {
    .gift-card-zone {
        padding: 64px 16px 80px;
    }

    .gift-card-stage {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
        gap: 22px;
    }

    .gift-card-face {
        border-radius: 14px;
    }

    .gift-card-head {
        margin-bottom: 36px;
    }

    .menu-blanc .nav-gift-link {
        color: var(--brand-gold-deep, #9c7444) !important;
    }
}

@media (max-width: 1100px) and (min-width: 769px) {
    .menu-blanc {
        gap: 10px;
    }

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

@media (prefers-reduced-motion: reduce) {
    .gift-card-item,
    .gift-card-shine,
    .gift-card-hearts span,
    .gift-card-confetti i,
    .gift-card-snow i,
    .gift-card-bloom,
    .gift-card-foil,
    .gift-card-zone-glow {
        animation: none !important;
    }

    .gift-card-item:hover .gift-card-face,
    .gift-card-item:focus-visible .gift-card-face {
        transform: scale(1.02);
    }
}