:root {
    --black: #000000;
    --forest: #37422c;
    --burgundy: #550b14;
    --sage: #abb79c;
    --lightblue: #c5d1dd;
    --beige: #ebe3d6;
    --coral: #f56645;
    --white: #ffffff;
    
    --font-serif: 'Inria Serif', serif;
    --font-sans: 'Founders Grotesk', sans-serif;
    
    --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--beige);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.2;
}

h1 { font-size: 6rem; letter-spacing: 0.05em; }
h2 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 2.5rem; margin-bottom: 1rem; }

.large-text {
    font-size: 2.5rem;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.text-serif-italic {
    font-style: italic;
    font-size: 3rem;
    font-weight: 400;
    max-width: 1000px;
    margin: 0 auto;
}

.secondary-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.text-center { text-align: center; }
.text-light { color: var(--beige); }
.text-beige { color: var(--beige); }
.mt-4 { margin-top: 2rem; }

/* Background Utilities */
.bg-beige { background-color: var(--beige); color: var(--black); }
.bg-dark { background-color: var(--black); color: var(--beige); }
.bg-forest { background-color: var(--forest); color: var(--beige); }

/* Layout Utilities */
.pad-section {
    padding: 120px 5%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.solid-dark {
    background-color: var(--black);
}

.navbar.solid-dark.scrolled {
    background-color: var(--black);
}

.navbar.solid-dark.scrolled .nav-links a,
.navbar.solid-dark.scrolled .nav-reservation {
    color: var(--white);
}

.navbar.solid-dark.scrolled .nav-reservation .res-icon {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    background-color: transparent;
}

.navbar.solid-dark.scrolled .nav-reservation:hover .res-icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar.solid-dark.scrolled .nav-reservation .res-label {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.solid-dark.scrolled .nav-reservation .res-number {
    color: var(--white);
}

.navbar.scrolled {
    padding: 15px 5%;
    background-color: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-links.left {
    flex: 1;
    justify-content: flex-start;
}

.nav-links.right {
    flex: 1;
    justify-content: flex-end;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--black);
}

.nav-links a:hover {
    opacity: 0.6;
}

.nav-reservation {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
}

.res-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-reservation:hover .res-icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.res-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    gap: 5px;
}

.res-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.res-number {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.navbar.scrolled .nav-reservation .res-icon {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--black);
}

.navbar.scrolled .nav-reservation .res-label {
    color: var(--black);
}

.navbar.scrolled .nav-reservation .res-number {
    color: var(--black);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-img {
    height: 80px;
    transition: var(--transition);
}
.navbar.scrolled .logo-img {
    height: 60px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--black);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    color: #fff;
    z-index: 2;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #fff;
    animation: scrollDrop 2s infinite ease-in-out;
}

@keyframes scrollDrop {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* Booking Bar Section */
.booking-bar-section {
    background-color: #ffffff; /* User requested pure white */
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.booking-bar-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 10px;
}

.booking-field {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    padding: 8px 0;
    position: relative;
    transition: border-color 0.3s ease;
}

.booking-field:hover {
    border-bottom-color: var(--black);
}

.booking-field .input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.booking-field input {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--black);
    width: 100%;
    cursor: pointer;
    font-weight: 400;
}

.booking-field input::input-placeholder { color: var(--black); opacity: 1; }
.booking-field input::-webkit-input-placeholder { color: var(--black); opacity: 1; }
.booking-field input:-ms-input-placeholder { color: var(--black); opacity: 1; }

.booking-field .label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--black);
    white-space: nowrap;
}

.booking-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--black);
    cursor: pointer;
    font-weight: 500;
    padding-right: 5px;
    position: relative;
    z-index: 2;
}

.placeholder-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(0,0,0,0.5);
    pointer-events: none;
    white-space: nowrap;
}

.booking-field .icon {
    display: flex;
    align-items: center;
    opacity: 0.4;
    padding-left: 10px;
}

.booking-btn-wrap {
    flex: 0 0 auto;
}

.booking-btn {
    background-color: #1f2320;
    color: var(--white);
    border: none;
    padding: 16px 45px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 100%;
    display: block;
}

.booking-btn:hover {
    background-color: var(--black);
}

@media (max-width: 1024px) {
    .booking-bar-form {
        flex-wrap: wrap;
    }
    .booking-field {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    .booking-field {
        flex: 1 1 100%;
        margin-right: 0;
    }
    .booking-btn-wrap {
        flex: 1 1 100%;
        margin-top: 15px;
    }
    .booking-btn {
        width: 100%;
    }
}

/* Parallax Divider */
.parallax-divider {
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Fix for iOS and Mobile Devices Blurry Parallax Bug */
@media (max-width: 1024px) {
    .parallax-divider {
        background-attachment: scroll;
    }
}
@supports (-webkit-touch-callout: none) {
    .parallax-divider {
        background-attachment: scroll;
    }
}

/* Rooms Section */
.section-title {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.room-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.room-row.reverse {
    flex-direction: row-reverse;
}

.room-row:last-child {
    margin-bottom: 0;
}

.room-image {
    flex: 1;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 1.5s ease;
}

.room-image:hover img {
    transform: scale(1.05);
}

.room-info {
    flex: 1;
}

.room-info h3 {
    margin-bottom: 20px;
    color: var(--beige);
}

.room-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    color: var(--beige);
}

.explore-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--beige);
    color: var(--beige);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: var(--transition);
}

.explore-btn:hover {
    background-color: var(--beige);
    color: var(--black);
}

.explore-btn.dark {
    border-color: var(--black);
    color: var(--black);
}

.explore-btn.dark:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Building Section */
.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.features-list {
    margin-top: 30px;
    list-style: none;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.1rem;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.split-image:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    padding: 0;
}

.footer-new-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12vw;
    flex-wrap: wrap;
}

.footer-logo-col {
    flex: 0 0 auto;
}

.footer-logo-col img {
    height: 250px;
    width: auto;
    opacity: 0.95;
    transition: var(--transition);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.footer-nav {
    display: flex;
    gap: 100px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
}

.footer-nav-col h4 {
    font-size: 0.85rem;
    margin-bottom: 25px;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--beige);
}

.footer-nav-col a {
    display: block;
    color: var(--beige);
    text-decoration: none;
    margin-bottom: 18px;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.footer-nav-col a:hover {
    opacity: 1;
}

.footer-copyright {
    color: var(--beige);
    opacity: 0.4;
    font-size: 0.75rem;
    font-family: var(--font-sans);
}

@media (max-width: 768px) {
    .footer-new-layout {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    .footer-nav {
        gap: 60px;
        justify-content: center;
    }
}

/* Reveal Animations */
.rd-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.rd-gallery-item img {
    transition: transform 1.5s ease;
}
.rd-gallery-item:hover img {
    transform: scale(1.05);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Metro Gallery */
.metro-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 350px;
    grid-auto-flow: dense;
    gap: 15px;
    width: 100%;
    margin-top: 40px;
}
.metro-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.metro-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}
.metro-item:hover img {
    transform: scale(1.05);
}
.metro-wide { grid-column: span 2; }
.metro-tall { grid-row: span 2; }
.metro-large { grid-column: span 2; grid-row: span 2; }

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 4rem; }
    h2 { font-size: 2.5rem; }
    .large-text { font-size: 2rem; }
    .room-row, .room-row.reverse { flex-direction: column; gap: 40px; }
    .split-layout { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .metro-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .pad-section { padding: 80px 5%; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3rem; }
    
    .metro-gallery {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 250px;
    }
    .metro-large, .metro-wide, .metro-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Editorial Story Section Responsive Fixes */
@media (max-width: 1024px) {
    .story-header p {
        padding-left: 0 !important;
        border-left: none !important;
        margin-left: 0 !important;
        margin-top: 20px;
    }
    .story-header h2 {
        font-size: 3.5rem !important;
    }
    .story-block-1, .story-block-3 {
        display: block !important;
    }
    .story-img-wrap {
        width: 100% !important;
    }
    .story-text-over {
        width: 90% !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        margin: -80px auto 0 auto !important;
        padding: 40px 30px !important;
    }
    .story-block-2 {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        display: flex !important;
        flex-direction: column-reverse;
    }
    .story-block-2 > div {
        padding-top: 0 !important;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: transform 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

/* Sound Toggle Button */
.sound-toggle {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 100;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-family: var(--font-sans);
}
.sound-toggle:hover {
    opacity: 1;
}
.sound-toggle .muted-cross {
    display: none;
    stroke: var(--white);
    stroke-width: 2;
}
.sound-toggle.muted .sound-waves {
    display: none;
}
.sound-toggle.muted .muted-cross {
    display: block;
}


/* Mobile Responsive Overrides */
.masonry-3 { column-count: 3; }
.masonry-2 { column-count: 2; }

.mobile-menu-toggle {
    display: none;
    align-items: center; justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
    margin-right: 15px;
}

.navbar.scrolled .mobile-menu-toggle {
    color: var(--black);
}

.navbar.solid-dark .mobile-menu-toggle {
    color: var(--white);
}

.navbar.solid-dark.scrolled .mobile-menu-toggle {
    color: var(--white);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--black);
    z-index: 2000;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1; pointer-events: auto;
}

.close-menu {
    position: absolute; top: 30px; right: 5%;
    color: var(--white); cursor: pointer;
}

.mobile-nav-links {
    display: flex; flex-direction: column; text-align: center; gap: 30px;
}

.mobile-nav-links a {
    color: var(--white); font-size: 1.5rem; text-decoration: none; font-family: var(--font-serif);
    text-transform: uppercase; letter-spacing: 0.1em; transition: opacity 0.3s;
}
.mobile-nav-links a:hover { opacity: 0.7; }

.no-scroll { overflow: hidden; }

@media (max-width: 768px) {
    .nav-links.left { display: none; }
    .mobile-menu-toggle { display: flex; }
    .masonry-3, .masonry-2 { column-count: 1 !important; }
    .nav-links.right .nav-reservation .res-text { display: none; } 
    .nav-links.right .nav-reservation .res-icon { width: 36px; height: 36px; }
    .logo-img { height: 50px !important; }
    .rd-gallery-grid { gap: 15px; display: flex; flex-direction: column; }
    .rd-gallery-grid .rd-gallery-item { break-inside: auto; margin-bottom: 0 !important; }
    
    .room-row, .room-row.reverse { display: flex; flex-direction: column; }
    .split-layout { display: flex; flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.8rem; }
    .large-text { font-size: 1.5rem; }
    .pad-section { padding: 60px 5%; }
}

