:root {
    --color-base-dark: #0b1d1a;
    --color-forest: #102a24;
    --color-pine: #1a3a33;
    --color-stone: #d8c7a1;
    --color-gold: #c9b37e;
    --color-mist: #f1e6d0;
    --color-snow: #ffffff;
    
    --text-primary: #f5f1e8;
    --text-secondary: #d6cfc2;
    --text-muted: #a89f93;
    
    --glass-bg: rgba(216, 199, 161, 0.05);
    --glass-border: rgba(216, 199, 161, 0.15);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Inter', 'Lato', sans-serif;
    
    --radius-soft: 20px;
    --radius-button: 18px;
    
    --spacing-section-desk: 120px;
    --spacing-section-mob: 60px;
    --max-width: 1320px;
}

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

body {
    background-color: var(--color-base-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-mist);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-soft);
}

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

/* Glass Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 29, 26, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(11, 29, 26, 0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-snow);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(201, 179, 126, 0.5);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #d8c7a1 0%, #b89f65 100%);
    color: var(--color-base-dark);
    font-weight: 500;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 199, 161, 0.3);
    color: var(--color-base-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-stone);
    color: var(--color-stone);
}

.btn-outline:hover {
    background: var(--glass-bg);
    transform: translateY(-2px);
    color: var(--color-snow);
    border-color: var(--color-snow);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-base-dark) 0%, rgba(11,29,26,0.6) 40%, rgba(11,29,26,0) 100%);
    z-index: 2;
}

.hero-mist {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, var(--color-base-dark) 0%, rgba(11,29,26,0) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 50%;
    padding: 0 40px;
    max-width: 700px;
    margin-left: 5%;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--color-snow);
    margin-bottom: 30px;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Page Hero (Inner Pages) */
.page-hero {
    height: 60vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    position: relative;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--color-base-dark) 0%, rgba(11,29,26,0.3) 100%);
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--color-snow);
}

/* Sections */
.section {
    padding: var(--spacing-section-desk) 0;
    position: relative;
}

.section-bg-alt {
    background-color: var(--color-forest);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-soft);
    padding: 40px;
    transition: all 0.5s ease;
    box-shadow: var(--glass-shadow);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(216, 199, 161, 0.3);
    background: rgba(216, 199, 161, 0.08);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

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

/* Feature Image Text Blocks */
.feature-img-wrapper {
    position: relative;
    border-radius: var(--radius-soft);
    overflow: hidden;
}

.feature-img-wrapper img {
    width: 100%;
    transition: transform 1.5s ease;
}

.feature-img-wrapper:hover img {
    transform: scale(1.05);
}

.feature-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-stone);
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Room Cards */
.room-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.room-img {
    height: 300px;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-soft) var(--radius-soft) 0 0;
}

.room-details {
    padding: 30px;
}

.room-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.room-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    margin-bottom: 20px;
}

.room-meta span {
    font-size: 0.9rem;
    color: var(--color-stone);
}

/* Footer */
.footer {
    background-color: var(--color-pine);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand p {
    margin-top: 20px;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4 {
    color: var(--color-snow);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 500;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(216, 199, 161, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 60px;
    border-radius: var(--radius-soft);
    border: 1px solid var(--glass-border);
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 10px;
}

.divider {
    height: 1px;
    background: var(--glass-border);
    margin: 40px 0;
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--color-stone);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--color-snow);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(0,0,0,0.4);
}

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

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-soft);
    overflow: hidden;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 0.5s ease;
    filter: brightness(0.85);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-snow);
    font-size: 1.5rem;
    cursor: pointer;
}