:root {
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e5e7eb;
    --bg: #ffffff;
    --soft: #fafafc;
    --brand: #ec4899;
    --brand-ink: #be185d;
    --card: #ffffff;
    --shadow: 0 10px 32px rgba(2, 6, 23, .07);
    --radius: 18px
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: linear-gradient(180deg, #fff, var(--soft));
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
    line-height: 1.65
}

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

a {
    color: var(--brand);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px
}

.site {
    min-height: 100%;
    display: flex;
    flex-direction: column
}

/* Top navigation */
.topbar {
    border-bottom: 1px solid var(--line);
    background: #fff
}

.bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px
}

.brand {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #fda4af, #ec4899);
    padding: 8px 12px;
    border-radius: 12px
}

.nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.nav a {
    font-size: 14px;
    color: var(--ink);
    opacity: .85
}

.nav a:hover {
    opacity: 1
}

/* Hero */
.hero {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    background: #fff
}

.hero-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.1fr .9fr;
    grid-template-areas:
        "title media"
        "video media"
}

.hero-grid h1 {
    grid-area: title;
    margin: 0 0 6px;
    font-size: 32px
}

.hero-grid .hero-media {
    grid-area: media;
    margin: 0
}

.movie {
    grid-area: video;
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 16px;
    box-shadow: var(--shadow)
}

/* Main */
.main {
    display: grid;
    gap: 28px;
    padding: 28px 0
}

.section {
    padding: 0
}

.section.alt {
    background: linear-gradient(180deg, transparent, #fff0f6)
}

/* Cards */
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    position: relative;
    overflow: hidden
}

.card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, #ec4899, #f472b6, #fda4af)
}

.flow>*+* {
    margin-top: 12px
}

/* Grids */
.grid {
    display: grid;
    gap: 22px
}

@media (min-width: 960px) {
    .grid {
        grid-template-columns: 1fr 1fr
    }
}

/* FAQ */
.faq h4 {
    margin: 14px 0 6px
}

.faq p {
    margin: 0 0 12px
}

/* Footer */
.footer {
    margin-top: auto;
    border-top: 1px solid var(--line);
    background: #fff
}

.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 0
}

.foot-brand {
    font-weight: 800
}

.links {
    display: flex;
    gap: 14px
}

.map {
    border-top: 1px solid var(--line)
}

.map iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block
}

.legal {
    text-align: center;
    color: var(--muted);
    padding: 12px 0;
    font-size: 13px
}

/* Responsive */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "title" "media" "video"
    }
}