/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #0f172a;
    background: #ffffff;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid #eef2f7;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
}
.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
}
.nav { display: flex; gap: 18px; }
.nav a { color: #334155; font-weight: 600; font-size: 14px; }
.nav a:hover { color: #7c3aed; }
.nav-toggle { display: none; background: transparent; border: 0; font-size: 22px; cursor: pointer; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 50%, #f5f3ff 100%);
    z-index: -1;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 108px 0 72px;
    align-items: center;
}
.hero-label {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #7c3aed;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.hero h1 { font-size: 40px; line-height: 1.15; margin: 0 0 12px; }
.subtitle { color: #1e293b; margin: 0 0 16px; font-size: 20px; font-weight: 600; }
.intro { color: #475569; margin: 0 0 12px; font-size: 16px; }
.hero-media { display: flex; justify-content: center; }
.hero-media img {
    width: min(320px, 80vw);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.15);
}

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: #f8fafc; }
.section-title { font-size: 28px; margin: 0 0 40px; text-align: center; }

/* Feature rows */
.feature-list { display: flex; flex-direction: column; gap: 48px; }
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}
.feature-row.reverse .feature-image { order: 2; }
.feature-row.reverse .feature-body { order: 1; }
.feature-image img {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
}
.feature-body h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #6d28d9;
}
.feature-body p {
    margin: 0 0 10px;
    color: #475569;
    font-size: 16px;
}
.feature-body p:last-child { margin-bottom: 0; }

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.shot { margin: 0; }
.shot img {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shot img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(2,6,23,0.76);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}
.lightbox.open { display: flex; }
.lightbox-image {
    max-width: min(900px, 92vw);
    max-height: 88vh;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.lightbox-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 40px; height: 40px;
    border-radius: 999px;
    border: 0;
    background: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.highlight-box {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #ddd6fe;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.08);
}
.highlight-box p { margin: 0; color: #334155; font-size: 17px; line-height: 1.7; }

.list {
    max-width: 640px;
    margin: 0 auto 32px;
    padding: 0;
    list-style: none;
}
.list li {
    position: relative;
    padding: 14px 0 14px 32px;
    color: #334155;
    font-size: 17px;
    border-bottom: 1px solid #ddd6fe;
}
.list li:last-child { border-bottom: 0; }
.list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: 700;
}
.closing {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    color: #475569;
    font-size: 17px;
}

/* Footer */
.site-footer { border-top: 1px solid #ddd6fe; background: #f5f3ff; }
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    min-height: 72px;
    padding: 16px 0;
    color: #64748b;
    font-size: 14px;
}
.footer-copy { display: flex; flex-direction: column; gap: 4px; }
.footer-contact { font-size: 14px; }
.footer-contact a { color: #6d28d9; font-weight: 600; }
.footer-contact a:hover { color: #7c3aed; }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { color: #6d28d9; font-weight: 600; }
.footer-nav a:hover { color: #7c3aed; }

/* Responsive */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 88px; }
    .hero-media { order: -1; }
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
    }
    .feature-row.reverse .feature-image,
    .feature-row.reverse .feature-body { order: unset; }
    .feature-body { text-align: center; }
    .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .hero h1 { font-size: 30px; }
    .nav { display: none; }
    .nav.open {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: absolute;
        top: 64px;
        right: 12px;
        background: #ffffff;
        border: 1px solid #ddd6fe;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
        z-index: 1100;
    }
    .nav-toggle { display: inline-block; }
    .gallery { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
}
