/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
    /* ── Backgrounds — bright, airy (Figma-style gallery neutrals) ── */
    --cream: #FFFFFF;
    --cream-dark: #F7F3ED;
    --cream-bg: #F1EEE9;
    /* ── Text ── */
    --secondary: #211F1C;
    --text: #666666;
    --ink: #211F1C;
    --gray-100: #D5D1CB;
    /* ── Brand accent — terracotta (hero CTAs, hovers) ── */
    --wine: #AA8453;
    --wine-dark: #AA8453;
    --wine-light: #FEF0E8;
    /* ── Gold — champagne trim (rules, nav underline) ── */
    --primary: #AA8453;
    --primary-light: #FEF6E4;
    /* ── Structural ── */
    --border: #EDE6DC;
    --white: #ffffff;
    /* legacy aliases */
    --blue: #AA8453;
    --blue-dark: #AA8453;
    --blue-light: #FEF0E8;
    --violet: #AA8453;
    --gradient: linear-gradient(135deg, #AA8453 0%, #E0885C 100%);
    --gradient-glow: radial-gradient(ellipse at 60% 40%, rgba(201, 107, 63, .15) 0%, transparent 65%);
    --brand-gold: #AA8453;
    --brand-gold-dark: #927848;
    --brand-gold-gradient: linear-gradient(180deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    /* Logo slot — primary brand mark (larger = more focal) */
    --nav-logo-max-height: 152px;
    --nav-logo-max-height-scrolled: 118px;
    --nav-logo-max-width: min(520px, 58vw);
    --footer-logo-max-height: 132px;
    --footer-logo-max-width: min(400px, 92vw);
}



@font-face {
    font-family: 'Georgia Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Regular'), url('../fonts/georgia.woff') format('woff');
}


@font-face {
    font-family: 'Georgia Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Italic'), url('../fonts/georgiai.woff') format('woff');
}


@font-face {
    font-family: 'Georgia Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold'), url('../fonts/georgiab.woff') format('woff');
}


@font-face {
    font-family: 'Georgia Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold Italic'), url('../fonts/georgiaz.woff') format('woff');
}


/* ═══════════════════════════════════════
   BASE
═══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*{
    transition: all ease-in-out 0.3s;
}

html {
    scroll-behavior: smooth;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Lock scroll when mobile nav sheet is open (iOS + Android) */
body.nav-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F8F6F1;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Georgia Regular';
    letter-spacing: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* Navbar/footer logos: don't inherit shrinking from generic img rule + flex */
.nav-logo-img,
.footer-logo-img {
    max-width: none;
}

/* ═══════════════════════════════════════
   NAVBAR — FIXED TRANSPARENT OVER HERO
═══════════════════════════════════════ */



/* Single main row */
.site-nav {
    background: url(../images/header-bg.jpg) no-repeat 0 0;
    background-size: cover;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 9;
}

.nav-main-row .container {
    display: flex;
    align-items: center;
    gap: 0;
    transition: height .35s ease, min-height .35s ease;

}

/* Logo / brand — left (primary focal point) */
.nav-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 28px;
    max-width: min(540px, 60vw);

}

.nav-brand:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
    box-shadow: 0 0 0 8px rgba(200, 162, 90, 0.28), 0 8px 28px rgba(28, 23, 20, 0.1);
}


.nav-brand-text {
    font-family: 'Georgia Regular';
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.site-nav.scrolled .nav-brand-text,
.site-nav.always-solid .nav-brand-text {
    color: var(--ink);
    text-shadow: none;
}

.nav-brand-tagline {
    font-size: .55rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    transition: color .4s;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

.site-nav.scrolled .nav-brand-tagline,
.site-nav.always-solid .nav-brand-tagline {
    color: var(--text);
    text-shadow: none;
}

.nav-logo-img {
    height: auto;
    width: auto;
    max-height: var(--nav-logo-max-height);
    max-width: var(--nav-logo-max-width);
    flex-shrink: 0;
    max-width: 108px;
}

.site-nav.scrolled .nav-logo-img.brand-wordmark--nav,
.site-nav.always-solid .nav-logo-img.brand-wordmark--nav {
    max-height: none;
    filter: none;
}

/* Default inline SVG wordmark — readable on dark hero + solid nav */
.nav-logo-img.brand-logo-svg--nav {
    display: block;
    color: #faf6f0;
    filter:
        drop-shadow(0 4px 22px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 20px rgba(200, 162, 90, 0.22));
}

.site-nav.scrolled .nav-logo-img.brand-logo-svg--nav,
.site-nav.always-solid .nav-logo-img.brand-logo-svg--nav {
    color: var(--ink);
    filter:
        drop-shadow(0 3px 12px rgba(28, 23, 20, 0.1)) drop-shadow(0 0 18px rgba(184, 146, 90, 0.15));
}

.nav-brand:hover .nav-logo-img.brand-logo-svg--nav {
    transform: translateY(-2px) scale(1.03);
}

/* ── B.O.P text wordmark (replaces default SVG) ── */
.nav-logo-img.brand-wordmark--nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    max-height: none;
    height: auto;
    width: auto;
    max-width: min(280px, 42vw);
    object-fit: unset;
    filter: none;
}

.site-nav.scrolled .nav-logo-img.brand-wordmark--nav,
.site-nav.always-solid .nav-logo-img.brand-wordmark--nav {
    filter: none;
}

.brand-wordmark__bop {
    font-family: 'Georgia Regular';
    font-style: italic;
    font-weight: normal;
    font-size: clamp(1.28rem, 2.2vw, 1.68rem);
    letter-spacing: 0.08em;
    color: #c5a070;
    line-height: 1;
}

.brand-wordmark__tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.56rem;
    font-weight: normal;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary);
    line-height: 1.3;
}

.nav-brand:hover .nav-logo-img.brand-wordmark--nav {
    transform: translateY(-2px);
    filter: none;
}

/* Home: cream header bar + charcoal quote CTA (design prototype) */


.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: #9a7a4a !important;
}

.nav-top-contacts a {
    color: var(--secondary);
    text-shadow: none;
    font-size: 16px;
}

.nav-top-contacts i {
    color: #c5a070;
}

.btn-quote {
    background: var(--primary);
    color: #fff !important;
    border: 1px solid var(--primary);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.fa-arrow-up-right {
    content: '';
    background: url(../images/btn-arrow.svg) no-repeat center center;
    width: 13px;
    height: 13px;
    display: inline-block;
}


.btn-quote:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}
.btn-quote:hover .btn-quote__ico {
    top: -2px;
    left: 3px;
    position: relative;
}

.nav-toggle {
    border-color: rgba(26, 24, 22, 0.22);
    color: var(--ink);
}

.btn-quote__ico {
    font-size: 0.62em;
    opacity: 0.95;
}

@media (max-width: 1199px) {
    :root {
        --nav-logo-max-height: 128px;
        --nav-logo-max-height-scrolled: 102px;
        --nav-logo-max-width: min(440px, 58vw);
    }

    .nav-main-row .container {
        min-height: 138px;
        height: 138px;
    }

    /* .site-nav.scrolled .nav-main-row .container,
    .site-nav.always-solid .nav-main-row .container {
        min-height: 112px;
        height: 112px;
    } */
}

.footer-brand {
    margin-bottom: 12px;
}

/* Footer logo: transparent treatment on dark texture */
.site-footer .footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
    padding: 0;
    margin: 0 0 8px 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.35s ease;
}

.site-footer .footer-logo-link:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

.site-footer .footer-logo-link:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
    box-shadow: 0 0 0 8px rgba(200, 162, 90, 0.16), 0 8px 28px rgba(0, 0, 0, 0.2);
}

.site-footer .footer-logo-img {
    height: 100%;
    width: 100%;
    max-height: 96px;
    max-width: 246px;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin-bottom: 0;
}

.site-footer .footer-logo-link:hover .footer-logo-img.brand-logo-svg--footer {
    filter: none;
    transform: scale(1.015);
}

@media (max-width: 991px) {
    .site-nav{
        padding:0;
    }
    :root {
        --footer-logo-max-height: 104px;
        --footer-logo-max-width: min(300px, 90vw);
    }

    .site-footer .footer-logo-link {
        padding: 0;
    }
}

/* Nav links — center (flex-grow) */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    position: relative;
    display: block;
    padding: 12px 12px;
    font-size: clamp(1rem, 2.2vw, 0.875rem);
    font-weight: normal;
    letter-spacing: 1.45px;
    text-transform: uppercase;
    transition: color .25s, text-shadow .25s;
    white-space: nowrap;
}

.nav-links>li>a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 6px;
}

.site-nav:not(.scrolled):not(.always-solid) .nav-links>li>a:focus-visible {
    outline-color: rgba(255, 255, 255, 0.85);
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .24s ease;
}

.site-nav.scrolled .nav-links>li>a,
.site-nav.always-solid .nav-links>li>a {
    color: var(--secondary);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--primary) !important;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    transform: scaleX(1);
}

.site-nav.scrolled .nav-links>li>a:hover,
.site-nav.scrolled .nav-links>li>a.active,
.site-nav.always-solid .nav-links>li>a:hover,
.site-nav.always-solid .nav-links>li>a.active {
    color: var(--primary) !important;
}

/* Dropdown */
.nav-links .has-drop:hover .drop-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.drop-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    border-radius: 6px;
    transition: all .2s;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .13);
}

.drop-menu a {
    display: block;
    padding: 10px 20px;
    font-size: clamp(0.76rem, 1vw, 0.84rem);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary);
    transition: color .2s, background .2s;
}

.drop-menu a:hover {
    background: var(--cream-dark);
    color: var(--primary);
}

/* Right actions */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-top-contacts {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-top-contacts a:hover, .nav-top-contacts a:hover i{
    color: var(--primary);
}


.nav-top-contacts i {
    color: var(--secondary);
    font-size: 16px;
}


.site-nav.always-solid .nav-top-contacts i {
    color: var(--primary);
}

/* Mobile toggle — hamburger ↔ close (X); 44px min touch target on small screens */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 12px;
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem;
    margin-left: auto;
    transition: border-color 0.4s, color 0.4s, background 0.25s;
    border-radius: 4px;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-toggle-icon--close {
    display: none;
}

.nav-toggle.is-open {
    background: rgba(201, 107, 63, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

.nav-toggle.is-open .nav-toggle-icon--bars {
    display: none;
}

.nav-toggle.is-open .nav-toggle-icon--close {
    display: inline-flex;
}

.site-nav.scrolled .nav-toggle,
.site-nav.always-solid .nav-toggle {
    border-color: var(--border);
    color: var(--ink);
}

.site-nav.scrolled .nav-toggle.is-open,
.site-nav.always-solid .nav-toggle.is-open {
    border-color: var(--primary);
    color: var(--primary);
}

/* Desktop: sheet wrapper is invisible to layout (children flex like before) */
@media (min-width: 992px) {
    .nav-mobile-sheet {
        display: contents;
    }

    .nav-mobile-backdrop {
        display: none !important;
    }
}

/* Dimmed overlay behind nav when menu open (sibling after <nav>) */
.nav-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(14, 12, 10, 0.48);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

/* .site-nav.menu-open + .nav-mobile-backdrop:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
} */
.nav-mobile-backdrop[hidden] {
    display: none !important;
}

@media (max-width: 991px) {
    :root {
        --nav-logo-max-height: 108px;
        --nav-logo-max-height-scrolled: 88px;
        --nav-logo-max-width: min(320px, 82vw);
    }

    .nav-main-row .container {
        flex-wrap: wrap;
        min-height: auto;
        height: auto;
        padding-top: max(10px, env(safe-area-inset-top, 0px));
        padding-bottom: 12px;
        align-items: center;
    }

    .nav-brand {
        margin-right: auto;
        position: relative;
        z-index: 1002;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1002;
        min-width: 44px;
        min-height: 44px;
    }

    /* Sheet: full-screen panel under fixed header row (Apple safe areas) */
    .nav-mobile-sheet {
        display: none;
        background: #F8F6F1;
    }

    .nav-mobile-sheet.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        z-index: 1;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: calc(env(safe-area-inset-top, 0px) + 120px) max(18px, env(safe-area-inset-right, 0px)) max(24px, env(safe-area-inset-bottom, 0px)) max(18px, env(safe-area-inset-left, 0px));
        background: rgba(255, 252, 249, 0.98);
        border-bottom: 1px solid rgba(28, 23, 20, 0.06);
        box-shadow: 0 24px 60px rgba(28, 23, 20, 0.12);
    }

    .nav-mobile-sheet.is-open .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex: 1 1 auto;
        width: 100%;
        gap: 0;
    }

    .nav-mobile-sheet.is-open .nav-links>li {
        width: 100%;
    }

    .nav-mobile-sheet.is-open .nav-links>li>a {
        padding: 12px 6px;
        border-bottom: 1px solid rgba(28, 23, 20, 0.08);
        width: 100%;
        color: var(--secondary) !important;
        text-shadow: none;
    }

    .nav-mobile-sheet.is-open .nav-links>li>a::after {
        left: 6px;
        right: 6px;
        bottom: 8px;
    }

    .nav-mobile-sheet.is-open .nav-right {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        margin-top: auto;
        padding-top: 18px;
        border-top: 1px solid rgba(28, 23, 20, 0.1);
        margin: 0;
    }

    .nav-mobile-sheet.is-open .nav-top-contacts {
        display: flex !important;
        width: 100%;
        padding: 0 4px;
    }

    .nav-mobile-sheet.is-open .nav-top-contacts a {
        color: var(--secondary) !important;

    }

    .nav-mobile-sheet.is-open .btn-quote {
        width: 100%;
        justify-content: center;
        text-align: center;
        margin: 0;
        box-sizing: border-box;
        min-height: 48px;
    }

    .nav-top-contacts {
        display: none;
    }

    .nav-logo-img {
        max-height: var(--nav-logo-max-height) !important;
        height: auto !important;
    }

    .drop-menu {
        position: static;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--cream-dark);
        padding-left: 12px;
        border-top: none;
        border-radius: 0;
    }

}

/* Legacy refs kept for compatibility */
.nav-top-bar {
    display: none;
}

.nav-brand-row {
    display: none;
}

/* ═══════════════════════════════════════
   3-PANEL HERO SLIDER
═══════════════════════════════════════ */
.hero3 {
    display: grid;
    grid-template-columns: 260px 1fr 220px;
    height: 560px;
    overflow: hidden;
    background: var(--ink);
}

/* LEFT decorative panel */
.hero3-left {
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
}

.hero3-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='28' fill='none' stroke='%23c9a87c' stroke-width='.6' opacity='.3'/%3E%3Ccircle cx='40' cy='40' r='14' fill='none' stroke='%23c9a87c' stroke-width='.4' opacity='.2'/%3E%3Cline x1='40' y1='0' x2='40' y2='80' stroke='%23c9a87c' stroke-width='.3' opacity='.15'/%3E%3Cline x1='0' y1='40' x2='80' y2='40' stroke='%23c9a87c' stroke-width='.3' opacity='.15'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.hero3-left-inner {
    position: relative;
    z-index: 2;
    padding: 48px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero3-leaf {
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--primary);
    opacity: .2;
    line-height: 1;
    margin-bottom: 24px;
    user-select: none;
}

.hero3-eyebrow-left {
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 28px;
}

.hero3-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.hero3-current {
    font-family: 'Georgia Regular';
    font-size: 4rem;
    font-weight: normal;
    color: var(--ink);
    line-height: 1;
    transition: opacity .3s;
}

.hero3-sep {
    font-size: .9rem;
    color: var(--border);
    margin: 0 4px;
}

.hero3-total {
    font-size: 1.1rem;
    color: var(--text);
}

.hero3-progs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.hero3-prog {
    width: 2px;
    height: 20px;
    background: var(--border);
    transition: background .4s, height .4s;
}

.hero3-prog.active {
    background: var(--primary);
    height: 40px;
}

.hero3-scroll-hint {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero3-scroll-hint span {
    font-size: .6rem;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    writing-mode: horizontal-tb;
}

.hero3-scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.hero3-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--primary);
    animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* CENTER main slide */
.hero3-center {
    position: relative;
    overflow: hidden;
}

.hero3-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
}

.hero3-slide.active {
    opacity: 1;
    animation: hero3Blink .85s ease forwards;
}

@keyframes hero3Blink {
    0% {
        opacity: 0;
        transform: scale(1.03);
        filter: brightness(1.5) saturate(.4);
    }

    25% {
        opacity: .9;
        filter: brightness(1.2) saturate(.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1) saturate(1);
    }
}

.hero3-center-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg,
            rgba(10, 6, 3, .80) 0%,
            rgba(30, 18, 8, .42) 55%,
            transparent 100%);
}

.hero3-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 0 0 72px 60px;
}

.hero3-body-inner {
    max-width: 560px;
}

.hero3-tag {
    display: block;
    font-size: .62rem;
    font-weight: normal;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.hero3-title {
    font-family: 'Georgia Regular';
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: normal;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0;
}

.hero3-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 0;
    border: 1px solid var(--primary);
    transition: background .2s, box-shadow .2s;
}

.hero-btn:hover {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
}

.hero-btn.hero-btn--gold,
.hero-btn.hero-btn--primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.hero-btn.hero-btn--gold:hover,
.hero-btn.hero-btn--primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.home-atelier-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 12px 22px;
}

.btn-outline-site {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 0;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}

.btn-outline-site:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 0;
    transition: all .2s;
    background: transparent;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.hero3-arrow {
    position: absolute;
    bottom: 24px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    font-size: .85rem;
}

.hero3-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero3-prev {
    right: 58px;
}

.hero3-next {
    right: 12px;
}

/* RIGHT two-stacked thumbnails */
.hero3-right {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-left: 2px solid rgba(255, 255, 255, .06);
}

.hero3-right-cell {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero3-right-cell+.hero3-right-cell {
    border-top: 2px solid rgba(255, 255, 255, .06);
}

.hero3-thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.hero3-right-cell:hover .hero3-thumb {
    transform: scale(1.07);
}

.hero3-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 10, 5, .75) 0%, rgba(10, 5, 2, .15) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px 12px;
    transition: background .3s;
}

.hero3-right-cell:hover .hero3-thumb-overlay {
    background: linear-gradient(to top, rgba(160, 90, 56, .75) 0%, rgba(160, 90, 56, .2) 60%, transparent 100%);
}

.hero3-thumb-label {
    font-size: .65rem;
    font-weight: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    display: block;
}

.hero3-thumb-label:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .hero3 {
        grid-template-columns: 1fr;
        height: 520px;
    }

    .hero3-left,
    .hero3-right {
        display: none;
    }

    .hero3-body {
        padding: 0 0 56px 24px;
    }
}

@media (min-width: 768px) and (max-width: 1099px) {
    .hero3 {
        grid-template-columns: 200px 1fr;
        height: 560px;
    }

    .hero3-right {
        display: none;
    }
}

@media (min-width: 1100px) and (max-width: 1299px) {
    .hero3 {
        grid-template-columns: 230px 1fr 190px;
        height: 520px;
    }
}

/* ═══════════════════════════════════════
   SECTION SCAFFOLDING
═══════════════════════════════════════ */
.section {
    padding: 100px 0;
}

.section-sm {
    padding: 70px 0;
}

.section-dark {
    background: var(--ink);
    color: #fff;
}

.section-soft {
    background: linear-gradient(180deg, #fbf9f6 0%, #f3efe8 100%);
    border-top: 1px solid rgba(28, 23, 20, 0.04);
    border-bottom: 1px solid rgba(28, 23, 20, 0.03);
}

.section-white {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbfa 100%);
    position: relative;
}
/* .home-atelier.section-white:after{
    content:'';
    position: absolute;
    background: url(../images/lines.png) cover top right;

} */
 .home-atelier.section-white::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 500px;
    width: 700px;
    background-image: url('../images/lines.png') ;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
}
.section-header {
    margin-bottom: 64px;
}

.eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.eyebrow-light {
    color: rgba(255, 255, 255, .55);
}

.section-rule {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 18px 0 28px;
    display: block;
}

.section-rule.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-rule.gold {
    background: var(--primary);
}

.section-header h2 {
    font-family: 'Georgia Regular';
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 0;
}

.section-header h2.light {
    color: #fff;
}

.section-header p {
    font-size: 1rem;
    color: var(--text);
    max-width: 540px;
    line-height: 1.8;
    margin: 0;
}

.section-header p.light {
    color: rgba(255, 255, 255, .65);
}

.hr-rule {
    border: none;
    border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
/* IMAGE-FORWARD SERVICE CARD (like L&R) */
.svc-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--ink);
    cursor: pointer;
    display: block;
    color: #fff;
}

.svc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.svc-card:hover .svc-card-img {
    transform: scale(1.07);
}

.svc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 10, 8, .80) 0%, rgba(20, 10, 8, .30) 50%, transparent 100%);
    transition: background .4s;
}

.svc-card:hover .svc-card-overlay {
    background: linear-gradient(to top, rgba(107, 16, 64, .85) 0%, rgba(107, 16, 64, .40) 60%, transparent 100%);
}

.svc-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
}

.svc-card-body h4 {
    font-family: 'Georgia Regular';
    font-size: 1.15rem;
    font-weight: normal;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.svc-card-rule {
    width: 28px;
    height: 1.5px;
    background: var(--primary);
    margin-bottom: 10px;
    transition: width .3s;
}

.svc-card:hover .svc-card-rule {
    width: 50px;
}

.svc-card-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, opacity .4s;
    opacity: 0;
}

.svc-card:hover .svc-card-desc {
    max-height: 80px;
    opacity: 1;
}

/* Fallback icon-based card (when no image) */
.svc-card-plain {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    height: 100%;
    transition: box-shadow .3s, transform .3s;
}

.svc-card-plain:hover {
    box-shadow: 0 12px 40px rgba(107, 16, 64, .12);
    transform: translateY(-4px);
}

.svc-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 18px;
}

.svc-card-plain h4 {
    font-family: 'Georgia Regular';
    font-size: 1.05rem;
    font-weight: normal;
    color: var(--ink);
    margin-bottom: 10px;
}

.svc-card-plain p {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 18px;
    border-bottom: 1px solid transparent;
    transition: border-color .2s, gap .2s;
}

.svc-link:hover {
    border-bottom-color: var(--primary);
    gap: 10px;
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gal-item {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--cream-dark);
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.gal-item:hover img {
    transform: scale(1.08);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(180, 83, 9, .82) 0%, transparent 65%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gal-item:hover .gal-overlay {
    opacity: 1;
}

.gal-overlay span {
    color: #fff;
    font-weight: normal;
    font-size: .9rem;
}

/* ═══════════════════════════════════════
   TESTIMONIALS — FIGMA 50/50 SPLIT SLIDER
═══════════════════════════════════════ */
.testi-split-section {
    padding: 0;
    overflow: hidden;
    /* Match panel taupe so curved seams / gaps never flash dark */
    background: linear-gradient(90deg, #2a2420 0%, #4a3d34 35%, #4a3d34 100%);
}

.testi-split-shell {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    /* Large curved seam (Figma “pill” split between photo + taupe panel) */
    --testi-seam-r: clamp(3.25rem, 15vw, 12rem);
    --testi-panel: #4a3d34;
    --testi-panel-deep: #3d332c;
}

.testi-split-track {
    display: flex;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testi-split-slide {
    flex: 0 0 100%;
    min-width: 100%;
    margin: 0;
}

/* Undo legacy .testi-slide padding/flex on home split slider */
.testi-split-slide.testi-slide {
    padding: 0;
    display: block;
}

.testi-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: min(560px, 85vh);
}

.testi-split__photo {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center top;
    min-height: 420px;
    /* Figma: large rounded seam between image and taupe panel */
    border-radius: 0 200px 0 0;
    overflow: hidden;
}

.testi-split__photo-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(18, 14, 12, 0.25) 0%,
            rgba(24, 20, 18, 0.08) 38%,
            rgba(24, 20, 18, 0.45) 100%);
}

.testi-split__photo-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 1023px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: clamp(36px, 7vw, 72px) clamp(24px, 4vw, 48px) clamp(36px, 6vw, 64px);
    text-align: left;
}

.testi-split__photo-attrib {
    width: 100%;
    margin-top: auto;
}

.testi-split__photo-inner--attrib-only {
    justify-content: flex-end;
}

.testi-split__quote-short {
    font-family: 'Georgia Regular';
    font-size: clamp(1.45rem, 3.2vw, 2.25rem);
    font-style: italic;
    font-weight: 400;
    color: #fff;
    line-height: 1.32;
    margin: 0;
    max-width: 22ch;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.testi-split__photo-name {
    font-family: 'Georgia Regular';
    font-size: clamp(1.05rem, 1.9vw, 1.2rem);
    font-weight: normal;
    color: rgba(255, 255, 255, 0.98);
    margin: 0 0 0.4rem;
}

.testi-split__photo-role {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.testi-split__panel {
    position: relative;
    z-index: 0;
    margin-left: calc(var(--testi-seam-r) / -2);
    padding-left: calc(clamp(28px, 5vw, 64px) + (var(--testi-seam-r) / 2));
    padding-top: clamp(40px, 7vw, 80px);
    padding-right: clamp(28px, 5vw, 64px);
    padding-bottom: clamp(72px, 12vw, 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.testi-split__panel-deco {
    position: absolute;
    right: -12%;
    bottom: -20%;
    width: min(78%, 560px);
    aspect-ratio: 1;
    border-radius: 50%;
    /* Echoes the curved seam — lighter taupe arc */
    background: radial-gradient(circle at 35% 35%, rgba(200, 175, 150, 0.22) 0%, rgba(160, 130, 105, 0.08) 45%, transparent 68%);
    pointer-events: none;
}

.testi-split__kicker {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
}

.testi-split__quote-full {
    margin: 0 0 clamp(1.5rem, 4vw, 2rem);
    padding: 0;
    border: none;
    width: 100%;
    max-width: 38rem;
}

.testi-split__quote-full p {
    font-family: 'Georgia Regular';
    font-size: clamp(1.28rem, 2.55vw, 1.82rem);
    font-style: italic;
    font-weight: 400;
    color: #fff;
    line-height: 1.52;
    margin: 0;
}

.testi-split__panel-name {
    font-family: 'Georgia Regular';
    font-size: clamp(1.05rem, 1.9vw, 1.2rem);
    font-weight: normal;
    color: rgba(255, 255, 255, 0.98);
    margin: 0 0 0.4rem;
}

.testi-split__panel-role {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.testi-split__seam-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: clamp(56px, 10vw, 76px);
    height: clamp(56px, 10vw, 76px);
    border-radius: 50%;
    /* Figma: solid taupe disc aligned with right panel; white quotation mark */
    background: linear-gradient(165deg, #5a4d44 0%, var(--testi-panel) 48%, #2f2823 100%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.testi-split__seam-icon {
    font-family: 'Georgia Regular';
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1;
    color: #fff;
    margin-top: -0.12em;
}

/* Figma mock: pagination is horizontal bars only — no chevron arrows */
.testi-split-shell .testi-split-nav {
    display: none;
}

.testi-split__dots-wrap {
    position: absolute;
    /* Horizontally centred in the right (brown) half */
    left: 75%;
    bottom: clamp(32px, 5.5vw, 52px);
    transform: translateX(-50%);
    z-index: 15;
}

.testi-dots--split {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .testi-split-shell {
        --testi-seam-r: clamp(1.75rem, 10vw, 4rem);
    }

    .testi-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .testi-split__photo {
        min-height: 320px;
        border-radius: 0 0 var(--testi-seam-r) var(--testi-seam-r);
    }

    .testi-split__panel {
        margin-left: 0;
        padding-left: clamp(28px, 5vw, 64px);
        border-radius: 0;
    }

    .testi-split__seam-badge {
        top: min(320px, 42vh);
        transform: translate(-50%, -50%);
    }

    .testi-split__dots-wrap {
        left: 50%;
        bottom: clamp(20px, 5vw, 36px);
        transform: translateX(-50%);
    }
}

/* Legacy editorial slider + pill dots (other pages may reference) */
.testi-section {
    background: #f5f0ea;
    padding: 96px 0 88px;
    overflow: hidden;
}

.testi-slider-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.testi-track {
    display: flex;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testi-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 clamp(72px, 12vw, 120px);
    box-sizing: border-box;
}

.testi-dot {
    height: 4px;
    width: 28px;
    border-radius: 2px;
    background: rgba(28, 23, 20, 0.12);
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
        background 0.35s ease,
        width 0.35s ease,
        opacity 0.35s ease;
}

.testi-dot.active {
    background: var(--brand-gold-gradient);
    width: 40px;
}

/*
 * Customer reviews carousel indicators (home split slider): short horizontal bars —
 * inactive ~24×3px translucent; active ~36×4px solid white (Figma split slider).
 */
.testi-dots--split .testi-dot.testi-dot--pill {
    flex-shrink: 0;
    height: 3px;
    width: 24px;
    min-width: 24px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
        background 0.35s ease,
        width 0.35s ease,
        opacity 0.35s ease;
}

.testi-dots--split .testi-dot.testi-dot--pill.active {
    width: 36px;
    min-width: 36px;
    height: 4px;
    background: #fff;
}

.testi-dots--split .testi-dot.testi-dot--pill:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 4px;
}

/* Legacy card classes (not used in slider but kept for safety) */
.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.testi-quote {
    font-size: .95rem;
    color: var(--secondary);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 26px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    overflow: hidden;
    flex-shrink: 0;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-name {
    font-weight: 800;
    font-size: .92rem;
    color: var(--ink);
}

.testi-role {
    font-size: .8rem;
    color: var(--text);
}

/* ═══════════════════════════════════════
   BRANDS — PROFESSIONAL PARTNER STRIP
═══════════════════════════════════════ */
.brands-strip {
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
    background: linear-gradient(180deg, #ebe8e3 0%, #e3e0da 100%);
    border-top: 1px solid rgba(28, 23, 20, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.brands-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M0 50 L100 50' stroke='%23c9a87c' stroke-width='0.25' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
    opacity: 0.9;
}

/* ── Heading: editorial rule + serif title ── */
.brands-strip__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 4vw, 36px);
    margin-bottom: 48px;
    padding: 0 8px;
}

.brands-strip__rule {
    flex: 1 1 0;
    min-width: 24px;
    max-width: 180px;
    height: 1px;
    border-radius: 1px;
}

.brands-strip__rule:first-of-type {
    background: linear-gradient(90deg, transparent 0%, rgba(28, 23, 20, 0.14) 100%);
}

.brands-strip__rule:last-of-type {
    background: linear-gradient(90deg, rgba(28, 23, 20, 0.14) 0%, transparent 100%);
}

.brands-strip__title-block {
    flex-shrink: 0;
    text-align: center;
    max-width: 520px;
}

.brands-strip__kicker {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.61rem;
    font-weight: normal;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.brands-strip__title {
    font-family: 'Georgia Regular';
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: normal;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--ink);
    margin: 0;
}

/* ── Marquee rail ── */
.brands-strip__marquee {
    position: relative;
    z-index: 1;
}

/* ── Edge fade (softer than harsh cut) ── */
.brands-slider-wrap {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
    mask-image: linear-gradient(90deg,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
}

/* ── Scrolling track — N identical segments; translate by 1/N so the loop is seamless (need enough copies to fill wide viewports) ── */
.brand-track {
    --brand-marquee-gap: clamp(12px, 2.2vw, 28px);
    --brand-segments: 2;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    width: max-content;
    animation: brandScroll var(--brand-scroll-duration, 48s) linear infinite;
    will-change: transform;
}

.brand-track__segment {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    gap: var(--brand-marquee-gap);
    /* Same width as inter-item gap: seam between copy #1 and copy #2 lines up after -50% */
    padding-right: var(--brand-marquee-gap);
}

.brand-track:hover {
    animation-play-state: paused;
}

@keyframes brandScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% / var(--brand-segments, 2)));
    }
}

/* ── Logo row: round badges — clear focal marks ── */
.brand-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Perfect circle “medallion” for each partner mark */
.brand-logo-item__frame {
    display: grid;
    grid-template: 1fr / 1fr;
    align-items: stretch;
    justify-items: stretch;
    width: 250px;
    height: 109px;
    min-width: 250px;
    min-height: 109px;
    padding: 0;
    box-sizing: border-box;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(165deg, #ffffff 0%, #faf7f3 55%, #f3eee8 100%);
    border: 2px solid rgba(200, 162, 90, 0.28);
    box-shadow:
        0 2px 4px rgba(28, 23, 20, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease,
        box-shadow 0.45s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-logo-item .brand-logo-img,
.brand-logo-item img.brand-logo-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 1;
    transition:
        filter 0.45s ease,
        opacity 0.45s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.brands-strip .brand-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 6px 10px;
    margin: 0;
    max-width: none;
    min-height: 0;
    font-family: 'Georgia Regular';
    font-size: clamp(12px, 1.8vw, 012px);
    font-weight: normal;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--secondary);
    transition: color 0.3s ease, transform 0.45s ease;
    hyphens: auto;
    overflow-wrap: anywhere;
}

.brand-logo-item:hover .brand-placeholder {
    transform: scale(1.03);
    color: var(--ink);
}

@media (max-width: 575px) {
    .brands-strip__head {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 36px;
    }

    .brands-strip__rule {
        display: none;
    }

    .brands-strip__title-block {
        max-width: 100%;
    }

    .brand-logo-item__frame {
        width: 92px;
        height: 92px;
        min-width: 92px;
        min-height: 92px;
        padding: 0;
    }

    .brand-track {
        --brand-marquee-gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-track {
        animation-duration: 90s;
    }

    .brand-logo-item:hover .brand-logo-item__frame {
        transform: none;
    }

    .brand-logo-item:hover .brand-logo-img,
    .brand-logo-item:hover img.brand-logo-img {
        transform: none;
    }
}

/* ═══════════════════════════════════════
   STATS BAND
═══════════════════════════════════════ */
.stats-band {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

.stat-num {
    display: block;
    font-family: 'Georgia Regular';
    font-size: 3.2rem;
    font-weight: normal;
    line-height: 1;
    color: var(--primary);
}

.stat-num span {
    color: var(--secondary);
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
}

.stat-lbl {
    font-size: .66rem;
    font-weight: normal;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text);
    margin-top: 12px;
    display: block;
}

.stat-sep {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

@media (max-width: 575px) {
    .stats-band {
        padding: 48px 0;
    }

    .stats-band .d-flex.justify-content-around {
        flex-direction: column;
        align-items: center;
        gap: 2rem !important;
    }

    .stat-item {
        padding: 8px 12px;
        max-width: 100%;
    }

    .stat-num {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .stat-lbl {
        letter-spacing: 0.18em;
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════
   CONTACT — PREMIUM
═══════════════════════════════════════ */

/* Wrapper — generous vertical space */
.contact-wrap {
    padding: 80px 0 100px;
}

/* ── Info Panel — light warm card ── */
.contact-info-panel {
    background: linear-gradient(165deg, #fdfcfa 0%, #f4efe8 52%, #ebe4db 100%);
    border-radius: 20px;
    padding: 52px 44px 48px;
    height: 100%;
    color: var(--ink);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 162, 90, 0.28);
    box-shadow: 0 20px 56px rgba(28, 23, 20, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 88% 8%, rgba(201, 107, 63, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 8% 92%, rgba(200, 162, 90, 0.1) 0%, transparent 48%);
    pointer-events: none;
}

/* Gold top accent bar */
.contact-info-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 44px;
    right: 44px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary), transparent);
    border-radius: 0 0 2px 2px;
}

.contact-info-panel>* {
    position: relative;
    z-index: 1;
}

/* Availability badge */
.cinfo-avail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, .08);
    border: 1px solid rgba(74, 222, 128, .2);
    border-radius: 100px;
    padding: 6px 12px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4ade80;
}

.cinfo-avail-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.75);
    }
}

.contact-info-panel .cinfo-heading {
    font-family: 'Georgia Regular';
    font-size: 2.1rem;
    font-weight: normal;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -.01em;
}

.contact-info-panel .cinfo-heading em {
    font-style: italic;
    color: var(--primary);
}

.contact-info-panel .sub {
    font-size: .875rem;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Divider */
.cinfo-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 76, .25), transparent);
    margin: 0 0 32px;
}

.cinfo-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.cinfo-icon {
    width: 46px;
    height: 46px;
    border: 1.5px solid rgba(201, 168, 76, .28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .95rem;
    flex-shrink: 0;
    background: rgba(201, 168, 76, .06);
    transition: background .25s, border-color .25s;
}

.cinfo-row:hover .cinfo-icon {
    background: rgba(201, 168, 76, .14);
    border-color: rgba(201, 168, 76, .55);
}

.cinfo-label {
    font-size: .68rem;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 5px;
}

.cinfo-val {
    font-size: .93rem;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1.45;
}

/* Social row */
.cinfo-social-label {
    font-size: .68rem;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 12px;
}

.cinfo-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cinfo-social-link {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: .9rem;
    transition: all .25s;
    background: rgba(255, 255, 255, 0.6);
}

.cinfo-social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(201, 168, 76, .1);
    transform: translateY(-2px);
}

/* ── Form Panel ── */
.contact-form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 52px 48px 48px;
    box-shadow: 0 8px 48px rgba(44, 40, 36, .06), 0 1px 0 rgba(44, 40, 36, .04);
    position: relative;
}

/* Gold left accent bar */
.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 36px;
    bottom: 36px;
    left: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--primary), transparent);
    border-radius: 0 2px 2px 0;
}

.contact-form-panel .cfp-eyebrow {
    font-size: .7rem;
    font-weight: normal;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form-panel h3 {
    font-family: 'Georgia Regular';
    font-size: 1.85rem;
    font-weight: normal;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -.01em;
    line-height: 1.2;
}

.contact-form-panel .sub {
    font-size: .875rem;
    color: var(--text);
    margin-bottom: 36px;
    line-height: 1.65;
}

/* Gold underline decoration under form heading */
.cfp-heading-deco {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.cfp-heading-deco-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

.cfp-heading-deco-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Form inputs */
.form-label {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 7px;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: .93rem;
    background: #fdfcfa;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.form-control::placeholder {
    color: #b5aea6;
}

.form-control:hover {
    border-color: #d4c9bc;
    background: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, .1);
    background: #fff;
    outline: none;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Submit button override for contact */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #d4906a 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 36px;
    font-size: .9rem;
    font-weight: normal;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 20px rgba(192, 120, 80, .3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(192, 120, 80, .4);
    background: linear-gradient(135deg, #d4906a 0%, var(--primary) 100%);
}

.contact-submit-btn .btn-arrow {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    transition: transform .25s;
}

.contact-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════ */
/* body offset — fixed nav (solid on inner pages ≈120px + breathing room) */


.page-hero,
.page-header {
    background: #f8f6f1;
    padding: 64px 0 0;
    color: var(--ink);
    position: relative;
    overflow: hidden;
    /* border-bottom: 1px solid rgba(200, 162, 90, 0.22);
    box-shadow: 0 10px 40px rgba(28, 23, 20, 0.05); */
}

.page-hero::before,
.page-header::before {
    /* content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 95% 65% at 72% 0%, rgba(201, 107, 63, 0.1) 0%, transparent 52%),
        radial-gradient(ellipse at 18% 85%, rgba(200, 162, 90, 0.14) 0%, transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 52%); */
    pointer-events: none;
}

/* Light grain + soft bottom edge (no heavy black vignette) */
/* .page-hero::after,
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
        linear-gradient(to top, rgba(28, 23, 20, 0.05) 0%, transparent 42%);
    background-size: 100px 100px, auto;
    opacity: 0.85;
} */

.page-hero .container,
.page-header .container {
    position: relative;
    z-index: 1;
}

.page-hero .eyebrow,
.page-header .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    opacity: .95;
}

.page-hero .eyebrow::before,
.page-header .eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary));
    margin-bottom: 12px;
    border-radius: 2px;
}

.page-hero h1,
.page-header h1 {
    font-family: 'Georgia Regular';
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    font-weight: normal;
    letter-spacing: -0.5px;
    line-height: 1.12;
    margin-bottom: 16px;
    position: relative;
    max-width: min(100%, 38rem);
    color: var(--secondary);
}

.page-hero p,
.page-header p {
    font-size: 1.05rem;
    color: var(--secondary);
    position: relative;
    max-width: 36rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.page-hero .blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 12px;
    font-size: .84rem;
    color: var(--text);
    position: relative;
}

.page-hero .blog-hero-meta i {
    color: var(--primary);
    opacity: .85;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-top: 22px;
    position: relative;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--text);
    font-size: .8rem;
    font-weight: normal;
    letter-spacing: .5px;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(28, 23, 20, 0.22);
}

.page-hero h1.page-hero-title-wide,
.page-header h1.page-hero-title-wide {
    max-width: min(100%, 42rem);
}

/* Gallery filter chips (replaces inline styles) */
.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.gallery-filter-btn {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}

.gallery-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.gallery-filter-btn.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    box-shadow: 0 6px 20px rgba(44, 40, 36, .15);
}

/* CMS / legal pages */
.page-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--secondary);
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    font-family: 'Georgia Regular';
    color: var(--ink);
    margin-top: 1.75em;
    margin-bottom: .65em;
    font-weight: normal;
}

.page-content h2 {
    font-size: 1.65rem;
}

.page-content h3 {
    font-size: 1.25rem;
}

.page-content p {
    margin-bottom: 1.15em;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.15em;
    padding-left: 1.35em;
}

.page-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-content a:hover {
    color: var(--primary);
}

/* Service detail — frame + zoom via .media-frame (inner-pages.css) */
.service-detail-lead-img {
    margin-bottom: 40px;
    max-height: 440px;
}

.service-detail-lead-img img {
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.service-detail-body {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--secondary);
}

.service-sidebar-wrap {
    position: sticky;
    top: 150px;
}

.service-sidebar-card {
    background: var(--cream-bg);
    border-radius: 12px;
    padding: 32px;
}

.service-sidebar-card h4 {
    font-family: 'Georgia Regular';
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-sidebar-card .sub {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-sidebar-more-label {
    font-size: .7rem;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.service-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--secondary);
    font-size: .92rem;
    font-weight: normal;
    transition: color .2s;
}

.service-sidebar-link:last-child {
    border-bottom: none;
}

.service-sidebar-link:hover {
    color: var(--primary);
}

.service-sidebar-link i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

/* ═══════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════ */
.cta-strip {
    background: var(--cream-bg);
    padding: 80px 0;
    color: var(--ink);
    position: relative;
    overflow: hidden;
}

.cta-strip .container {
    position: relative;
    z-index: 1;
}



.cta-strip p {
    font-size: 1rem;
    color: var(--secondary);
    opacity: 1;
    margin-bottom: 0;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 34px;
    border-radius: 0;
    transition: all .25s;
    border: 1px solid #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 34px;
    border-radius: 0;
    background: transparent;
    transition: all .2s;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

/* CTA on light band: primary + outline wine (readable, inviting) */
.cta-strip .btn-white {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(201, 107, 63, 0.25);
}

.cta-strip .btn-white:hover {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
    box-shadow: 0 10px 32px rgba(201, 107, 63, 0.32);
}

.cta-strip .btn-outline-white {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.65);
}

.cta-strip .btn-outline-white:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ═══════════════════════════════════════
   PRIMARY BUTTON
═══════════════════════════════════════ */
.btn-primary-site {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 0;
    border: 1px solid var(--primary);
    transition: background .2s, box-shadow .2s;
    cursor: pointer;
}

.btn-primary-site:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(107, 16, 64, .25);
}


/* ═══════════════════════════════════════
   FOOTER — warm greige (continues CTA cream/stone; anchors with a slightly deeper band)
═══════════════════════════════════════ */
.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 80px 0 0;
    background: url(../images/Footer.jpg) no-repeat center center/cover;
}


.site-footer>.container,
.site-footer>.footer-bottom {
    position: relative;
    z-index: 1;
}

.site-footer .footer-main {
    padding-bottom: 12px ;
}

.site-footer .row.g-5 {
    --bs-gutter-y: 2.5rem;
}

/* Staggered entrance (one-time on load) */
.site-footer .row.g-5>[class*='col'] {
    animation: footerColIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.site-footer .row.g-5>[class*='col']:nth-child(1) {
    animation-delay: 0.06s;
}

.site-footer .row.g-5>[class*='col']:nth-child(2) {
    animation-delay: 0.14s;
}

.site-footer .row.g-5>[class*='col']:nth-child(3) {
    animation-delay: 0.22s;
}

.site-footer .row.g-5>[class*='col']:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes footerColIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer .brand-name {
    font-family: 'Georgia Regular';
    font-size: 1.45rem;
    font-weight: normal;
    color: var(--ink);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.site-footer .brand-tagline-footer {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
    display: block;
}

.site-footer .about-text {
    font-size: 1rem;
    line-height: 1.88;
    max-width: min(320px, 100%);
    color: var(--gray-100);
    font-weight: 300;
}

.site-footer .about-text,
.site-footer .footer-nav a,
.site-footer .footer-contact-line,
.site-footer .footer-contact-line a,
.site-footer .footer-contact-line span {
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.site-footer h6, .site-footer .footer-col-title {
    font-family: 'Georgia Regular';
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    line-height: 32px;
    letter-spacing: 0%;
    margin-bottom: 22px;
    padding-bottom: 12px;
}

.site-footer .footer-nav a {
    position: relative;
    color: var(--gray-100);
    font-size: 1rem;
    display: block;
    margin-bottom: 12px;
    line-height: 20px;
    font-weight: 300;
    padding: 2px 0 2px 0;
    transition: color 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
}


.site-footer .footer-nav a:hover {
    color: var(--primary);
}

.site-footer .footer-nav a:last-child {
    margin-bottom: 0;
}

.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(243, 240, 234, 0.74);
    margin-bottom: 12px;
    line-height: 1.55;
    transition: color 0.25s ease;
}

.footer-contact-line:last-child {
    margin-bottom: 0;
}

.footer-contact-line a {
    color: var(--gray-100);
    display: inline;
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
    transition: color 0.25s ease;
}

.footer-contact-line a:hover i,.footer-contact-line a:hover {
    color: var(--primary);
}

.footer-contact-line i {
    font-size: 1rem;
    color: var(--gray-100);
    width: 20px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
    opacity: 0.9;
    transition: transform 0.35s ease, color 0.25s ease;
}



/* Footer: contact + newsletter stacked in one column (avoids a fifth “striped” column) */
.footer-newsletter-wrap {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-wrap .footer-newsletter h6 {
    margin-top: 0;
}

/* Footer newsletter (single instance sitewide) */
.footer-newsletter__lead {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(243, 240, 234, 0.58);
    margin: -8px 0 12px;
    max-width: 100%;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
}

.footer-newsletter-input {
    width: 100%;
    padding: 12px 12px;
    font-size: 0.88rem;
    color: rgba(243, 240, 234, 0.92);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.footer-newsletter-input::placeholder {
    color: rgba(243, 240, 234, 0.38);
}

.footer-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 162, 90, 0.65);
    outline: none;
}

.footer-newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #aa8453 0%, #8e6b42 100%);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.footer-newsletter-btn:hover {
    background: linear-gradient(135deg, #c49a62 0%, #aa8453 100%);
}

.footer-newsletter-error {
    display: block;
    font-size: 0.75rem;
    color: #b91c1c;
    margin-top: -4px;
}

.footer-newsletter-status {
    font-size: 0.75rem;
    line-height: 1.45;
    margin: 10px 0 0;
}

.footer-newsletter-status--success {
    color: #86efac;
}

.footer-newsletter-status--error {
    color: #fca5a5;
}

.footer-newsletter-privacy {
    font-size: 0.68rem;
    color: rgba(243, 240, 234, 0.42);
    margin: 12px 0 0;
    line-height: 1.45;
}

.footer-newsletter-privacy i {
    color: var(--primary);
    opacity: 0.85;
    margin-right: 4px;
    font-size: 0.65rem;
}

@media (min-width: 400px) {
    .footer-newsletter-form {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 0;
    }

    .footer-newsletter-input {
        flex: 1 1 140px;
        min-width: 0;
        border-right-width: 0;
    }

    .footer-newsletter-btn {
        width: auto;
        flex: 0 0 auto;
    }

    .footer-newsletter-error {
        flex: 1 0 100%;
        order: 3;
        margin-top: 4px;
    }
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-social a {
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
    color: var(--gray-100) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.footer-social a:hover {
    color: var(--primary) !important;
    transform: translateY(-3px) scale(1.06);
}

.footer-bottom {
    position: relative;
    margin-top: 56px;
    padding: 28px 0 32px;
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.28);
    border-top: 1px solid var(--text);
    animation: footerBarIn 1s ease 0.35s backwards;
}

.footer-bottom a {
    color: var(--gray-100);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--primary);
}

.footer-bottom .footer-logo {
    max-width: min(160px, 38vw);
    height: auto;
    vertical-align: middle;
    margin-right: 6px;
}

.footer-bottom .container>span:last-child {
    max-width: 100%;
    line-height: 1.5;
    color:var(--gray-100);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 162, 90, 0.35) 20%,
            rgba(201, 107, 63, 0.28) 50%,
            rgba(200, 162, 90, 0.35) 80%,
            transparent 100%);
    opacity: 1;
}

@keyframes footerBarIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer::before {
        animation: none;
    }

    .site-footer::after {
        animation: none;
    }

    .site-footer .row.g-5>[class*='col'] {
        animation: none;
    }

    .footer-bottom {
        animation: none;
    }
}

/* ═══════════════════════════════════════
   ALERTS
═══════════════════════════════════════ */
.alert-success {
    background: #dcfce7;
    color: #15803d;
    border: none;
    border-radius: 10px;
    font-size: .9rem;
}

.alert-danger {
    background: #fee2e2;
    color: #b91c1c;
    border: none;
    border-radius: 10px;
    font-size: .9rem;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ≤991px: vertical reveal only — translateX + overflow-x on body clips headings/cards.
   Use `body` for higher specificity so nothing reintroduces translateX on mobile. */
@media (max-width: 991px) {

    body .reveal-left,
    body .reveal-right {
        transform: translateY(28px);
    }

    body .reveal-left.visible,
    body .reveal-right.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

/* ═══════════════════════════════════════
   FLOATING BADGE ANIMATION
═══════════════════════════════════════ */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.float-anim {
    animation: floatY 3.5s ease-in-out infinite;
}


/* ═══════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════ */
.blog-card {
    display: block;
    overflow: hidden;
    height: 100%;
    transition: transform .35s;
    color: var(--ink);
}

.blog-card:hover {
    color: var(--ink);
}

.blog-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream-dark);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.07);
}

.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 2.5rem;
}

.blog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: .62rem;
    font-weight: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
}

.blog-card-body {
    padding: 26px 0;
}

.blog-card-title {
    font-family: 'Georgia Regular';
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.45;
}

.blog-card-excerpt {
    font-size: .875rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 12px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: .75rem;
    color: var(--text);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: normal;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--primary);
    padding-bottom: 1px;
    transition: gap .2s;
}

.blog-card:hover .blog-read-more {
    gap: 10px;
}

/* ═══════════════════════════════════════
   BLOG POST CONTENT
═══════════════════════════════════════ */
.blog-post-content {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--secondary);
}

.blog-post-content p {
    margin-bottom: 1.4rem;
}

/* ═══════════════════════════════════════
   NEWSLETTER SECTION
═══════════════════════════════════════ */
.newsletter-section {
    position: relative;
    padding: 100px 0;
    background-color: #F0E6D8;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, .06);
    /* Base text color so all copy (including privacy line) is readable on light band */
    color: var(--secondary);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Light overlay that works over any background image */
    background: rgba(242, 234, 220, 0.90);
    pointer-events: none;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='60' cy='60' r='40' fill='none' stroke='rgba(139,100,60,.04)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    pointer-events: none;
}

.newsletter-section .container {
    position: relative;
    z-index: 2;
}

.newsletter-eyebrow {
    display: inline-block;
    font-size: .65rem;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.newsletter-section h2 {
    font-family: 'Georgia Regular';
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: normal;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.2;
}

.newsletter-section p:not(.newsletter-privacy) {
    font-size: .97rem;
    color: var(--secondary);
    margin-bottom: 36px;
}

/* Must beat any stray `p` / utility rules — privacy line below the form */
.newsletter-section p.newsletter-privacy {
    font-size: .75rem;
    font-weight: 500;
    color: var(--secondary);
    margin-top: 18px;
    margin-bottom: 0;
    opacity: 1;
}

.newsletter-section p.newsletter-privacy i {
    color: var(--primary);
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, .85);
    border: 1.5px solid rgba(139, 100, 60, .25);
    border-right: none;
    color: var(--ink);
    font-size: .93rem;
    outline: none;
    transition: background .2s, border-color .2s;
    border-radius: 0;
}

.newsletter-input::placeholder {
    color: var(--text);
}

.newsletter-input:focus {
    background: #fff;
    border-color: var(--primary);
}

.newsletter-btn {
    padding: 15px 28px;
    background: var(--primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
    border-radius: 0;
}

.newsletter-btn:hover {
    background: var(--primary);
}

.newsletter-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: .08;
}

.newsletter-leaf.left {
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14rem;
    color: var(--primary);
    font-family: serif;
    line-height: 1;
}

.newsletter-leaf.right {
    right: -40px;
    bottom: -20px;
    font-size: 14rem;
    color: var(--primary);
    font-family: serif;
    line-height: 1;
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-right: 1px solid rgba(201, 168, 76, .35);
        border-bottom: none;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE UTILITIES (site-wide)
═══════════════════════════════════════ */
@media (max-width: 991px) {

    .site-footer {
        padding: 56px 0 28px;
    }

    .site-footer .about-text {
        max-width: 100%;
    }

    .site-footer .row.g-5 {
        --bs-gutter-y: 2rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 12px !important;
    }

    .footer-bottom .container>span {
        max-width: 100%;
    }

    .contact-form-panel {
        padding: 32px 22px 28px;
        border-radius: 12px;
    }

    .contact-form-panel::before {
        top: 24px;
        bottom: 24px;
    }

    .page-hero,
    .page-header {
        padding: 56px 0 48px;
    }

    .page-hero h1,
    .page-header h1 {
        max-width: 100%;
    }

    .service-sidebar-wrap {
        position: static;
        top: auto;
        margin-top: 40px;
    }

    .service-detail-lead-img,
    .service-detail-lead-img img {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    .section-sm {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .cta-strip {
        padding: 56px 0;
    }

    .cta-strip .col-lg-5,
    .cta-strip .col-lg-7 {
        text-align: center;
    }

    .cta-strip .col-lg-5.d-flex {
        justify-content: center !important;
    }

    .cta-strip .btn-white,
    .cta-strip .btn-outline-white {
        flex: 1 1 auto;
        min-width: min(100%, 200px);
        justify-content: center;
    }

    .gallery-filter-bar {
        margin-bottom: 1.5rem;
    }

    .page-content h2 {
        font-size: 1.4rem;
    }

    .page-content h3 {
        font-size: 1.12rem;
    }
}

@media (max-width: 575px) {

    :root {
        --nav-logo-max-height: 92px;
        --nav-logo-max-height-scrolled: 76px;
        --nav-logo-max-width: min(280px, 78vw);
    }

    /* .nav-main-row .container {
        padding-top: 10px;
        padding-bottom: 10px;
    } */

   
    .site-footer {
        padding: 44px 0 24px;
    }

    .site-footer h6 {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    .brands-strip {
        padding: 48px 0 44px;
    }

    .page-hero,
    .page-header {
        padding: 44px 0 40px;
    }

    .contact-form-panel {
        padding: 26px 18px 24px;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* CMS / rich text: never overflow viewport */
.page-content img,
.page-content video,
.page-content iframe,
.page-content embed {
    max-width: 100%;
    height: auto;
}

.page-content table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    word-wrap: break-word;
}

@media (max-width: 767px) {

    .page-content td,
    .page-content th {
        padding: 8px 10px;
        font-size: 0.88rem;
    }
}

.page-content pre {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   SITE TOASTS — fixed top-right, all frontend flashes
═══════════════════════════════════════ */
.site-toast-stack {
    position: fixed;
    top: max(18px, env(safe-area-inset-top, 0px));
    right: max(18px, env(safe-area-inset-right, 0px));
    z-index: 10050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    max-width: min(420px, calc(100vw - 36px));
    pointer-events: none;
}

.site-toast-stack .site-toast {
    pointer-events: auto;
}

.site-toast {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 12px 44px 12px 16px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    line-height: 1.45;
    box-shadow: 0 12px 40px rgba(22, 19, 17, 0.18);
    border: 1px solid rgba(22, 19, 17, 0.08);
    animation: siteToastIn 0.38s ease forwards;
    transform: translateX(0);
    opacity: 1;
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.site-toast--out {
    opacity: 0;
    transform: translateX(28px);
}

@keyframes siteToastIn {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.site-toast__icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1.1rem;
}

.site-toast__text {
    flex: 1;
    min-width: 0;
}

.site-toast__close {
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 4px;
    border: none;
    background: transparent;
    color: inherit;
    opacity: 0.45;
    cursor: pointer;
    line-height: 1;
    border-radius: 6px;
}

.site-toast__close:hover {
    opacity: 0.85;
}

.site-toast--success {
    background: #ecfdf5;
    color: #065f46;
    border-color: rgba(16, 185, 129, 0.35);
}

.site-toast--success .site-toast__icon {
    color: #059669;
}

.site-toast--danger {
    background: #fef2f2;
    color: #991b1b;
    border-color: rgba(239, 68, 68, 0.35);
}

.site-toast--danger .site-toast__icon {
    color: #dc2626;
}

.site-toast--warning {
    background: #fffbeb;
    color: #92400e;
    border-color: rgba(245, 158, 11, 0.45);
}

.site-toast--warning .site-toast__icon {
    color: #d97706;
}

@media (max-width: 575px) {
    .site-toast-stack {
        left: max(12px, env(safe-area-inset-left, 0px));
        right: max(12px, env(safe-area-inset-right, 0px));
        max-width: none;
        align-items: stretch;
    }
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;
    border-radius: 50px;

    background: #b8925a;
    color: #fff;
    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    transition: .3s ease;
}

.whatsapp-float i {
    font-size: 22px;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-3px);
}

@media(max-width:768px) {
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}
.gold{
    color:var(--primary) !important;
}
.home-why-card__title {
    font-family: 'Georgia Regular';
    font-size: clamp(1.16rem, 1.5vw, 1.25rem);
    margin-bottom: 10px;
    color: #fff;
    /* padding-top: 12px; */
}
.home-why-card__title-dark{
   font-family: 'Georgia Regular';
    font-size: clamp(1.16rem, 1.5vw, 1.25rem);
    margin-bottom: 10px;
    color: var(--secondary);
}
/* .editorMain .editorInner h1{
    position: relative;
    z-index: 1;
    font-family: 'Georgia Regular' !important;
    font-size: clamp(2.1rem, 4.1vw, 3rem) !important;
    font-weight: 500;
    color: var(--secondary) !important;
    line-height: 1.08;
    letter-spacing: -0.018em;
    margin-bottom: 0;
} */
.editorMain .editorInner h1{
    font-family: 'Georgia Regular' !important;
    font-size: clamp(1.16rem, 1.5vw, 2rem) !important;
    margin-bottom: 20px;
    color: var(--secondary) !important;
} 
.editorMain .editorInner h2, 
.editorMain .editorInner h3{
    font-family: 'Georgia Regular' !important;
    font-size: clamp(1.16rem, 1.5vw, 1.25rem) !important;
    margin-bottom: 10px;
    color: var(--secondary) !important;
}
.editorMain .editorInner h2{
    font-family: 'Georgia Regular' !important;
    font-size: clamp(1.16rem, 1.5vw, 1.25rem) !important;
    margin-bottom: 10px;
    color: var(--secondary) !important;
}
.editorMain .editorInner p , .editorMain .editorInner ul .editorMain .editorInner div{
     font-family: 'Inter' !important;
    font-size: clamp(1rem, 2.2vw, 0.875rem);
    color: var(--text) !important;
    line-height: 1.75;
    margin-bottom: 10px;
}
.itl-phone:focus-within .itl-phone__row{
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 2px rgba(184, 146, 90, 0.14);
}

.cms-builder.innerGap .cms-builder__sections.cms-builder__sections--after-lead .cms-builder-band {
    padding-bottom: 128px;
}

/* ═══════════════════════════════════════
   PAGINATION — brand gold (logo palette)
═══════════════════════════════════════ */
.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.45rem;
    --bs-pagination-font-size: 0.9rem;
    --bs-pagination-color: var(--brand-gold-dark);
    --bs-pagination-bg: #fffefb;
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: rgba(170, 132, 83, 0.38);
    --bs-pagination-border-radius: 8px;
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-bg: var(--brand-gold);
    --bs-pagination-hover-border-color: var(--brand-gold);
    --bs-pagination-focus-color: var(--brand-gold-dark);
    --bs-pagination-focus-bg: rgba(170, 132, 83, 0.12);
    --bs-pagination-focus-box-shadow: 0 0 0 3px rgba(170, 132, 83, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--brand-gold-dark);
    --bs-pagination-active-border-color: var(--brand-gold-dark);
    --bs-pagination-disabled-color: #9a8f82;
    --bs-pagination-disabled-bg: #f5f0ea;
    --bs-pagination-disabled-border-color: #e8dfd4;
    gap: 0.35rem;
}
.pagination .page-link {
    font-weight: 500;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.pagination .page-item.active .page-link {
    background: var(--brand-gold-gradient);
    border-color: var(--brand-gold-dark);
    color: #fff;
}
.pagination .page-item:not(.disabled) .page-link:hover {
    background: linear-gradient(180deg, #c4a06a 0%, var(--brand-gold) 100%);
    border-color: var(--brand-gold);
    color: #fff;
}

/* Swiper / slider dots */
.swiper-pagination-bullet {
    background: rgba(170, 132, 83, 0.35);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--brand-gold);
    opacity: 1;
}