:root {
    --bg-primary: #0b0b0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0b0;
    --text-muted: #666680;
    --accent: #4a9eff;
    --accent-hover: #6db3ff;
    --accent-glow: rgba(74, 158, 255, 0.15);
    --gradient: linear-gradient(135deg, #4a9eff, #7c3aed);
    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --nav-height: 70px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: rgba(11, 11, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-inner {
    width: 100%;
    max-width: var(--max-width);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* ── PAGE CONTENT ── */
.page-content {
    flex: 1;
    padding: calc(var(--nav-height) + 4rem) 2rem 6rem;
    display: flex;
    justify-content: center;
}
.page-inner {
    width: 100%;
    max-width: var(--max-width);
}
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.divider {
    width: 60px; height: 2px;
    background: var(--gradient);
    margin-bottom: 2rem;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}
.btn-primary {
    background: var(--gradient);
    color: #fff;
    border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* ── PLACEHOLDER IMAGES ── */
.placeholder-img {
    background: var(--bg-tertiary);
    border: 1px dashed rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    overflow: hidden;
}

/* ── HOME / HERO ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - var(--nav-height) - 4rem);
}
.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-text h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image .placeholder-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    max-height: 550px;
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.about-image .placeholder-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 8px;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}
.about-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.about-links a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.about-links a:hover { border-bottom-color: var(--accent); }

/* ── MULTIMEDIA ── */
.media-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.media-content .section-label,
.media-content .section-title { text-align: center; }
.media-content .divider { margin: 0 auto 2rem; }
.media-content > p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}
.media-embed {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1rem;
}
.media-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.media-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.media-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 158, 255, 0.3);
}
.media-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.media-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.media-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-top: 1rem;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.gallery-item .placeholder-img {
    width: 100%;
    aspect-ratio: 4/3;
}
.gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.gallery-item:first-child .placeholder-img {
    aspect-ratio: auto;
    height: 100%;
}
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.gallery-item:hover .overlay { opacity: 1; }
.overlay span { color: #fff; font-size: 0.85rem; font-weight: 500; }

/* ── CONNECT ── */
.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.connect-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.connect-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}
.connect-photo .placeholder-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.promo-download { text-align: center; }
.promo-download a {
    color: var(--accent);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
}
.promo-download a:hover { text-decoration: underline; }
.social-links { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.social-link {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}
.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ── FOOTER ── */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-text p { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .hero-image { order: -1; }
    .hero-image .placeholder-img { max-height: 350px; aspect-ratio: 1/1; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .about-image .placeholder-img { max-height: 400px; }
    .media-cards { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-column: 1 / -1; grid-row: auto; }
    .gallery-item:first-child .placeholder-img { aspect-ratio: 16/9; }
    .connect-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(11, 11, 15, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .section-title { font-size: 2rem; }
}
