:root {
    --paper: #f4f3ed;
    --paper-deep: #e9e7de;
    --paper-soft: #faf9f5;
    --ink: #191a18;
    --ink-soft: #5f605b;
    --line: rgba(25, 26, 24, 0.16);
    --line-strong: rgba(25, 26, 24, 0.28);
    --shadow: 0 28px 80px rgba(25, 26, 24, 0.08);
    --font-display: "Bodoni Moda", "Bodoni MT", Didot, Georgia, serif;
    --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
    --page-gutter: clamp(1.25rem, 3vw, 3.75rem);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100svh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.72), transparent 28rem),
        radial-gradient(circle at 94% 85%, rgba(219, 216, 204, 0.42), transparent 34rem),
        var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    content: "";
    opacity: 0.12;
    mix-blend-mode: multiply;
    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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

::selection {
    color: var(--paper-soft);
    background: var(--ink);
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    color: var(--paper-soft);
    background: var(--ink);
    text-decoration: none;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
}

.site-header,
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    padding-inline: var(--page-gutter);
}

.site-header {
    min-height: clamp(5.25rem, 8vw, 7rem);
    border-bottom: 1px solid var(--line);
}

.wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.7rem;
    color: inherit;
    text-decoration: none;
    letter-spacing: 0.18em;
}

.wordmark span {
    font-size: clamp(0.68rem, 0.9vw, 0.8rem);
    font-weight: 600;
}

.wordmark small {
    position: relative;
    padding-left: 0.8rem;
    color: var(--ink-soft);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.28em;
}

.wordmark small::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    content: "";
    transform: translateY(-50%);
}

.header-status {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink-soft);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.status-dot {
    position: relative;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--ink);
}

.status-dot::after {
    position: absolute;
    inset: -0.35rem;
    border: 1px solid var(--line-strong);
    border-radius: inherit;
    content: "";
    animation: statusPulse 2.5s ease-out infinite;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    min-height: 0;
}

.art-panel,
.content-panel {
    position: relative;
    min-width: 0;
}

.art-panel {
    display: grid;
    min-height: clamp(35rem, calc(100svh - 11rem), 57rem);
    overflow: hidden;
    border-right: 1px solid var(--line);
    isolation: isolate;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.52), transparent 48%),
        linear-gradient(315deg, rgba(214, 210, 197, 0.56), transparent 58%),
        var(--paper-deep);
}

.art-panel::before,
.art-panel::after {
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(25, 26, 24, 0.1);
    border-radius: 50%;
    content: "";
}

.art-panel::before {
    top: -32%;
    right: -28%;
    width: min(48rem, 82vw);
    aspect-ratio: 1;
}

.art-panel::after {
    bottom: -46%;
    left: -34%;
    width: min(54rem, 96vw);
    aspect-ratio: 1;
}

.art-orbit {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.9;
}

.art-orbit-one {
    top: 10%;
    left: 8%;
    width: clamp(12rem, 24vw, 25rem);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0));
}

.art-orbit-two {
    right: 4%;
    bottom: 3%;
    width: clamp(16rem, 30vw, 31rem);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(193, 188, 172, 0.4), rgba(193, 188, 172, 0));
}

.logo-stage {
    position: relative;
    display: grid;
    place-items: center;
    align-self: stretch;
    width: 100%;
    min-height: 0;
    padding: clamp(2.25rem, 4vw, 4.75rem) clamp(2rem, 5vw, 5rem) clamp(5.5rem, 8vw, 7.5rem);
}

.brand-logo {
    width: min(76%, 34rem);
    max-height: min(66vh, 42rem);
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(25, 26, 24, 0.05));
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 1.1s var(--ease-out) 140ms, transform 1.1s var(--ease-out) 140ms;
}

.js .brand-logo {
    opacity: 0;
    transform: translateY(1.25rem) scale(0.98);
}

.js.is-ready .brand-logo {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.logo-index {
    position: absolute;
    top: clamp(1.5rem, 3vw, 2.75rem);
    left: clamp(1.5rem, 3vw, 2.75rem);
    color: var(--ink-soft);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
}

.logo-caption {
    position: absolute;
    right: clamp(1.5rem, 3vw, 2.75rem);
    bottom: clamp(4.7rem, 7vw, 6.25rem);
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.art-ticker {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: rgba(244, 243, 237, 0.56);
    backdrop-filter: blur(12px);
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: 3.25rem;
    animation: ticker 24s linear infinite;
}

.ticker-track span {
    padding-inline: 1.35rem;
    font-size: 0.61rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    white-space: nowrap;
}

.ticker-track i {
    width: 0.28rem;
    height: 0.28rem;
    border: 1px solid var(--ink);
    border-radius: 50%;
}

.content-panel {
    display: grid;
    align-items: center;
    background: rgba(250, 249, 245, 0.34);
}

.content-panel::after {
    position: absolute;
    top: clamp(2rem, 5vw, 5rem);
    right: var(--page-gutter);
    width: clamp(3.5rem, 8vw, 7rem);
    height: 1px;
    background: var(--ink);
    content: "";
    opacity: 0.7;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 1.1s var(--ease-out) 420ms;
}

.js .content-panel::after {
    transform: scaleX(0);
}

.js.is-ready .content-panel::after {
    transform: scaleX(1);
}

.content-wrap {
    width: min(100%, 44rem);
    padding: clamp(3.5rem, 7vw, 7rem) var(--page-gutter);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0 0 clamp(1.4rem, 3vw, 2.2rem);
    color: var(--ink-soft);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 760ms var(--ease-out) 180ms, transform 760ms var(--ease-out) 180ms;
}

.eyebrow::before {
    width: 1.9rem;
    height: 1px;
    background: currentColor;
    content: "";
}

.js .eyebrow {
    opacity: 0;
    transform: translateY(1rem);
}

.js.is-ready .eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(4.1rem, 7.5vw, 8.6rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.79;
}

.hero-title span,
.hero-title em {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 950ms var(--ease-out), transform 950ms var(--ease-out);
}

.hero-title span {
    transition-delay: 250ms;
}

.hero-title em {
    margin-left: clamp(1.5rem, 6vw, 5.5rem);
    font-weight: 400;
    transition-delay: 340ms;
}

.js .hero-title span,
.js .hero-title em {
    opacity: 0;
    transform: translateY(1.8rem);
}

.js.is-ready .hero-title span,
.js.is-ready .hero-title em {
    opacity: 1;
    transform: translateY(0);
}

.hero-copy {
    width: min(100%, 35rem);
    margin: clamp(2.4rem, 5vw, 4rem) 0 0;
    color: var(--ink-soft);
    font-size: clamp(0.95rem, 1.25vw, 1.08rem);
    line-height: 1.8;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 820ms var(--ease-out) 450ms, transform 820ms var(--ease-out) 450ms;
}

.js .hero-copy {
    opacity: 0;
    transform: translateY(1.25rem);
}

.js.is-ready .hero-copy {
    opacity: 1;
    transform: translateY(0);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 35rem);
    margin-top: clamp(2.1rem, 4vw, 3.25rem);
    border-block: 1px solid var(--line);
}

.countdown-item {
    position: relative;
    padding: 1rem 0.85rem 1rem 0;
}

.countdown-item:not(:last-child)::after {
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: var(--line);
    content: "";
}

.countdown-item:not(:first-child) {
    padding-left: 1rem;
}

.countdown strong,
.countdown span {
    display: block;
}

.countdown strong {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 400;
    line-height: 1;
}

.countdown span {
    margin-top: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.notify-block {
    width: min(100%, 35rem);
    margin-top: clamp(2.5rem, 5vw, 4.25rem);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 820ms var(--ease-out) 560ms, transform 820ms var(--ease-out) 560ms;
    scroll-margin-top: 2rem;
}

.js .notify-block {
    opacity: 0;
    transform: translateY(1.3rem);
}

.js.is-ready .notify-block {
    opacity: 1;
    transform: translateY(0);
}

.notify-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 1.2rem;
    margin-bottom: 1.25rem;
}

.notify-heading h2,
.notify-heading p {
    margin: 0;
}

.notify-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 400;
    line-height: 1.1;
}

.notify-heading p {
    color: var(--ink-soft);
    font-size: 0.77rem;
    line-height: 1.65;
}

.form-message {
    margin-bottom: 0.85rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    font-size: 0.76rem;
    line-height: 1.5;
}

.form-message--success {
    background: rgba(25, 26, 24, 0.055);
}

.form-message--error {
    border-color: rgba(127, 50, 45, 0.28);
    color: #753c37;
    background: rgba(127, 50, 45, 0.05);
}

.email-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 3.7rem;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.34);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.email-control:focus-within {
    border-color: var(--ink);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 0 0 3px rgba(25, 26, 24, 0.06);
}

.email-control input {
    width: 100%;
    min-width: 0;
    padding: 0 1.15rem;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font-size: 0.83rem;
}

.email-control input::placeholder {
    color: #8a8a84;
    opacity: 1;
}

.email-control button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 9.1rem;
    margin: 0.3rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--ink);
    color: var(--paper-soft);
    background: var(--ink);
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.email-control button svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.email-control button:hover {
    color: var(--ink);
    background: transparent;
}

.email-control button:hover svg {
    transform: translateX(0.2rem);
}

.email-control button:active {
    transform: scale(0.98);
}

.email-control button:focus-visible,
.footer-links a:focus-visible,
.wordmark:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 4px;
}

.privacy-note {
    margin: 0.8rem 0 0;
    color: #85857f;
    font-size: 0.64rem;
    letter-spacing: 0.04em;
}

.field-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-footer {
    min-height: 4.75rem;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.footer-links:empty {
    display: none;
}

.footer-links a {
    position: relative;
    color: inherit;
    text-decoration: none;
}

.footer-links a::after {
    position: absolute;
    right: 0;
    bottom: -0.3rem;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.noscript-note {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    max-width: 22rem;
    padding: 0.8rem 1rem;
    color: var(--paper-soft);
    background: var(--ink);
    font-size: 0.75rem;
    box-shadow: var(--shadow);
}

@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

@keyframes statusPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.5);
    }
    72%, 100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .hero-title {
        font-size: clamp(3.8rem, 8.5vw, 6.7rem);
    }

    .content-wrap {
        padding-inline: clamp(2rem, 4vw, 3.25rem);
    }
}

@media (max-width: 820px) {
    .site-shell {
        display: block;
    }

    .site-header {
        min-height: 4.75rem;
    }

    .hero {
        display: flex;
        flex-direction: column;
    }

    .art-panel {
        min-height: clamp(25rem, 54svh, 34rem);
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .logo-stage {
        padding: 2.25rem 2rem 5.25rem;
    }

    .brand-logo {
        width: min(62%, 23rem);
        max-height: 40svh;
    }

    .logo-caption {
        right: 1.4rem;
        bottom: 4.2rem;
    }

    .content-panel::after {
        top: 2rem;
    }

    .content-wrap {
        width: 100%;
        padding: clamp(4.25rem, 10vw, 6.5rem) var(--page-gutter) clamp(4.5rem, 10vw, 7rem);
    }

    .hero-title {
        font-size: clamp(4.25rem, 15vw, 7.2rem);
        line-height: 0.8;
    }

    .hero-title em {
        margin-left: clamp(1.5rem, 12vw, 6rem);
    }

    .hero-copy,
    .countdown,
    .notify-block {
        width: min(100%, 39rem);
    }

    .site-footer {
        min-height: 5rem;
    }
}

@media (max-width: 560px) {
    :root {
        --page-gutter: 1.2rem;
    }

    .site-header {
        gap: 0.75rem;
    }

    .wordmark {
        gap: 0.45rem;
        letter-spacing: 0.12em;
    }

    .wordmark span {
        max-width: 9.6rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .wordmark small {
        display: none;
    }

    .header-status {
        gap: 0.45rem;
        font-size: 0.56rem;
        letter-spacing: 0.15em;
    }

    .status-dot {
        width: 0.38rem;
        height: 0.38rem;
    }

    .art-panel {
        min-height: clamp(24rem, 52svh, 30rem);
    }

    .brand-logo {
        width: min(78%, 21rem);
        max-height: 37svh;
    }

    .logo-index {
        top: 1.25rem;
        left: 1.2rem;
    }

    .logo-caption {
        right: 1rem;
        bottom: 4.05rem;
        font-size: 0.54rem;
    }

    .art-ticker .ticker-track {
        min-height: 2.9rem;
    }

    .content-wrap {
        padding-top: 4.4rem;
        padding-bottom: 4.75rem;
    }

    .content-panel::after {
        top: 1.85rem;
        width: 3.5rem;
    }

    .eyebrow {
        margin-bottom: 1.5rem;
        font-size: 0.58rem;
        letter-spacing: 0.21em;
    }

    .hero-title {
        font-size: clamp(4rem, 20vw, 6.4rem);
    }

    .hero-copy {
        margin-top: 2.3rem;
        font-size: 0.93rem;
        line-height: 1.75;
    }

    .countdown {
        margin-top: 2rem;
    }

    .countdown-item {
        padding-inline: 0.55rem;
    }

    .countdown-item:first-child {
        padding-left: 0;
    }

    .countdown strong {
        font-size: 1.7rem;
    }

    .countdown span {
        font-size: 0.48rem;
        letter-spacing: 0.12em;
    }

    .notify-block {
        margin-top: 2.75rem;
    }

    .notify-heading {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .notify-heading h2 {
        font-size: 1.55rem;
    }

    .notify-heading p {
        max-width: 28rem;
    }

    .email-control {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0.3rem;
    }

    .email-control input {
        min-height: 3.35rem;
        padding-inline: 0.9rem;
    }

    .email-control button {
        width: 100%;
        min-height: 3.15rem;
        margin: 0;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0.75rem;
        padding-block: 1.25rem;
        line-height: 1.6;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 3.65rem;
    }

    .brand-logo {
        width: 82%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .brand-logo,
    .eyebrow,
    .hero-title span,
    .hero-title em,
    .hero-copy,
    .notify-block {
        opacity: 1;
        transform: none;
    }
}
