:root {
    --ink: #0b0b0b;
    --paper: #f2eee7;
    --muted: #a7a099;
    --red: #e7392f;
    --line: rgba(242, 238, 231, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--ink);
    color-scheme: dark;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--paper);
    background:
        radial-gradient(circle at 78% 38%, rgba(231, 57, 47, 0.08), transparent 30rem),
        var(--ink);
}

a {
    color: inherit;
}

.noise {
    position: fixed;
    z-index: 10;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header,
.site-footer,
.hero,
.statement {
    width: min(100% - 48px, 1440px);
    margin-inline: auto;
}

.site-header {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.brand-mark {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--red);
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
}

.brand-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.brand-name span {
    color: var(--muted);
    font-weight: 400;
}

.status {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(231, 57, 47, 0.45);
    animation: pulse 2.4s infinite;
}

.hero {
    min-height: calc(100vh - 224px);
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 5vw;
    padding: 72px 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 27px;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

h1 {
    max-width: 930px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(64px, 7.8vw, 132px);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.83;
}

h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(242, 238, 231, 0.72);
}

.intro {
    max-width: 590px;
    margin: 42px 0 0;
    color: #c4beb6;
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.6;
}

.launch-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 48px;
}

.launch-note p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.launch-note strong {
    color: var(--paper);
    text-transform: uppercase;
}

.launch-line {
    width: 52px;
    height: 1px;
    background: var(--red);
}

.hero-art {
    position: relative;
    width: min(38vw, 530px);
    aspect-ratio: 1;
    justify-self: end;
    display: grid;
    place-items: center;
}

.orbit {
    position: absolute;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.orbit-one {
    inset: 0;
    animation: spin 24s linear infinite;
}

.orbit-one::before,
.orbit-two::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    top: 11%;
    left: 17%;
    background: var(--red);
    border-radius: 50%;
}

.orbit-two {
    inset: 12%;
    border-style: dashed;
    opacity: 0.6;
    animation: spin 18s linear infinite reverse;
}

.orbit-two::before {
    top: auto;
    left: auto;
    right: 5%;
    bottom: 25%;
    width: 5px;
    height: 5px;
}

.monogram {
    position: relative;
    width: 56%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(231, 57, 47, 0.14);
}

.monogram span {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(100px, 13vw, 190px);
    font-style: italic;
    line-height: 1;
}

.monogram small {
    position: absolute;
    right: 21%;
    bottom: 20%;
    color: var(--paper);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.art-caption {
    position: absolute;
    right: 2%;
    bottom: 8%;
    margin: 0;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: rotate(90deg);
}

.statement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.statement p,
.statement-items {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.statement p {
    color: var(--muted);
}

.statement-items {
    display: flex;
    gap: clamp(24px, 4vw, 64px);
}

.statement-items span::before {
    content: "×";
    margin-right: 10px;
    color: var(--red);
}

.site-footer {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #67625d;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 8px rgba(231, 57, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 57, 47, 0); }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 64px 0 36px;
    }

    .hero-art {
        width: min(76vw, 450px);
        justify-self: center;
        margin-top: 24px;
    }

    .statement {
        align-items: flex-start;
    }

    .statement-items {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

@media (max-width: 600px) {
    .site-header,
    .site-footer,
    .hero,
    .statement {
        width: min(100% - 32px, 1440px);
    }

    .site-header {
        min-height: 82px;
    }

    .brand-name {
        font-size: 13px;
    }

    .status {
        font-size: 9px;
        letter-spacing: 0.1em;
    }

    .hero {
        min-height: 0;
        gap: 28px;
        padding-top: 52px;
    }

    h1 {
        font-size: clamp(52px, 18vw, 76px);
        line-height: 0.88;
    }

    .intro {
        margin-top: 32px;
        font-size: 15px;
    }

    .launch-note {
        align-items: flex-start;
        margin-top: 34px;
    }

    .launch-note p {
        line-height: 1.6;
    }

    .launch-line {
        width: 32px;
        margin-top: 8px;
        flex: 0 0 auto;
    }

    .hero-art {
        width: min(82vw, 340px);
    }

    .monogram span {
        font-size: clamp(90px, 31vw, 130px);
    }

    .statement {
        display: block;
    }

    .statement-items {
        display: grid;
        gap: 15px;
        margin-top: 24px;
    }

    .site-footer {
        min-height: 110px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
