/* Custom Font Declaration */
@font-face {
    font-family: 'La Luxes';
    src: url('LaLuxes.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* New Color Palette - 5 Colors from Image */
:root {
    --balsam-green: #5C6E6C; /* Primary dark color */
    --aquatone: #A6B7AA; /* Light sage green */
    --artemis: #D2A96A; /* Golden yellow */
    --dusty-coral: #D39D87; /* Coral/salmon */
    --warm-copper: #BB7154; /* Copper brown */

    /* Text colors - using darker shades for readability */
    --text-dark: #2C2A29;
    --text-medium: #5C6E6C;
    --text-light: #A6B7AA;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, a:link, a:visited, a:focus, a:hover, a:active {
    color: white;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

/* Utility: Prevent text breaking */
body,
.nav-link,
.nav-logo h2,
.hero h1,
.hero p,
.services h2,
.section-description,
.service-card h3,
.service-card p,
.pricing h2,
.pricing-features li,
.about h2,
.about p,
.feature-text h4,
.feature-text p,
.contact h2,
.contact-item h3,
.contact-item p,
.faq-item h4,
.faq-item p,
.footer h4,
.footer p {
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

/* No-JS fallback: CSS-only menu toggle using :target */
.hamburger-close {
    display: none;
}

.hamburger-open {
    display: flex;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(244, 230, 212, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    order: 1;
}

.logo-img {
    width: 60px;
    height: 50px;
    background-image: url('images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo h2 {
    color: var(--dusty-coral);
    font-family: 'La Luxes', serif;
    font-weight: 600;
    font-size: 1.75rem;
    margin: 0;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: nowrap;
    order: 2;
}

.nav-link, .nav-link:link, .nav-link:visited, .nav-link:focus, .nav-link:active {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--dusty-coral);
}

.nav-menu .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 25px;
    margin-left: 1rem;
    flex-shrink: 0;
}

.hamburger {
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

/* Desktop: hide hamburger buttons by default */
@media (min-width: 701px) {
    .hamburger {
        display: none;
    }

    /* Hide mobile menu header on desktop */
    .nav-menu-header {
        display: none;
    }
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-medium);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger animation when menu is active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
}

/* Hero Section */
.hero {
    background: var(--dusty-coral);
    color: white;
    padding: 80px 0;
    position: relative;
    margin-top: 75px; /* Ensure content starts below fixed header */
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,40 Q300,10 600,40 Q900,70 1200,40 L1200,60 L0,60 Z" fill="%23BB7154"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero h1 {
    font-family: 'La Luxes', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
    word-spacing: 0.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary, .btn-primary:link, .btn-primary:visited, .btn-primary:focus, .btn-primary:active {
    background: white;
    color: var(--dusty-coral);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--dusty-coral);
    color: white;
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: var(--dusty-coral);
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    background: var(--warm-copper);
    padding: 80px 0 120px 0;
    position: relative;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,40 Q300,10 600,40 Q900,70 1200,40 L1200,60 L0,60 Z" fill="%23D2A96A"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.services h2 {
    text-align: center;
    font-family: 'La Luxes', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 350px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-family: 'La Luxes', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background: var(--artemis);
    padding: 80px 0 120px 0;
    position: relative;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,40 Q300,10 600,40 Q900,70 1200,40 L1200,60 L0,60 Z" fill="%23A6B7AA"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pricing h2 {
    text-align: center;
    font-family: 'La Luxes', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 420px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon-small {
    font-size: 2.5rem;
}

.pricing-card h3 {
    font-family: 'La Luxes', serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

.price {
    margin-bottom: 1rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dusty-coral);
    display: block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 1rem;
    text-indent: -1.2rem;
    padding-left: 1.2rem;
}

.pricing-duration-text {
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: 1.1rem;
    font-weight: 700;
}

.pricing-cta {
    margin-top: auto;
    padding-top: 2rem;
}

/* About Section */
.about {
    background: var(--aquatone);
    padding: 80px 0 120px 0;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,40 Q300,10 600,40 Q900,70 1200,40 L1200,60 L0,60 Z" fill="%235C6E6C"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-family: 'La Luxes', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-text h4 {
    font-family: 'La Luxes', serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-text p {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
}

.about-image img {
    width: 100%;
    min-height: 250px;
    max-height: 600px;
    max-width: 800px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 8px rgba(92, 110, 108, 0.3);
}

/* Contact Section */
.contact {
    background: var(--balsam-green);
    color: white;
    padding: 80px 0 120px 0;
    position: relative;
}

.contact h2 {
    text-align: center;
    font-family: 'La Luxes', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-family: 'La Luxes', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-item .btn {
    margin-top: 1.5rem;
}

/* FAQ Section Styling */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* List alignment - ensure bullets start where text starts */
.faq-item ul,
.service-card ul,
.pricing-features,
p + ul {
    padding-left: 1.2rem;
    margin-left: 0;
    list-style-position: outside;
}

.faq-item ul li,
.service-card ul li,
.pricing-features li,
p + ul li {
    padding-left: 0;
    margin-left: 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--dusty-coral);
}

.faq-item h4 {
    font-family: 'La Luxes', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #4a5c5a, #2c3634);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer h4 {
    font-family: 'La Luxes', serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
    word-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: white;
}

.footer p {
    color: #D4C4B0;
    margin-bottom: 0.5rem;
}

/* Ultra-wide screens (TV, large monitors) */
@media (min-width: 1800px) {
    .container {
        max-width: 1600px;
        padding: 0 4rem;
    }

    .nav-container {
        max-width: 1750px;
        padding: 0 4rem;
        gap: 2.5rem;
    }

    .hero h1 {
        font-size: 4.5rem;
        text-align: center;
        word-spacing: 0.1em;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.3;
    }

    .footer h4 {
        font-size: 2.5rem;
    }

    .services h2, .pricing h2, .about h2, .contact h2 {
        font-size: 2.5rem;
    }

    .service-card, .pricing-card {
        padding: 3rem;
    }

    .pricing-grid {
        max-width: 1400px;
        gap: 5rem;
    }
}

/* Large screens and TV optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }

    .nav-container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 3rem;
        gap: 1.3rem;
    }

    .nav-menu {
        gap: 3rem;
    }

    .nav-logo h2 {
        font-size: 2rem;
    }


    .hero h1 {
        font-size: 4rem;
        text-align: center;
        word-spacing: 0.1em;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.3;
    }

    .footer h4 {
        font-size: 2.25rem;
    }

    .services h2, .pricing h2, .about h2, .contact h2 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .services-grid {
        gap: 3rem;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        max-width: 1400px;
    }

    .pricing-grid {
        gap: 4rem;
        max-width: 1200px;
    }
}

/* Medium large screens - ensure max 3 columns */
@media (min-width: 1200px) and (max-width: 1399px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        max-width: 1200px;
    }
}

/* Medium screens - 2 columns max */
@media (min-width: 800px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        max-width: 800px;
    }
}

/* Smaller screens - adjust minimum width */
@media (min-width: 600px) and (max-width: 799px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        min-width: 300px;
        padding: 2rem;
    }
}

/* Tablet range - where cards start to stack but can be wider */
@media (min-width: 420px) and (max-width: 850px) {
    .services-grid {
        justify-content: center;
    }

    /* When screen is too narrow for 2 cards (less than ~850px), make single cards wider */
    .service-card {
        width: min(420px, calc(100vw - 4rem));
        max-width: 420px;
    }
}

/* Very small screens - keep responsive width but cap at 420px */
@media (max-width: 419px) {
    .service-card {
        width: calc(100vw - 2rem);
        max-width: 420px;
    }
}

/* Medium screens - two centered lines */
@media (max-width: 1250px) and (min-width: 1001px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        justify-content: center;
        text-align: center;
    }

    .nav-logo {
        order: 1;
        flex: 1 1 100%;
        justify-content: center;
        margin-bottom: 0.8rem;
    }

    .nav-logo h2 {
        font-size: 1.6rem;
    }

    .nav-menu {
        order: 2;
        flex: 1 1 100%;
        justify-content: center;
        gap: 1.8rem;
        margin: 0;
    }

    .nav-menu .btn {
        margin-left: 0;
        padding: 0.5rem 1.2rem;
    }

    /* Adjust hero margin for taller header */
    .hero {
        margin-top: 130px;
    }
}

/* Tablet screens only - allow wrapping */
@media (max-width: 1000px) and (min-width: 701px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        justify-content: center;
        text-align: center;
        gap: 0;
    }

    .nav-logo {
        order: 1;
        flex: 1 1 100%;
        justify-content: center;
        margin-bottom: 0.8rem;
    }

    .nav-logo h2 {
        font-size: 1.4rem;
    }

    .nav-menu {
        order: 2;
        flex: 1 1 100%;
        justify-content: center;
        gap: 1.5rem;
        margin: 0;
    }

    .nav-menu .btn {
        margin-left: 0;
        padding: 0.5rem 1.2rem;
    }

    /* Adjust hero margin for taller header */
    .hero {
        margin-top: 130px; /* Increased from 75px to accommodate wrapped navigation */
    }
}

/* Medium screens - break about, contact, and footer sections to single column */
@media (max-width: 1024px) {
    .hero {
        margin-top: 115px;
        padding: 75px 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* Mobile screens - consolidated all mobile styles */
@media (max-width: 768px) {
    /* Tablet word-breaking prevention */
    * {
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

    .container {
        max-width: 100%;
        padding: 0 1rem;
        width: calc(100% - 2rem);
    }

    .services, .pricing, .about, .contact {
        width: 100%;
    }
}

@media (max-width: 700px) {
    /* Global mobile word-breaking prevention */
    * {
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

    /* Container adjustments for better text flow */
    .container {
        padding: 0 1.5rem;
        width: calc(100% - 3rem);
        max-width: none;
    }

    /* Navigation */
    .navbar {
        z-index: 1001; /* Ensure navbar stays above menu */
        overflow: visible; /* Don't clip transformed hamburger */
        padding: 0.5rem 0; /* More compact header on mobile */
    }

    .nav-container {
        flex-wrap: nowrap; /* Keep logo and hamburger on same line */
        justify-content: space-between;
        align-items: center;
        overflow: visible; /* Don't clip hamburger when it transforms */
        position: relative;
    }

    .nav-logo {
        order: 1;
        flex: 1 1 auto; /* Logo takes available space */
        justify-content: flex-start; /* Align logo to left */
        margin-bottom: 0; /* Remove bottom margin */
        text-align: left; /* Ensure text aligns left */
    }

    .nav-logo h2 {
        font-size: 1.2rem; /* Compact mobile title */
        white-space: pre-line; /* Allow line breaks in title */
        text-align: left; /* Ensure title text is left-aligned */
        line-height: 1.2;
    }

    .logo-img {
        width: 50px;
        height: 40px;
    }

    .hamburger {
        position: fixed;
        top: 1rem;
        right: 2rem;
        z-index: 1002;
        overflow: visible;
        padding: 4px;
        min-width: 36px;
        min-height: 36px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        text-decoration: none;
    }

    /* CSS-only menu toggle using :target - show menu when #menu is targeted */
    #menu:target,
    .nav-menu.active {
        left: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Show close button when menu is open */
    #menu:target ~ .hamburger-open,
    .nav-menu.active ~ .hamburger-open {
        display: none;
    }

    #menu:target ~ .hamburger-close,
    .nav-menu.active ~ .hamburger-close {
        display: flex;
    }

    /* Animate close button */
    .hamburger-close .bar:nth-child(1) {
        transform: rotate(45deg);
        position: absolute;
    }

    .hamburger-close .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-close .bar:nth-child(3) {
        transform: rotate(-45deg);
        position: absolute;
    }

    .bar {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0; /* Cover full screen again */
        flex-direction: column;
        background-color: rgba(244, 230, 212, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh; /* Full viewport height */
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding-top: 6rem; /* Start content below header area */
        z-index: 1000; /* Below the hamburger */
        order: 3;
    }

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

    .nav-menu li {
        margin: 0.4rem 0;
    }

    /* Mobile menu header styling */
    .nav-menu-header {
        margin-bottom: 3.5rem;
        text-align: center;
    }

    /* First regular menu item after header - add extra space */
    .nav-menu-header + li {
        margin-top: 0.75rem;
    }

    /* Button item - add extra space above */
    .nav-menu li:last-child {
        margin-top: 0.75rem;
    }

    .nav-menu-logo-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
    }

    .nav-menu-logo {
        width: 80px;
        height: 67px;
        background-image: url('images/logo.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .nav-menu-title {
        font-family: 'La Luxes', serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--dusty-coral);
        text-align: center;
        display: block;
        line-height: 1.3;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
        color: var(--text-medium);
    }

    .nav-menu .btn {
        margin: 1rem auto;
        max-width: 200px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        margin-top: 55px; /* Reduced to match compact header */
        padding: 70px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 2rem;
    }

    .footer h4 {
        font-size: 1.5rem;
    }

    .services h2, .pricing h2, .about h2, .contact h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    /* Sections */
    .services, .pricing, .about, .contact {
        padding: 60px 0;
    }

    /* Add gap at end of sections (except hero and footer) */
    .services, .pricing, .about {
        padding-bottom: 80px;
    }

    /* Service Cards */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .service-card {
        width: min(420px, 100%);
        max-width: 420px;
        min-width: 0;
        margin: 0 auto;
        padding: 2rem 1.5rem 2.5rem 1.5rem;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* Pricing Cards */
    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .pricing-card {
        width: 100%;
        min-width: 0;
        max-width: none;
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }

    .pricing-icon {
        font-size: 2rem;
        margin-bottom: 2rem;
        height: 2rem;
    }

    .pricing-icon-small {
        font-size: 1.75rem;
    }

    /* About & Contact */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about-image {
        margin-bottom: 2rem;
    }

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

    .contact-info {
        gap: 1.5rem;
    }

    /* FAQ */
    .faq-items {
        margin-top: 3rem;
    }

    .faq-item {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }

    .faq-item h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    /* Buttons */
    .btn {
        width: 100%;
        max-width: 300px;
        min-height: 48px; /* Touch-friendly button height */
        font-size: 1.1rem;
    }

    .contact-item .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile word-breaking prevention */
    * {
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

    .container {
        padding: 0 1rem;
        width: calc(100% - 2rem);
        max-width: none;
    }

    .nav-container {
        padding: 0 1rem;
        width: calc(100% - 2rem);
    }

    .hero {
        padding: 70px 0 60px;
        margin-top: 50px; /* Adjust for compact header */
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .footer h4 {
        font-size: 1.25rem;
    }

    .services h2, .pricing h2, .about h2, .contact h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services,
    .pricing,
    .about,
    .contact {
        padding: 50px 0;
    }

    /* Add gap at end of sections (except hero and footer) */
    .services, .pricing, .about {
        padding-bottom: 70px;
    }

    .service-card,
    .pricing-card {
        padding: 1.5rem 1rem 2rem 1rem;
        min-height: auto;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
        height: auto;
    }

    /* Smaller buttons on very small screens */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        max-width: 280px;
    }
}