:root {
    --bg: #fbf8f3;
    --gold: #b8925e;
    --navy: #1f1a17;
    --white: #ffffff;
    --text-soft: #6f655d;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--navy); font-family: "Inter", sans-serif; line-height: 1.4; }

/* Navigation */
.site-nav { 
    position: sticky; top: 0; z-index: 100; padding: 12px 5%; 
    background: rgba(251, 248, 243, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 146, 94, 0.1);
}

.nav-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { font-weight: 800; text-decoration: none; color: var(--navy); font-size: 1rem; letter-spacing: 1.5px; }
.logo span { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 25px; }
.nav-link { text-decoration: none; color: var(--navy); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.nav-link:hover { color: var(--gold); }
.nav-loc { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; font-weight: 700; color: var(--gold); text-transform: uppercase; }

/* Main Grid Layout */
.grid-container {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px;
    max-width: 1200px; margin: 0 auto; padding: 30px 5%;
}

/* Hero Section */
.hero-text h1 { font-family: "Cormorant Garamond", serif; font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1; margin-bottom: 12px; }
.hero-text h1 span { display: block; color: var(--gold); }
.hero-text p { color: var(--text-soft); margin-bottom: 25px; font-size: 1.1rem; max-width: 480px; }

.btn-email {
    display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px;
    border: 2px solid var(--gold); color: var(--navy); text-decoration: none;
    font-weight: 700; border-radius: 50px; transition: 0.3s; font-size: 0.9rem;
}
.btn-email:hover { background: var(--gold); color: white; }

/* Services Card Styling */
.service-grid { display: grid; gap: 20px; margin-top: 30px; }
.card { background: var(--white); padding: 25px; border-radius: 15px; border: 1px solid rgba(0,0,0,0.05); }
.card.featured { background: #fdfaf5; border: 1px solid rgba(184, 146, 94, 0.25); }
.icon-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.card i { color: var(--gold); width: 24px; height: 24px; }
.card h3 { font-size: 1.25rem; font-weight: 700; }

.service-list { list-style: none; display: grid; gap: 10px; }
.service-list li { position: relative; padding-left: 22px; font-size: 0.95rem; color: #4f453d; }
.service-list li::before { content: "•"; position: absolute; left: 0; color: var(--gold); font-weight: bold; }

/* Booking Card Styling */
.booking-card { 
    background: white; border-radius: 20px; padding: 10px; 
    border: 1px solid var(--gold); box-shadow: 0 20px 40px rgba(0,0,0,0.06); 
}
.booking-card h2 { font-family: "Cormorant Garamond", serif; text-align: center; margin: 15px 0; font-size: 2rem; }

/* Footer */
.mini-footer { text-align: center; padding: 40px 5%; font-size: 0.8rem; color: #94A3B8; }

/* Responsive Adjustments */
@media (max-width: 950px) {
    .grid-container { grid-template-columns: 1fr; padding-top: 10px; }
    .hero-text h1 { font-size: 2.8rem; }
}