/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a2e;
    background: #faf9f7;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.skip-link {
    position: absolute; top: -100%; left: 0;
    background: #5B2C6F; color: #fff; padding: 8px 16px; z-index: 200;
    font-size: .875rem; border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

/* ===== CSS VARIABLES ===== */
:root {
    --plum: #5B2C6F;
    --plum-dark: #3D1F4D;
    --plum-light: #C4B5FD;
    --plum-bg: #F3EEFA;
    --amber: #F59E0B;
    --amber-dark: #D97706;
    --amber-light: #FDE68A;
    --neutral-50: #faf9f7;
    --neutral-100: #f0ede8;
    --neutral-200: #e2ddd5;
    --neutral-600: #5c5550;
    --neutral-800: #2a2520;
    --neutral-900: #1a1a2e;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(26,26,46,.08);
    --shadow-md: 0 4px 16px rgba(26,26,46,.10);
    --shadow-lg: 0 8px 32px rgba(26,26,46,.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --container: 1200px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--neutral-900); }

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--plum); margin-bottom: 12px;
}
.section-label::before {
    content: ''; display: block; width: 24px; height: 2px;
    background: var(--amber); border-radius: 2px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem; color: var(--neutral-600);
    max-width: 560px; line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9375rem;
    padding: 12px 28px; border-radius: var(--radius-sm);
    transition: all .2s ease; white-space: nowrap;
}
.btn-amber {
    background: var(--amber); color: var(--neutral-900);
    box-shadow: 0 4px 12px rgba(245,158,11,.35);
}
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,.45); }
.btn-plum { background: var(--plum); color: var(--white); }
.btn-plum:hover { background: var(--plum-dark); transform: translateY(-1px); }
.btn-outline-light {
    border: 2px solid rgba(255,255,255,.5); color: var(--white);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-outline-plum {
    border: 2px solid var(--plum); color: var(--plum);
}
.btn-outline-plum:hover { background: var(--plum); color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,249,247,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem;
    color: var(--neutral-900);
}
.logo-text { color: var(--neutral-900); }
.logo-light .logo-text { color: var(--white); }
.nav ul { display: flex; align-items: center; gap: 32px; }
.nav a {
    font-size: .9375rem; font-weight: 500; color: var(--neutral-600);
    transition: color .2s;
}
.nav a:hover { color: var(--plum); }
.nav .btn-amber { color: var(--neutral-900); }

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 24px; height: 2px; background: var(--neutral-800);
    border-radius: 2px; transition: all .3s;
}
.hamburger::before, .hamburger::after { content: ''; position: absolute; }
.hamburger::before { transform: translateY(-7px); }
.hamburger::after { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--neutral-200);
        padding: 24px; transform: translateY(-120%);
        opacity: 0; transition: all .3s ease; pointer-events: none;
        box-shadow: var(--shadow-lg);
    }
    .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav ul { flex-direction: column; gap: 20px; }
    .nav a { font-size: 1.1rem; }
}

/* ===== HERO ===== */
.hero {
    padding-top: 72px; min-height: 100vh;
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 60%, #7B3F8E 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
    padding: 80px 0;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.3);
    color: var(--amber-light); font-size: .8125rem; font-weight: 600;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white); line-height: 1.08;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 1.125rem; color: rgba(255,255,255,.75);
    line-height: 1.75; max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
    display: flex; align-items: center; gap: 0;
    border-top: 1px solid rgba(255,255,255,.15); padding-top: 32px;
}
.hero-stat { flex: 1; text-align: left; }
.stat-num {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; color: var(--amber);
    line-height: 1;
}
.stat-label { font-size: .8125rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.hero-stat-divider {
    width: 1px; height: 48px; background: rgba(255,255,255,.2);
}

/* Hero images */
.hero-image { position: relative; }
.hero-img-main {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 640/720; }
.hero-img-float {
    position: absolute; bottom: -40px; left: -40px;
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,.25);
    border: 4px solid var(--white);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 400/280; }
.hero-accent {
    position: absolute; top: -20px; right: -20px;
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--amber); opacity: .15;
    filter: blur(40px);
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-image { max-width: 560px; }
    .hero-img-float { display: none; }
}
@media (max-width: 640px) {
    .hero-grid { padding: 48px 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-stat-divider { display: none; }
}

/* ===== CAMPS ===== */
.camps {
    padding: 120px 0;
    background: var(--neutral-50);
}
.camps .container { text-align: center; }
.camps .section-desc { margin: 0 auto 64px; }
.camps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; text-align: left;
}
.camp-card {
    background: var(--white); border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    border: 1px solid var(--neutral-200);
}
.camp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--plum-light); }
.camp-card-img { position: relative; overflow: hidden; }
.camp-card-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 520/380; transition: transform .4s ease; }
.camp-card:hover .camp-card-img img { transform: scale(1.05); }
.camp-card-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--amber); color: var(--neutral-900);
    font-size: .75rem; font-weight: 700; padding: 4px 12px;
    border-radius: 100px; text-transform: uppercase; letter-spacing: .05em;
}
.camp-card-body { padding: 28px; }
.camp-card-body h3 {
    font-size: 1.375rem; margin-bottom: 12px;
}
.camp-card-body p {
    font-size: .9375rem; color: var(--neutral-600);
    line-height: 1.7; margin-bottom: 20px;
}
.camp-card-features { margin-bottom: 24px; }
.camp-card-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: .875rem; color: var(--neutral-800);
    padding: 6px 0;
}
.camp-card-features li svg { color: var(--plum); flex-shrink: 0; }

@media (max-width: 1024px) { .camps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .camps-grid { grid-template-columns: 1fr; } }

/* ===== AMENITIES ===== */
.amenities {
    padding: 120px 0;
    background: var(--white);
}
.amenities-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
}
.amenities-list { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.amenity-item {
    display: flex; gap: 20px;
    padding: 20px; border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    transition: all .2s ease;
}
.amenity-item:hover { border-color: var(--plum-light); background: var(--plum-bg); }
.amenity-icon {
    flex-shrink: 0; width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--plum-bg); border-radius: var(--radius-sm);
    color: var(--plum);
}
.amenity-item h4 {
    font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
    margin-bottom: 4px; color: var(--neutral-900);
}
.amenity-item p { font-size: .875rem; color: var(--neutral-600); line-height: 1.6; }
.amenities-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.amenities-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 560/680; }

@media (max-width: 1024px) {
    .amenities-layout { grid-template-columns: 1fr; gap: 48px; }
    .amenities-image { order: -1; max-width: 560px; }
}

/* ===== LOCATION ===== */
.location {
    padding: 120px 0;
    background: var(--neutral-100);
}
.location-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: stretch;
}
.location-details { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.location-detail {
    display: flex; gap: 16px; align-items: flex-start;
}
.location-detail svg { color: var(--plum); flex-shrink: 0; margin-top: 2px; }
.location-detail strong { display: block; font-size: .8125rem; text-transform: uppercase; letter-spacing: .08em; color: var(--plum); margin-bottom: 4px; }
.location-detail span, .location-detail a {
    font-size: 1rem; color: var(--neutral-600); line-height: 1.6;
}
.location-detail a:hover { color: var(--plum); }
.location-map {
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-md); min-height: 400px;
}
.location-map iframe { width: 100%; height: 100%; min-height: 400px; }

@media (max-width: 1024px) { .location-grid { grid-template-columns: 1fr; } }

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--plum);
    color: var(--white);
}
.about .section-label { color: var(--amber-light); }
.about .section-label::before { background: var(--amber); }
.about .section-title { color: var(--white); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 560/480; }
.about-content .section-desc { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.about-content > p {
    font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 40px;
}
.about-value .value-num {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 800; color: var(--amber);
    line-height: 1; margin-bottom: 8px;
}
.about-value h4 {
    font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
    color: var(--white); margin-bottom: 6px;
}
.about-value p { font-size: .8125rem; color: rgba(255,255,255,.6); line-height: 1.6; }

@media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } .about-image { max-width: 560px; } }
@media (max-width: 640px) { .about-values { grid-template-columns: 1fr; } }

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--amber-dark) 0%, var(--amber) 100%);
}
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--neutral-900); margin-bottom: 12px;
}
.cta-desc { font-size: 1.0625rem; color: rgba(26,26,46,.7); max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn-amber { background: var(--neutral-900); color: var(--amber); box-shadow: 0 4px 16px rgba(26,26,46,.3); }
.cta-actions .btn-amber:hover { background: var(--neutral-800); }
.cta-actions .btn-outline-light { border-color: var(--neutral-900); color: var(--neutral-900); }
.cta-actions .btn-outline-light:hover { background: var(--neutral-900); color: var(--white); }

@media (max-width: 768px) { .cta-inner { flex-direction: column; text-align: center; } .cta-actions { justify-content: center; } }

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--neutral-50);
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: start;
}
.contact-methods { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-method {
    display: flex; gap: 16px; align-items: center;
    padding: 20px; border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    transition: all .2s;
}
.contact-method:hover { border-color: var(--plum-light); background: var(--plum-bg); }
.contact-method-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: var(--plum-bg); border-radius: var(--radius-sm); color: var(--plum);
}
.contact-method-label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--neutral-600); margin-bottom: 2px; }
.contact-method-value { display: block; font-size: 1rem; color: var(--neutral-900); font-weight: 600; }
.contact-method-value a { color: inherit; }
.contact-method-value a:hover { color: var(--plum); }

/* Form */
.contact-form-wrap {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: .8125rem; font-weight: 600; color: var(--neutral-800);
    text-transform: uppercase; letter-spacing: .05em;
}
.form-group input, .form-group select, .form-group textarea {
    font-family: 'Inter', sans-serif; font-size: .9375rem;
    padding: 12px 16px; border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm); background: var(--neutral-50);
    color: var(--neutral-900); transition: border-color .2s, box-shadow .2s;
    outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--plum); box-shadow: 0 0 0 3px rgba(91,44,111,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    text-align: center; padding: 32px;
}
.form-success p { font-size: 1rem; color: var(--neutral-600); }

@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } .contact-form-wrap { padding: 24px; } }

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-900); color: rgba(255,255,255,.6);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px; padding-bottom: 60px;
}
.footer-brand p { font-size: .9375rem; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-links h4, .footer-contact h4 {
    font-family: 'Inter', sans-serif; font-size: .8125rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
    color: var(--white); margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: .9375rem; transition: color .2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-contact p { font-size: .9375rem; line-height: 1.7; margin-bottom: 8px; }
.footer-contact a:hover { color: var(--amber); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0; text-align: center;
    font-size: .8125rem;
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
</style>
