:root {
    --sage: #7A9E82;
    --sage-dark: #5C7E64;
    --sage-light: #EFF5ED;
    --olive: #6B8B5E;
    --cream: #FAF5EE;
    --warm-bg: #F5F0E6;
    --golden: #C4A96A;
    --terracotta: #C4896A;
    --ink: #3A3632;
    --muted: #7A756E;
    --soft-border: #DDD6C8;
    --white: #FFFFFF;
    --shadow: rgba(90, 80, 60, 0.08);
    --shadow-hover: rgba(90, 80, 60, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fade-in { transition: none; }
}

body {
    font-family: 'Inter', 'PingFang SC', sans-serif;
    background-color: var(--cream);
    background-image:
        /* Repeating botanical dot scatter */
        radial-gradient(circle 2.5px at 22px 28px, rgba(122,158,130,0.18) 100%, transparent 0),
        radial-gradient(circle 2px   at 68px 72px, rgba(196,169,106,0.15) 100%, transparent 0),
        radial-gradient(circle 1.5px at 48px 12px, rgba(196,130,90, 0.11) 100%, transparent 0),
        radial-gradient(circle 3px   at 8px  82px, rgba(122,158,130,0.12) 100%, transparent 0),
        radial-gradient(circle 1.5px at 85px 40px, rgba(196,169,106,0.12) 100%, transparent 0),
        radial-gradient(circle 2px   at 35px 55px, rgba(196,130,90, 0.08) 100%, transparent 0),
        /* Large earthy color washes */
        radial-gradient(ellipse 70% 50% at 5% 15%,  rgba(196,169,106,0.18) 0%, transparent 80%),
        radial-gradient(ellipse 60% 70% at 95% 85%, rgba(107,139, 94,0.14) 0%, transparent 80%),
        radial-gradient(ellipse 50% 40% at 75% 40%, rgba(196,140,106,0.09) 0%, transparent 80%);
    background-size:
        95px 95px, 95px 95px, 95px 95px,
        95px 95px, 95px 95px, 95px 95px,
        auto, auto, auto;
    color: var(--ink);
    line-height: 1.7;
}

/* Canvas grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,  transparent, transparent 24px, rgba(100,80,50,0.04)  24px, rgba(100,80,50,0.04)  25px),
        repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(100,80,50,0.025) 24px, rgba(100,80,50,0.025) 25px),
        repeating-linear-gradient(45deg, transparent, transparent 34px, rgba(100,80,50,0.015) 34px, rgba(100,80,50,0.015) 35px);
    pointer-events: none;
    z-index: 9999;
}

/* --- NAV --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 245, 238, 0.95);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--soft-border);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sage);
}
.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 1px;
}
.nav-logo-text span { color: var(--sage); font-style: italic; }
.nav-links { display: flex; gap: 24px; list-style: none; flex-shrink: 0; }
.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a {
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}
.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--ink);
}
.lang-toggle {
    font-size: 0.8rem;
    color: var(--muted);
    cursor: pointer;
    border: 1px solid var(--soft-border);
    padding: 5px 14px;
    border-radius: 20px;
    background: transparent;
    transition: all 0.2s;
    font-family: inherit;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.lang-toggle:hover {
    border-color: var(--sage);
    color: var(--sage-dark);
    background: var(--sage-light);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    background: linear-gradient(160deg, #F7F1E6 0%, #EDE4D0 40%, #E5D9C2 70%, #DACDB5 100%);
    overflow: hidden;
    position: relative;
}
/* Warm color blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero-blob-gold {
    width: 520px; height: 420px;
    background: rgba(196, 169, 106, 0.28);
    top: -120px; right: -120px;
}
.hero-blob-sage {
    width: 420px; height: 520px;
    background: rgba(122, 158, 130, 0.22);
    bottom: -100px; left: -120px;
}
.hero-blob-terra {
    width: 300px; height: 300px;
    background: rgba(196, 137, 106, 0.14);
    top: 30%; left: 20%;
}
/* Botanical SVG decorations */
.hero-botanical {
    position: absolute;
    pointer-events: none;
    opacity: 0.22;
}
.hero-botanical-left {
    bottom: -10px;
    left: -20px;
    width: 200px;
    height: auto;
}
.hero-botanical-right {
    top: 60px;
    right: -20px;
    width: 170px;
    height: auto;
    transform: rotate(180deg) scaleX(-1);
}

.hero-text { max-width: 700px; margin-bottom: 48px; position: relative; z-index: 1; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.hero h1 span { color: var(--sage); font-weight: 600; font-style: italic; }
.hero .subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 36px;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    background: var(--sage);
    color: white;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 126, 100, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--sage-dark);
    border: 2px solid var(--sage);
}
.btn-outline:hover {
    background: var(--sage);
    color: white;
}

/* --- COLLAGE --- */
.collage {
    width: 100%;
    max-width: 900px;
    height: 420px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
}
.collage-item {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(60, 50, 30, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.collage-item:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 40px rgba(60, 50, 30, 0.25);
    z-index: 20 !important;
}
.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.collage-item .collage-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(58, 54, 50, 0.85));
    color: white;
    padding: 24px 12px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0;
    transition: opacity 0.3s;
}
.collage-item:hover .collage-label { opacity: 1; }
.c1 { width: 200px; height: 260px; top: 20px;  left: 75px;  transform: rotate(-4deg); z-index: 2; }
.c2 { width: 180px; height: 180px; top: 0;     left: 265px; transform: rotate(2deg);  z-index: 3; }
.c3 { width: 170px; height: 220px; top: 40px;  left: 445px; transform: rotate(-1deg); z-index: 4; }
.c4 { width: 190px; height: 190px; top: 180px; left: 245px; transform: rotate(3deg);  z-index: 5; }
.c5 { width: 160px; height: 200px; top: 10px;  left: 615px; transform: rotate(4deg);  z-index: 1; }
.c6 { width: 200px; height: 170px; top: 210px; left: 445px; transform: rotate(-3deg); z-index: 6; }
.c7 { width: 180px; height: 230px; top: 130px; left: 645px; transform: rotate(2deg);  z-index: 2; }
.c8 { width: 150px; height: 180px; top: 160px; left: 85px;  transform: rotate(3deg);  z-index: 3; }

/* --- SECTIONS --- */
section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.section-title span { color: var(--sage); font-style: italic; font-weight: 400; }
.section-subtitle {
    color: var(--muted);
    margin-bottom: 48px;
    font-size: 0.95rem;
}

/* Decorative leaf accent next to section titles */
.section-leaf {
    display: inline-block;
    margin-right: 10px;
    opacity: 0.5;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

/* --- SCROLL FADE IN --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- PAGE LOADER --- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--sage-light);
    border-top-color: var(--sage);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- SKELETON LOADING --- */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    scroll-margin-top: 80px;
    cursor: pointer;
}
.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(90, 80, 60, 0.15);
}
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}
.gallery-item:hover::before {
    opacity: 1;
}
.gallery-img-wrap {
    position: relative;
    overflow: hidden;
}
.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.04);
}
.gallery-img-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(58, 54, 50, 0.65);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 12px;
    letter-spacing: 0.3px;
}
.gallery-info {
    padding: 16px 20px 18px;
}
.gallery-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}
.gallery-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--sage-light);
    color: var(--sage-dark);
    padding: 3px 11px;
    border-radius: 10px;
    margin-top: 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.gallery-item.highlight { animation: glow 1.5s ease; }
@keyframes glow {
    0% { box-shadow: 0 0 0 4px rgba(122, 158, 130, 0.5); }
    100% { box-shadow: 0 2px 12px var(--shadow); }
}

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.open {
    opacity: 1;
    pointer-events: all;
}
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 26, 22, 0.88);
    backdrop-filter: blur(4px);
}
.lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-img {
    max-width: 85vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
.lightbox-caption {
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-top: 14px;
    letter-spacing: 0.3px;
}
.lightbox-dots {
    display: flex;
    gap: 7px;
    margin-top: 12px;
}
.lightbox-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
}
.lightbox-dot.active {
    background: white;
    transform: scale(1.3);
}
.lightbox-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: white;
    font-size: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: white;
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-btn-hidden { visibility: hidden; }

/* --- FEATURED VIDEO --- */
.video-section {
    text-align: center;
    padding: 60px 0 40px;
}
.video-section .section-title { margin-bottom: 8px; }
.video-section .section-subtitle { margin-bottom: 32px; }
.video-wrapper {
    position: relative;
    display: inline-block;
    max-width: 480px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    background: #000;
}
.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.video-caption {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--muted);
    font-style: italic;
}
@media (max-width: 600px) {
    .video-wrapper { max-width: 340px; }
}

/* --- CAMP --- */
.camp-section {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 2px 20px var(--shadow);
}
.camp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 20px;
}
.camp-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 300;
}
.camp-header h2 span { color: var(--sage); font-style: italic; }
.camp-badge {
    background: var(--olive);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}
.camp-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}
.camp-detail {
    padding: 20px;
    background: var(--sage-light);
    border-radius: 10px;
}
.camp-detail .label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.camp-detail .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sage-dark);
}
.camp-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}
.camp-day {
    text-align: center;
    padding: 16px 8px;
    background: var(--sage-light);
    border-radius: 10px;
    transition: background 0.2s;
}
.camp-day:hover { background: #E2ECDE; }
.camp-day .day-num {
    font-size: 0.75rem;
    color: var(--sage);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.camp-day .day-project {
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 600;
}

/* --- ABOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}
.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-hover);
}
.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* --- CONTACT --- */
.contact-section {
    text-align: center;
    padding: 80px 24px;
}
.contact-section p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 32px;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid var(--soft-border);
    color: var(--muted);
    font-size: 0.85rem;
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--sage);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--sage-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .nav-inner { padding: 12px 20px; }
    .nav-logo-text { font-size: 1.1rem; }
    .nav-links { gap: 16px; }
    .hero { min-height: auto; padding: 90px 20px 50px; }
    .hero h1 { font-size: 3.5rem; }
    .hero .subtitle { font-size: 1rem; }
    .collage { height: 340px; max-width: 600px; }
    .c1 { width: 140px; height: 180px; top: 10px; left: 35px; }
    .c2 { width: 130px; height: 130px; top: 0; left: 165px; }
    .c3 { width: 120px; height: 160px; top: 30px; left: 295px; }
    .c4 { width: 140px; height: 140px; top: 140px; left: 145px; }
    .c5 { width: 120px; height: 150px; top: 10px; left: 415px; }
    .c6 { width: 140px; height: 130px; top: 170px; left: 295px; }
    .c7 { width: 130px; height: 170px; top: 110px; left: 435px; }
    .c8 { width: 110px; height: 140px; top: 150px; left: 35px; }
    .hero-botanical { display: none; }
    section { padding: 60px 20px; }
    .section-title { font-size: 2.2rem; }
    .camp-section { padding: 36px; }
    .camp-header h2 { font-size: 1.8rem; }
    .about-grid { gap: 32px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 60px; left: 0; right: 0; background: rgba(250, 245, 238, 0.98); backdrop-filter: blur(12px); flex-direction: column; padding: 20px; gap: 0; border-bottom: 1px solid var(--soft-border); z-index: 99; }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 14px 0; font-size: 1rem; border-bottom: 1px solid var(--soft-border); }
    .nav-links li:last-child a { border-bottom: none; }
    .mobile-menu-btn { display: block; order: 3; }
    .lang-toggle { order: 2; margin-left: auto; margin-right: 12px; }
    .hero { padding: 80px 16px 40px; }
    .hero h1 { font-size: 2.8rem; }
    .hero .subtitle { font-size: 0.95rem; margin-bottom: 24px; }
    .hero-buttons { flex-direction: column; width: 100%; align-items: center; }
    .btn { width: auto; min-width: 200px; max-width: 280px; text-align: center; padding: 14px 32px; }
    .collage {
        height: auto;
        max-width: 420px;
        margin: 0 auto;
        position: relative;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 10px;
        padding: 16px;
    }
    .collage-item {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        top: auto;
        left: auto;
        right: auto;
    }
    .collage-item:nth-child(1) { grid-column: 1; grid-row: 1; transform: rotate(-3deg); }
    .collage-item:nth-child(2) { grid-column: 2; grid-row: 1; transform: rotate(2deg); }
    .collage-item:nth-child(3) { grid-column: 3; grid-row: 1; transform: rotate(-2deg); }
    .collage-item:nth-child(4) { grid-column: 4; grid-row: 1; transform: rotate(2deg); }
    .collage-item:nth-child(5) { grid-column: 1; grid-row: 2; transform: rotate(3deg); }
    .collage-item:nth-child(6) { grid-column: 2; grid-row: 2; transform: rotate(-2deg); }
    .collage-item:nth-child(7) { grid-column: 3; grid-row: 2; transform: rotate(2deg); }
    .collage-item:nth-child(8) { grid-column: 4; grid-row: 2; transform: rotate(-3deg); }
    .c5, .c7 { display: block; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .gallery-img { height: 220px; }
    .gallery-info { padding: 14px 16px; }
    .gallery-info h3 { font-size: 1rem; }
    .camp-section { padding: 28px 24px; }
    .camp-header { flex-direction: column; gap: 16px; }
    .camp-header h2 { font-size: 1.6rem; }
    .camp-details { grid-template-columns: 1fr; gap: 16px; }
    .camp-days { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .camp-days .camp-day:last-child { grid-column: span 2; }
    .camp-day { padding: 14px 8px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { max-width: 280px; margin: 0 auto; }
    .contact-section { padding: 60px 20px; }
    .lightbox-img { max-width: 92vw; max-height: 55vh; }
    .lightbox-btn { display: none; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero .subtitle { font-size: 0.9rem; }
    .collage { 
        max-width: 300px; 
        gap: 10px;
        padding: 15px;
    }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-img { height: 280px; }
    .section-title { font-size: 1.8rem; }
    .camp-days { grid-template-columns: 1fr; }
    .camp-days .camp-day:last-child { grid-column: span 1; }
    .camp-badge { font-size: 0.75rem; padding: 6px 14px; }
}
@media (max-width: 360px) {
    .hero h1 { font-size: 1.9rem; }
    .collage { 
        max-width: 260px; 
        gap: 8px;
        padding: 10px;
    }
}
