:root {
    --bg: #05030a;
    --ink: #ffffff;
    --muted: #d7d0e0;
    --pink: #ff2d87;
    --pink-2: #ff6aa8;
    --cyan: #3ecbff;
    --magenta: #c84dff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Montserrat, system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: var(--pink); color: #fff; padding: 8px; z-index: 30; }

.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.top {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 3, 10, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 45, 135, 0.35);
}
.top-inner { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.brand { text-decoration: none; letter-spacing: 0.18em; font-weight: 800; }
.brand em, .logo-line em { color: var(--pink); font-style: normal; }
.nav { margin-left: auto; display: flex; gap: 16px; font-size: 13px; font-weight: 600; }
.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover { color: #fff; }
.lang { display: flex; gap: 8px; font-weight: 700; }
.lang a { text-decoration: none; color: var(--muted); }
.lang a.is-active { color: var(--cyan); }

.hero {
    background: #05030a;
    padding: 8px 0 0;
}
.hero-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #05030a;
}
.hero-photo {
    width: 100%;
    max-width: 1600px;
    height: auto;
    max-height: 86vh;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
}
.hero-content {
    padding: 22px 0 40px;
    text-align: center;
}
.slogan {
    font-family: "Great Vibes", cursive;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--pink-2);
    margin: 8px 0 28px;
}
.bubbles { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.bubble {
    width: min(280px, 100%);
    min-height: 120px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding: 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.bubble.pink { border: 3px solid var(--pink); box-shadow: 0 0 24px rgba(255,45,135,0.45); }
.bubble.cyan { border: 3px solid var(--cyan); box-shadow: 0 0 24px rgba(62,203,255,0.45); }
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent;
}
.btn.pink { background: var(--pink); color: #fff; box-shadow: 0 0 18px rgba(255,45,135,0.5); }
.btn.ghost { border-color: var(--cyan); color: var(--cyan); }

.band { padding: 72px 0; }
.band.alt { background: #090614; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.06em; }
h3 { margin: 0 0 10px; text-transform: uppercase; }
.kicker { color: var(--pink); letter-spacing: 0.22em; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.pink-text { color: var(--pink); }
.cyan-text { color: var(--cyan); }
.lead { color: var(--muted); max-width: 46rem; }
.tagline { font-family: "Great Vibes", cursive; font-size: 2rem; color: var(--pink-2); margin: 0 0 12px; }

.photo-frame {
    margin: 24px 0 32px;
    border: 1px solid rgba(255,45,135,0.4);
    box-shadow: 0 0 30px rgba(255,45,135,0.18);
    overflow: hidden;
    background: #080510;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-frame img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
}
.theme-photo {
    margin: 0;
    overflow: hidden;
    background: #080510;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 4;
    max-height: 560px;
}
.theme-photo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.photo-live,
.photo-360 {
    aspect-ratio: auto;
    max-height: none;
}
.photo-live img,
.photo-360 img {
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: contain;
    object-position: center center;
}
.pink-glow { box-shadow: 0 0 28px rgba(255,45,135,0.35); border: 1px solid var(--pink); }
.cyan-glow { box-shadow: 0 0 28px rgba(62,203,255,0.35); border: 1px solid var(--cyan); }

.pack-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 0.8fr;
    gap: 16px;
}
.pack {
    padding: 22px;
    border-radius: 18px;
    background: #0c0814;
}
.pack.pink { border: 2px solid var(--pink); }
.pack.cyan { border: 2px solid var(--cyan); }
.pack.magenta { border: 2px solid var(--magenta); }
.pack ul, .feature-list { list-style: none; padding: 0; margin: 0; }
.pack li, .feature-list li { padding: 8px 0 8px 22px; position: relative; color: var(--muted); }
.pack li::before, .feature-list li::before {
    content: "";
    width: 10px; height: 10px; border-radius: 50%;
    position: absolute; left: 0; top: 13px;
    background: var(--pink);
}
.pack.cyan li::before { background: var(--cyan); }
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,45,135,0.15);
}
.pack.cyan .badge { background: rgba(62,203,255,0.15); color: var(--cyan); }

.split-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: center; }
.split-grid.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split-grid.reverse figure { order: 2; }
.feature-list li { display: flex; flex-direction: column; gap: 2px; }
.feature-list strong { color: #fff; }
.prints { font-weight: 700; }
.ribbon {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}
.ribbon.pink { background: var(--pink); }
.ribbon.cyan { background: var(--cyan); color: #041018; }

.pyro-gallery {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 16px;
    margin-top: 28px;
    align-items: start;
}
.pyro-gallery figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255,45,135,0.35);
    background: #080510;
}
.pyro-gallery img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.event-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 28px; }
.event-card {
    text-align: center;
    padding: 18px 8px;
    border: 1px solid rgba(255,45,135,0.4);
    border-radius: 16px;
}
.event-card h3 { font-size: 13px; margin: 10px 0 0; }
.icon {
    width: 42px; height: 42px; margin: 0 auto;
    border: 2px solid var(--pink);
    border-radius: 50%;
    display: grid; place-items: center;
    box-shadow: 0 0 12px rgba(255,45,135,0.5);
}
.icon { font-size: 22px; line-height: 42px; }
.icon.rings::after { content: "💍"; }
.icon.cake::after { content: "🎂"; }
.icon.toast::after { content: "🥂"; }
.icon.star::after { content: "★"; }
.icon.smile::after { content: "☺"; }

.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 14px; margin: 28px 0 16px; }
.contact-card {
    text-decoration: none;
    border: 2px solid var(--pink);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #0c0814;
}
.contact-card:nth-child(2), .contact-card:nth-child(3) { border-color: var(--cyan); }
.contact-card span { color: var(--muted); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-card strong { font-size: 1.15rem; word-break: break-word; }
.contact-card em { font-style: normal; color: var(--pink-2); font-size: 13px; }
.note { color: var(--muted); font-size: 13px; }

.foot { border-top: 1px solid rgba(255,45,135,0.3); padding: 28px 0; }
.foot-inner { display: grid; gap: 8px; }
.foot a { color: var(--cyan); text-decoration: none; }
.copy { color: var(--muted); font-size: 13px; }

@media (max-width: 900px) {
    .top-inner { flex-wrap: wrap; }
    .nav { order: 3; width: 100%; margin: 8px 0 0; flex-wrap: wrap; gap: 12px; }
    .hero { padding-top: 0; }
    .hero-photo { max-height: 62vh; width: 100%; }
    .pack-grid, .split-grid, .split-grid.reverse, .event-row, .contact-grid, .pyro-gallery { grid-template-columns: 1fr; }
    .pyro-gallery img { max-height: 380px; }
    .split-grid.reverse figure { order: 0; }
    .theme-photo { max-height: 420px; aspect-ratio: 3 / 4; }
    .photo-live, .photo-360 { max-height: none; aspect-ratio: auto; }
    .photo-live img, .photo-360 img { max-height: 480px; }
    .photo-frame img { max-height: 320px; }
}
