:root {
    /* Color Palette */
    --primary-color: #1A1A1A;
    --accent-color: #C5A059; /* Champagne Gold/Bronze */
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --text-light: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-serif: "Playfair Display", "Didot", "Bodoni MT", serif;
    --font-sans: "Inter", "Montserrat", "Helvetica Neue", sans-serif;
    
    /* Spacing & Layout */
    --section-padding: 120px;
    --container-width: 1440px;
    --border-radius-pill: 50px;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 1. Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Typography Scale */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

h1 { font-size: 5rem; letter-spacing: -0.02em; }
h2 { font-size: 3.5rem; margin-bottom: 2rem; }
h3 { font-size: 2rem; }

.label-caps {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

/* 2. Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 15px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* 3. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('hero-image.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

/* 5. Floating Booking Bar */
.booking-bar {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    padding: 10px 10px 10px 40px;
    border-radius: var(--border-radius-pill);
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 1000px;
    z-index: 10;
}

.booking-field {
    flex: 1;
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
    margin-right: 20px;
}

.booking-field:last-of-type {
    border-right: none;
}

.booking-field label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.booking-field span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* 6. Asymmetrical Grid (Experiences) */
.grid-editorial {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
    padding: var(--section-padding) 60px;
}

.card-tall { grid-column: span 5; grid-row: span 2; }
.card-wide { grid-column: span 7; }
.card-standard { grid-column: span 7; }

.experience-card {
    position: relative;
    overflow: hidden;
}

.experience-card img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.experience-card:hover img {
    transform: scale(1.05);
}

/* 7. Zig-Zag Section (Sanctuaries) */
.zigzag-section {
    padding: var(--section-padding) 0;
}

.zigzag-row {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.zigzag-row:nth-child(even) {
    flex-direction: row-reverse;
}

.zigzag-image {
    flex: 0 0 55%;
    height: 600px;
}

.zigzag-content {
    flex: 0 0 45%;
    padding: 0 10%;
}

/* 8. Quote / Testimonial Section */
.testimonial {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 150px 60px;
    text-align: center;
}

.testimonial blockquote {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* 9. Footer */
.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 60px 50px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 15px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    font-size: 0.75rem;
}

/* 10. Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-40 { margin-bottom: 40px; }

/* 11. Responsive Design */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    
    .grid-editorial {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-tall, .card-wide, .card-standard {
        grid-column: span 1;
    }
    
    .zigzag-image {
        flex: 0 0 50%;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }
    
    .nav-menu {
        display: none; /* Mobile would usually have a burger menu */
    }
    
    .header-actions .btn-reserve {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .booking-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        bottom: 20px;
        width: 95%;
    }
    
    .booking-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        margin-right: 0;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .booking-bar .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .zigzag-row, .zigzag-row:nth-child(even) {
        flex-direction: column;
    }
    
    .zigzag-image {
        width: 100%;
        height: 400px;
    }
    
    .zigzag-content {
        padding: 40px 20px;
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-padding {
        padding: 60px 20px;
    }
}

/* Animations */
@keyframes fadeInBlur {
    from { opacity: 0; filter: blur(10px); transform: translateY(20px); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.hero-content {
    animation: fadeInBlur 1.5s ease-out forwards;
}