:root {
    /* Peak Visual Design Palette - Luxury Minimalism */
    --primary: #121212;
    --primary-soft: #2A2A2A;
    --accent: #D4AF37; /* Refined Gold */
    --accent-soft: rgba(212, 175, 55, 0.1);
    --background: #F9F8F6; /* Creamy White */
    --surface: #FFFFFF;
    --surface-muted: #F3F1ED;
    --text-main: #121212;
    --text-muted: #666666;
    --border-color: rgba(18, 18, 18, 0.08);
    
    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Elevation System - More Subtle & Elegant */
    --shadow-flat: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-raised: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-float: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.23, 1, 0.32, 1);
    --transition-base: 500ms cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: 800ms cubic-bezier(0.23, 1, 0.32, 1);
}

html, body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-main);
    line-height: 1.05;
}

p {
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Peak Visual Typography */
.display-huge {
    font-size: clamp(3rem, 12vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.display-large {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
}

.text-uppercase-tracking {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Luxury Components */
.btn-peak {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: white;
    padding: 1.5rem 3rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-peak:hover {
    background-color: transparent;
    color: var(--primary);
    transform: scale(1.05);
}

.btn-peak-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 1.5rem 3rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.btn-peak-outline:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.card-peak {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    transition: var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-peak:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-float);
    border-color: transparent;
}

/* Editorial Layouts */
.section-padding {
    padding: clamp(80px, 15vw, 180px) 0;
}

.grid-editorial {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* Peak Visual Accents */
.badge-peak {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 2rem;
}

.mesh-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(18, 18, 18, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(212, 175, 55, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(18, 18, 18, 0.03) 0px, transparent 50%);
    z-index: -1;
}

/* Glassmorphism Refined */
.glass-nav {
    background: rgba(249, 248, 246, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
}

/* Scroll Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-up.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Specific Section Styles */
.hero-editorial {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    aspect-ratio: 4/5;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.stat-block {
    padding: 2rem;
    border-left: 2px solid var(--border-color);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Booking Widget Refined */
.time-pill {
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: white;
    font-weight: 700;
    transition: var(--transition-base);
    cursor: pointer;
    text-align: center;
}

.time-pill:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.time-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Footer Luxury */
.footer-luxury {
    background: var(--primary);
    color: white;
    padding: 100px 0 40px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: white;
    padding-left: 5px;
}

@media (max-width: 991px) {
    .display-huge { font-size: 4rem; }
    .hero-editorial { padding-top: 120px; padding-bottom: 80px; min-height: auto; }
}
