* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    body {
    font-family: Georgia, serif;
    line-height: 1.6;
    color: #333;
    background: #f9f7f5;
    }

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

    /* Header */
    header {
    background: #f9f7f5;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #6b4c57;
    }

    .logo::before {
    margin-right: 10px;
    font-size: 28px;
    }

    

    .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    }

    .nav-links a {
    text-decoration: none;
    color: #6b4c57;
    font-size: 18px;
    transition: color 0.3s;
    }

    .nav-links a:hover {
    color: #d4a4b0;
    }
  
    header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: transparent;
    box-shadow: none;
    transition: background-color 260ms ease, box-shadow 260ms ease, padding 260ms ease;
    padding: 18px 0;
    }

    /* Solid navbar state after scrolling (keeps your scroll behaviour) */
    header.navbar-solid {
    background: rgba(249,247,245,1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 0px 0;
    }

    /* Logo / link color while over hero, and when nav is solid */
    header .logo,
    header .nav-links a {
    color: #ffffff;
    transition: color 260ms ease;
    }
    header.navbar-solid .logo,
    header.navbar-solid .nav-links a {
    color: #6b4c57;
    }

    /* Keep toggler visible on dark/hero backgrounds */
    .navbar-toggler {
    border-color: rgba(255,255,255,0.6);
    }
    .navbar-toggler-icon {
    filter: invert(1);
    }
    header.navbar-solid .navbar-toggler-icon {
    filter: none;
    }



    /* Hero Section */
    

    /* ensure subsequent sections stack above the hero background */
    section {
    position: relative;
    z-index: 3;
    }

    /* optional: slight overlay/contrast so text reads over image */
    /* .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,-0));
    z-index: 1;
    pointer-events: none;
    } */


    /* tweak CTA for hero */
    .hero .cta-button {
    background: #f9f6f1;
    color: #6b4c57;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 18px;
    }
    .hero .cta-button:hover {
    background: #fdcbb9;
    transform: translateY(-2px);
    }

    .hero h1 {
    font-size: 3.5rem;
    color: #fdcbb9;
    margin-bottom: 20px;
    font-weight: 400;
    }

    .h2{
    font-family: "Sacramento", cursive;
    font-weight: 400;
    font-style: normal;
    }

    .hero p {
    font-size: 1.2rem;
    color: #667;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    }

    /* .cta-button {
    display: inline-block;
    background: #d4a4b0;
    color: #fdcbb9;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: background 0.3s;
    } */

    /* .cta-button:hover {
    background: #c194a2;
    } */

    /* Services Section */
 
    .services {
        scroll-margin-top: 80px; /* adjust to match your navbar height */
    }

    .services .contact h2 {
    text-align: center;
    /* font-size: 2.5rem; */
    color: #F9F7F5;
    margin-top: 20px;
    margin-bottom: 60px;
    }

    .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    }

    /* Hero parallax */
    .hero {
    position: relative;
    z-index: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: 
            linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.15)),
            url("img/hero.png"); /* <- replace with your hero image path */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* desktop parallax fallback */
    overflow: visible;
    }

    /* keep hero content above the background */
    .hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
    }

    
    .services-background {
        position: relative;
        z-index: 0;
        /* height: 50vh; */
        width: 100vw;
        background-image: 
            linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.18)),
            url("img/tea-pot-pouring.png"); /* <- replace with your hero image path */
        background-size: cover;         /* fills section, crops excess */
        background-position: center;    /* keeps it centered */ 
        background-repeat: no-repeat;   /* prevent tiling */
        background-attachment: fixed;   /* desktop parallax fallback */

        overflow: hidden; /* safer than visible in most cases */
    }

    .pricing-background {
        position: relative;
        z-index: 0;
        /* height: 80vh; */
        width: 100vw;
       
        background-image: 
            linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.18)),
            url("img/image-of-tea-party.png"); /* <- replace with your hero image path */
        background-size: cover;         /* fills section, crops excess */
        background-position: center;    /* keeps it centered */ 
        background-repeat: no-repeat;   /* prevent tiling */
        background-attachment: fixed;   /* desktop parallax fallback */

        overflow: hidden; /* safer than visible in most cases */
    }

    .contact-background {
        position: relative;
        z-index: 0;
        /* height: 80vh; */
        width: 100vw;
 
        background-size: cover;         /* fills section, crops excess */
        background-position: top;    /* keeps it centered */ 
        background-repeat: no-repeat;   /* prevent tiling */
        background-attachment: fixed;   /* desktop parallax fallback */
        background-image: 
            linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.18)),
            url("img/outdoor-image.png"); /* <- replace with your hero image path */

        overflow: hidden; /* safer than visible in most cases */
    }

    /* mobile: disable fixed background (poor support / perf) */
    @media (max-width: 900px) {
        .services-background,
        .pricing-background,
        .contact-background,
        .hero {
            background-attachment: scroll !important;
            background-position: center 50%;
        }
    }


    /* About section entrance transition */
    .about-us {
    /* keep layout as-is but start hidden for the reveal */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 550ms ease-out, transform 550ms ease-out;
    will-change: opacity, transform;
    scroll-margin-top: 80px; /* adjust to match your navbar height */
    }

    /* reveal state */
    .about-us.in-view {
    opacity: 1;
    transform: translateY(0);
    }

    /* stagger the children inside the about row for a nicer effect */
    .about-us .about-us-divider > * {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 520ms ease-out, transform 520ms ease-out;
    }

    .about-us.in-view .about-us-divider > * {
    opacity: 1;
    transform: translateY(0);
    }

    /* small stagger delays */
    .about-us.in-view .about-us-divider > *:nth-child(1) { transition-delay: 0ms; }
    .about-us.in-view .about-us-divider > *:nth-child(2) { transition-delay: 80ms; }
    .about-us.in-view .about-us-divider > *:nth-child(3) { transition-delay: 160ms; }
    .about-us.in-view .about-us-divider > *:nth-child(4) { transition-delay: 240ms; }


    .service-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 10%;
    }

    .service-card:hover {
    transform: translateY(-5px);
    }

    .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    }

    .service-card h3 {
    font-size: 1.5rem;
    color: #6b4c57;
    margin-bottom: 15px;
    }

    .service-card p {
    color: #667;
    line-height: 1.6;
    }

    /* Pricing Section */
    #pricing {
        scroll-margin-top: 80px; /* adjust to match your navbar height */
    }

    .pricing {
    padding: 80px 0;
    background: #f0ebe8;
    
    }

    .pricing h2 {
    text-align: center;
    /* font-size: 2.5rem; */
    color: #6b4c57;
    margin-bottom: 20px;
    }

    .pricing h3 {
    text-align: center;
    /* font-size: 1.8rem; */
    color: #6b4c57;
    margin-bottom: 40px;
    font-weight: 400;
    }

    .pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    }

    .pricing-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .pricing-header {
    background: #6b4c57;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.3rem;
    }

    .pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    }

    .pricing-row:last-child {
    border-bottom: none;
    }

    .pricing-row:nth-child(even) {
    background: #f8f8f8;
    }

    .price {
    font-weight: bold;
    color: #6b4c57;
    }

    .additional-fees {
    margin-top: 40px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .additional-fees h4 {
    font-size: 1.5rem;
    color: #6b4c57;
    margin-bottom: 20px;
    }

    /* Collection Section */
    .collection {
    padding: 80px 0;
    scroll-margin-top: 80px ;
    background: #ede8bd;
    }

    .collection h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6b4c57;
    margin-bottom: 60px;
    }

    .collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    }

    .collection-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    }

    .collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .collection-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    }

    .collection-item h4 {
    font-size: 1.3rem;
    color: #6b4c57;
    margin-bottom: 10px;
    }

    .collection-item p {
    color: #667;
    font-size: 0.9rem;
    }

    /* Contact Section */
    #contact {
        scroll-margin-top: 80px; /* adjust to match your navbar height */
    }

    .contact {
    padding: 80px 0;
    background: #f0ebe8;
    }

    .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6b4c57;
    margin-bottom: 60px;
    }

    .contact-container {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 60px;
    }

    .contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .contact-form h3 {
    font-size: 1.5rem;
    color: #6b4c57;
    margin-bottom: 15px;
    }

    .contact-form p {
    color: #667;
    margin-bottom: 30px;
    }

    .form-group {
    margin-bottom: 20px;
    }

    .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #6b4c57;
    font-weight: bold;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    background: white;
    }

    .form-group select {
    cursor: pointer;
    }

    .form-group select:focus,
    .form-group input:focus,
    .form-group textarea:focus {
    outline: none;
    border-color: #d4a4b0;
    box-shadow: 0 0 0 2px rgba(212, 164, 176, 0.2);
    }

    .form-group textarea {
    height: 120px;
    resize: vertical;
    }

    .details-btn {
    background: #d4a4b0;
    color: white;
    }

    .details-btn:hover {
    background: #c194a2;
    color: white;
    }

    .submit-btn {
    width: 100%;
    background: #d4a4b0;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    }

    .submit-btn:hover {
    background: #c194a2;
    }

    .contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .contact-info h3 {
    font-size: 1.5rem;
    color: #6b4c57;
    margin-bottom: 30px;
    }


    .inquiry-form .form-group {
    margin-bottom: 20px;
    }

    .inquiry-form label {
    display: block;
    margin-bottom: 5px;
    color: #6b4c57;
    font-weight: bold;
    }

    .inquiry-form input,
    .inquiry-form select,
    .inquiry-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    background: white;
    }

    .inquiry-form select {
    cursor: pointer;
    }

    .inquiry-form textarea {
    height: 80px;
    resize: vertical;
    }

    .inquiry-form select:focus,
    .inquiry-form input:focus,
    .inquiry-form textarea:focus {
    outline: none;
    border-color: #d4a4b0;
    box-shadow: 0 0 0 2px rgba(212, 164, 176, 0.2);
    }

    .contact-item {
    margin-bottom: 25px;
    }

    .contact-item h4 {
    color: #6b4c57;
    margin-bottom: 5px;
    font-size: 1.1rem;
    }

    .contact-item p {
    color: #667;
    line-height: 1.4;
    }

    .social-links {
    margin-top: 30px;
    }

    .social-links h4 {
    color: #6b4c57;
    margin-bottom: 15px;
    }

    .social-icons {
    display: flex;
    gap: 15px;
    }

    .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #6b4c57;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
    }

    .social-icons a:hover {
    background: #d4a4b0;
    }

    /* How It Works Section */
    .how-it-works {
    padding: 80px 0;
    background: #ffd8ca;
    }

    .how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #6b4c57;
    margin-bottom: 60px;
    }

    /* How It Works Section */
    .about-us {
    padding: 80px 0;
    background: rgb(249, 242, 225);
    }

    .about-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #976878;
    margin-bottom: 60px;
    }



    /* Force 2 columns on large+ screens */
    @media (min-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem; /* adjust spacing if needed */
        justify-items: center;
    }
    .step {
        max-width: 420px; /* prevents overly wide cards on very large screens */
        width: 100%;
    }
    }

    /* control About section image size */
    .about-image {
    width: 100%;           /* fill column width on small screens */
    max-width: 520px;      /* limit width on large screens */
    height: auto;          /* preserve aspect ratio */
    max-height: 420px;     /* optional: limit height so image doesn't grow too tall */
    object-fit: cover;     /* use 'contain' if you prefer the whole image visible with letterboxing */
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }
    @media (max-width: 992px) {
        .about-image {
            max-width: 100%;     /* allow full width on md and below */
            max-height: none;
            object-fit: contain;
        }

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

    .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    }

    .step {
    text-align: center;
    padding: 30px 20px;
    }

    .step-number {
    width: 100px;
    height: 100px;
    /* background: #d4a4b0; */
    color: #6b4c57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-family: "parkside", cursive;
    font-weight: 4s00;
    font-style: bold;        
    margin: 0 auto 20px;
    margin-bottom: 0px;
    
    transition: transform 0.3s;
    }

    .step:hover .step-number {
    transform: scale(1.1);
    }

    .step h3 {
    font-size: 1.4rem;
    color: #6b4c57;
    margin-bottom: 15px;
    }

    .step p {
    color: #667;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
    }

    /* Footer Styles */
    .footer {
    background: #2e2a2c;
    color: white;
    padding: 60px 0 0;
    }

    .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    }

    .footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #d4a4b0;
    }

    h3 {
        color: #fdcbb9;
    }

    .footer-section ul {
    list-style: none;
    }

    .footer-section ul li {
    margin-bottom: 8px;
    }

    .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    }

    .footer-section ul li a:hover {
    color: #d4a4b0;
    }

    .footer-logo .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4a4b0;
    margin-bottom: 15px;
    }

    .footer-logo .logo::before {
    margin-right: 10px;
    font-size: 1.8rem;
    }

    .footer-logo p {
    color: #ccc;
    line-height: 1.6;
    max-width: 300px;
    }

    .footer-contact p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.5;
    }

    .footer-social {
    margin-top: 20px;
    }

    .footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
    transition: background 0.3s;
    }

    .footer-social a:hover {
    background: #d4a4b0;
    }

    .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    }

    .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .footer-bottom p {
    color: #ccc;
    margin: 0;
    }

    .footer-links {
    display: flex;
    gap: 30px;
    }

    .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    }

    .footer-links a:hover {
    color: #d4a4b0;
    }

    /* Modal Styles */
    .modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    }

    .modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    }

    .modal-header {
    padding: 30px 30px 0;
    text-align: center;
    }

    .modal-header h3 {
    font-size: 2rem;
    color: #6b4c57;
    margin-bottom: 10px;
    }

    .modal-header p {
    color: #667;
    font-size: 1.1rem;
    margin-bottom: 30px;
    }

    .modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: #6b4c57;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .modal-close:hover {
    color: #d4a4b0;
    }

    .carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin: 0 30px;
    border-radius: 10px;
    }

    .carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    }

    .carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    }

    .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    color: #6b4c57;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .carousel-nav:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .carousel-prev {
    left: 15px;
    }

    .carousel-next {
    right: 15px;
    }

    .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    }

    .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    }

    .carousel-dot.active {
    background: #d4a4b0;
    }

    .modal-footer {
    padding: 0 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f7f5;
    }

    .modal-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6b4c57;
    }

    .modal-price-label {
    font-size: 1rem;
    color: #667;
    display: block;
    }

    .reserve-btn {
    background: #d4a4b0;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    }

    .reserve-btn:hover {
    background: #c194a2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    
        .navbar-brand {
        font-size: 15px;
        }

        .navbar-collapse .nav-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 8px 0;
    }

    .navbar-collapse .nav-link {
        color: #6b4c57;
        padding: 8px 6px;
    }

    .hero {
        min-height: 75vh;
    }

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

    .h4 {
        font-size: 1rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .carousel-container {
        height: 300px;
        margin: 0 20px;
    }

    .modal-header {
        padding: 20px 20px 0;
    }

    .modal-footer {
        padding: 0 20px 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* make toggler visible and touch-friendly over hero */
    .navbar-toggler {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        border: none;
        background: rgba(0,0,0,0.22);
    }
    .navbar-toggler-icon { filter: invert(1); }

    header.navbar-menu-open {
    background: rgba(249,247,245,0.98);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }
    header.navbar-menu-open .logo,
    header.navbar-menu-open .nav-links a {
    color: #6b4c57;
    }

                                                    
    }

