/* --- MODERN ORGANIC AESTHETIC VARIABLES --- */
:root {
    --primary: #1B4332;       /* Deep Forest Green */
    --primary-light: #2D6A4F;
    --primary-dark: #081C15;
    --accent: #D05A32;        /* Warm Terracotta */
    --accent-hover: #A74220;
    --bg-main: #FCFBF9;       /* Off-White/Cream */
    --bg-organic: #F1EAD7;    /* Soft Beige */
    --bg-pure: #FFFFFF;
    
    --text-main: #2D3748;
    --text-muted: #5C6777;
    --text-light: #A0AEC0;
    
    --border-color: #E2E8F0;
    
    --font-heading: 'Fraunces', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-blob: 40% 60% 70% 30% / 40% 50% 60% 50%;
    
    --shadow-soft: 0 10px 40px -10px rgba(27, 67, 50, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(208, 90, 50, 0.15);
}

/* --- RESET & FOUNDATION --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
    position: relative;
}

/* Subtle grain overlay for organic feel */
.grain-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.04"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 9999;
}

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

img, svg {
    max-width: 100%;
    height: auto;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 500;
}

.text-center { text-align: center; }
.text-white { color: var(--bg-pure) !important; }
.text-sm { font-size: 0.875rem; color: var(--text-muted); }
.mt-4 { margin-top: 2rem; }
.ml-2 { margin-left: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.opacity-80 { opacity: 0.8; }
.color-primary-dark { color: var(--primary-dark); }
.margin-bottom-md { margin-bottom: 2rem; }

/* Layout container */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1200px;
}
.container-lg { max-width: 1400px; }
.container-md { max-width: 900px; }
.container-sm { max-width: 700px; }

.section-padding { padding: 8rem 0; }
.bg-organic { background-color: var(--bg-organic); }
.bg-accent { background-color: var(--primary); }
.link-accent { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary { background-color: var(--accent); color: var(--bg-pure); box-shadow: 0 4px 15px rgba(208, 90, 50, 0.3); }
.btn-secondary { background-color: var(--primary); color: var(--bg-pure); }

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
    border-radius: inherit;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
}
.btn-primary:hover { box-shadow: var(--shadow-hover); }
.btn-secondary:hover { box-shadow: 0 15px 30px -10px rgba(27, 67, 50, 0.4); }

.btn-hover-effect:hover::before { transform: translateY(0); }
.btn-block { width: 100%; padding: 1.25rem; font-size: 1.125rem;}
.blob-btn { border-radius: var(--radius-blob); }

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 1.5rem; left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.navbar.scrolled {
    top: 0.75rem;
    width: calc(100% - 1.5rem);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.nav-container {
    height: 72px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 2rem !important;
}

.logo a { display: flex; flex-direction: column; }
.logo h1 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin: 0;
}

.logo h1 span {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    font-style: normal;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: -2px;
}

.nav-links { display: flex; gap: 2.5rem; }

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-light);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 6px; height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: var(--transition-bounce);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: translateX(-50%) scale(1); }

.mobile-menu-btn {
    display: none;
    background: none; border: none; cursor: pointer;
    color: var(--primary);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 95vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-pure);
}

.hero-image-wrapper {
    position: absolute;
    inset: 1.5rem;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.hero-image {
    position: absolute; inset: 0;
    background-image: url('hero-bg.png');
    background-size: cover; background-position: center;
    transform: scale(1.1);
    transition: transform 15s ease-out;
}
.hero:hover .hero-image { transform: scale(1); }

.hero-overlay {
    position: absolute; inset: 0;
    /* Darkened the top of the gradient for better contrast with the tag */
    background: linear-gradient(to bottom, rgba(27,67,50,0.6) 0%, rgba(8,28,21,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-pure);
    max-width: 900px;
    padding: 0 2rem;
}

.hero-tag {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    /* Higher contrast background for the tag */
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 0.6rem 1.8rem;
    border-radius: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.1;
    color: var(--bg-pure);
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.decorative-blob {
    position: absolute;
    background: var(--accent);
    border-radius: var(--radius-blob);
    filter: blur(60px);
    opacity: 0.4;
    z-index: 1;
}

.blob-1 { width: 300px; height: 300px; top: -10%; left: -5%; animation: float 10s infinite ease-in-out alternate; }
.blob-2 { width: 400px; height: 400px; bottom: -15%; right: -10%; background: var(--primary-light); animation: float 12s infinite ease-in-out alternate-reverse; }

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(30px) scale(1.1); }
}

/* --- TYPOGRAPHY & HEADERS --- */
.section-header { margin-bottom: 4rem; }
.section-subtitle {
    display: block;
    font-family: var(--font-body);
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-dark);
}

.subtle-heading {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.intro-accent {
    width: 60px; height: 4px;
    background-color: var(--accent);
    margin: 3rem auto 0;
    border-radius: 2px;
}

/* --- CARDS & PLACEHOLDERS --- */
.iframe-card {
    background: var(--bg-pure);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 600px;
    border: 1px solid rgba(0,0,0,0.03);
}

.iframe-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.map-card { height: 450px; }

.iframe-placeholder-content {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    color: var(--primary-light);
}

.icon-wrapper {
    width: 80px; height: 80px;
    background: rgba(208, 90, 50, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}

.bounce-slow { animation: bounce 3s infinite; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- PRICING TABLE --- */
.table-card {
    background: var(--bg-pure);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th, .pricing-table td {
    padding: 1.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background-color: var(--bg-organic);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    vertical-align: bottom;
    padding: 2rem;
}
.pricing-table th small { font-family: var(--font-body); font-weight: 500; opacity: 0.7; display: block; margin-top: 0.5rem; }

.pricing-table tr:last-child td { border-bottom: none; }

.pricing-table tr td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary-dark);
    width: 45%;
}

.pricing-table tbody tr {
    transition: var(--transition-fast);
}

.pricing-table tbody tr:hover {
    background-color: rgba(233, 237, 201, 0.3); /* Soft sage tint */
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
    z-index: 10;
    border-radius: 8px;
}

.price-highlight {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
}

/* --- CONTACT FORM --- */
.contact-card {
    background: var(--bg-pure);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.contact-card::before {
    content: ''; position: absolute; top: -10px; right: -10px; bottom: 10px; left: 10px;
    border: 2px solid var(--accent); border-radius: var(--radius-lg); z-index: -1; opacity: 0.3;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

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

.interaction-form input:not([type="checkbox"]),
.interaction-form textarea {
    width: 100%;
    padding: 1.25rem 0 0.5rem;
    border: none;
    border-bottom: 2px solid var(--border-color);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--primary-dark);
    transition: var(--transition-smooth);
}

.interaction-form input:not([type="checkbox"]):focus,
.interaction-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.interaction-form label:not(.custom-checkbox) {
    position: absolute;
    top: 1.25rem; left: 0;
    font-size: 1.125rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.interaction-form input:not([type="checkbox"]):focus ~ label,
.interaction-form input:not([type="checkbox"]):not(:placeholder-shown) ~ label,
.interaction-form textarea:focus ~ label,
.interaction-form textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
}

/* Checkbox */
.checkbox-wrapper { margin-top: 1rem; }
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    position: relative !important;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
    pointer-events: auto !important;
    z-index: 10;
}
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark {
    position: absolute;
    top: 2px; left: 0;
    height: 24px; width: 24px;
    background-color: var(--bg-organic);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition-fast);
}
.custom-checkbox:hover input ~ .checkmark { border-color: var(--primary-light); }
.custom-checkbox input:checked ~ .checkmark { background-color: var(--accent); border-color: var(--accent); }
.checkmark:after { content: ""; position: absolute; display: none; }
.custom-checkbox input:checked ~ .checkmark:after { display: block; }
.custom-checkbox .checkmark:after {
    left: 7px; top: 3px;
    width: 6px; height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-label { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }

/* --- FOOTER --- */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--bg-pure);
    padding: 6rem 0 2rem;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 4rem;
}

.footer-content {
    display: flex; justify-content: space-between; align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4rem; margin-bottom: 2rem;
}

.footer-brand h3 { font-size: 2rem; color: var(--bg-pure); }

.footer-links-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links-col strong { color: var(--accent); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.footer-link { 
    font-weight: 500; 
    font-size: 1rem; 
    opacity: 0.8; 
    transition: var(--transition-smooth); 
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-link:hover { opacity: 1; color: var(--bg-pure); transform: translateX(5px); }
.footer-icon { width: 1.1rem; height: 1.1rem; stroke-width: 2px; }


.footer-bottom { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.875rem; }

/* --- ANIMATION CLASSES --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.zoom-in { transform: scale(0.95); }

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Staggered Delays */
.reveal.active.stager-1 { transition-delay: 0.1s; }
.reveal.active.stager-2 { transition-delay: 0.2s; }
.reveal.active.stager-3 { transition-delay: 0.3s; }
.reveal.active.stager-4 { transition-delay: 0.4s; }

/* -- RESPONSIVENESS -- */
@media (max-width: 900px) {
    .container { padding: 0 1.5rem; }
    .hero-image-wrapper { inset: 1rem; }
    .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
    .form-row { grid-template-columns: 1fr; gap: 0; display: block; }
    .contact-card { padding: 2rem; }
    .footer-content { 
        flex-direction: column; 
        text-align: center; 
        gap: 3rem; 
        align-items: center;
    }
    .footer-links-col { align-items: center; }
    
    /* Mobile Table with Horizontal Scrolling */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--bg-pure);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
        margin: 0 -0.5rem;
        padding: 0.5rem;
    }
    .pricing-table {
        min-width: 0; /* Remove fixed minimum width */
        display: table !important;
        width: 100% !important;
        table-layout: fixed; /* Ensures column widths are respected */
    }
    .pricing-table thead { display: table-header-group !important; }
    .pricing-table tbody { display: table-row-group !important; }
    .pricing-table tr { display: table-row !important; background: transparent !important; box-shadow: none !important; border: none !important; }
    .pricing-table td, .pricing-table th { 
        display: table-cell !important; 
        padding: 0.75rem 0.5rem !important;
        text-align: left !important;
        border-bottom: 1px solid var(--border-color) !important;
        white-space: normal !important; /* Allow wrapping */
        word-wrap: break-word;
        vertical-align: top;
    }
    .pricing-table th:first-child, .pricing-table td:first-child { width: 65%; }
    .pricing-table th:last-child, .pricing-table td:last-child { width: 35%; text-align: right !important; }
    .pricing-table th { background: var(--bg-organic) !important; font-size: 0.9rem; }
}


@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .section-padding { padding: 5rem 0; }
    .subtle-heading { font-size: 2rem; }
    .section-title { font-size: 2.5rem; }
}

/* Mobile Nav Styles inherited from before but enhanced */
.mobile-nav-overlay {
    position: fixed; top: 90px; left: 0; width: 100%; height: 0;
    background-color: var(--primary);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden; transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1); z-index: 999;
}
.mobile-nav-overlay.active { height: calc(100vh - 90px); }
.mobile-link { font-family: var(--font-heading); font-size: 2rem; color: var(--bg-organic); margin: 1.5rem 0; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
.mobile-nav-overlay.active .mobile-link { opacity: 1; transform: translateY(0); }

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 250px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: zoom-in;
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    z-index: 2;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }

/* Overlay on Hover */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 67, 50, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: white;
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { 
    transform: scale(0.8) translateY(20px); 
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item:hover .gallery-overlay svg { 
    transform: scale(1) translateY(0); 
}

/* Lightbox Styling */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 28, 21, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: zoom-out;
}
.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.active .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 200;
    transition: var(--transition-fast);
    cursor: pointer;
    line-height: 1;
    z-index: 1010;
}
.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 1010;
    opacity: 0.6;
}
.lightbox-nav:hover { opacity: 1; color: var(--accent); scale: 1.2; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 1rem;
        margin: 0 -1rem;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
    }
    .gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 350px;
    }
    .gallery-item.large { grid-column: auto; grid-row: auto; width: 85%; }
    
    .lightbox-nav { display: none; }

    /* Fix Calendar Clipping */
    .iframe-card {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px;
        background: white;
        border-radius: var(--radius-md);
    }
    .iframe-card iframe {
        min-width: 600px; /* Forces enough width for the calendar to be readable */
        height: 500px;
        border-radius: 8px;
    }
}



/* --- FAQ ACCORDION --- */
.faq-accordion {
    max-width: 800px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 1rem;
}
.faq-item {
    background: var(--bg-pure);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-fast);
}
.faq-item:hover { box-shadow: var(--shadow-hover); }
.faq-item summary {
    font-family: var(--font-heading);
    font-size: 1.25rem; font-weight: 500;
    color: var(--primary-dark);
    cursor: pointer;
    list-style: none; /* remove default arrow */
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem; color: var(--accent);
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after { content: '-'; transform: rotate(180deg); }
.faq-content {
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
    color: var(--text-muted);
}
