:root {
    --cream: #fdf8f1;
    --cream-deep: #f5ece0;
    --terracotta: #9d543a;
    --terracotta-line: #c8866a;
    --ink: #fff8f3;
    --ink-dark: #2d1b14;
    --green: #607d6b;
    --shadow: 0 18px 42px rgba(73, 49, 37, 0.18);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: var(--cream);
    color: var(--ink-dark);
    font-family: "Plus Jakarta Sans", sans-serif;
}

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

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

.launch-page {
    min-height: 100vh;
}

.launch-header {
    background: #fbf6ee;
    border-top: 1px solid rgba(188, 122, 87, 0.7);
    border-bottom: 1px solid rgba(188, 122, 87, 0.15);
}

.launch-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 42px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.launch-logo {
    width: 225px;
    height: auto;
}

.launch-announcement {
    color: var(--terracotta);
    text-align: center;
    padding: 6px 16px 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    animation: launch-announcement-glow 2.2s ease-in-out infinite;
}

@keyframes launch-announcement-glow {
    0%,
    100% {
        opacity: 0.7;
        transform: translateY(0);
        text-shadow: 0 0 0 rgba(157, 84, 58, 0);
    }

    50% {
        opacity: 1;
        transform: translateY(-1px);
        text-shadow: 0 0 18px rgba(157, 84, 58, 0.2);
    }
}

.launch-hero {
    background: var(--terracotta);
    padding: 34px 0 60px;
}

.launch-hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 42px;
}

.launch-hero-top {
    display: block;
}

.launch-copy {
    max-width: 860px;
    color: var(--ink);
}

.launch-breadcrumb {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 248, 243, 0.84);
}

.launch-breadcrumb span {
    margin: 0 8px;
    color: rgba(255, 248, 243, 0.6);
}

h1 {
    margin: 26px 0 0;
    font-size: clamp(2.7rem, 4.4vw, 4.05rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.launch-location {
    margin: 16px 0 0;
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    font-weight: 700;
}

.launch-location::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 999px 999px 999px 0;
    transform: rotate(-45deg);
    opacity: 0.95;
}

.launch-location::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 999px;
}

.launch-description {
    max-width: 980px;
    margin: 22px 0 0;
    font-size: 1.03rem;
    line-height: 1.72;
    color: rgba(255, 248, 243, 0.92);
}

.launch-gallery {
    display: grid;
    grid-template-columns: 1.55fr 0.75fr 0.75fr;
    gap: 16px;
    margin-top: 36px;
}

.launch-gallery-card {
    margin: 0;
    height: 248px;
    overflow: hidden;
    border: 4px solid rgba(226, 186, 156, 0.6);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
}

.launch-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.launch-gallery-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.launch-lightbox-open {
    overflow: hidden;
}

.launch-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 88px;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(28, 18, 13, 0.9);
    backdrop-filter: blur(8px);
}

.launch-lightbox[hidden] {
    display: none;
}

.launch-lightbox-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    min-height: 0;
}

.launch-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 48px);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.launch-lightbox-close,
.launch-lightbox-arrow {
    border: 0;
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.launch-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 2rem;
    line-height: 1;
}

.launch-lightbox-arrow {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 2.6rem;
    line-height: 1;
    justify-self: center;
}

.launch-gallery-card-large {
    grid-row: span 2;
    height: 512px;
}

.launch-gallery-note {
    margin: 22px 0 0;
    color: rgba(255, 248, 243, 0.9);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
}

.launch-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #58d46a;
    color: #fff;
    box-shadow: 0 20px 40px rgba(88, 212, 106, 0.32);
}

.launch-whatsapp-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.launch-whatsapp-icon svg {
    width: 22px;
    height: 22px;
}

.launch-whatsapp-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.launch-whatsapp-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.launch-whatsapp-text {
    margin-top: 4px;
    font-size: 0.95rem;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .launch-header-inner,
    .launch-hero-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .launch-gallery-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 320px;
    }
}

@media (max-width: 760px) {
    .launch-header-inner,
    .launch-hero-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    h1 {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

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

    .launch-gallery-card,
    .launch-gallery-card-large {
        height: 240px;
    }

    .launch-lightbox {
        grid-template-columns: 56px minmax(0, 1fr) 56px;
        padding: 16px;
    }

    .launch-lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 2rem;
    }

    .launch-lightbox-close {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }

    .launch-whatsapp {
        right: 12px;
        bottom: 12px;
        padding: 10px 14px;
    }

    .launch-whatsapp-copy {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .launch-announcement {
        animation: none;
    }
}
