/* ========================================= */
/* VARIABLES & BASE SETUP                    */
/* ========================================= */
:root {
    --rose-gold: #DDA7A5;
    --rose-gold-dark: #C08A88;
    --blush: #FDF8F8;
    --white: #ffffff;
    --charcoal: #201D1D;
    --text-muted: #6B6262;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, .eyebrow {
    font-family: var(--font-heading);
    color: var(--charcoal);
    font-weight: 600;
}

p { margin-bottom: 1.2rem; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: 120px 0; }
.bg-blush { background-color: var(--blush); }
.mt-2 { margin-top: 2rem; }
.eyebrow { 
    display: block; 
    font-size: 0.95rem; 
    color: var(--rose-gold-dark); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 1rem; 
}

/* Animations */
.reveal, .reveal-on-load {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}
.reveal.active, .reveal-on-load.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================= */
/* NAVIGATION                                */
/* ========================================= */
.nav-elegant {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(221, 167, 165, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-logo .logo-img { 
    height: 90px;
    width: auto;
    max-width: 280px; 
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links .standard-link {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links .standard-link:hover { color: var(--rose-gold-dark); }

/* Pink Call/Book Nav Buttons */
.btn-pink {
    border: 1px solid var(--rose-gold);
    color: var(--charcoal) !important;
    background: transparent;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-pink:hover { 
    background: var(--rose-gold); 
    color: var(--charcoal) !important; 
}

/* Desktop / Mobile Visibility Helpers */
.mobile-only { display: none !important; }

/* Mobile Controls */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 20px;
}
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 20px;
    padding: 0;
    z-index: 1001; 
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    transform-origin: 1px;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-call-icon {
    color: var(--charcoal);
    display: flex;
}

/* ========================================= */
/* BUTTONS & RETURN TO TOP                   */
/* ========================================= */
.btn-primary {
    display: inline-block;
    background-color: var(--charcoal);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    border: 1px solid var(--charcoal);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--charcoal);
}
.full-width { width: 100%; }

/* Return to top floating button */
.return-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Moved from right to left for desktop */
    width: 50px;
    height: 50px;
    background: var(--rose-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.return-to-top.show {
    opacity: 1;
    visibility: visible;
}
.return-to-top:hover {
    background: var(--rose-gold-dark);
    transform: translateY(-3px);
}

/* ========================================= */
/* HERO SECTION                              */
/* ========================================= */
.hero-elegant {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center; 
    text-align: center;      
    background: var(--blush);
    overflow: hidden;
    padding-top: 100px; 
}
#glow-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-content h1 em {
    color: var(--rose-gold-dark);
    font-style: italic;
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 0 auto 2.5rem;
    max-width: 500px;
}

/* ========================================= */
/* ABOUT SECTION                             */
/* ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image { 
    position: relative; 
    z-index: 2;
}
.about-image img {
    position: relative;
    z-index: 2;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
/* Offset Frame Design */
.image-accent {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--rose-gold);
    background-color: transparent;
    z-index: 1;
    border-radius: 8px;
}

.about-text h2 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.about-text .lead { font-size: 1.3rem; font-family: var(--font-heading); font-style: italic; color: var(--rose-gold-dark); }
.about-text p { color: var(--text-muted); }

/* ========================================= */
/* SERVICES ROW LAYOUT                       */
/* ========================================= */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3.5rem; }

.service-list-container {
    max-width: 1000px;
    margin: 0 auto;
}
.service-row {
    padding: 40px 0;
    border-bottom: 1px solid rgba(221, 167, 165, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.service-row:first-child { border-top: 1px solid rgba(221, 167, 165, 0.4); }
.service-info { flex: 1; }
.service-info h3 { font-size: 2rem; margin-bottom: 10px; }
.service-info p { color: var(--text-muted); margin-bottom: 0; max-width: 700px; }

.btn-service {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid var(--rose-gold);
    color: var(--charcoal);
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-service:hover {
    background: var(--rose-gold);
    color: var(--charcoal);
}

/* ========================================= */
/* BOOKING FORM                              */
/* ========================================= */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}
.booking-context h2 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.1; }
.booking-context p { color: var(--text-muted); font-size: 1.1rem; }
.contact-methods { font-family: var(--font-heading); font-size: 1.2rem; }
.contact-methods i { color: var(--rose-gold-dark); margin-right: 10px; vertical-align: middle; width: 20px; }

.elegant-form {
    background: var(--white);
    padding: 20px 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.input-group {
    position: relative;
    margin-bottom: 40px;
}
.elegant-form input[type="text"], 
.elegant-form input[type="email"], 
.elegant-form input[type="tel"], 
.elegant-form input[type="date"], 
.elegant-form textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    transition: var(--transition);
}
.elegant-form input:focus, .elegant-form textarea:focus {
    outline: none;
    border-bottom-color: var(--rose-gold-dark);
}
.elegant-form textarea { resize: vertical; min-height: 100px; }

/* Date Input Hack */
.date-input { color: transparent !important; }
.date-input:focus, .date-input.has-value { color: var(--charcoal) !important; }
.date-label { position: absolute; left: 0; top: 10px; color: #757575; pointer-events: none; transition: 0.2s; }
.date-input:focus ~ .date-label, .date-input.has-value ~ .date-label { display: none; }

/* Checkboxes */
.checklist-group { margin-bottom: 40px; }
.checklist-title { font-size: 0.95rem; color: #757575; margin-bottom: 15px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; }
.custom-check { display: flex; align-items: center; cursor: pointer; font-size: 0.95rem; color: var(--charcoal); }
.custom-check input { position: absolute; opacity: 0; }
.check-box { width: 18px; height: 18px; border: 1px solid #ddd; display: inline-block; margin-right: 10px; position: relative; transition: var(--transition); flex-shrink: 0; }
.custom-check:hover .check-box { border-color: var(--rose-gold-dark); }
.custom-check input:checked ~ .check-box { background: var(--charcoal); border-color: var(--charcoal); }
.check-box:after { content: ''; position: absolute; display: none; left: 5px; top: 2px; width: 4px; height: 8px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.custom-check input:checked ~ .check-box:after { display: block; }

/* ========================================= */
/* FOOTER                                    */
/* ========================================= */
.footer-elegant {
    background: var(--blush);
    padding: 80px 0 40px;
    text-align: center;
}
.footer-logo { height: 90px; margin: 0 auto 30px; }
.footer-links { margin-bottom: 30px; display: flex; justify-content: center; gap: 30px; }
.footer-links a { color: var(--charcoal); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.footer-links a:hover { color: var(--rose-gold-dark); }

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.footer-socials a {
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(221, 167, 165, 0.5); 
    border-radius: 50%;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--rose-gold);
    color: var(--white);
    border-color: var(--rose-gold);
}

.copyright { color: var(--text-muted); font-size: 0.85rem; }

/* ========================================= */
/* RESPONSIVE STYLES                         */
/* ========================================= */
@media (max-width: 992px) {
    .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-content h1 { font-size: 4rem; }
    .nav-logo .logo-img { height: 70px; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    
    .desktop-only { display: none !important; }
    .mobile-only { 
        display: inline-block !important; 
        width: max-content;
        margin: 10px auto 0;
    }
    .mobile-controls { display: flex; }
    
    .nav-brand-group { gap: 10px; }
    .nav-logo .logo-img { height: 60px; max-width: 150px; }
    
    .nav-links {
        display: none; 
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center; 
        padding: 20px 0 30px;
        border-bottom: 1px solid #ddd;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    
    .hero-elegant { min-height: 80vh; }
    .hero-content h1 { font-size: 3.2rem; }
    
    .service-row { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        padding-bottom: 50px; 
    }
    .service-info p { margin-bottom: 20px; }
    .service-action { margin-top: 10px; }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .image-accent {
        top: 15px;
        left: 15px;
    }

    /* Adjust return to top for mobile spacing */
    .return-to-top {
        bottom: 80px !important;
        left: 20px !important;
        right: auto !important;
        width: 45px;
        height: 45px;
        z-index: 9999 !important;
    }
}