:root {
    --burgundy: #650934;
    --burgundy-deep: #3d031f;
    --burgundy-soft: #8a1249;
    --gold: #b8912f;
    --gold-light: #e4c77a;
    --cream: #faf5ee;
    --cream-deep: #f1e6d8;
    --ink: #201414;
    --muted: #7a6a63;
    --white: #ffffff;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Jost', sans-serif;
    --utility: 'Inter', sans-serif;
    --radius: 2px;
    --maxw: 1240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    font-family: var(--utility);
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--burgundy-deep);
    line-height: 1.15;
}

h2.section-title {
    font-size: clamp(30px, 4vw, 46px);
    margin: 10px 0 0;
}

p.section-lead {
    max-width: 640px;
    color: var(--muted);
    font-size: 16px;
    margin-top: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--utility);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 34px;
    border-radius: var(--radius);
    cursor: pointer;
    border: 1px solid transparent;
    transition: .3s ease;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--burgundy-deep);
}

.btn-gold {
    background: var(--gold);
    color: var(--burgundy-deep);
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .12);
}

.btn-outline-dark {
    border-color: var(--burgundy);
    color: var(--burgundy);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--burgundy);
    color: var(--cream);
}

/* ---- signature stitch divider ---- */
.stitch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0 34px;
}

.stitch svg {
    flex: 0 0 auto;
}

.stitch-line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 14px);
}

section {
    position: relative;
}

.pad {
    padding: 100px 0;
}

@media(max-width:768px) {
    .pad {
        padding: 64px 0;
    }
}

/* ============ HEADER ============ */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 18px 0;
    transition: .35s;
    background: transparent;
}

header.site-header.active {
    background: rgba(250, 245, 238, .96);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 24px rgba(61, 3, 31, .08);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: .04em;
    color: var(--white);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

header.site-header.active .logo {
    color: var(--burgundy-deep);
}

.logo span {
    font-family: var(--utility);
    font-size: 10px;
    letter-spacing: .32em;
    color: var(--gold);
    margin-top: 4px;
}

nav.main-nav {
    display: flex;
    gap: 30px;
}

nav.main-nav a {
    font-family: var(--utility);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

header.site-header.active nav.main-nav a {
    color: var(--ink);
}

nav.main-nav a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: .3s;
}

nav.main-nav a:hover:after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.call-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--utility);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

header.site-header.active .call-box {
    color: var(--burgundy-deep);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 26px;
}

.hamburger span {
    height: 2px;
    background: var(--white);
    display: block;
}

header.site-header.active .hamburger span {
    background: var(--burgundy-deep);
}

@media(max-width:991px) {
    nav.main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 78%;
        max-width: 340px;
        background: var(--burgundy-deep);
        flex-direction: column;
        padding: 100px 34px;
        gap: 22px;
        transition: .4s;
        z-index: 950;
    }

    nav.main-nav.open {
        right: 0;
    }

    nav.main-nav a {
        color: var(--cream) !important;
        font-size: 14px;
    }

    .hamburger {
        display: flex;
    }

    .call-box span.call-text {
        display: none;
    }
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, rgba(61, 3, 31, .55), rgba(61, 3, 31, .78)), url('images/banner.webp') center/cover no-repeat;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 60px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(228, 199, 122, .5);
    padding: 8px 18px;
    border-radius: 30px;
    color: var(--gold-light);
    font-family: var(--utility);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero h1 {
    color: var(--cream);
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 500;
    max-width: 820px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero .sub-loc {
    font-family: var(--utility);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--gold-light);
    font-weight: 600;
}

.hero p.sub {
    color: #e7d9cf;
    font-size: 18px;
    max-width: 560px;
    margin-top: 5px;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(228, 199, 122, .35);
    padding-top: 10px;
}

.hero-stats .stat {
    padding: 0 30px 0 0;
    margin-right: 30px;
    border-right: 1px solid rgba(228, 199, 122, .3);
}

.hero-stats .stat:last-child {
    border-right: none;
}

.hero-stats .stat b {
    display: block;
    font-family: var(--serif);
    font-size: 36px;
    color: var(--gold-light);
    font-weight: 700;
}

.hero-stats .stat span {
    font-family: var(--utility);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #d8c6ba;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media(max-width:600px) {
    .hero-stats {
        gap: 16px;
    }

    .hero-stats .stat {
        margin-right: 16px;
        padding-right: 16px;
    }
}

/* floating enquiry card on hero (desktop) */
.hero-form-card {
    position: absolute;
    right: 24px;
    top: 120px;
    width: 340px;
    background: var(--white);
    padding: 34px 30px;
    box-shadow: 0 30px 60px rgba(61, 3, 31, .35);
    border-top: 3px solid var(--gold);
    z-index: 3;
}

.hero-form-card h3 {
    font-size: 22px;
    color: var(--burgundy-deep);
}

.hero-form-card p {
    font-family: var(--utility);
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    margin-bottom: 18px;
}

.hero-form-card input {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 12px;
    border: 1px solid #e4dacf;
    font-family: var(--sans);
    font-size: 14px;
    background: var(--cream);
}

.hero-form-card input:focus {
    outline: 1px solid var(--gold);
}

 .consent {
    font-size: 8px;
    color: var(--muted);
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-family: var(--utility);
}

.hero-form-card .btn {
    width: 100%;
    justify-content: center;
}

@media(max-width:1180px) {
    .hero-form-card {
        display: none;
    }
}

/* mobile inline form */
.mobile-hero-form {
    display: none;
}

@media(max-width:1180px) {
    .mobile-hero-form {
        display: block;
        background: var(--white);
        margin: 0 24px;
        padding: 26px 22px;
        box-shadow: 0 20px 40px rgba(61, 3, 31, .25);
        border-top: 3px solid var(--gold);
        position: relative;
        z-index: 3;
        margin-top: -40px;
    }

    .mobile-hero-form input {
        width: 100%;
        padding: 13px 14px;
        margin-bottom: 10px;
        border: 1px solid #e4dacf;
        font-size: 14px;
        background: var(--cream);
    }

    .mobile-hero-form .btn {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding-bottom: 40px;
    }
}

/* ============ OVERVIEW ============ */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-top: 20px;
}


.overview-copy p {
    color: var(--muted);
    margin: 18px 0;
    font-size: 15.5px;
}

.highlight-list {
    margin-top: 26px;
    display: grid;
    gap: 14px;
}

.highlight-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--ink);
}

.highlight-list li svg {
    flex: 0 0 auto;
    margin-top: 3px;
}

.signature-strip {
    display: flex;
    gap: 26px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.signature-chip {
    border: 1px solid var(--cream-deep);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
}

.signature-chip b {
    display: block;
    font-family: var(--serif);
    color: var(--burgundy);
    font-size: 16px;
}

.signature-chip span {
    font-family: var(--utility);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

@media(max-width:900px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

/* ============ PRICING ============ */
.pricing-section {
    background: var(--burgundy-deep);
    color: var(--cream);
}

.pricing-section .eyebrow {
    color: var(--gold-light);
}

.pricing-section h2.section-title {
    color: var(--cream);
}

.pricing-section p.section-lead {
    color: #d8c6ba;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.price-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(228, 199, 122, .25);
    padding: 40px 30px;
    text-align: center;
    transition: .35s;
}

.price-card.featured {
    background: var(--burgundy);
    border-color: var(--gold);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.price-card .ribbon {
    font-family: var(--utility);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--burgundy-deep);
    background: var(--gold);
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 18px;
}

.price-card h3 {
    font-size: 26px;
    color: var(--cream);
}

.price-card .sqft {
    font-family: var(--utility);
    font-size: 12px;
    color: #c9b6ab;
    margin-top: 8px;
    letter-spacing: .04em;
}

.price-card .price {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--gold-light);
    margin: 22px 0 4px;
}

.price-card .price sup {
    font-size: 14px;
}

.price-card .from {
    font-family: var(--utility);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c9b6ab;
}

.price-card .btn {
    margin-top: 26px;
    width: 100%;
    justify-content: center;
}

@media(max-width:860px) {
    .price-grid {
        grid-template-columns: 1fr;
    }
}

.disc-note {
    margin-top: 36px;
    font-family: var(--utility);
    font-size: 12px;
    color: #c9b6ab;
    text-align: center;
}

/* ============ LOCATION ============ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.location-grid iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(20%);
    box-shadow: 0 30px 60px rgba(61, 3, 31, .15);
}

.loc-list {
    display: grid;
    gap: 14px;
    margin-top: 6px;
}

.loc-cat {
    font-family: var(--utility);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 22px 0 10px;
    font-weight: 600;
}

.loc-cat:first-child {
    margin-top: 0;
}

.loc-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--cream-deep);
    padding: 10px 0;
    font-size: 14.5px;
}

.loc-item span:last-child {
    color: var(--muted);
    font-family: var(--utility);
    font-size: 12.5px;
}

@media(max-width:900px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ FLOOR PLAN ============ */
.fp-tabs {
    display: flex;
    gap: 10px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.fp-tab {
    font-family: var(--utility);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 14px 26px;
    border: 1px solid var(--cream-deep);
    cursor: pointer;
    background: var(--white);
    font-weight: 600;
    color: var(--muted);
}

.fp-tab.active {
    background: var(--burgundy);
    color: var(--cream);
    border-color: var(--burgundy);
}

.fp-panel {
    display: none;
    margin-top: 34px;
    display: none;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
}

.fp-panel.active {
    display: grid;
}

.fp-panel img {
    filter: blur(2px);
}

.fp-detail-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.fp-detail-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--cream-deep);
    padding: 10px 0;
    font-size: 14.5px;
}

.fp-detail-list li b {
    color: var(--burgundy-deep);
    font-weight: 500;
}

@media(max-width:860px) {
    .fp-panel.active {
        grid-template-columns: 1fr;
    }
}

/* ============ AMENITIES ============ */


.amen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 44px;
    background: var(--cream-deep);
}

.amen-item {
    background: var(--white);
    padding: 38px 24px;
    text-align: center;
    transition: .3s;
}

.amen-item:hover {
    background: var(--burgundy);
    color: var(--cream);
}

.amen-item:hover svg {
    stroke: var(--gold-light);
}

.amen-item svg {
    margin: 0 auto 16px;
    stroke: var(--burgundy);
    transition: .3s;
}

.amen-item p {
    font-family: var(--utility);
    font-size: 12.5px;
    letter-spacing: .03em;
    font-weight: 500;
}

@media(max-width:900px) {
    .amen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ GALLERY ============ */

#gallery {
    background: var(--cream-deep);
}

.gallery-grid {
    columns: 3 220px;
    column-gap: 14px;
    margin-top: 44px;
}

.gallery-grid img {
    margin-bottom: 14px;
    cursor: zoom-in;
    transition: .3s;
}

.gallery-grid img:hover {
    opacity: .85;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(32, 20, 20, .94);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-close {
    position: absolute;
    top: 26px;
    right: 34px;
    color: var(--cream);
    font-size: 34px;
    cursor: pointer;
    font-family: var(--serif);
}

@media(max-width:768px) {
    .gallery-grid {
        columns: 2 160px;
    }
}

/* ============ VIRTUAL TOUR ============ */
.tour-section {
    background: var(--burgundy-deep);
}

.tour-wrap {
    position: relative;
    margin-top: 44px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}

.tour-wrap img {
    width: 100%;
    filter: brightness(.6);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 14px rgba(184, 145, 47, .18);
}

.play-btn svg {
    margin-left: 4px;
}

.tour-caption {
    position: absolute;
    bottom: 26px;
    left: 26px;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 20px;
}

/* ============ CONTACT / FOOTER ============ */
.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 44px;
}

.contact-form {
    background: var(--white);
    padding: 44px;
    box-shadow: 0 20px 50px rgba(61, 3, 31, .1);
    border-top: 3px solid var(--gold);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid var(--cream-deep);
    font-family: var(--sans);
    background: var(--cream);
    font-size: 14px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.info-row b {
    display: block;
    font-family: var(--utility);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.info-row p {
    font-size: 15px;
    color: var(--ink);
}

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

footer.main-footer {
    background: var(--burgundy-deep);
    color: #d8c6ba;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(228, 199, 122, .2);
}

.footer-logo {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--cream);
}

.footer-cols {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    color: var(--gold-light);
    font-family: var(--utility);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    font-size: 13.5px;
    margin-bottom: 10px;
    color: #d8c6ba;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.disclaimer-box {
    background: #efe4d8;
    padding: 26px 0;
}

.disclaimer-box p {
    font-family: var(--utility);
    font-size: 11px;
    line-height: 1.8;
    color: #6b5a52;
    max-width: 1200px;
}

.footer-bottom {
    background: var(--burgundy-deep);
    border-top: 1px solid rgba(228, 199, 122, .15);
    padding: 18px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--utility);
    font-size: 12px;
}

.footer-bottom a {
    color: #c0c0c0;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--burgundy-deep);
    display: none;
    z-index: 850;
    padding: 12px 18px;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .25);
}

.sticky-cta .row {
    display: flex;
    gap: 12px;
}

.sticky-cta a {
    flex: 1;
    text-align: center;
    font-family: var(--utility);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 13px;
    border: 1px solid var(--gold);
    color: var(--cream);
}

.sticky-cta a.fill {
    background: var(--gold);
    color: var(--burgundy-deep);
    border-color: var(--gold);
}

@media(max-width:768px) {
    .sticky-cta {
        display: block;
    }
}
/* ============ FLOATING CHAT FAB ============ */
.fab-wrap {
    position: fixed;
    left: 24px;
    bottom: 90px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

@media(max-width:768px) {
    .fab-wrap {
        bottom: 80px;
        left: 16px;
    }
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
}

.fab-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 10px 10px 16px;
    border-radius: 30px;
    box-shadow: 0 10px 24px rgba(61, 3, 31, .22);
    font-family: var(--utility);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--burgundy-deep);
    flex-direction: row-reverse;
    
    justify-content: space-between;
}

.fab-option .ic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 auto;
}

.fab-option.wa .ic {
    background: #25D366;
}

.fab-option.call .ic {
    background: var(--burgundy);
}

.fab-option.chat .ic {
    background: var(--gold);
}

.fab-main {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(101, 9, 52, .5);
    position: relative;
}

.fab-main:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: pulse 2.2s infinite;
}

.fab-main svg {
    transition: .3s;
}

.fab-main.open svg {
    transform: rotate(90deg);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
/* ============ LEAD MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(32, 20, 20, .85);
    z-index: 1300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--cream);
    max-width: 440px;
    width: 100%;
    padding: 44px 36px;
    position: relative;
    border-top: 4px solid var(--gold);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
    color: var(--muted);
    font-family: var(--serif);
}

.modal-box h3 {
    font-size: 24px;
    color: var(--burgundy-deep);
}

.modal-box p {
    font-family: var(--utility);
    font-size: 12.5px;
    color: var(--muted);
    margin: 8px 0 22px;
}

.modal-box input {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 12px;
    border: 1px solid var(--cream-deep);
    background: var(--white);
    font-size: 14px;
}

.modal-box .btn {
    width: 100%;
    justify-content: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Button with GIF */
        #chatbot-btn {
            position: fixed;
            bottom: 80px;
            right: 80px;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            animation: bounce 1.5s infinite;
            z-index: 999;
        }

        #chatbot-btn img {
            width: 100%;
            height: 100%;
        }

        /* Animation */
        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        /* Chatbox */
        #chatbot {
            position: fixed;
            bottom: 95px;
            right: 20px;
            width: 330px;
            height: 70%;
            background: #fff;
            border-radius: 12px;
            display: none;
            flex-direction: column;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            z-index: 999999;
        }

        /* Header */
        #chat-header {
            background: var(--burgundy-deep);
            color: #fff;
            padding: 10px;
            display: flex;
            justify-content: space-between;
        }

        .profile {
            display: flex;
            align-items: center;
        }

        .profile img {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            margin-right: 8px;
        }

        .close-btn {
            cursor: pointer;
        }

        /* Chat body */
        #chat-body {
            flex: 1;
            padding: 10px;
            overflow-y: auto;
        }

        /* Messages */
        .message {
            margin: 8px 0;
            padding: 8px 15px;
            border-radius: 20px;
            max-width: 75%;
        }

        .bot {
            background: #f1f1f1;
        }

        .user {
            background: #000000;
            color: #fff;
            margin-left: auto;
        }

        /* Options */
        .option {
            background: #000000;
            color: #fff;
            padding: 8px 15px;
            max-width: 75%;
            margin: 5px 0;
            border-radius: 20px;
            cursor: pointer;
            margin-left: auto;
        }

        /* Input */
        #chat-input {
            display: flex;
            border-top: 1px solid #ddd;
        }

        #chat-input input {
            flex: 1;
            padding: 10px;
            border: none;
        }

        #chat-input button {
            background: var(--burgundy-deep);
            color: #fff;
            border: none;
            padding: 10px;
        }


        /* Typing Loader */
        .typing {
            display: inline-block;
            padding: 8px 12px;
            background: #f1f1f1;
            border-radius: 10px;
        }

        .typing span {
            display: inline-block;
            width: 6px;
            height: 6px;
            margin: 0 2px;
            background: #555;
            border-radius: 50%;
            animation: blink 1.4s infinite;
        }

        .typing span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes blink {

            0%,
            80%,
            100% {
                opacity: 0;
            }

            40% {
                opacity: 1;
            }
        }

        @media (max-width:768px) {
            #chatbot {
                bottom: 95px;
                right: 5%;
                width: 90%;
                height: 80%;
            }

            #chatbot-btn {
                bottom: 80px;
                right: 20px;
            }

        }


@media(max-width:991px) {
    .hero .sub-loc {
    font-size: 13px;
    
        padding-top: 20px;
    }


.hero-stats {
    margin-top: 10px;
    padding-top: 0px;
}
.hero-stats .stat b {
    font-size: 30px;
}
.hero-cta{
    
    margin-top: 20px;
}
.btn{
    padding: 10px 20px;
    
    font-size: 11px;
}
.play-btn{
    width: 45px;
    height: 45px;
}
.tour-caption {
    bottom: 0px;
    left: 10px;}

    .tour-wrap img {
    height: 200px;}
    .sticky-cta a {
        padding: 8px;
    }

    
}
