/* ==========================================================================
   BM Nails Bar — Elegant Rose Overrides
   Lớp phủ thiết kế lại: font, color depth, spacing, decorative elements.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Italianno&display=swap');

/* ---------- Smooth scroll & global polish ---------- */
html { scroll-behavior: smooth; }

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

/* ---------- Typography hierarchy ---------- */
h1, h2, h3, h4, h5, h6,
.heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
    font-family: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: 0.005em;
    line-height: 1.2;
}

h1, .heading-1 {
    font-size: clamp(2.4rem, 4.4vw, 3.6rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.005em;
}

h2, .heading-2 {
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0;
}

h3, .heading-3 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 500;
}

h4, .heading-4 {
    font-size: 1.25rem;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h5, .heading-5 {
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--primary);
}

h6, .heading-6 {
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--accent);
}

p {
    color: var(--text-soft);
    line-height: 1.75;
}

p.big {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-soft);
}

/* ---------- Brand / script accent ---------- */
.brand {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-style: italic;
    color: var(--primary);
    letter-spacing: 0.01em;
}

/* ---------- Decorative section headers (eyebrow + ornament) ---------- */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    display: inline-block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.section-eyebrow.left::before { display: none; }
.section-eyebrow.left {
    justify-content: flex-start;
    padding-left: 0;
}
.section-eyebrow.left::after { display: inline-block; }

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 0.6rem;
}
.section-title em {
    font-family: "Italianno", cursive;
    color: var(--primary);
    font-style: normal;
    font-weight: 400;
    font-size: 1.25em;
    line-height: 1;
    display: inline-block;
    transform: translateY(0.08em);
}

.section-subtitle {
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto 2.4rem;
    font-size: 1.02rem;
    line-height: 1.75;
}
.section-subtitle.left { margin-left: 0; }

.divider-lg {
    width: 90px;
    height: 1px;
    margin: 1.3rem auto;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    position: relative;
}
.divider-lg::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 1px;
}

/* ---------- Section spacing ---------- */
.section {
    padding: 4.5rem 0;
    position: relative;
}
.section.page-header { padding: 0 !important; margin: 0; }
.page-header { min-height: 0; }
@media (min-width: 992px) {
    .section { padding: 6.5rem 0; }
    .section.section-lg { padding: 7.5rem 0; }
    .section.section-md { padding: 5.5rem 0; }
    .section.page-header { padding: 0 !important; }
}
.section.section-sm { padding: 3rem 0; }

/* Compact the page-header wrap and remove the empty space above the navbar */
.rd-navbar-wrap { margin-bottom: 0 !important; }
.page-header .rd-navbar-aside-outer { display: none !important; }
@media (min-width: 1200px) {
    .page-header .rd-navbar-aside-outer { display: block !important; }
}

/* ---------- Section separators (decorative line + watermark) ---------- */
.section + .section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 360px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 48, 90, 0.35), transparent);
}
.section + .section::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background: var(--primary);
    opacity: 0.5;
}
.section.parallax-container + .section::before,
.section.parallax-container + .section::after { display: none; }

/* ---------- Background variants ---------- */
.background-color {
    background-color: var(--background);
    color: var(--text-color);
}
.background-color.alt { background-color: var(--background-deep); }
.text-color { color: var(--ink) !important; }
.text-color.soft { color: var(--text-soft) !important; }

/* ---------- Preloader ---------- */
.preloader { background: var(--background); }
.preloader p {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-top: 1.4rem;
}
.cssload-speeding-wheel {
    border-top-color: var(--primary) !important;
}
/* Ensure preloader hides even if JS adds .loaded late */
.preloader.loaded,
.preloader.fadeOut { opacity: 0 !important; visibility: hidden !important; }
/* Show the page once .fadeIn is added */
.page.fadeIn { opacity: 1 !important; }
/* Safety net: keep the page visible even before JS has added a state class */
.page { opacity: 1 !important; }

/* ---------- Navbar ---------- */
.rd-navbar-wrap {
    box-shadow: 0 1px 0 rgba(160, 48, 90, 0.08);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(160, 48, 90, 0.08);
    transition: box-shadow 0.3s ease;
    position: relative;
    z-index: 1000;
}
.rd-navbar-main-outer, .rd-navbar-main { background: transparent !important; }
.rd-navbar-fixed .rd-navbar-panel {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(160, 48, 90, 0.10) !important;
    z-index: 1080 !important;
}

/* Compact the top bar */
.rd-navbar-classic.rd-navbar-static .rd-navbar-aside { padding: 6px 0 !important; }
.rd-navbar-classic.rd-navbar-static .rd-navbar-aside-outer { line-height: 1.2; }
.rd-navbar-aside .header-info,
.rd-navbar-aside .header-info a { font-size: 0.78rem !important; }

/* ---------- Mobile slide-out menu (rd-navbar-fixed) ---------- */
.rd-navbar-fixed .rd-navbar-nav-wrap {
    background: #ffffff !important;
    box-shadow: 6px 0 30px rgba(58, 30, 42, 0.18) !important;
    padding: 80px 0 60px !important;
    transform: translateX(-110%) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 280px !important;
    max-width: 80vw !important;
    visibility: hidden !important;
    opacity: 0;
    top: 0 !important;
    bottom: 0 !important;
}
.rd-navbar-fixed .rd-navbar-nav-wrap.active {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1;
}
.rd-navbar-fixed .rd-navbar-nav {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    width: 100%;
}
.rd-navbar-fixed .rd-navbar-nav .rd-nav-item {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(160, 48, 90, 0.08);
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    width: 100%;
}
.rd-navbar-fixed .rd-navbar-nav .rd-nav-link {
    color: var(--ink) !important;
    padding: 16px 24px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.24em !important;
    text-transform: uppercase !important;
    display: block !important;
    transition: background 0.2s ease, color 0.2s ease;
    opacity: 1 !important;
    visibility: visible !important;
}
.rd-navbar-fixed .rd-navbar-nav .rd-nav-link:hover,
.rd-navbar-fixed .rd-navbar-nav .rd-nav-item.active .rd-nav-link {
    color: var(--primary) !important;
    background: rgba(160, 48, 90, 0.04);
}
/* Backdrop overlay while menu is open - lighter so page is still readable */
body.rd-navbar-nav-wrap-active::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(58, 30, 42, 0.35);
    z-index: 1078;
}

/* ==========================================================================
   Custom Mobile Header & Slide-out Menu
   Replaces the rd-navbar-fixed entirely on mobile. Desktop untouched.
   ========================================================================== */

/* Hide the entire original rd-navbar wrap on mobile, show our custom one */
@media (max-width: 991.98px) {
    .rd-navbar-wrap { display: none !important; }
    .bm-mobile-header { display: flex !important; }
    .bm-menu, .bm-menu-backdrop { display: block !important; }
}
/* Hide the custom mobile header on desktop */
@media (min-width: 992px) {
    .bm-mobile-header,
    .bm-menu,
    .bm-menu-backdrop { display: none !important; }
}

/* ---------- Mobile header bar ---------- */
.bm-mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    height: 88px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(160, 48, 90, 0.10);
    box-shadow: 0 1px 12px rgba(160, 48, 90, 0.06);
    margin: 0 !important;
}
.bm-burger {
    width: 56px;
    height: 56px;
    margin-left: 0;
    position: absolute;
    left: 10px;
}
.bm-monogram {
    display: none !important;
}
.bm-name {
    font-size: 1.85rem;
}
.bm-quick-call {
    display: none !important;
}
/* Compensate the page content for the fixed header on mobile */
@media (max-width: 991.98px) {
    /* Flatten the page-header so it no longer takes 120px of vertical space —
       the fixed .bm-mobile-header already provides the mobile header overlay.
       Use body padding-top to push the swiper below the fixed bar. */
    .page-header,
    header.page-header,
    header.section.page-header {
        display: contents !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        background: transparent !important;
    }
    .rd-navbar-wrap { display: none !important; height: 0 !important; min-height: 0 !important; margin: 0 !important; padding: 0 !important; }
    /* Push the entire page content down so it starts below the fixed header */
    body, html { margin: 0 !important; padding: 0 !important; }
    .page { padding-top: 88px !important; }
    .swiper-container,
    .swiper-container.section,
    section.swiper-container {
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }
    .swiper-slide { min-height: 480px !important; }
    .swiper-slide-caption { padding: 0 0 1.5rem !important; }
    /* Remove the section separator line + diamond between the page-header and the swiper */
    .page-header + .swiper-container::before,
    .page-header + .swiper-container::after { display: none !important; }
}
/* Hide the custom mobile header on desktop */
@media (min-width: 992px) {
    .bm-mobile-header,
    .bm-menu,
    .bm-menu-backdrop { display: none !important; }
}
.bm-burger {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin-left: 0;
    position: absolute;
    left: 10px;
    cursor: pointer;
    color: var(--ink);
    flex-shrink: 0;
}
.bm-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.bm-burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--primary);
}
.bm-burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.bm-burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--primary);
}

.bm-brand {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-decoration: none;
    margin: 0;
    overflow: hidden;
    max-width: calc(100vw - 96px);
}
.bm-monogram {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 600;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(160, 48, 90, 0.25);
}
.bm-name {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--ink);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.bm-name-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--primary);
}
.bm-name-sub {
    font-family: "Inter", sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--secondary);
}
.bm-name em { font-style: italic; }

.bm-quick-call {
    display: none !important;
}

/* ---------- Slide-out menu panel ---------- */
.bm-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 86vw;
    background: linear-gradient(180deg, #ffffff 0%, #fdf3f0 100%);
    box-shadow: 8px 0 36px rgba(58, 30, 42, 0.22);
    z-index: 1200;
    transform: translateX(-105%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
    flex-direction: column;
    visibility: hidden;
}
.bm-menu.open {
    transform: translateX(0);
    visibility: visible;
}
.bm-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 22px 14px;
    border-bottom: 1px solid rgba(160, 48, 90, 0.10);
}
.bm-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--primary);
}
.bm-menu-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease;
}
.bm-menu-close:hover { background: rgba(160, 48, 90, 0.08); }

.bm-menu-list {
    list-style: none;
    margin: 0;
    padding: 14px 0 24px;
    flex: 1 1 auto;
}
.bm-menu-list li {
    margin: 0;
    padding: 0;
}
.bm-menu-list a {
    display: block;
    padding: 18px 26px;
    color: var(--ink);
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    border-bottom: 1px solid rgba(160, 48, 90, 0.06);
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.bm-menu-list a:hover,
.bm-menu-list a:focus {
    color: var(--primary);
    background: rgba(160, 48, 90, 0.04);
    padding-left: 32px;
}
.bm-menu-list a::after {
    content: "›";
    float: right;
    color: var(--primary);
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.bm-menu-list a:hover::after { opacity: 1; transform: translateX(2px); }
.bm-menu-book {
    margin: 20px 22px 0 !important;
    padding: 14px 22px !important;
    background: var(--primary) !important;
    color: #ffffff !important;
    text-align: center;
    font-family: "Inter", sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.28em !important;
    text-transform: uppercase !important;
    border-bottom: 0 !important;
    border-radius: 2px;
}
.bm-menu-book:hover {
    background: var(--ink) !important;
    color: #ffffff !important;
    padding-left: 22px !important;
}
.bm-menu-book::after { display: none !important; }

.bm-menu-footer {
    padding: 18px 22px 28px;
    border-top: 1px solid rgba(160, 48, 90, 0.10);
    background: rgba(255, 255, 255, 0.6);
}
.bm-menu-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.bm-menu-call span {
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.bm-menu-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.bm-menu-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(160, 48, 90, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}
.bm-menu-social a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- Backdrop ---------- */
.bm-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(58, 30, 42, 0.4);
    z-index: 1150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: none;
}
.bm-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Lock body scroll when menu is open */
body.bm-menu-open { overflow: hidden; }
/* Force the toggle to become a back arrow when menu is open */
.rd-navbar-fixed .rd-navbar-toggle.active span,
.rd-navbar-fixed .rd-navbar-toggle.active span::before,
.rd-navbar-fixed .rd-navbar-toggle.active span::after {
    background: var(--primary) !important;
}

/* ---------- Compact the mobile navbar layout (kill the gap) ---------- */
.rd-navbar-fixed .rd-navbar-panel {
    padding: 0 12px !important;
    gap: 0;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
}
.rd-navbar-fixed .rd-navbar-toggle {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 32px;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}
.rd-navbar-fixed .rd-navbar-brand {
    flex: 1 1 auto !important;
    margin: 0 0 0 10px !important;
    line-height: 56px !important;
    font-size: 18px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
}
.rd-navbar-fixed .rd-navbar-brand > a {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    max-width: 100%;
}
.rd-navbar-fixed .rd-navbar-brand .brand {
    font-size: 1.05rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}
.rd-navbar-fixed .rd-navbar-collapse-toggle {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    flex: 0 0 32px;
    margin: 0 0 0 6px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}
.rd-navbar-fixed .rd-navbar-collapse-toggle span {
    width: 18px !important;
    height: 2px !important;
    background: var(--ink) !important;
    position: relative !important;
    display: block !important;
    border-radius: 1px;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}
.rd-navbar-fixed .rd-navbar-collapse-toggle span::before,
.rd-navbar-fixed .rd-navbar-collapse-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px !important;
    height: 2px !important;
    background: var(--ink) !important;
    border-radius: 1px;
}
.rd-navbar-fixed .rd-navbar-collapse-toggle span::before { top: -6px !important; }
.rd-navbar-fixed .rd-navbar-collapse-toggle span::after { top: 6px !important; }

/* ---------- Popover for phone + social (replaces 3-dot ugly dropdown) ---------- */
.rd-navbar-fixed .rd-navbar-collapse {
    position: fixed !important;
    top: 60px !important;
    right: 12px !important;
    left: auto !important;
    width: 220px !important;
    background: #ffffff !important;
    box-shadow: 0 12px 40px rgba(58, 30, 42, 0.18) !important;
    border-radius: 4px !important;
    padding: 12px 0 !important;
    z-index: 1082 !important;
    transform: translate3d(0, -8px, 0) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.25s ease !important;
}
.rd-navbar-fixed .rd-navbar-collapse.active {
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.rd-navbar-fixed .rd-navbar-collapse .list-inline {
    margin: 0 !important;
    padding: 0 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}
.rd-navbar-fixed .rd-navbar-collapse .list-inline > li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}
.rd-navbar-fixed .rd-navbar-collapse .header-info {
    padding: 8px 16px 12px !important;
    border-bottom: 1px solid rgba(160, 48, 90, 0.10);
    margin-bottom: 8px;
}
.rd-navbar-fixed .rd-navbar-collapse .header-info a {
    color: var(--ink) !important;
    font-size: 0.85rem !important;
    font-family: "Inter", sans-serif !important;
    letter-spacing: 0.08em !important;
    text-transform: none !important;
}
.rd-navbar-fixed .rd-navbar-collapse .header-info .unit-left {
    color: var(--primary) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
}
.rd-navbar-fixed .rd-navbar-collapse .social-block {
    padding: 8px 16px 4px !important;
}
.rd-navbar-fixed .rd-navbar-collapse .social-block .list-inline {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    align-items: center !important;
}
.rd-navbar-fixed .rd-navbar-collapse .social-block a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(160, 48, 90, 0.06);
    transition: all 0.2s ease;
}
.rd-navbar-fixed .rd-navbar-collapse .social-block a:hover {
    background: var(--primary);
}
.rd-navbar-fixed .rd-navbar-collapse .social-block a img {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    filter: none;
}

/* Wider, more substantial desktop navbar */
.rd-navbar-main-outer,
.rd-navbar-main,
.rd-navbar-panel,
.rd-navbar-main-element,
.rd-navbar-nav-wrap,
.rd-navbar-nav,
.rd-navbar-brand,
.rd-navbar-brand a,
.rd-navbar-brand .brand,
.rd-navbar-main-outer.background-color,
.rd-navbar-main.background-color,
.rd-navbar-panel.background-color,
.rd-navbar-nav-wrap.background-color {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}
.rd-navbar-classic.rd-navbar-static .rd-navbar-aside {
    width: min(1440px, calc(100vw - 120px)) !important;
    max-width: none !important;
}
.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
    width: min(1440px, calc(100vw - 120px)) !important;
    max-width: none !important;
}
.rd-navbar-classic.rd-navbar-static .rd-navbar-main {
    min-height: 96px;
    padding: 20px 0 !important;
    align-items: center;
}
.rd-navbar-classic.rd-navbar-static .rd-navbar-aside {
    min-height: 40px;
    padding: 9px 0 !important;
}
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-main,
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-main {
    min-height: 66px;
    padding: 12px 0 !important;
}
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-aside,
.rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-aside { display: none; }

.rd-navbar-brand .brand {
    margin: 0;
}
.rd-navbar-brand .bm-wordmark {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    line-height: 1;
    color: var(--ink);
}
.bm-wordmark-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.35rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.005em;
    color: var(--primary);
    text-decoration: none;
}
.bm-wordmark-sub {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--secondary);
}
.bm-wordmark-sub::before {
    content: none;
    display: none;
}
.rd-navbar-brand,
.rd-navbar-brand a,
.rd-navbar-brand .brand,
.rd-navbar-brand .bm-wordmark,
.rd-navbar-brand *,
.bm-wordmark-main,
.bm-wordmark-sub {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
.rd-navbar-brand,
.rd-navbar-brand a,
.rd-navbar-brand .brand,
.rd-navbar-brand .bm-wordmark {
    display: inline-flex !important;
    width: auto !important;
}
.rd-navbar-brand a:hover,
.rd-navbar-brand a:focus,
.rd-navbar-brand a:active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}
.rd-navbar-nav .rd-nav-link {
    font-family: "Inter", sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink) !important;
    transition: color 0.25s ease;
    padding: 0.65rem 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}
.rd-navbar-nav .rd-nav-link:hover,
.rd-navbar-nav .rd-nav-link:focus,
.rd-navbar-nav .rd-nav-link:active {
    color: var(--primary) !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}
.rd-navbar-classic.rd-navbar-static .rd-navbar-main-element {
    margin-left: auto;
}
.rd-navbar-classic.rd-navbar-static .rd-navbar-nav {
    gap: clamp(28px, 3.2vw, 52px);
}
.rd-navbar-nav .rd-nav-item.active .rd-nav-link {
    color: var(--primary) !important;
    position: relative;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
.rd-navbar-nav .rd-nav-item.active .rd-nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    width: 22px;
    height: 2px;
    background: var(--primary);
}

.rd-navbar-aside-outer {
    background: linear-gradient(90deg, var(--ink) 0%, var(--primary) 100%) !important;
    color: #ffffff;
    padding: 0 !important;
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}
.rd-navbar-aside .phone { color: #ffffff !important; font-weight: 500; }
.rd-navbar-aside .unit-left { color: var(--accent-soft) !important; font-weight: 500; }
.rd-navbar-aside .novi-bg-img, .rd-navbar-aside .novi-bg { background: transparent !important; }

/* ---------- Sticky / scroll state ---------- */
.rd-navbar-static.rd-navbar--is-stuck,
.rd-navbar-static.rd-navbar--is-clone {
    box-shadow: 0 4px 20px rgba(160, 48, 90, 0.10);
    border-bottom: 1px solid rgba(160, 48, 90, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.rd-navbar-static.rd-navbar--is-clone {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-brand .brand,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-brand .brand { font-size: inherit; }
.rd-navbar-static.rd-navbar--is-stuck .bm-wordmark,
.rd-navbar-static.rd-navbar--is-clone .bm-wordmark {
    gap: 4px;
}
.rd-navbar-static.rd-navbar--is-stuck .bm-wordmark-main,
.rd-navbar-static.rd-navbar--is-clone .bm-wordmark-main {
    font-size: 1.82rem;
}
.rd-navbar-static.rd-navbar--is-stuck .bm-wordmark-sub,
.rd-navbar-static.rd-navbar--is-clone .bm-wordmark-sub {
    font-size: 0.52rem;
}
.rd-navbar-static.rd-navbar--is-stuck .bm-wordmark-sub::before,
.rd-navbar-static.rd-navbar--is-clone .bm-wordmark-sub::before {
    width: 24px;
}

/* Scroll-driven class for shrink-on-scroll effect (works on all viewports) */
.rd-navbar-wrap {
    transition: padding 0.35s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.rd-navbar-wrap.is-scrolled {
    box-shadow: 0 6px 24px rgba(160, 48, 90, 0.12);
    background: rgba(255, 255, 255, 0.97);
}
.rd-navbar-wrap.is-scrolled .rd-navbar-classic.rd-navbar-static .rd-navbar-main {
    min-height: 66px;
    padding: 12px 0 !important;
}
.rd-navbar-wrap.is-scrolled .rd-navbar-brand .brand { font-size: inherit; }
.rd-navbar-wrap.is-scrolled .bm-wordmark { gap: 4px; }
.rd-navbar-wrap.is-scrolled .bm-wordmark-main { font-size: 1.82rem; }
.rd-navbar-wrap.is-scrolled .bm-wordmark-sub { font-size: 0.52rem; }
.rd-navbar-wrap.is-scrolled .bm-wordmark-sub::before { width: 24px; }
.rd-navbar-wrap.is-scrolled .rd-navbar-classic.rd-navbar-static .rd-navbar-aside { max-height: 0; padding: 0 !important; overflow: hidden; opacity: 0; }

/* ---------- Hero / Swiper ---------- */
.swiper-container { background: var(--background-deep); }
.swiper-slide-caption {
    background: linear-gradient(180deg, rgba(58, 30, 42, 0.25) 0%, rgba(58, 30, 42, 0.55) 100%);
    padding: 5rem 0 4rem !important;
}
.swiper-slide {
    min-height: 600px;
    display: flex;
    align-items: center;
}
@media (min-width: 992px) {
    .swiper-slide { min-height: 680px; }
}
.swiper-slide-caption .m-2 {
    position: relative;
    isolation: isolate;
    background-color: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 0 !important;
    padding: 2.6rem 2.8rem !important;
    max-width: 720px;
    margin: 0 auto !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: opacity, transform;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 8px 32px rgba(58, 30, 42, 0.35);
    overflow: hidden;
}
/* Stable glow layer — separated from child animations so the blur
   does not flicker when fadeInUp/fadeInLeft re-composite the card. */
.swiper-slide-caption .m-2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: backdrop-filter;
    pointer-events: none;
}
/* Keep animated children on their own composited layer so they do not
   trigger backdrop-filter re-paints on the glow every frame. */
.swiper-slide-caption .m-2 > * {
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.swiper-slide-caption h1 {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    color: #ffffff;
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    letter-spacing: 0.005em;
    text-shadow:
        0 0 12px rgba(255, 182, 193, 0.55),
        0 0 28px rgba(255, 105, 180, 0.35),
        0 0 60px rgba(212, 134, 159, 0.45);
}
.swiper-slide-caption h1 .brand {
    color: #ffffff;
    display: block;
    font-size: 1em;
    line-height: 1.05;
    font-style: italic;
    text-shadow:
        0 0 10px rgba(255, 182, 193, 0.45),
        0 0 24px rgba(255, 105, 180, 0.30),
        0 0 50px rgba(212, 134, 159, 0.40);
}
.swiper-slide-caption h2 {
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: #f7d9e2;
    margin: 0.8rem 0 1.2rem;
    text-shadow:
        0 0 8px rgba(255, 182, 193, 0.50),
        0 0 18px rgba(212, 134, 159, 0.35);
}
.swiper-slide-caption h4 {
    font-family: "Cormorant Garamond", serif !important;
    font-style: italic;
    font-weight: 500 !important;
    color: #ffffff !important;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem) !important;
    margin: 0.4rem 0 0.6rem !important;
    letter-spacing: 0.01em !important;
    text-shadow:
        0 0 10px rgba(255, 182, 193, 0.50),
        0 0 24px rgba(255, 105, 180, 0.32),
        0 0 50px rgba(212, 134, 159, 0.42);
}
.swiper-slide-caption h4 .phone {
    color: #ffffff !important;
    font-style: italic;
    text-decoration: none;
    font-weight: 500 !important;
}
.swiper-slide-caption h6,
.swiper-slide-caption h6 a {
    font-family: "Inter", sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.32em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.85) !important;
    margin: 0.6rem 0 !important;
    text-shadow:
        0 0 6px rgba(255, 182, 193, 0.40),
        0 0 14px rgba(212, 134, 159, 0.30);
}
.swiper-slide-caption .divider-lg {
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 0.6rem auto 1.2rem;
    width: 110px;
}
.swiper-slide-caption .divider-lg::after { background: #ffffff; }

/* ---------- Buttons ---------- */
.button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 0.95rem 2.4rem;
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    z-index: -1;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleX(0);
    transform-origin: right;
}
.button:hover::before { transform: scaleX(1); transform-origin: left; }

.button-primary,
.button-primary:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}
.button-primary:hover,
.button-primary:active {
    color: #ffffff;
    background: var(--ink);
    border-color: var(--ink);
}

.button-default-outline,
.button-default-outline:focus {
    color: var(--primary);
    background: transparent;
    border-color: var(--primary);
}
.button-default-outline:hover,
.button-default-outline:active {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
}
.button-default-outline::before { background: var(--primary); }

.button-white,
.button-white:focus {
    color: var(--primary);
    background: #ffffff;
    border-color: #ffffff;
}
.button-white:hover { color: #ffffff; background: var(--primary); border-color: var(--primary); }

/* ---------- Image swiper (coverflow) ---------- */
#images-swipper { background: transparent !important; box-shadow: none !important; padding: 1.5rem 0 !important; }
#images-swipper swiper-slide .block {
    border-radius: 4px !important;
    box-shadow: var(--shadow-soft);
    height: 460px !important;
}

/* ---------- Promotion section ---------- */
.backgrount-gradient {
    background: linear-gradient(120deg, var(--ink) 0%, var(--primary) 50%, var(--secondary) 100%) !important;
    background-size: 200% 200% !important;
    animation: gradient 14s ease infinite;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.backgrount-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.10), transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(255,255,255,0.08), transparent 50%);
    pointer-events: none;
}
.promotion-text-color { color: #ffffff !important; }
.promotions h2.styling-header {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.promotions .promotion-content {
    color: #ffffff;
    padding: 1rem 1.5rem;
}
.promotions .promotion-content h3 {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 2rem;
}
.promotions .promotion-content h4 {
    color: var(--accent-soft);
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    text-transform: none;
}
.promotions .promotion-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}
.promotions .small { color: rgba(255,255,255,0.6) !important; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.7rem; }

/* ---------- About section ---------- */
#about .heading-decorate {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: var(--ink);
}
#about .heading-decorate .divider { display: none !important; }
#about .big { color: var(--text-soft); }
#about .box-images-item {
    border: none !important;
    box-shadow: var(--shadow-rose);
    border-radius: 4px;
    overflow: hidden;
}
#about .box-images-item img { border-radius: 4px; }

/* ---------- Story collage — centered between title and text, side-by-side ---------- */
#about .bm-story-collage {
    position: relative;
    max-width: 640px;                   /* 2 images side by side */
    margin: 0 auto;                     /* center horizontally */
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
#about .bm-story-collage::before {
    content: "";
    position: absolute;
    inset: 0 -40px;
    background:
        radial-gradient(50% 55% at 30% 25%, rgba(247, 196, 214, 0.55), transparent 70%),
        radial-gradient(55% 60% at 80% 80%, rgba(212, 165, 184, 0.45), transparent 70%);
    filter: blur(18px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}
#about .bm-story-item {
    position: relative;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible;
    padding: 0;
    z-index: 1;
}
#about .bm-story-item--top    { animation: bm-story-float-a 5.2s ease-in-out infinite; }
#about .bm-story-item--bottom { animation: bm-story-float-b 6.0s ease-in-out infinite; }

#about .bm-story-item .bm-story-frame {
    position: relative;
    padding: 6px;                       /* room for the gradient border */
    background: linear-gradient(135deg, #f4c7d2 0%, #d8a1b1 35%, #f8e3da 70%, #c98c9e 100%);
    border-radius: 18px;
    aspect-ratio: 3 / 4;                 /* portrait 3:4 */
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.7s ease;
    box-shadow:
        0 18px 40px -16px rgba(178, 90, 110, 0.55),
        0 8px 20px -10px rgba(178, 90, 110, 0.35);
}
#about .bm-story-item .bm-story-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.7s ease;
}
#about .bm-story-item:hover .bm-story-frame {
    transform: translateY(-3px);
    box-shadow:
        0 28px 55px -18px rgba(178, 90, 110, 0.7),
        0 14px 28px -10px rgba(178, 90, 110, 0.4);
}
#about .bm-story-item:hover .bm-story-frame img { transform: scale(1.03); }

@keyframes bm-story-float-a {
    0%, 100% { transform: translateY(0)    rotate(-1.6deg); }
    50%      { transform: translateY(-10px) rotate(-0.6deg); }
}
@keyframes bm-story-float-b {
    0%, 100% { transform: translateY(0)   rotate(1.4deg); }
    50%      { transform: translateY(-8px) rotate(2.2deg); }
}

#about .bm-story-spark {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #fde7ec 45%, rgba(255, 255, 255, 0) 70%);
    box-shadow: 0 0 14px 4px rgba(255, 220, 228, 0.85);
    pointer-events: none;
    z-index: 3;
    animation: bm-story-spark-pulse 3.6s ease-in-out infinite;
}
#about .bm-story-spark--1 { top: 4%;  left: 6%;  animation-delay: 0s; }
#about .bm-story-spark--2 { top: 48%; right: 6%; animation-delay: 1.1s; }
#about .bm-story-spark--3 { bottom: 6%; left: 46%; animation-delay: 2.2s; }
@keyframes bm-story-spark-pulse {
    0%, 100% { transform: scale(0.7); opacity: 0.6; }
    50%      { transform: scale(1.15); opacity: 1; }
}

/* Mobile: side-by-side, centered, no collage offset, smaller aspect */
@media (max-width: 575.98px) {
    #about .bm-story-collage {
        max-width: 100%;
        padding: 24px 12px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    #about .bm-story-collage::before { display: none; }
    #about .bm-story-item,
    #about .bm-story-item--top,
    #about .bm-story-item--bottom {
        left: 0 !important;
        margin-top: 0 !important;
        animation: none !important;
    }
    #about .bm-story-item .bm-story-frame {
        padding: 4px;
        border-radius: 14px;
        aspect-ratio: 3 / 4;
    }
    #about .bm-story-item .bm-story-frame img { border-radius: 10px; }
    #about .bm-story-spark { width: 10px; height: 10px; }
    #about .bm-story-spark--1 { top: 0;   left: 4%;  }
    #about .bm-story-spark--2 { top: 50%; right: 4%; }
    #about .bm-story-spark--3 { bottom: 0; left: 46%; }
}

/* Tablet: stacked, centered, smaller than desktop */
@media (min-width: 576px) and (max-width: 991.98px) {
    #about .bm-story-collage {
        max-width: 280px;
        margin: 0 auto;
        padding: 40px 0;
    }
    #about .bm-story-item--top    { left: 10%; }
    #about .bm-story-item--bottom { left: -6%; margin-top: -20px; }
    #about .bm-story-item .bm-story-frame { padding: 5px; aspect-ratio: 3 / 4; }
}

/* ============================================================
   Story collage — VARIANT: rectangle with 2 diagonal cut corners
   - Top-right + bottom-left are clipped at 45°
   - The image itself keeps that shape, the border is drawn with
     a matching `clip-path` so the line follows the cut exactly.
   - Float animation preserved, glow follows the same silhouette.
   Apply by adding class `bm-story-collage--cut` on the .bm-story-collage.
   ============================================================ */
#about .bm-story-collage--cut .bm-story-item {
    animation: none; /* let .bm-story-collage--cut item override below */
}
#about .bm-story-collage--cut .bm-story-item--top    { animation: bm-story-float-c 5.4s ease-in-out infinite; }
#about .bm-story-collage--cut .bm-story-item--bottom { animation: bm-story-float-d 6.2s ease-in-out infinite; }

@keyframes bm-story-float-c {
    0%, 100% { transform: translateY(0)    rotate(-3deg); }
    50%      { transform: translateY(-15px) rotate(-1.4deg); }
}
@keyframes bm-story-float-d {
    0%, 100% { transform: translateY(0)    rotate(2.4deg); }
    50%      { transform: translateY(-11px) rotate(3.4deg); }
}

/* Frame becomes a "ticket" shape: 2 opposite corners cut diagonally */
#about .bm-story-collage--cut .bm-story-item .bm-story-frame {
    --cut: 28px;
    border-radius: 0;
    aspect-ratio: 3 / 2;                /* horizontal rectangle */
    /* top-right + bottom-left clipped */
    clip-path: polygon(
        0 0,
        calc(100% - var(--cut)) 0,
        100% var(--cut),
        100% 100%,
        var(--cut) 100%,
        0 calc(100% - var(--cut))
    );
    background: transparent;
}
#about .bm-story-collage--cut .bm-story-item--bottom .bm-story-frame {
    /* mirror: top-left + bottom-right clipped */
    clip-path: polygon(
        var(--cut) 0,
        100% 0,
        100% calc(100% - var(--cut)),
        calc(100% - var(--cut)) 100%,
        0 100%,
        0 var(--cut)
    );
}

/* Image inside the frame: keep rectangle but its outline is hidden by
   the clip-path of the frame, so we just make it fill the frame. */
#about .bm-story-collage--cut .bm-story-item .bm-story-frame img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: none;
}

/* Gradient border drawn with the same clip-path, layered via SVG-dataURI
   so the line follows the cut corners precisely. */
#about .bm-story-collage--cut .bm-story-item .bm-story-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #f4c7d2 0%, #d8a1b1 35%, #f8e3da 70%, #c98c9e 100%);
    z-index: 1;
    pointer-events: none;
}
#about .bm-story-collage--cut .bm-story-item .bm-story-frame::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #fff;
    z-index: 2;
    pointer-events: none;
}
#about .bm-story-collage--cut .bm-story-item .bm-story-frame > img {
    position: relative;
    z-index: 3;
    /* a touch of inner shadow to make the cut edge feel like a real slot */
    filter: drop-shadow(0 0 0.5px rgba(0,0,0,0.05));
}
#about .bm-story-collage--cut .bm-story-item:hover .bm-story-frame > img {
    transform: scale(1.03);
    transition: transform 0.7s ease;
}

/* Glow halo behind each cut card, also clipped so it follows the silhouette */
#about .bm-story-collage--cut .bm-story-item {
    filter: drop-shadow(0 18px 30px rgba(178, 90, 110, 0.45))
            drop-shadow(0 8px 14px rgba(178, 90, 110, 0.3));
}
#about .bm-story-collage--cut .bm-story-item:hover {
    filter: drop-shadow(0 26px 42px rgba(178, 90, 110, 0.6))
            drop-shadow(0 12px 20px rgba(178, 90, 110, 0.35));
}
@media (max-width: 575.98px) {
    #about .bm-story-collage--cut .bm-story-item .bm-story-frame { --cut: 18px; }
}

/* ---------- Services section ---------- */
.section.section-lg.background-color.text-center h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: var(--ink);
}
.service-list { margin-top: 1rem; }
.category-link { display: block; height: 100%; }
.box-service-modern {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s ease;
    height: 100%;
}
.box-service-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-rose);
}
.box-service-modern .img-hover-zoom {
    height: 360px;
    border-radius: 0 !important;
    position: relative;
    overflow: hidden;
    /* on hover, image goes absolute so it overlays the text (text stays in flow) */
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
/* Saturated pink gradient overlay — clearly pink, not pastel */
.box-service-modern .img-hover-zoom::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(214, 96, 132, 0.7) 0%,
            rgba(180, 60, 100, 0.82) 50%,
            rgba(120, 30, 70, 0.9) 100%);
    z-index: 1;
    opacity: 1 !important;              /* default visible — !important to override any cache */
    transition: opacity 0.6s ease !important;   /* force transition */
    pointer-events: none;
    will-change: opacity;               /* hint browser to animate */
}
.box-service-modern .img-hover-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease, filter 0.5s ease;
}
.box-service-modern .icon-classic-title {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--ink) !important;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    padding: 0.85rem 1.8rem !important;
    border-radius: 999px !important;
    font-size: 1.35rem !important;
    letter-spacing: 0.01em;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-transform: none;
    opacity: 1;                         /* default visible */
    box-shadow: 0 6px 22px rgba(120, 30, 70, 0.4);
    z-index: 3;
    transition: top 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease,
                box-shadow 0.5s ease;
    white-space: nowrap;
}
.box-service-modern .service-desc {
    padding: 1.4rem 1.6rem 1.8rem;
    text-align: center;
    position: relative;
    z-index: 3;
    transition: color 0.4s ease, background 0.5s ease, transform 0.6s ease;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255, 255, 255, 0.92) 25%);
}
.box-service-modern .service-desc p {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    transition: color 0.4s ease;
}

/* ---------- Hover: overlay fades out, image zooms slightly, text stays put ---------- */
.box-service-modern:hover .img-hover-zoom {
    /* image keeps its size, just smooth transition */
}
.box-service-modern:hover .img-hover-zoom::after {
    opacity: 0 !important;              /* force fade out */
}
.box-service-modern:hover .img-hover-zoom img {
    transform: scale(1.08) !important;  /* override style.css's scale(1.2) */
    filter: saturate(1.05);
    transition: transform 0.6s ease, filter 0.4s ease !important;
}
/* Title pill fades out so the image is fully visible */
.box-service-modern:hover .icon-classic-title {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.9) !important;
    pointer-events: none;
}
/* Text below stays exactly where it is — no change */
.box-service-modern:hover .service-desc {
    /* intentionally left untouched */
}

/* ---------- Testimonials ---------- */
.section.parallax-container {
    position: relative;
    background: linear-gradient(120deg, var(--ink) 0%, var(--primary) 50%, var(--secondary) 100%) !important;
    color: #ffffff;
    overflow: hidden;
}
.section.parallax-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(58, 30, 42, 0.85) 0%, rgba(58, 30, 42, 0.75) 100%),
        radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.05), transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.section.parallax-container[data-parallax-img] {
    background-image: linear-gradient(120deg, var(--ink) 0%, var(--primary) 50%, var(--secondary) 100%) !important;
}
.section.parallax-container .material-parallax,
.section.parallax-container .material-parallax img { display: none !important; }
.section.parallax-container .parallax-content {
    color: #ffffff;
    position: relative;
    z-index: 2;
    background: transparent !important;
}
.section.parallax-container h2 {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-style: italic;
}
/* Compact testimonials section */
.section-testimonials { padding: 36px 0 !important; }
.section-testimonials .parallax-content.section-sm { padding: 0 !important; }
.section-testimonials h2 { margin-bottom: 0.5rem !important; font-size: 2rem; }
.section-testimonials .section-eyebrow { margin-bottom: 0.35rem !important; }
.section-testimonials .ornament.ornament-sm { margin: 0.5rem auto 1.25rem !important; }
.section-testimonials .ornament.ornament-sm .line { width: 36px; }
.section-testimonials .ornament.ornament-sm .glyph { font-size: 0.9rem; }
.section-testimonials .owl-carousel.owl-carousel-compact .owl-stage-outer { padding: 4px 0; }
.section-testimonials .owl-dots { margin-top: 0.75rem !important; }
@media (min-width: 768px) {
    .section-testimonials { padding: 48px 0 !important; }
    .section-testimonials h2 { font-size: 2.2rem; }
}
@media (min-width: 992px) {
    .section-testimonials { padding: 56px 0 !important; }
}

.quote-corporate {
    background: #ffffff;
    border: 1px solid rgba(160, 48, 90, 0.10);
    border-radius: 6px;
    padding: 1.1rem 1.25rem 1rem;
    box-shadow: 0 14px 40px rgba(58, 30, 42, 0.22);
    color: var(--text-color);
    margin: 0 0.4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}
@media (min-width: 992px) {
    .quote-corporate { min-height: 210px; }
}
.quote-corporate::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 6px 0 0 6px;
}
.quote-corporate .quote-header {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1 1 auto;
}
.quote-corporate .quote-stars {
    color: #f5b400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    line-height: 1;
}
.quote-corporate .quote-stars .fa { margin-right: 1px; }
.quote-corporate .quote-text {
    color: var(--text-soft) !important;
    font-size: 0.88rem;
    line-height: 1.55;
    font-style: italic;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.quote-corporate .quote-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    margin-top: 0.7rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(160, 48, 90, 0.10);
}
.quote-corporate .quote-author {
    color: var(--ink) !important;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
    min-width: 0;
}
.quote-corporate .quote-footer .google-logo {
    flex: 0 0 auto;
}
.google-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.google-logo .google-g {
    width: 18px;
    height: 18px;
    display: block;
}
.google-logo .google-wordmark {
    font-family: "Product Sans", "Roboto", Arial, sans-serif;
    font-size: 0.78rem;
    color: #5f6368;
    font-weight: 500;
    letter-spacing: 0.1px;
    white-space: nowrap;
}
.quote-corporate .quote-body-mark { fill: var(--primary) !important; opacity: 0.25; }
.owl-dots .owl-dot span { background: rgba(255,255,255,0.4) !important; }
.owl-dots .owl-dot.active span { background: var(--accent-soft) !important; }

/* ---------- Contact / Pricing box ---------- */
#contact .pricing-box-modern {
    border: 1px solid var(--border-soft);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--surface);
}
#contact .pricing-box-inner h3 {
    font-family: "Cormorant Garamond", serif;
    color: var(--ink);
    font-weight: 500;
    font-style: italic;
    font-size: 1.7rem;
    margin-bottom: 1.3rem;
}
#contact .pricing-box-inner.bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    color: #ffffff !important;
}
#contact .pricing-box-inner.bg-primary h4 {
    color: #ffffff !important;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 1.25rem;
}
#contact .pricing-box-inner.bg-primary p { color: rgba(255,255,255,0.85) !important; }
#contact .pricing-box-inner .pricing-box-inner-list li { padding: 0.4rem 0; }
#contact .pricing-box-inner .pricing-box-inner-list a { color: var(--text-color) !important; }
#contact .pricing-box-inner.bg-primary a { color: #ffffff !important; }
#contact .business-hour p { font-family: "Inter", sans-serif; font-size: 0.95rem; }
#contact .fw-bold.text-primary { color: var(--primary) !important; }

/* ---------- Gallery ---------- */
#gallery h2 { color: var(--ink); }
.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-rose); }
.gallery-item img { transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Footer ---------- */
.footer-minimal { padding: 2.4rem 0; }
footer, .section.section-xs, .footer-minimal {
    background: var(--ink) !important;
    color: rgba(255,255,255,0.7) !important;
    border: none;
}
.section.section-xs { padding: 1.6rem 0 !important; }
.rights { color: rgba(255,255,255,0.7) !important; font-size: 0.85rem; letter-spacing: 0.04em; }
.rights a, .rights a:hover, a.text-primary { color: var(--accent-soft) !important; }

/* ---------- Floating buttons (right side on desktop, split left/right on mobile) ---------- */
.floating-button,
.floating-button.row,
.row.floating-button {
    z-index: 100;
    position: fixed;
    bottom: 14px;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 12px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    pointer-events: none;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}
.floating-button > div,
.floating-button .col-6,
.floating-button > [class*="col-"] {
    pointer-events: auto;
    width: calc(50% - 6px) !important;
    min-width: 0 !important;
    max-width: 180px !important;
    flex: none !important;
    padding: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
}
/* Override Bootstrap w-sm-100 on floating button columns so the two buttons stay balanced */
.floating-button .w-sm-100 { width: calc(50% - 6px) !important; }
.btn-call-us, .btn-book-now {
    pointer-events: auto;
    background: var(--primary) !important;
    background-image: none !important;
    border: 1px solid var(--primary) !important;
    color: #ffffff !important;
    padding: 0.8rem 0.4rem !important;
    margin: 0 !important;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border-radius: 6px !important;
    box-shadow: 0 10px 28px rgba(160, 48, 90, 0.32);
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    width: 100%;
    height: 54px;
    min-width: 0;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-call-us svg, .btn-book-now svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.btn-call-us:hover, .btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(58, 30, 42, 0.38);
    color: #ffffff !important;
    background: var(--ink) !important;
    border-color: var(--ink) !important;
}
.btn-book-now {
    background: linear-gradient(135deg, var(--ink) 0%, var(--primary) 100%) !important;
    border-color: var(--ink) !important;
}
.btn-book-now:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* Desktop: compact stacked group on the right */
@media (min-width: 768px) {
    .floating-button,
    .floating-button.row,
    .row.floating-button {
        left: auto !important;
        right: 24px !important;
        bottom: 24px;
        transform: none !important;
        width: 200px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .floating-button > div,
    .floating-button .col-6,
    .floating-button > [class*="col-"] {
        width: 100% !important;
    }
    .btn-call-us, .btn-book-now {
        padding: 0.95rem 1.2rem !important;
        font-size: 0.7rem;
        letter-spacing: 0.24em;
        height: auto;
        border-radius: 6px !important;
    }
    .btn-call-us svg, .btn-book-now svg { width: 16px; height: 16px; }
}

/* ---------- Decorative SVG ornament helpers ---------- */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.2rem 0 1.6rem;
    color: var(--primary);
}
.ornament .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.6;
}
.ornament .glyph { font-size: 0.9rem; letter-spacing: 0.4em; color: var(--accent); }

/* ---------- Utility text colors ---------- */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.text-gray-700, .text-gray-600 { color: var(--text-soft) !important; }

/* ---------- Responsive guard ---------- */
@media (max-width: 575.98px) {
    .swiper-slide-caption .m-2 { padding: 1.6rem 1.2rem !important; }
    .section { padding: 3.5rem 0; }
    .box-service-modern .img-hover-zoom { height: 240px; }
}

/* ---------- Subtle watermark / section flavor ---------- */
.section.section-lg.background-color.alt {
    background:
        radial-gradient(ellipse at 80% 10%, rgba(160, 48, 90, 0.06), transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(212, 134, 159, 0.10), transparent 55%),
        var(--background-deep);
}

/* ---------- Hero overlay refinement ---------- */
/* Note: the color overlay is applied on .hero-video-wrap::after (below) so it
   always matches the full video height responsively. No ::before on the slide. */
.swiper-slide > * { position: relative; z-index: 2; }
.swiper-slide-caption { background: transparent !important; }
.swiper-slide-caption .container { position: relative; z-index: 2; }

/* ---------- Hero video background (desktop + mobile) ---------- */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}
@media (min-width: 992px) {
    .hero-section { min-height: 680px; }
}
.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--background-deep);
}
.hero-video-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Top-left hot pink glow */
        radial-gradient(ellipse 60% 50% at 15% 20%,
            rgba(255, 105, 180, 0.45) 0%,
            rgba(255, 105, 180, 0.15) 40%,
            transparent 70%),
        /* Bottom-right deep rose glow */
        radial-gradient(ellipse 70% 60% at 85% 85%,
            rgba(160, 48, 90, 0.65) 0%,
            rgba(160, 48, 90, 0.25) 45%,
            transparent 75%),
        /* Center light pink bloom */
        radial-gradient(circle at 50% 50%,
            rgba(255, 182, 193, 0.25) 0%,
            transparent 50%),
        /* Vertical wash from top dark to bottom light */
        linear-gradient(180deg,
            rgba(160, 48, 90, 0.55) 0%,
            rgba(212, 134, 159, 0.20) 35%,
            rgba(255, 105, 180, 0.30) 65%,
            rgba(160, 48, 90, 0.70) 100%),
        /* Diagonal sweep for extra depth */
        linear-gradient(135deg,
            transparent 0%,
            rgba(255, 105, 180, 0.20) 40%,
            rgba(160, 48, 90, 0.40) 100%);
    pointer-events: none;
    z-index: 1;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-video-desktop { display: block; }
.hero-video-mobile { display: none; }
@media (max-width: 767.98px) {
    .hero-video-desktop { display: none; }
    .hero-video-mobile { display: block; }
}
.hero-section .swiper-wrapper { position: relative; z-index: 2; }
.hero-section .swiper-slide { background: transparent; }

/* ---------- Sequential slide display (one at a time, no overlap) ---------- */
.hero-section .swiper-slide {
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}
.hero-section .swiper-slide.swiper-slide-active,
.hero-section .swiper-slide.swiper-slide-duplicate-active {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
}

/* ---------- Navbar mobile toggle polish ---------- */
.rd-navbar-toggle span,
.rd-navbar-toggle span::before,
.rd-navbar-toggle span::after {
    background: var(--primary) !important;
}
.rd-navbar-collapse-toggle span { background: var(--primary) !important; }

/* ---------- Section heading alignment helpers ---------- */
.text-center .divider-lg { margin-left: auto; margin-right: auto; }
.text-left .divider-lg { margin-left: 0; margin-right: auto; }

/* ---------- Hover lift for photos and cards ---------- */
.box-images-item,
.pricing-box-modern .img-wrap img,
.service-list .box-service-modern {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

/* ---------- Quote corporate alignment (testimonial) ---------- */
.quote-corporate-center-img { text-align: center; }
.quote-corporate-center-img .quote-text p { margin: 0 auto; }

/* ---------- Soft link in body copy ---------- */
a, a:focus, a:active {
    color: var(--primary);
    transition: color 0.3s ease;
}
a:hover { color: var(--secondary); }

/* ---------- Selection color ---------- */
::selection {
    background: var(--primary);
    color: #ffffff;
}
::-moz-selection {
    background: var(--primary);
    color: #ffffff;
}

/* ---------- Brand logo monogram in navbar ---------- */
.rd-navbar-brand a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
}
.rd-navbar-brand .brand::before {
    content: none !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 0.4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50%;
    letter-spacing: 0;
    box-shadow: 0 4px 14px rgba(160, 48, 90, 0.25);
    flex-shrink: 0;
}
.rd-navbar-fixed .rd-navbar-brand .brand::before {
    content: none !important;
    display: none !important;
}

/* ---------- Section padding equalizer for full-width blocks ---------- */
.section.parallax-content.section-lg { padding: 6rem 0; }
.section.section-md { padding: 4.5rem 0; }

/* ---------- Footer refinement ---------- */
.section.section-xs-type-1.footer-minimal { display: none; }
.section.section-xs {
    background: linear-gradient(180deg, var(--ink) 0%, #1f0d16 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
