/* --- RESET & VARIABLES --- */
:root {
    /* Palette: Warm Neutrals & Luxe Accents */
    --bg-body: #FFFCF8;      /* Very subtle cream/warm white */
    --bg-surface: #FFFFFF;    /* Pure White */
    --bg-accent: #F7F2ED;     /* Warm beige for sections */
    
    --text-main: #2C2825;     /* Soft Charcoal */
    --text-muted: #6B635E;    /* Taupe Grey */
    
    --accent-color: #A67B5B;  /* Muted Bronze/Brown - Luxe feel */
    --accent-hover: #8C6346;  
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(166, 123, 91, 0.08); /* Colored shadow */
    --radius: 2px; /* Sharp edges are more elegant */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background-color: rgba(255, 252, 248, 0.95); /* Matches body bg */
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: padding 0.3s;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
    text-transform: lowercase; /* Stylish lowercase logo */
    font-variant: small-caps;
}

.logo span { color: var(--accent-color); font-style: italic; font-family: var(--font-heading); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.btn-book {
    border: 1px solid var(--accent-color);
    padding: 0.6rem 1.8rem;
    color: var(--accent-color) !important;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: var(--accent-color);
    color: white !important;
}
.btn-book::after { display: none; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* --- LAYOUT UTILITIES --- */
main {
    padding-top: 80px;
    flex: 1;
}

.container {
    max-width: 1100px; /* Slightly tighter container for elegance */
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding { padding: 6rem 0; }
.bg-accent { background-color: var(--bg-accent); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* Elegant overlay on image */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?q=80&w=2070&auto=format&fit=crop') no-repeat center/cover;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    animation: fadeUp 1.2s ease;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
    font-style: italic;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 1rem 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #fff;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

/* --- ABOUT SECTION (Split Layout) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

/* Decorative outline offset behind image */
.about-image::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    width: 100%; height: 100%;
    border: 1px solid var(--accent-color);
    z-index: -1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.mission-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-color);
    margin: 2rem 0;
    line-height: 1.6;
}

/* --- CTA SECTION --- */
.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.btn-submit {
    background-color: var(--text-main);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover { 
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* --- SERVICES & GALLERY GRIDS --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-surface);
    padding: 3rem 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--accent-color);
    margin: 1.5rem 0;
    display: block;
}

.service-list {
    text-align: left;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- CONTACT FORM --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info smaller than form */
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    padding: 3rem;
    background-color: var(--bg-accent);
    border-radius: var(--radius);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-family: var(--font-body);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.1);
}

/* --- FOOTER --- */
footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 4rem 5%;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: auto;
}

/* --- MOBILE MEDIA QUERIES --- */
@media (max-width: 768px) {
    .mobile-toggle { display: block; z-index: 1001; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-body);
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 2rem;
    }

    .nav-links.open { right: 0; }
    
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    .contact-layout { grid-template-columns: 1fr; }
    
    .hero h1 { font-size: 3rem; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; opacity: 0; }