:root {
    --bg: #050505;
    --text: #ffffff;
    --muted: #cfcfcf;
    --pink: #ff007a;
    --cyan: #00e5ff;
    --yellow: #ffea00;
    --green: #00ff88;
    --dark: #0d0d0d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255,0,122,.32), transparent 28%),
        radial-gradient(circle at top right, rgba(0,229,255,.22), transparent 30%),
        radial-gradient(circle at bottom, rgba(255,234,0,.15), transparent 30%),
        #050505;
    color: var(--text);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page {
    width: min(1120px, calc(100% - 24px));
    margin: 0 auto;
    padding: 24px 0 56px;
}

.page.narrow {
    width: min(760px, calc(100% - 24px));
}

.hero {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 22px;
    align-items: stretch;
    margin-top: 16px;
}

.hero__text,
.card {
    position: relative;
    background:
        linear-gradient(135deg, rgba(255,0,122,.16), transparent 38%),
        linear-gradient(315deg, rgba(0,229,255,.12), transparent 42%),
        rgba(10,10,10,.88);
    border: 2px solid rgba(255,255,255,.10);
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
    overflow: hidden;
}

.hero__text {
    padding: 34px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__text::before,
.card::before {
    content: "";
    position: absolute;
    inset: -80px;
    background:
        radial-gradient(circle, rgba(255,0,122,.16) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(0,229,255,.11) 0 2px, transparent 3px);
    background-size: 42px 42px, 58px 58px;
    opacity: .45;
    pointer-events: none;
}

.hero__media img {
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 28px;
    border: 2px solid rgba(255,255,255,.10);
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
}

.badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: .6px;
    color: #050505;
    background: var(--yellow);
    box-shadow: 6px 6px 0 var(--pink);
    transform: rotate(-2deg);
    text-transform: uppercase;
}

h1 {
    position: relative;
    z-index: 1;
    margin: 22px 0 14px;
    font-size: clamp(48px, 8vw, 92px);
    line-height: .82;
    letter-spacing: -4px;
    text-transform: uppercase;
    text-shadow: 5px 5px 0 var(--pink);
}

.lead {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0;
    font-size: 20px;
    line-height: 1.45;
    color: var(--muted);
    font-weight: 700;
}

.cta-row {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.cta-row.center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border: 0;
    border-radius: 18px;
    font-weight: 1000;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .4px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
    transform: translateY(-2px) rotate(-1deg);
}

.btn--primary {
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    color: #050505;
    box-shadow: 7px 7px 0 var(--cyan);
}

.btn--ghost {
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(255,255,255,.16);
    color: var(--text);
}

.btn--full {
    width: 100%;
}

.street-tags {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.street-tags span,
.info-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 1000;
    color: #050505;
    background: var(--cyan);
    text-transform: uppercase;
    box-shadow: 4px 4px 0 rgba(255,255,255,.22);
}

.street-tags span:nth-child(2),
.info-pill:nth-child(2n) {
    background: var(--pink);
    color: #fff;
}

.street-tags span:nth-child(3),
.info-pill:nth-child(3n) {
    background: var(--green);
}

.quick-info {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 26px 0 0;
}

.card {
    padding: 28px;
    margin-top: 28px;
}

.section-head {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.section-head h2,
.card h3 {
    margin: 0 0 8px;
    font-size: clamp(30px, 5vw, 54px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.section-head p,
.card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.gallery-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 22px;
    border: 2px solid rgba(255,255,255,.12);
}

.checkout-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

label span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 1000;
    text-transform: uppercase;
    color: #fff;
}

input,
select,
textarea {
    width: 100%;
    min-height: 54px;
    border: 2px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    color: var(--text);
    padding: 14px 15px;
    font: inherit;
    font-weight: 700;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0,229,255,.16);
}

select option {
    color: #050505;
}

textarea {
    min-height: 82px;
    resize: vertical;
}

.checkout-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.07);
    border: 2px dashed rgba(255,255,255,.14);
}

.summary-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.summary-value {
    font-weight: 1000;
    margin-top: 5px;
}

.alert {
    position: relative;
    z-index: 1;
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    font-weight: 900;
}

.alert--error {
    background: rgba(255,0,122,.15);
    color: #ffd8e8;
    border: 2px solid rgba(255,0,122,.35);
}

.status-card {
    text-align: center;
    padding: 42px 28px;
}

.status-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 36px;
    font-weight: 1000;
}

.status-icon--success {
    background: rgba(0,255,136,.14);
    color: #79ffc6;
}

.status-icon--error {
    background: rgba(255,0,122,.14);
    color: #ffb9d8;
}

.order-box {
    margin: 22px auto;
    max-width: 560px;
    text-align: left;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
}

@media (max-width: 880px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero__text,
    .hero__media img {
        min-height: auto;
    }

    .checkout-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page {
        width: min(100% - 18px, 1120px);
        padding-top: 16px;
    }

    .hero__text,
    .card {
        padding: 20px;
        border-radius: 22px;
    }

    .hero__media img,
    .gallery-grid img {
        border-radius: 22px;
    }

    h1 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .lead {
        font-size: 16px;
    }

    .form-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }
}