:root {
    color-scheme: dark;
    --ink: #f7f1e8;
    --muted: #cdbfae;
    --gold: #c8a46a;
    --gold-light: #e4c68f;
    --panel: #17110e;
    --line: rgba(228, 198, 143, 0.28);
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    background: var(--panel);
    color: var(--ink);
    font-family: Inter, system-ui, sans-serif;
}

.launch {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(20rem, 0.9fr) minmax(30rem, 1.1fr);
}

.launch__image {
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(23, 17, 14, 0.06), rgba(23, 17, 14, 0.42)),
        url("../assets/optimized/hero-editorial.jpg") center / cover no-repeat;
}

.launch__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(3rem, 8vw, 8rem);
    overflow: hidden;
}

.launch__content::before {
    content: "";
    position: absolute;
    width: 28rem;
    height: 28rem;
    top: -14rem;
    right: -12rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(200, 164, 106, 0.025), 0 0 0 10rem rgba(200, 164, 106, 0.018);
    pointer-events: none;
}

.launch__logo {
    width: 6.5rem;
    height: 6.5rem;
    object-fit: contain;
    margin: 0 0 2rem;
}

.launch__eyebrow {
    margin: 0 0 1.25rem;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    max-width: 12ch;
    margin: 0;
    color: var(--ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.4rem, 6.4vw, 6.5rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.035em;
}

.launch__intro {
    max-width: 36rem;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.75;
}

.launch__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.launch__button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.launch__button:hover,
.launch__button:focus-visible {
    border-color: var(--gold-light);
    outline: none;
}

.launch__button--primary {
    border-color: var(--gold);
    background: var(--gold);
    color: #17110e;
}

.launch__button--primary:hover,
.launch__button--primary:focus-visible { background: var(--gold-light); }

.launch__details {
    display: grid;
    gap: 0.55rem;
    max-width: 34rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
    font-style: normal;
    line-height: 1.6;
}

.launch__details a,
.launch__social a { color: var(--ink); text-decoration: none; }

.launch__details a:hover,
.launch__details a:focus-visible,
.launch__social a:hover,
.launch__social a:focus-visible { color: var(--gold-light); outline: none; }

.launch__social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .launch { grid-template-columns: 1fr; }
    .launch__image { min-height: 38svh; }
    .launch__content { padding: 2.5rem clamp(1.4rem, 7vw, 3rem) 3rem; }
    .launch__logo { width: 5rem; height: 5rem; margin-bottom: 1.5rem; }
    h1 { font-size: clamp(3.1rem, 15vw, 4.6rem); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
