:root {
    /* Color Palette */
    --color-primary: #D4745E;
    /* Terracotta (Buttons/Accents) */
    --color-primary-dark: #B55B45;
    --color-forest: #1B4332;
    /* Forest Green (Headings/Dark) */
    --color-forest-dark: #143628;
    --color-secondary: #D4AF37;
    /* Champagne Gold (Subtle Accents) */
    --color-bg: #FFFFFF;
    /* Pure White */
    --color-surface: #FFFFFF;
    /* Cards */
    --color-text-main: #2C2C2C;
    /* Charcoal */
    --color-text-light: #404040;
    /* Dark Gray */
    --color-border: #E5E5E5;
    --color-accent: #D4AF37;
    /* Alias for gold accents (eyebrows, dividers) */
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1.5rem;
    /* 24px (Increased) */
    --spacing-md: 3.75rem;
    /* 60px (Gap between head/body) */
    --spacing-lg: 7.5rem;
    /* 120px (Desktop Section Padding) */
    --spacing-xl: 10rem;

    /* Border Radius */
    --radius-sm: 8px;
    /* Form inputs */
    --radius-md: 16px;
    /* Cards/Images */
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 14px rgba(212, 116, 94, 0.25);
    /* Terracotta tint */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for sticky header */
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    /* Increased breathing room */
    font-weight: 400;
    /* Lighter weight */
    color: var(--color-text-light);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-forest);
    /* Forest Green Headlines */
}

h1 {
    font-size: clamp(36px, 5vw, 64px);
    /* Fluid H1, min 36px, max 64px */
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Utilities */
.container {
    width: 100%;
    max-width: 1140px;
    /* Reduced for focus */
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--spacing-lg) 0;
}

.bg-white {
    background-color: var(--color-bg);
}

.bg-cream {
    background-color: var(--color-bg);
}

/* Unified to White */
.bg-sage-light {
    background-color: var(--color-bg);
}

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

.text-white {
    color: #FFFFFF;
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    /* Taller tap target */
    padding: 0 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    /* 17px readable */
    text-transform: none;
    /* Removed aggressive caps */
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    line-height: 1;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 125%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid #FFFFFF;
    color: #FFFFFF;
}

.btn-outline:hover {
    background-color: #FFFFFF;
    color: var(--color-forest);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    /* Blur effect */
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 24px;
}

@media (min-width: 1140px) {
    .nav-container {
        padding: 0 5%;
    }
}

/* The logo artwork fills only ~52% of its square canvas, so the link acts as
   a viewport that hides the surrounding padding: the image is scaled up and
   centred, and the box is sized to the mark itself (~56px) rather than the
   file. Keep the 1.9x ratio between image size and box if either changes. */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 64px;
    overflow: hidden;
    margin-right: auto;
    flex-shrink: 0;
}

.logo img {
    width: 106px;
    height: 106px;
    max-width: none;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-main);
    position: relative;
    padding-bottom: 4px;
}

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

.btn-nav {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 24px;
    background-color: var(--color-primary);
    color: white !important;
    border-radius: var(--radius-sm);
}

.btn-nav:hover {
    background-color: var(--color-primary-dark);
    color: white !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-text-main);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #1B4332;
    background-image: linear-gradient(135deg, rgba(27, 67, 50, 0.85), rgba(107, 31, 59, 0.75)), url('assets/insidevenue2.jpg');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
}

.hero-overlay {
    display: none;
    /* Handled by background-image gradient */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
}

.hero-brand {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.92;
    margin-bottom: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.hero h1 {
    color: #FFFFFF;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subhead {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 48px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.7;
    }
}

/* Trust Stats Bar */
.stats-bar {
    background-color: var(--color-forest);
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

/* Why Choose Us */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: var(--color-accent);
}

.eyebrow.centered {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    color: #999;
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* Trust Badge */
.trust-badge {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.trust-badge .stars {
    color: var(--color-secondary);
    margin-right: 8px;
}

/* Feature Cards (Natraj Difference) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--color-surface);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-top-color: var(--color-secondary);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-bg);
    color: var(--color-primary);
    margin-bottom: 24px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background-color: var(--color-forest);
    color: var(--color-secondary);
    border-color: var(--color-forest);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--color-forest);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Check List (What's Included) */
.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--spacing-xs);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Pill Badge (thank-you page) */
.badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
}

.rounded-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-narrow {
    max-width: 800px;
}

/* Gallery - Bento Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    /* Smooth corners */
    position: relative;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

/* Bento Spans */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Main Large */
.gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
}

/* Tall */
.gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
}

/* Fallback logic needed for mobile */

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

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
    /* Subtle Zoom */
}

/* Overlay with Text */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.85) 0%, rgba(27, 67, 50, 0) 55%);
    opacity: 0.75;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: block;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    z-index: 2;
}

.caption::before {
    content: 'View Full Size';
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0;
    max-height: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 2px;
}

.gallery-item:hover .caption::before {
    opacity: 0.85;
    max-height: 20px;
    transform: translateY(0);
}

/* FAQ Accordion */
.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: var(--spacing-xs);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--spacing-sm) 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

.accordion-header .icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background: var(--color-surface);
    padding: 48px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-block h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--color-forest);
}

.info-block p {
    margin-bottom: 0;
    color: var(--color-text-light);
}

.info-block a {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.info-block a:hover {
    color: var(--color-primary);
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 0;
}

/* Netlify spam honeypot — hidden from humans, visible to bots */
.honeypot-field {
    display: none;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
}

input,
select,
textarea {
    width: 100%;
    padding: 0 16px;
    height: 52px;
    /* Premium height */
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-forest);
    transition: all 0.2s ease;
    background-color: #FAFAFA;
}

textarea {
    height: auto;
    padding: 16px;
    min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(212, 116, 94, 0.1);
}

.w-100 {
    width: 100%;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background-color: #FFFFFF;
    color: var(--color-text-main);
    border-top: 3px solid var(--color-secondary);
}

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

.footer h3 {
    color: var(--color-forest);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer p,
.footer a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 12px;
}

.copyright {
    border-top: 1px solid #F0F0F0;
    padding-top: 32px;
    color: #999;
    font-size: 0.85rem;
}

.copyright .credit {
    margin-top: 6px;
    font-size: 0.8rem;
}

.copyright .credit a {
    color: #999;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.copyright .credit a:hover {
    color: var(--color-primary);
}

/* Thank You / Confirmation Page */
.thankyou {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 var(--spacing-lg);
    background: linear-gradient(135deg, #1B4332, #6B1F3B);
    color: #FFFFFF;
}

.thankyou-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--color-secondary);
    margin: 0 auto 20px;
}

.thankyou-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-lead a {
    color: var(--color-secondary);
    font-weight: 600;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

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

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    color: white;
    text-align: center;
}

.lightbox-placeholder {
    width: 800px;
    height: 600px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    max-width: 100%;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-bottom: 64px;
        /* Room for sticky CTA bar */
    }

    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    }

    .mobile-cta-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 64px;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .mobile-cta-call {
        background-color: var(--color-forest);
        color: #FFFFFF;
    }

    .mobile-cta-quote {
        background-color: var(--color-primary);
        color: #FFFFFF;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 20px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .section {
        padding: 48px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subhead {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 16px;
    }

    .btn {
        width: 100%;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .split-layout.reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
        /* Ensure contact text is above form if desired, or keep as grid */
    }

    /* Reset Bento Grid for Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .gallery-item {
        height: 300px;
        /* Fixed height for mobile cards */
    }

    .gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        padding: 24px 0;
        gap: 24px;
        border-top: 1px solid #f0f0f0;
    }

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

    /* Simple nav (thank-you page) has no hamburger, so keep it inline */
    .nav-menu.nav-menu-simple {
        position: static;
        left: auto;
        top: auto;
        flex-direction: row;
        width: auto;
        background: transparent;
        box-shadow: none;
        border-top: none;
        padding: 0;
        gap: 16px;
    }

    .nav-menu-simple .nav-link {
        display: none;
    }

    .thankyou {
        padding: 120px 0 60px;
    }
}