/* ============================================
   CSS Variables & Base Styles
   ============================================ */
:root {
    --bp-brown: #8B6F47;
    --bp-tan: #A0826D;
    --bp-beige: #D4C4A8;
    --bp-gold: #C5A059;
    --bp-cream: #F5F5F0;
    --bp-white: #FFFFFF;
    --bp-black: #111111;
    --overlay-strong: rgba(139, 111, 71, 0.6);
    --overlay-light: rgba(139, 111, 71, 0.3);
}

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

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
}

@media (min-width: 1024px) {
    html {
        zoom: 0.8;
        -webkit-zoom: 0.8;
        -moz-transform: scale(0.8);
        -moz-transform-origin: top left;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bp-cream);
    color: var(--bp-brown);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    height: 100%;
}

/* ============================================
   Utility Classes
   ============================================ */
.bp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .bp-container {
        padding: 0 1.5rem;
    }
}

.bp-header-display {
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    color: var(--bp-brown);
}

.bp-header-display.light {
    color: var(--bp-white);
}

.bp-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bp-gold);
    margin-bottom: 1rem;
    display: block;
}

.contact .bp-subtitle {
    color: var(--bp-gold);
    opacity: 1;
    font-size: 0.875rem;
}

.bp-body-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #333333;
    font-size: 1rem;
}

.bp-body-text.light {
    color: #E5E5E5;
}

.italic-light {
    font-style: italic;
    opacity: 0.6;
    font-weight: 300;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

@media (min-width: 768px) {
    .btn {
        padding: 1rem 2.5rem;
    }
}

.btn-primary {
    background-color: var(--bp-brown);
    color: var(--bp-white);
    border: 1px solid var(--bp-brown);
}

.btn-primary:hover {
    background-color: var(--bp-gold);
    border-color: var(--bp-gold);
    color: var(--bp-white);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--bp-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
    background-color: var(--bp-white);
    color: var(--bp-brown);
    border-color: var(--bp-white);
}

.btn-white {
    background-color: rgba(255, 255, 255, 1);
    color: var(--bp-brown);
    border: 2px solid rgba(255, 255, 255, 1);
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
    width: 100%;
    margin-top: auto;
}

.btn-white:hover {
    background-color: var(--bp-gold);
    color: rgba(255, 255, 255, 1);
    border-color: var(--bp-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--bp-brown);
    border: 1px solid rgba(139, 111, 71, 0.2);
    width: 100%;
}

.btn-outline:hover {
    background-color: var(--bp-brown);
    color: var(--bp-white);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.5s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .navbar {
        padding: 3rem 0;
    }
}

.navbar.scrolled {
    background: rgba(139, 111, 71, 0.65);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    z-index: 50;
    margin-left: -1rem;
}

.logo-img {
    height: 80px;
    transition: height 0.5s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@media (min-width: 768px) {
    .logo-img {
        height: 120px;
    }
}

.navbar.scrolled .logo-img {
    height: 100px;
}

.logo-tagline {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-tagline {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.nav-links-desktop {
    display: none;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--bp-white);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--bp-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--bp-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.phone-number-box {
    display: none;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .phone-number-box {
        display: block;
    }
}

.phone-number-box:hover {
    background: rgba(197, 160, 89, 0.2);
    border-color: var(--bp-gold);
    box-shadow: 0 6px 24px rgba(197, 160, 89, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.phone-link {
    color: var(--bp-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
    display: block;
}

.phone-number-box:hover .phone-link {
    color: var(--bp-gold);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 50;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    touch-action: manipulation;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.menu-icon {
    width: 26px;
    height: 3px;
    background-color: var(--bp-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(139, 111, 71, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(-100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-nav-link {
    color: var(--bp-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
}

@media (min-width: 480px) {
    .mobile-nav-link {
        font-size: 1.875rem;
    }
}

.mobile-nav-link:hover {
    color: var(--bp-gold);
}

.btn-inquire-mobile {
    margin-top: 2rem;
    padding: 1rem 2rem;
    border: 1px solid var(--bp-white);
    background: transparent;
    color: var(--bp-white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

@media (min-width: 480px) {
    .btn-inquire-mobile {
        padding: 1rem 2.5rem;
    }
}

.btn-inquire-mobile:hover {
    background-color: var(--bp-white);
    color: var(--bp-brown);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    background-color: rgba(139, 111, 71, 0.2);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 1.5rem;
        margin-top: 5rem;
    }
}

.hero-badge {
    display: inline-block;
    color: var(--bp-white);
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.1);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.hero-logo {
    height: 180px;
    width: auto;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
    opacity: 1;
}

@media (min-width: 768px) {
    .hero-logo {
        height: 280px;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-logo {
        height: 360px;
    }
}

.hero-description {
    color: var(--bp-white);
    font-size: 1rem;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
        margin: 0 auto 3rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-price {
    color: var(--bp-white);
    font-weight: 500;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bp-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, var(--bp-white), transparent);
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 4rem 0;
    background-color: var(--bp-cream);
    overflow: hidden;
    position: relative;
    scroll-margin-top: 5rem;
}

@media (min-width: 768px) {
    .about {
        padding: 6rem 0;
        scroll-margin-top: 8rem;
    }
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    background-color: #EAEAE5;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 7fr 5fr;
        gap: 5rem;
    }
}

.about-images {
    position: relative;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: end;
}

@media (min-width: 768px) {
    .about-images {
        gap: 2rem;
    }
}

.about-img-1 {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: filter 0.7s ease;
}

.about-img-1:hover {
    filter: grayscale(0);
}

.about-img-2 {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 4px solid var(--bp-gold);
    transition: filter 0.7s ease;
}

.about-img-2:hover {
    filter: grayscale(0);
}

.about-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(139, 111, 71, 0.5);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    color: var(--bp-white);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 12rem;
    height: 12rem;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-number {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.badge-text {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .about-badge {
        display: flex;
    }
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-style: italic;
}

.badge-text {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
    font-weight: 600;
}

.about-content {
    padding-top: 2rem;
}

.subtitle-line {
    display: inline-block;
    width: 2rem;
    height: 1px;
    background-color: var(--bp-gold);
    margin-right: 1rem;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 3.75rem;
    }
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #333333;
    line-height: 1.8;
}

.units-list {
    border-top: 1px solid rgba(139, 111, 71, 0.1);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.unit-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 1rem;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unit-item:hover {
    border-bottom-color: rgba(197, 160, 89, 0.2);
}

.unit-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--bp-brown);
    transition: color 0.3s ease;
}

.unit-item:hover .unit-name {
    color: var(--bp-gold);
}

.unit-sqft {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(139, 111, 71, 0.6);
    font-weight: 600;
    margin-top: 0.25rem;
}

.unit-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.unit-action-text {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--bp-brown);
    opacity: 0;
    transform: translateX(-0.5rem);
    transition: all 0.3s ease;
}

.unit-item:hover .unit-action-text {
    opacity: 1;
    transform: translateX(0);
}

.unit-action-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--bp-white);
    border: 1px solid rgba(139, 111, 71, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bp-brown);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.unit-item:hover .unit-action-icon {
    background-color: var(--bp-brown);
    color: var(--bp-white);
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.45) 0%, rgba(107, 86, 56, 0.5) 100%);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    color: var(--bp-white);
    padding: 8rem 0;
    scroll-margin-top: 8rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 60px rgba(0, 0, 0, 0.2);
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

.stat-item {
    position: relative;
    cursor: default;
    padding: 2rem 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bp-gold), transparent);
    transition: width 0.5s ease;
}

.stat-item:hover::before {
    width: 80%;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--bp-white);
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 5rem;
    }
}

.stat-item:hover .stat-value {
    color: var(--bp-gold);
    transform: translateY(-4px);
    text-shadow: 0 4px 30px rgba(197, 160, 89, 0.4);
}

.stat-line {
    height: 2px;
    width: 4rem;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0 auto 1.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--bp-gold), var(--bp-beige));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-line {
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.stat-item:hover .stat-line::after {
    width: 100%;
}

.stat-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-item:hover .stat-label {
    color: var(--bp-white);
    letter-spacing: 0.4em;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    padding: 6rem 0;
    background-color: var(--bp-cream);
    scroll-margin-top: 8rem;
}

.gallery-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .gallery-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.gallery-title {
    font-size: 2.5rem;
    color: var(--bp-brown);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 3rem;
    }
}

.gallery-view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bp-brown);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.625rem;
    font-weight: 700;
    margin-top: 2rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--bp-brown);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
    .gallery-view-all {
        margin-top: 0;
    }
}

.gallery-view-all:hover {
    color: var(--bp-gold);
    border-bottom-color: var(--bp-gold);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.gallery-view-all:hover .arrow-icon {
    transform: translate(0.25rem, -0.25rem);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    height: 400px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        height: 500px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease-in-out;
    filter: grayscale(10%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(139, 111, 71, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--bp-white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid var(--bp-white);
    padding: 0.75rem 1.5rem;
}

/* ============================================
   Virtual Sales Gallery Section
   ============================================ */
.virtual-sales-gallery {
    padding: 4rem 0;
    background-color: var(--bp-white);
    scroll-margin-top: 5rem;
}

@media (min-width: 768px) {
    .virtual-sales-gallery {
        padding: 6rem 0;
        scroll-margin-top: 8rem;
    }
}

.virtual-gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .virtual-gallery-header {
        margin-bottom: 4rem;
    }
}

.virtual-gallery-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .virtual-gallery-title {
        font-size: 3.75rem;
    }
}

.virtual-gallery-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    max-width: 36rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .virtual-gallery-description {
        font-size: 1.125rem;
    }
}

.virtual-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.virtual-gallery-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bp-cream);
}

.virtual-gallery-preview:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.virtual-gallery-preview:active {
    transform: translateY(-2px) scale(0.98);
}

.virtual-gallery-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.virtual-gallery-preview:hover .virtual-gallery-background {
    filter: brightness(1);
}

.virtual-gallery-branding {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    text-align: center;
    padding: 2rem 3rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .virtual-gallery-branding {
        padding: 2.5rem 4rem;
    }
}

.virtual-gallery-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    opacity: 1;
    display: block;
}

@media (min-width: 768px) {
    .virtual-gallery-logo {
        height: 160px;
    }
}

.virtual-gallery-enter-btn {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--bp-brown);
    border: 2px solid rgba(255, 255, 255, 1);
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    z-index: 10;
    min-height: 44px;
    touch-action: manipulation;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.virtual-gallery-enter-btn:hover {
    background-color: var(--bp-brown);
    color: var(--bp-white);
    border-color: var(--bp-brown);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .virtual-gallery-enter-btn {
        padding: 1.25rem 4rem;
        font-size: 1.125rem;
    }
}

.virtual-gallery-modal {
    z-index: 200 !important;
    background-color: rgba(0, 0, 0, 0);
    padding: 0 !important;
    margin: 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.virtual-gallery-modal.open {
    display: flex !important;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.98);
    pointer-events: all;
    align-items: center !important;
    justify-content: center !important;
}

.virtual-gallery-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    opacity: 0;
    transform: scale(0.85);
    transform-origin: center center;
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, 
                transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
    margin: 0;
    padding: 0;
}

.virtual-gallery-modal.open .virtual-gallery-frame {
    opacity: 1;
    transform: scale(1);
}

.virtual-gallery-close {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 201;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bp-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: manipulation;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
    transition: opacity 0.4s ease 0.5s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s, background-color 0.3s ease, border-color 0.3s ease;
}

.virtual-gallery-modal.open .virtual-gallery-close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.virtual-gallery-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.virtual-gallery-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    border: 0;
    display: block;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}

.virtual-gallery-modal.open .virtual-gallery-frame iframe {
    opacity: 1;
}

@media (min-width: 768px) {
    .virtual-gallery-close {
        top: 2rem;
        left: 2rem;
        width: 48px;
        height: 48px;
        font-size: 1.75rem;
    }
}

/* ============================================
   Location Section
   ============================================ */
.location {
    padding: 4rem 0;
    background-color: var(--bp-cream);
    overflow: hidden;
    scroll-margin-top: 5rem;
}

@media (min-width: 768px) {
    .location {
        padding: 8rem 0;
        scroll-margin-top: 8rem;
    }
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1.4fr;
        gap: 5rem;
        align-items: stretch;
    }
}

.location-content {
    order: 2;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .location-content {
        order: 1;
    }
}

.location-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .location-title {
        font-size: 3.75rem;
    }
}

.location-text {
    margin-bottom: 2.5rem;
    max-width: 32rem;
    color: #333333;
    line-height: 1.8;
}

.hotspots-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hotspots-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.5rem;
    }
}

.hotspot-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    cursor: default;
    min-height: 60px;
}

.hotspot-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: rgba(139, 111, 71, 0.05);
    color: var(--bp-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hotspot-item:hover .hotspot-icon {
    background-color: var(--bp-brown);
    color: var(--bp-white);
}

.hotspot-info {
    flex: 1;
    margin-left: 0.75rem;
    min-width: 0;
}

.hotspot-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--bp-brown);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .hotspot-info h4 {
        font-size: 1.125rem;
    }
}

.hotspot-info span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    display: block;
    margin-top: 0.125rem;
}

.hotspot-distance {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--bp-gold);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--bp-brown);
    border-bottom: 1px solid var(--bp-brown);
    padding-bottom: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: var(--bp-gold);
    border-bottom-color: var(--bp-gold);
}

.location-map-container {
    position: relative;
    order: 1;
    display: flex;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .location-map-container {
        order: 2;
    }
}

.location-map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .location-map-wrapper {
        min-height: 500px;
    }
}

@media (min-width: 1024px) {
    .location-map-wrapper {
        height: 100%;
        min-height: auto;
    }
}

.location-map-wrapper iframe {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: calc(100% + 40px);
    border: 0;
    display: block;
}


/* ============================================
   Amenities Section
   ============================================ */
.amenities {
    padding: 5rem 0;
    background-color: var(--bp-white);
    scroll-margin-top: 8rem;
}

.amenities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.amenities-title {
    font-size: 2.5rem;
    color: var(--bp-brown);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .amenities-title {
        font-size: 3rem;
    }
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    height: auto;
}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: 5fr 7fr;
        height: 600px;
    }
}

.amenities-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.amenity-nav-item {
    padding: 1.5rem;
    border-left: 2px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.5s ease;
}

.amenity-nav-item.active {
    border-left-color: var(--bp-gold);
    background-color: rgba(139, 111, 71, 0.05);
}

.amenity-nav-item:hover {
    border-left-color: rgba(139, 111, 71, 0.3);
}

.amenity-id {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #999;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.amenity-nav-item.active .amenity-id {
    color: var(--bp-gold);
}

.amenity-nav-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #999;
    transition: color 0.3s ease;
}

.amenity-nav-item.active h4 {
    color: var(--bp-brown);
}

.amenity-nav-item:hover h4 {
    color: rgba(139, 111, 71, 0.7);
}

.amenity-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 1rem;
}

.amenity-nav-item.active .amenity-details {
    max-height: 10rem;
    opacity: 1;
}

.amenity-details p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.amenity-details ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    list-style: none;
}

.amenity-details li {
    font-size: 0.75rem;
    color: var(--bp-brown);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amenity-details li::before {
    content: '';
    width: 0.25rem;
    height: 0.25rem;
    background-color: var(--bp-gold);
    border-radius: 50%;
}

.amenities-visual {
    position: relative;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
    .amenities-visual {
        height: 100%;
    }
}

.amenity-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.7s ease-in-out;
}

.amenity-image.active {
    opacity: 1;
    z-index: 10;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease-linear;
}

.amenity-image:hover img {
    transform: scale(1);
}

.amenity-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 111, 71, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--bp-white);
}

.amenity-badge {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
    display: inline-block;
    width: fit-content;
}

.amenity-image-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
}

/* ============================================
   Booking Section
   ============================================ */
.booking {
    padding: 5rem 0;
    background-color: var(--bp-cream);
    scroll-margin-top: 8rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.booking-content {
    padding-right: 0;
}

@media (min-width: 1024px) {
    .booking-content {
        padding-right: 3rem;
    }
}

.subtitle-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--bp-gold);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.booking-title {
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .booking-title {
        font-size: 4.5rem;
    }
}

.booking-text {
    margin-bottom: 2.5rem;
    color: #333333;
    line-height: 1.8;
}

.booking-agent {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 111, 71, 0.1);
}

.agent-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--bp-brown);
    color: var(--bp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    border: 2px solid rgba(139, 111, 71, 0.1);
}

.agent-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--bp-brown);
}

.agent-role {
    font-size: 0.625rem;
    color: rgba(139, 111, 71, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.booking-options {
    display: flex;
    gap: 1rem;
}

.booking-option {
    background-color: var(--bp-white);
    padding: 1rem;
    width: 10rem;
    text-align: center;
    border: 1px solid rgba(139, 111, 71, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.booking-option.active {
    border-color: var(--bp-brown);
    box-shadow: 0 0 0 1px var(--bp-brown);
}

.option-icon {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.booking-option span {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--bp-brown);
    display: block;
}

.booking-widget {
    background-color: var(--bp-white);
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--bp-brown);
}

@media (min-width: 768px) {
    .booking-widget {
        padding: 3rem;
    }
}

.booking-widget h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--bp-brown);
    margin-bottom: 2.5rem;
}

.booking-dates {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.date-btn {
    padding: 1rem;
    border: 1px solid #e5e5e5;
    background: transparent;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.date-btn span {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.date-btn.active {
    border-color: var(--bp-brown);
    background-color: var(--bp-brown);
    color: var(--bp-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.date-btn:hover:not(.active) {
    border-color: var(--bp-gold);
    color: var(--bp-brown);
}

.booking-times {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.time-btn {
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-family: 'Montserrat', sans-serif;
}

.time-btn.active {
    border-color: var(--bp-gold);
    color: var(--bp-brown);
    font-weight: 700;
    background-color: rgba(197, 160, 89, 0.1);
}

.time-btn:hover:not(.active) {
    border-color: #999;
}

.booking-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.75rem 0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--bp-brown);
    background: transparent;
    font-family: 'Montserrat', sans-serif;
}

.booking-input:focus {
    outline: none;
    border-bottom-color: var(--bp-brown);
}

.booking-input::placeholder {
    color: #999;
}

.booking-submit {
    margin-top: 2.5rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.75) 0%, rgba(107, 86, 56, 0.8) 100%);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    color: var(--bp-white);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .contact {
        padding: 8rem 0;
        scroll-margin-top: 8rem;
    }
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="1"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
    align-items: start;
}

@media (min-width: 768px) {
    .contact-grid {
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: stretch;
    }
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 3.5rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-description {
    margin-bottom: 2rem;
    max-width: 28rem;
    opacity: 1;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.contact-details {
    display: block;
}

.contact-detail h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bp-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-detail p {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--bp-white);
    transition: color 0.3s ease;
    cursor: pointer;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-detail p:hover {
    color: var(--bp-gold);
}

.contact-form {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.25);
    padding: 2rem;
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .contact-form {
        margin-top: 0;
        align-self: stretch;
    }
}

.contact-form input {
    color: rgba(255, 255, 255, 1) !important;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 1) !important;
    opacity: 1 !important;
    font-size: 1.125rem;
    font-weight: 500;
}

.contact-form .form-group label {
    color: rgba(255, 255, 255, 1) !important;
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.contact-form .form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    padding: 1.25rem 0;
    color: rgba(255, 255, 255, 1) !important;
    font-size: 1.125rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.contact-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.95) !important;
    opacity: 1 !important;
    font-size: 1.125rem;
    font-weight: 500;
}

.contact-form .form-group input:focus {
    outline: none;
    border-bottom-color: var(--bp-gold);
}

.contact-form .form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: rgba(255, 255, 255, 1) !important;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .contact-form .form-group label {
        font-size: 1.125rem;
        top: 1rem;
    }
}

.contact-form .form-group input:focus + label,
.contact-form .form-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.form-consent {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 1) !important;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    flex: 1;
}

.form-consent a {
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: underline;
    font-weight: 600;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.75) 0%, rgba(107, 86, 56, 0.8) 100%);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    color: var(--bp-white);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        align-items: center;
    }
}

.footer-brand {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-brand {
        margin-bottom: 0;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@media (min-width: 768px) {
    .footer-logo img {
        height: 70px;
    }
}

.footer-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bp-white);
    display: none;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--bp-gold);
    font-weight: 500;
    margin-left: 0.25rem;
    display: none;
}

.footer-brand p {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 18rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bp-white);
}

.footer-disclaimer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-disclaimer {
        text-align: left;
    }
}

.footer-disclaimer p {
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    max-width: 80rem;
}

/* ============================================
   Modals
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.modal.open {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    cursor: pointer;
    z-index: 50;
    padding: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.modal-close:hover {
    color: var(--bp-white);
}

/* Gallery Modal */
.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

@media (min-width: 768px) {
    .gallery-modal-content {
        height: 80vh;
        padding: 5rem;
    }
}

#gallery-main-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gallery-nav {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.gallery-nav:hover {
    color: var(--bp-white);
}

.gallery-prev {
    left: 1rem;
}

@media (min-width: 768px) {
    .gallery-prev {
        left: 2rem;
    }
}

.gallery-next {
    right: 1rem;
}

@media (min-width: 768px) {
    .gallery-next {
        right: 2rem;
    }
}

.gallery-counter {
    position: absolute;
    bottom: 8rem;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

.gallery-thumbnails {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.gallery-thumbnail {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border: 2px solid transparent;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .gallery-thumbnail {
        width: 4rem;
        height: 4rem;
    }
}

.gallery-thumbnail:hover {
    opacity: 0.8;
}

.gallery-thumbnail.active {
    border-color: var(--bp-gold);
    opacity: 1;
}

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

/* Floor Plan Modal */
.floorplan-modal-content {
    background-color: var(--bp-white);
    width: 100%;
    max-width: 75rem;
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .floorplan-modal-content {
        flex-direction: row;
    }
}

.floorplan-info {
    width: 100%;
    background-color: var(--bp-cream);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-right: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
    .floorplan-info {
        width: 33.333%;
        padding: 3rem;
    }
}

.floorplan-type {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--bp-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.floorplan-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--bp-brown);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .floorplan-title {
        font-size: 3rem;
    }
}

.floorplan-desc {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.floorplan-specs {
    border-top: 1px solid rgba(139, 111, 71, 0.1);
    padding-top: 2rem;
    margin-bottom: auto;
}

.floorplan-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--bp-brown);
}

.floorplan-btn {
    margin-top: 1rem;
    width: 100%;
}

.floorplan-toggle-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.floorplan-image-container {
    width: 100%;
    background-color: var(--bp-white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e5e5e5" fill-opacity="0.5"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
}

@media (min-width: 768px) {
    .floorplan-image-container {
        width: 66.666%;
        padding: 4rem;
    }
}

.floorplan-toggle-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.floorplan-toggle {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #e5e5e5;
    padding: 0.25rem;
    display: flex;
    width: fit-content;
}

.floorplan-toggle span {
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-active {
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    background-color: var(--bp-brown);
    color: var(--bp-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.floorplan-toggle span:not(.toggle-active) {
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #999;
    cursor: pointer;
}

.floorplan-toggle span:not(.toggle-active):hover {
    color: var(--bp-brown);
}

#floorplan-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.floorplan-image-container:hover #floorplan-image {
    transform: scale(1.05);
}

/* Virtual Tour Modal */
.virtual-tour-modal-content {
    background-color: var(--bp-cream);
    width: 100%;
    max-width: 32rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 160, 89, 0.2);
    overflow: hidden;
}

.virtual-tour-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--bp-brown);
    color: var(--bp-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.virtual-tour-icon i {
    font-size: 2rem;
}

.virtual-tour-badge {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--bp-gold);
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
}

.virtual-tour-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--bp-brown);
    text-align: center;
    margin-bottom: 1rem;
}

.virtual-tour-modal-content p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 3rem;
}

.virtual-tour-form {
    padding: 0 3rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.virtual-tour-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.75rem 0;
    text-align: center;
    background: transparent;
    color: var(--bp-brown);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.virtual-tour-form input:focus {
    outline: none;
    border-bottom-color: var(--bp-brown);
}

.virtual-tour-submit {
    width: 100%;
    text-align: center;
}

.virtual-tour-footer {
    background-color: #f5f5f5;
    padding: 1rem;
    text-align: center;
}

.virtual-tour-footer p {
    font-size: 0.625rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
    padding: 0;
}

/* Inquire Modal */
.inquire-modal-content {
    position: relative;
    background-color: var(--bp-white);
    width: 100%;
    max-width: 28rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(139, 111, 71, 0.15);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(139, 111, 71, 0.1);
}

#inquire-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

#inquire-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.45);
    color: var(--bp-white);
}

.inquire-header {
    background-color: var(--bp-brown);
    color: var(--bp-white);
    padding: 2rem;
    text-align: center;
}

.inquire-header span {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--bp-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.inquire-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    color: var(--bp-white);
    margin-bottom: 0.5rem;
}

.inquire-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.inquire-form {
    padding: 2rem;
    overflow-y: auto;
}

.inquire-form .form-group {
    margin-bottom: 1.5rem;
}

.inquire-form .form-group input,
#inquire-modal .form-group input,
.inquire-modal-content .form-group input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #e5e5e5;
    padding: 0.875rem 0;
    font-size: 1rem;
    color: var(--bp-brown) !important;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: border-color 0.3s ease;
}

/* Override any general form-group input rules for inquire form */
#inquire-modal .inquire-form .form-group input {
    color: var(--bp-brown) !important;
}

.inquire-form .form-group input:focus {
    outline: none;
    border-bottom-color: var(--bp-gold);
    border-bottom-width: 2px;
}

.inquire-form .form-group input::placeholder {
    color: transparent;
}

.inquire-form .form-group label {
    position: absolute;
    left: 0;
    top: 0.875rem;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
}

.inquire-form .form-group input:focus + label,
.inquire-form .form-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bp-gold);
    font-weight: 600;
}

.form-radio-group {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.form-radio-group > label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #555;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.radio-options {
    display: flex;
    gap: 1rem;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-options input[type="radio"] {
    accent-color: var(--bp-gold);
}

.radio-options span {
    font-size: 0.9375rem;
    color: var(--bp-brown);
    font-weight: 500;
}

.form-checkbox {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
    margin-bottom: 1.5rem;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    accent-color: var(--bp-gold);
    margin-top: 0.25rem;
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.form-checkbox span {
    font-size: 0.8125rem;
    color: #444;
    line-height: 1.6;
    font-weight: 400;
}

/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bp-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--bp-brown);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bp-gold);
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(139, 111, 71, 0.5);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    overflow: hidden;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .cookie-consent-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
        padding: 0 2rem;
    }
}

.cookie-consent-text {
    flex: 1;
    color: var(--bp-white);
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.cookie-consent-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--bp-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cookie-consent-text p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.cookie-consent-text a {
    color: var(--bp-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
    color: var(--bp-white);
}

.cookie-consent-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .cookie-consent-buttons {
        flex-direction: row;
        width: auto;
        flex-shrink: 0;
        min-width: fit-content;
    }
}

.cookie-btn {
    min-width: 140px;
    white-space: nowrap;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-text {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bp-white);
}

.btn-text:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    z-index: 2000;
}

.cookie-settings-modal .modal-close {
    color: var(--bp-brown);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 111, 71, 0.2);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.cookie-settings-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(197, 160, 89, 0.4);
    color: var(--bp-brown);
    transform: rotate(90deg);
}

.cookie-modal-content {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bp-cream);
    color: var(--bp-brown);
    border: 2px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(139, 111, 71, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(139, 111, 71, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    padding: 3rem;
}

.cookie-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(197, 160, 89, 0.5) 20%, 
        rgba(197, 160, 89, 0.8) 50%, 
        rgba(197, 160, 89, 0.5) 80%, 
        transparent 100%);
    pointer-events: none;
}

.cookie-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--bp-brown);
}

.cookie-modal-content > p {
    margin-bottom: 2rem;
    color: rgba(139, 111, 71, 0.8);
    font-size: 0.9375rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    padding-bottom: 1.5rem;
    border: 1px solid rgba(139, 111, 71, 0.15);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.1);
}

.cookie-category:last-child {
    margin-bottom: 1.5rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--bp-brown);
    margin: 0;
}

.cookie-category-desc {
    font-size: 0.875rem;
    color: rgba(139, 111, 71, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(139, 111, 71, 0.3);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--bp-gold);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 111, 71, 0.2);
    flex-wrap: wrap;
}

.cookie-settings-buttons .btn {
    flex: 1;
    min-width: 150px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-settings-buttons .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-settings-buttons .btn:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .cookie-consent-banner {
        padding: 1rem;
    }
    
    .cookie-consent-text h4 {
        font-size: 1.125rem;
    }
    
    .cookie-consent-text p {
        font-size: 0.8125rem;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
    }
    
    .cookie-modal-content h2 {
        font-size: 1.5rem;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Mobile optimization (preserve desktop state)
   ============================================ */
@media (max-width: 767px) {
    html {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }
    
    body {
        overflow-x: hidden;
        min-width: 0;
    }
    
    .bp-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Hero */
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-logo {
        max-width: 85vw;
        height: auto;
    }
    
    .hero-description {
        font-size: 0.9375rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    /* About */
    .about {
        padding: 3rem 0;
        scroll-margin-top: 4rem;
    }
    
    .about-badge {
        padding: 1.5rem;
    }
    
    .badge-number {
        font-size: 2.5rem;
    }
    
    .unit-item {
        min-height: 48px;
        padding: 0.75rem 0;
        touch-action: manipulation;
    }
    
    .unit-action-icon {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Gallery section */
    .gallery-grid {
        height: 320px;
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        min-height: 160px;
    }
    
    /* Gallery modal */
    .gallery-modal-content {
        height: 60vh;
        padding: 3.5rem 0.5rem 5rem;
    }
    
    .gallery-nav {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .gallery-prev {
        left: 0.25rem;
    }
    
    .gallery-next {
        right: 0.25rem;
    }
    
    .gallery-counter {
        bottom: 6rem;
        font-size: 0.6875rem;
    }
    
    .gallery-thumbnails {
        -webkit-overflow-scrolling: touch;
        gap: 0.375rem;
        padding: 0 0.5rem 0.75rem;
    }
    
    .gallery-thumbnail {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
    }
    
    /* Floor plan modal */
    .floorplan-modal-content {
        height: 85vh;
        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .floorplan-info {
        padding: 1.25rem;
    }
    
    .floorplan-image-container {
        padding: 1rem;
        min-height: 200px;
    }
    
    .floorplan-toggle span {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0.75rem 1rem;
    }
    
    /* Inquire modal */
    #inquire-modal .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.25rem;
    }
    
    .inquire-modal-content {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .inquire-form .form-group input,
    #inquire-modal .form-group input {
        min-height: 48px;
        padding: 1rem 0;
    }
    
    .inquire-form button[type="submit"] {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Virtual gallery preview */
    .virtual-gallery-enter-btn {
        min-height: 48px;
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
    
    .virtual-gallery-logo {
        height: 90px;
    }
    
    /* Amenities / Features */
    .amenities-grid {
        gap: 2rem;
    }
    
    .amenity-nav-item {
        padding: 0.875rem 0.5rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }
    
    .amenities-visual {
        height: 280px;
    }
    
    .amenity-image-overlay h3 {
        font-size: 1.5rem;
    }
    
    /* Location */
    .location-grid {
        gap: 2rem;
    }
    
    .location-map-wrapper {
        min-height: 280px;
    }
    
    .location-map-wrapper iframe {
        min-height: 280px;
    }
    
    /* Contact */
    .contact {
        padding: 3rem 0;
        scroll-margin-top: 4rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-form input,
    .form-group input {
        min-height: 48px;
        padding: 1rem 0;
    }
    
    /* Footer */
    .footer-content {
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Booking */
    .booking {
        padding: 3rem 0;
        scroll-margin-top: 4rem;
    }
    
    .booking-title {
        font-size: 1.75rem;
    }
    
    .date-btn,
    .time-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .booking-submit {
        min-height: 48px;
        touch-action: manipulation;
    }
}


