:root {
    color-scheme: dark;
    --bg: #0f0f12;
    --surface: #1a1b21;
    --surface-light: #23242c;
    --text: #f5f5f7;
    --muted: #b5b8c5;
    --accent: #ffb347;
    --accent-strong: #ff8c42;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at top, rgba(255, 179, 71, 0.12), transparent 50%), var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 6vw 1.5rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(15, 15, 18, 0.9);
    backdrop-filter: blur(12px);
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
}

.brand:hover {
    opacity: 0.9;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    border: 1px solid var(--border);
    object-fit: cover;
    background: var(--surface);
}

.brand h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.brand p {
    color: var(--muted);
    font-size: 0.95rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.lang-switch a {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.lang-switch a.active {
    background: var(--accent);
    color: #1b0f03;
    border-color: rgba(0, 0, 0, 0.15);
}

main {
    padding: 2rem 6vw 3.5rem;
}

.hero {
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.18), rgba(26, 27, 33, 0.8));
    border-radius: 28px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border);
}

.hero-content {
    max-width: 640px;
}

.hero h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.hero p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button {
    background: var(--accent);
    color: #1b0f03;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
}

.button:hover {
    transform: translateY(-2px);
}

.button.ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.section-title p {
    color: var(--muted);
}

.portfolio {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-grid figure {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface-light);
    content-visibility: auto;
    contain-intrinsic-size: 220px 220px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.05);
}

.empty-state {
    color: var(--muted);
    font-style: italic;
}

.contact {
    background: var(--surface);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.faq {
    margin: 3rem 0 1rem;
}

.tiktok {
    margin: 3rem 0;
}

.aftercare {
    margin: 3rem 0;
}

.aftercare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.aftercare-card {
    background: var(--surface-light);
    border-radius: 18px;
    padding: 1.25rem;
    border: 1px solid var(--border);
}

.aftercare-card h4 {
    margin-bottom: 0.5rem;
}

.aftercare-card p {
    color: var(--muted);
}

.tiktok-embed-wrap {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--surface-light);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    color: var(--muted);
    margin-top: 0.75rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--surface-light);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.contact-card h4 {
    margin-bottom: 0.75rem;
}

.contact-card ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    color: var(--muted);
}

.contact-card a {
    color: var(--text);
}

.site-footer {
    text-align: center;
    padding: 2rem 6vw 3rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

.scroll-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #1b0f03;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(255, 140, 66, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-2px);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.92);
    display: grid;
    place-items: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 100;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: min(92vw, 920px);
    max-height: 80vh;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    font-size: 2rem;
    background: var(--surface-light);
    color: var(--text);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(26, 27, 33, 0.9);
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.lightbox-nav.prev {
    left: 1.5rem;
}

.lightbox-nav.next {
    right: 1.5rem;
}

@media (max-width: 720px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}

@media (max-width: 720px) {
    .site-header {
        position: static;
        padding: 1.5rem 6vw;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        padding: 2rem;
    }

    .contact {
        padding: 2rem;
    }
}
