:root {
    --bg: #12060f;
    --bg-soft: #1a0c17;
    --panel: rgba(255, 255, 255, 0.08);
    --panel-strong: rgba(9, 8, 12, 0.72);
    --text: #fff7f9;
    --muted: #d8b9c7;
    --line: rgba(255, 255, 255, 0.14);
    --accent: #ff4f98;
    --accent-strong: #ff7db2;
    --sand: #f8d9c1;
    --shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Sora', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 79, 152, 0.28), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(248, 217, 193, 0.18), transparent 24%),
        linear-gradient(180deg, #220916 0%, #12060f 42%, #090509 100%);
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.24;
    pointer-events: none;
    z-index: -1;
}

.page-shell::before {
    top: -8rem;
    right: -6rem;
    background: var(--accent);
}

.page-shell::after {
    bottom: -10rem;
    left: -6rem;
    background: #8c3d61;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.narrow {
    width: min(calc(100% - 2rem), 820px);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(10, 6, 11, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.brand span {
    display: grid;
    gap: 0.18rem;
}

.brand strong,
h1,
h2,
h3 {
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.01em;
}

.brand small {
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.site-nav a {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.35rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff7b78 100%);
    color: #19060f;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(255, 79, 152, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 79, 152, 0.3);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.button-nav {
    margin-left: 0.4rem;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.4rem;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

.hero,
.page-hero {
    padding: 5rem 0 3rem;
}

.hero-grid,
.showcase-grid,
.story-grid,
.two-column,
.contact-grid,
.support-box,
.footer-wrap {
    display: grid;
    gap: 2rem;
}

.hero-grid,
.showcase-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.hero-copy {
    animation: rise 700ms ease both;
}

.hero-visual {
    animation: float-in 900ms ease both;
}

.eyebrow,
.section-tag {
    margin: 0 0 1rem;
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 600;
}

h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.92;
}

h2 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
}

h3 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
}

.lead,
.story-grid p,
.showcase-copy > p,
.content-card p,
.support-box p,
.timeline p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.hero-highlights li,
.contact-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text);
}

.hero-highlights li::before,
.contact-list li::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sand), var(--accent));
}

.card-glow,
.card-frame,
.content-card,
.support-box,
.timeline article {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card-glow {
    padding: 2rem;
    overflow: hidden;
}

.card-glow::after {
    content: "";
    position: absolute;
    inset: auto -20% -45% auto;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: rgba(255, 79, 152, 0.28);
    filter: blur(36px);
}

.hero-logo {
    width: min(100%, 520px);
    margin: 0 auto;
}

.story-band,
.showcase,
.content-section,
.timeline-section,
.support-panel {
    padding: 2rem 0 4.5rem;
}

.story-grid {
    grid-template-columns: 1fr 0.95fr;
    align-items: end;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-frame {
    padding: 1rem;
}

.card-frame img {
    border-radius: calc(var(--radius) - 8px);
    min-height: 100%;
    object-fit: cover;
}

.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

.feature-list article,
.timeline article,
.content-card,
.accent-card,
.form-card {
    padding: 1.6rem;
}

.support-box {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 2rem;
}

.page-inner .page-hero {
    padding-bottom: 1.5rem;
}

.two-column,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    align-items: start;
}

.timeline span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 79, 152, 0.14);
    color: var(--accent-strong);
    font-weight: 800;
}

.accent-card {
    background: linear-gradient(180deg, rgba(255, 79, 152, 0.18), rgba(255, 255, 255, 0.06));
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.8rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.5rem;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 5, 8, 0.55);
    color: var(--text);
}

.site-footer {
    padding: 1.5rem 0 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap {
    grid-template-columns: 1fr auto;
    align-items: center;
}

.footer-wrap p,
.footer-wrap nav {
    color: var(--muted);
}

.footer-wrap nav {
    display: flex;
    gap: 1rem;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 960px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(14, 8, 14, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow);
    }

    .menu-open .site-nav {
        display: flex;
    }

    .hero-grid,
    .showcase-grid,
    .story-grid,
    .two-column,
    .contact-grid,
    .support-box,
    .footer-wrap {
        grid-template-columns: 1fr;
    }

    .hero,
    .page-hero {
        padding-top: 3.5rem;
    }
}

@media (max-width: 640px) {
    .nav-wrap {
        min-height: 76px;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .brand small {
        display: none;
    }

    h1 {
        font-size: clamp(2.5rem, 12vw, 3.7rem);
    }

    h2 {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .card-glow,
    .feature-list article,
    .timeline article,
    .content-card,
    .support-box {
        padding: 1.25rem;
    }

    .story-grid {
        padding: 1.4rem 0;
    }
}