    :root {
        --sweet-salmon: #EF837C;
        --amber-glow: #FDAC4A;
        --dusty-mauve: #B5424A;
        --evergreen: #1F3929;
        --chocolate-plum: #5A3A30;
        --apricot-cream: #EFC693;
        --old-gold: #C5AE4F;
        --white: #ffffff;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        color: var(--chocolate-plum);
        background-color: #fffaf4;
        line-height: 1.6;
        overflow-x: hidden;
        /* Prevent horizontal scroll from animations */
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    .page-wrapper {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    header {
        position: relative;
        overflow: hidden;
        color: var(--evergreen);
    }

    .hero {
        display: grid;
        grid-template-columns: minmax(0, 26rem) minmax(0, 35rem);
        /* Swapped columns: Image (Left) | Content (Right) */
        justify-content: center;
        /* Center the pair in the viewport */
        gap: 4rem;
        /* Comfortable gap, not too wide */
        padding: 4.5rem clamp(1.5rem, 5vw, 5rem);
        background: radial-gradient(circle at top left, #ffe5c4 0, #fffaf4 45%, #ffe0d8 100%);
        align-items: center;
    }

    .hero-content {
        max-width: 34rem;
        z-index: 1;
    }

    .hero-kicker {
        font-family: 'Parisienne', cursive;
        font-size: 1.8rem;
        color: var(--dusty-mauve);
        margin-bottom: 0.5rem;
    }

    .hero-title {
        font-family: 'Playfair Display', 'Times New Roman', serif;
        font-weight: 700;
        font-size: clamp(2.4rem, 4vw, 3.2rem);
        line-height: 1.1;
        margin-bottom: 1rem;
        color: var(--evergreen);
    }

    .hero-subtitle {
        font-size: 1.15rem;
        max-width: 28rem;
        margin-bottom: 1.75rem;
    }

    .hero-cta-group {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
        border: 2px solid transparent;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
        white-space: nowrap;
    }

    .btn-primary {
        background-color: var(--sweet-salmon);
        color: var(--white);
        box-shadow: 0 10px 22px rgba(239, 131, 124, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(239, 131, 124, 0.5);
        background-color: #e56f68;
    }

    .btn-ghost {
        border-color: var(--evergreen);
        color: var(--evergreen);
        background-color: transparent;
    }

    .btn-ghost:hover {
        background-color: rgba(31, 57, 41, 0.06);
    }

    .hero-tagline {
        font-family: 'Parisienne', cursive;
        font-size: 1.5rem;
        color: var(--chocolate-plum);
    }

    .hero-image-wrapper {
        position: relative;
        justify-self: center;
        max-width: 26rem;
    }

    .hero-main-img {
        border-radius: 28px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        background: #ddd;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        width: 100%;
        max-width: 22rem;
        margin: 0 auto;
        rotate: -3deg;
        /* Added playful tilt */
        transition: transform 0.3s ease;
    }

    .hero-main-img:hover {
        transform: scale(1.02) rotate(0deg);
    }

    .hero-badge {
        position: absolute;
        bottom: 8%;
        right: -6%;
        background-color: var(--evergreen);
        color: var(--white);
        padding: 0.9rem 1.2rem;
        border-radius: 18px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
        font-size: 0.8rem;
        max-width: 10rem;
    }

    .hero-badge span {
        display: block;
    }

    .hero-badge .badge-label {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        opacity: 0.8;
        margin-bottom: 0.3rem;
    }

    .hero-badge .badge-main {
        font-weight: 700;
    }

    .hero-badge .badge-sub {
        font-size: 0.72rem;
        opacity: 0.85;
    }

    main {
        flex: 1;
    }

    section {
        padding: 3.5rem clamp(1.5rem, 5vw, 5rem);
    }

    .section-heading {
        font-family: 'Playfair Display', 'Times New Roman', serif;
        font-size: 1.8rem;
        color: var(--evergreen);
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .section-kicker {
        font-family: 'Parisienne', cursive;
        font-size: 1.6rem;
        color: var(--sweet-salmon);
        text-align: center;
        margin-bottom: 0.25rem;
    }

    .section-intro {
        max-width: 32rem;
        text-align: center;
        margin: 0.25rem auto 2.5rem;
        font-size: 1.1rem;
    }

    .two-column {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1200px;
        margin-inline: auto;
    }

    .chip {
        display: inline-flex;
        align-items: center;
        padding: 0.35rem 0.8rem;
        border-radius: 999px;
        background-color: rgba(239, 131, 124, 0.12);
        color: var(--dusty-mauve);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 0.75rem;
    }

    .about-heading {
        font-family: 'Playfair Display', 'Times New Roman', serif;
        font-size: 1.7rem;
        margin-bottom: 0.75rem;
        color: var(--evergreen);
    }

    .about-body {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }

    .about-list {
        list-style: none;
        padding-left: 0;
        display: grid;
        gap: 0.25rem;
        font-size: 1.05rem;
    }

    .about-list li::before {
        content: '•';
        color: var(--sweet-salmon);
        font-weight: 700;
        display: inline-block;
        width: 1rem;
        margin-left: -1rem;
    }

    .about-image {
        border-radius: 24px;
        background: #ddd;
        aspect-ratio: 3 / 4;
        /* Slightly shorter/wider than 4/5 */
        object-fit: cover;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        /* Deeper shadow for float effect */
        width: 100%;
        max-width: 18rem;
        /* Explicit max width constraint */
        margin: 0 auto;
        display: block;
        rotate: 2deg;
        /* Playful tilt */
    }

    .section-soft {
        background: radial-gradient(circle at top left, #fff1d5 0, #fffaf4 40%, #ffe1dd 100%);
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 5rem;
        max-width: 1100px;
        margin-inline: auto;
        padding-top: 1rem;
    }

    .feature-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .feature-item:nth-child(even) {
        direction: rtl;
        /* Quick way to flip grid order visually */
    }

    .feature-item:nth-child(even) .feature-text {
        direction: ltr;
        /* Reset text direction */
        text-align: right;
    }

    /* Ensure left-aligned text for odd items remains left-aligned */
    .feature-item:nth-child(odd) .feature-text {
        text-align: left;
    }

    .feature-image-wrapper {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        aspect-ratio: 4 / 3;
        /* Standard pleasant ratio */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .feature-item:hover .feature-image-wrapper {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    .feature-item:hover .feature-image-wrapper img {
        transform: scale(1.05);
    }

    .feature-text {
        padding: 1rem;
    }

    .feature-kicker {
        font-family: 'Parisienne', cursive;
        font-size: 1.5rem;
        /* Larger and handwritten */
        color: var(--sweet-salmon);
        margin-bottom: 0.5rem;
    }

    .feature-title {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: var(--evergreen);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .feature-desc {
        font-size: 1.05rem;
        color: var(--chocolate-plum);
        margin-bottom: 1.25rem;
        line-height: 1.6;
        opacity: 0.9;
    }

    .feature-meta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--evergreen);
        background-color: rgba(31, 57, 41, 0.08);
        /* Light green bg */
        padding: 0.5rem 1rem;
        border-radius: 99px;
    }

    .feature-meta i {
        color: var(--sweet-salmon);
    }

    @media (max-width: 900px) {
        .feature-item {
            grid-template-columns: 1fr;
            /* Stack vertically */
            gap: 1.5rem;
            text-align: center !important;
            /* Force center on mobile */
        }

        .feature-item:nth-child(even) {
            direction: ltr;
            /* Reset flip */
        }

        .feature-item:nth-child(even) .feature-text {
            text-align: center;
        }

        .feature-item:nth-child(odd) .feature-text {
            text-align: center;
        }

        .feature-image-wrapper {
            order: -1;
            /* Image always on top */
            aspect-ratio: 3 / 2;
        }

        .feature-list {
            gap: 4rem;
        }
    }

    .statement-section {
        padding-block: 3.5rem;
        position: relative;
        color: var(--white);
        text-align: center;
        background:
            linear-gradient(rgba(31, 57, 41, 0.85), rgba(31, 57, 41, 0.9)),
            url('https://images.unsplash.com/photo-1543353071-873f17a7a088?auto=format&fit=crop&w=1400&q=80') center/cover fixed;
    }

    .statement-heading {
        font-family: 'Playfair Display', 'Times New Roman', serif;
        font-size: clamp(1.7rem, 3vw, 2.1rem);
        margin-bottom: 0.75rem;
    }

    .statement-sub {
        font-family: 'Parisienne', cursive;
        font-size: 1.6rem;
        color: #ffe7cd;
    }

    .gallery-section {
        background-color: #fffaf4;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        max-width: 1200px;
        margin-inline: auto;
    }

    .gallery-item {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        background-color: #ddd;
        aspect-ratio: 4 / 3;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    .gallery-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom right, rgba(239, 131, 124, 0.08), rgba(31, 57, 41, 0.08));
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .gallery-item:hover::after {
        opacity: 1;
    }

    .gallery-actions {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .hidden {
        display: none !important;
    }

    .btn-outline {
        background-color: transparent;
        border: 2px solid var(--sweet-salmon);
        color: var(--sweet-salmon);
        margin-top: 1rem;
    }

    .btn-outline:hover {
        background-color: var(--sweet-salmon);
        color: var(--white);
        transform: translateY(-2px);
    }

    .form-section {
        background-color: var(--white);
        border-top: 1px solid rgba(197, 174, 79, 0.3);
    }

    .form-wrapper {
        max-width: 40rem;
        margin: 0 auto;
    }

    .form-heading {
        font-family: 'Playfair Display', 'Times New Roman', serif;
        font-size: 1.6rem;
        text-align: center;
        color: var(--evergreen);
        margin-bottom: 0.4rem;
    }

    .form-subtext {
        text-align: center;
        font-size: 0.96rem;
        margin-bottom: 2rem;
    }

    .form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.25rem;
    }

    .form-field {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.95rem;
    }

    label {
        font-weight: 600;
        color: var(--evergreen);
        font-size: 0.9rem;
    }

    input,
    select,
    textarea {
        padding: 0.6rem 0.7rem;
        border-radius: 999px;
        border: 1px solid rgba(31, 57, 41, 0.22);
        font-family: inherit;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.15s ease, box-shadow 0.15s ease;
        background-color: #fffdf7;
    }

    textarea {
        border-radius: 18px;
        resize: vertical;
        min-height: 120px;
    }

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--sweet-salmon);
        box-shadow: 0 0 0 3px rgba(239, 131, 124, 0.24);
        background-color: #ffffff;
    }

    .form-full {
        grid-column: 1 / -1;
    }

    .form-actions {
        display: flex;
        justify-content: center;
        margin-top: 1.75rem;
    }

    footer {
        background-color: var(--evergreen);
        color: var(--white);
        padding: 2.5rem 1.5rem 2rem;
        text-align: center;
        margin-top: 2rem;
    }

    .footer-brand {
        font-family: 'Parisienne', cursive;
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .footer-line {
        font-size: 1rem;
        opacity: 0.95;
        margin-bottom: 0.75rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
        margin-top: 0.4rem;
        color: #ffe7cd;
    }

    .footer-meta {
        font-size: 0.85rem;
        opacity: 0.8;
        margin-top: 1rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.08);
        /* Subtle glass effect */
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
        font-size: 1.25rem;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        opacity: 0.9;
    }

    .social-icon:hover {
        background-color: var(--sweet-salmon);
        border-color: var(--sweet-salmon);
        transform: translateY(-4px) scale(1.1);
        opacity: 1;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 900px) {
        .hero {
            grid-template-columns: minmax(0, 1fr);
            padding-top: 3.5rem;
        }

        .hero-content {
            order: 1;
        }

        .hero-image-wrapper {
            order: 0;
        }

        .hero {
            text-align: center;
        }

        .hero-cta-group {
            justify-content: center;
        }

        .hero-content {
            margin: 0 auto;
        }

        .hero-badge {
            right: 4%;
        }

        .two-column {
            grid-template-columns: minmax(0, 1fr);
        }

        .section-intro {
            margin-bottom: 2rem;
        }

        .cards-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .gallery-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .form-grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .form-full {
            grid-column: auto;
        }
    }

    @media (max-width: 600px) {
        section {
            padding-inline: 1.25rem;
        }

        .cards-grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .gallery-grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .hero {
            padding-inline: 1.25rem;
        }
    }

    /* Animation Utilities */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-up-delay-1 {
        transition-delay: 0.1s;
    }

    .fade-up-delay-2 {
        transition-delay: 0.2s;
    }

    .fade-up-delay-3 {
        transition-delay: 0.3s;
    }

    /* Lightbox Styles */
    .lightbox {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .lightbox.active {
        opacity: 1;
        pointer-events: auto;
    }

    .lightbox-content-wrapper {
        position: relative;
        max-width: 90%;
        max-height: 90vh;
    }

    .lightbox-img {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 8px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        display: block;
    }

    .lightbox-close {
        position: absolute;
        top: -40px;
        right: 0;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0 10px;
        transition: transform 0.2s ease;
    }

    .lightbox-close:hover {
        transform: scale(1.1);
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        padding: 1rem 0.5rem;
        border-radius: 4px;
        transition: background 0.2s;
    }

    .lightbox-nav:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .lightbox-prev {
        left: -60px;
    }

    .lightbox-next {
        right: -60px;
    }

    @media (max-width: 768px) {

        .lightbox-prev,
        .lightbox-next {
            position: fixed;
            top: auto;
            bottom: 20px;
            transform: none;
            background: rgba(0, 0, 0, 0.5);
            padding: 0.8rem 1.2rem;
            border-radius: 50%;
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        .lightbox-close {
            top: 10px;
            right: 10px;
            z-index: 1001;
        }
    }


    .gallery-item {
        cursor: pointer;
    }

    /* Form Feedback Attributes */
    .form-message {
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 2rem;
        text-align: center;
        font-weight: 700;
        font-size: 1.25rem;
        line-height: 1.4;
        display: none;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    @keyframes popIn {
        from {
            opacity: 0;
            transform: scale(0.9) translateY(-20px);
        }

        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .form-message.success {
        background-color: var(--evergreen);
        /* Solid Dark Green for Max Contrast */
        color: var(--white);
        border: 2px solid var(--evergreen);
        display: block;
    }

    .form-message.error {
        background-color: var(--dusty-mauve);
        /* Solid Red/Mauve for Max Contrast */
        color: var(--white);
        border: 2px solid var(--dusty-mauve);
        display: block;
    }