/* ==========================================================================
   CSS VARIABLES - WARM ELEGANCE LIGHT THEME
   ========================================================================== */
   :root {
    /* Colors */
    --bg-primary: #FAFAF7; /* Warm Alabaster */
    --bg-surface: #F5F2EB; /* Warm Cream */
    --bg-card: #FFFFFF; /* Pure White */
    
    --accent-gold: #C49B24; /* Deeper Champagne Gold for contrast */
    --accent-gold-hover: #A37F16; 
    
    --text-primary: #12161A; /* Darker Midnight Slate */
    --text-secondary: #4A5056; /* Darker Cool Taupe/Gray */
    --text-inverse: #FAFAF7; /* Off-white for footer/dark buttons */
    
    --border-subtle: #DFD9CE; /* Slightly more visible border */

    /* Shadows */
    --card-shadow: 0 10px 30px rgba(28, 35, 41, 0.04);
    --hover-shadow: 0 20px 40px rgba(28, 35, 41, 0.08);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --container-max: 1200px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 400; /* For Playfair */
}

h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-header {
    margin-bottom: 64px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--text-primary);
    border: 1px solid var(--accent-gold);
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: scale(1.03);
    box-shadow: var(--hover-shadow);
}

.btn-gold-pill {
    background-color: var(--accent-gold);
    color: var(--text-primary);
    border-radius: 50px;
    border: 1px solid var(--accent-gold);
}

.btn-gold-pill:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: scale(1.03);
    box-shadow: var(--hover-shadow);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    font-weight: 700;
}

.btn-ghost:hover {
    background-color: rgba(28, 35, 41, 0.05);
    transform: scale(1.03);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    font-weight: 700;
}

.btn-gold-outline:hover {
    background-color: rgba(212, 175, 55, 0.05);
    transform: scale(1.03);
}

.full-width {
    width: 100%;
    display: block;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: all 0.4s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    font-variant: small-caps;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-gold);
}

.nav-links .btn {
    padding: 10px 24px;
    font-size: 13px;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.hamburger.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-link {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}

.drawer-link.btn {
    font-size: 16px;
    margin-top: 20px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%; /* Extra height for parallax */
    background-size: cover;
    background-position: center;
    z-index: -2;
    background-image: linear-gradient(to bottom, rgba(250, 250, 247, 0.7) 0%, rgba(250, 250, 247, 0.95) 70%, rgba(250, 250, 247, 1) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(250, 250, 247, 0.7) 0%, rgba(250, 250, 247, 0.95) 70%, rgba(250, 250, 247, 1) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-content .subheadline {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 40px auto;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-primary);
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

/* ==========================================================================
   VALUE PROPOSITION STRIP
   ========================================================================== */
.value-prop-strip {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 60px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-stat {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 48px;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.value-label {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ==========================================================================
   SERVICE SECTIONS (SPLIT LAYOUT)
   ========================================================================== */
.service-section {
    padding: var(--section-padding);
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.service-section.reversed .split-layout {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    height: 700px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
}

.split-content {
    flex: 1;
}

.body-copy p {
    margin-bottom: 24px;
    font-size: 18px;
}

.feature-bullets {
    margin: 40px 0;
}

.feature-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 24px;
    font-size: 16px;
}

.feature-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

.feature-bullets strong {
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
}

.cta-right {
    margin-top: 40px;
}

/* ==========================================================================
   PRIVATE OFFICES TEASER
   ========================================================================== */
.teaser-section {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background-color: var(--bg-surface);
    overflow: hidden;
}

.teaser-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.narrow-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
}

.narrow-content .body-copy {
    margin-bottom: 40px;
}

/* ==========================================================================
   EQUIPMENT & AMENITIES GRID
   ========================================================================== */
.grid-section {
    padding: var(--section-padding);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.amenity-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(28, 35, 41, 0.02);
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent-gold);
}

.amenity-card .icon {
    color: var(--accent-gold);
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
}

.amenity-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.amenity-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: var(--section-padding);
    background-color: var(--bg-surface);
}

.pricing-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 40px;
}

.price-card {
    background-color: var(--bg-card);
    padding: 48px;
    flex: 1;
    max-width: 500px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.price-card.featured {
    border-top: 4px solid var(--accent-gold);
}

.price-header {
    margin-bottom: 32px;
}

.price-header h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.price-subtitle {
    font-size: 14px;
    font-style: italic;
}

.stars {
    color: var(--accent-gold);
    font-size: 16px;
    margin-top: 8px;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 12px;
    font-style: normal;
    margin-left: 8px;
}

.price-amount {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    vertical-align: top;
    margin-right: 4px;
}

.amount {
    font-size: 64px;
    line-height: 1;
}

.interval {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-secondary);
}

.price-min {
    font-size: 14px;
    margin-bottom: 32px;
}

.price-includes {
    flex-grow: 1;
    margin-bottom: 32px;
}

.price-includes li {
    padding-left: 24px;
    margin-bottom: 16px;
    position: relative;
    font-size: 15px;
}

.price-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.volume-discount {
    background-color: rgba(212, 175, 55, 0.05);
    padding: 16px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 32px;
}

.volume-discount strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location-section {
    padding: 0; /* Split layout without padding for flush map */
}

.location-section .split-layout {
    max-width: 100%;
    gap: 0;
}

.split-map {
    flex: 1;
    height: 600px;
    /* Map is kept light and bright now */
}

.location-content {
    padding: 80px 10%;
}

.location-details {
    margin-bottom: 32px;
}

.location-details li {
    margin-bottom: 16px;
    font-size: 16px;
}

.location-details strong {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 8px;
}

/* ==========================================================================
   BOOKING CTA SECTION
   ========================================================================== */
.booking-cta-section {
    position: relative;
    padding: 140px 20px;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(250, 250, 247, 0.98), rgba(250, 250, 247, 0.9));
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-content h2 {
    color: var(--text-primary);
}

.cta-content .subtext {
    font-size: 18px;
    margin-bottom: 48px;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
#footer {
    background-color: var(--text-primary); /* Dark Midnight Slate */
    color: var(--text-inverse);
    padding: 80px 20px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--accent-gold);
    font-weight: 600;
}

.brand-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--text-inverse);
}

.brand-col p {
    font-size: 15px;
    margin-bottom: 16px;
    max-width: 300px;
    color: #A0A5AA;
}

.address-line {
    color: var(--accent-gold) !important;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    font-size: 15px;
    color: #A0A5AA;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    font-size: 12px;
    color: #A0A5AA;
}

/* ==========================================================================
   UTILITY PAGES (TERMS, PRIVACY, CONTACT)
   ========================================================================== */
.utility-section {
    padding: 160px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.utility-section h1 {
    font-size: 48px;
    margin-bottom: 32px;
}

.utility-section h2 {
    font-family: var(--font-body);
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.utility-section p {
    margin-bottom: 16px;
    font-size: 16px;
}

.utility-section ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.utility-section li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.contact-section {
    padding: 160px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 16px;
    font-size: 16px;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-top: 4px solid var(--accent-gold);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s;
    border-radius: 4px;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS (CLASSES)
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 200ms; }
.delay-2 { transition-delay: 400ms; }
.delay-3 { transition-delay: 600ms; }
.delay-4 { transition-delay: 800ms; }
.delay-5 { transition-delay: 1000ms; }

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   BACKGROUND IMAGES (OPTIMIZED `<picture>` TAGS)
   ========================================================================== */
.optimized-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.booking-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ==========================================================================
   RESPONSIVE (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 64px; }
    
    .split-layout { gap: 40px; }
    
    .pricing-cards { flex-direction: column; align-items: center; }
    
    .price-card { width: 100%; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .nav-links { display: none; }
    
    .hamburger { display: block; }
    .nav-container { padding: 0 20px; }
    .value-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    
    .split-layout, .service-section.reversed .split-layout { flex-direction: column; }
    .split-image { width: 100%; height: 400px; flex: none; }
    
    .location-section .split-layout { flex-direction: column-reverse; }
    .split-map { width: 100%; height: 400px; }
    .location-content { padding: 60px 20px; }

    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 42px; }
    .cta-group { flex-direction: column; }
    .cta-buttons { flex-direction: column; }
    .value-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    h2 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


