:root {
    --primary: #1a1a1a;
    --accent: #c5a059; /* Gold/Sand accent */
    --light-bg: #f9f9f9;
    --text: #333;
    --white: #ffffff;
    --spacing: 80px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing) 0;
}

.centered { text-align: center; }

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-cta-btn {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    background: #000;
}

.hero-slider {
    position: absolute;
    top:0; left:0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-slider img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 800px;
}

.hero h1 { font-size: 4rem; line-height: 1.1; margin: 10px 0; }
.tagline { font-size: 1.5rem; margin-bottom: 20px; opacity: 0.9; }

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

/* CTA Cards */
.cta-card {
    background: var(--white);
    padding: 30px;
    color: var(--primary);
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-card.dark { background: var(--primary); color: white; border: 1px solid var(--accent); }

.phone-btn {
    display: block;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    margin: 10px 0;
    font-weight: bold;
    text-align: center;
    transition: transform 0.2s;
}

.phone-btn:hover { transform: translateY(-2px); }

/* Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--primary);
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Gallery - Responsive Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-grid img:hover { opacity: 0.8; }

/* Tables & Amenities */
.feature-table {
    width: 100%;
    border-collapse: collapse;
}

.feature-table td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-item {
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .grid-2 { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { height: 70vh; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}