/* Reset &amp; Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2d1b14;
    overflow-x: hidden;
}

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

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

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #d4a574;
    margin-bottom: 3rem;
    font-style: italic;
}

.gallery-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Header &amp; Nav */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    height: 60px;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2d1b14;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #d4a574;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #c8945f;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #2d1b14;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #fdf2e8 0%, #f8e4d4 50%, #e8d5c4 100%);
    padding: 2rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,...') ; subtle pattern but skip.
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    color: #2d1b14;
    line-height: 1.1;
}

.highlight {
    color: #d4a574;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574, #c8945f);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.4);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.6);
}

.before-after {
    margin-top: 4rem;
    width: 100%;
    max-width: 900px;
}

.image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
}

.image-pair img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    transition: transform 0.4s;
}

.image-pair img:hover {
    transform: scale(1.02);
}

/* Sections */
section {
    padding: 6rem 0;
}

section h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: #2d1b14;
}

.services {
    background: linear-gradient(135deg, #faf7f4 0%, #f5f1ed 100%);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255,255,255,0.8);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #c8945f;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: #d4a574;
    margin: 1rem 0;
    font-family: 'Playfair Display', serif;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.pricing-card li::before {
    content: '✨';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Portfolio */
.portfolio {
    background: #fffdf9;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #fdf2e8 0%, #f9e8d9 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255,255,255,0.9);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.testimonial blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a362b;
    line-height: 1.5;
    font-family: 'Raleway', serif;
}

.testimonial p {
    font-weight: 600;
    color: #d4a574;
    font-size: 1.1rem;
}

/* Bookings */
.bookings {
    background: linear-gradient(135deg, #f5f1ed 0%, #ede5dc 100%);
}

#booking-form {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2d1b14;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    background: white;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.2);
}

.calendly-note {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Contact */
.contact {
    background: #fffdf9;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border: 2px solid #d4a574;
    border-radius: 40px;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-links a:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d1b14, #1a0f08);
    color: #f0e6d9;
    text-align: center;
    padding: 2.5rem 0;
    font-size: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f0f0f0;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #d4a574;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        padding: 3rem 0;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        min-height: 100vh;
        padding: 1.5rem 0;
    }

    .image-pair {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .image-pair img {
        height: 350px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}