:root {
    --bg: #09090d;
    --panel: rgba(18, 17, 24, 0.74);
    --panel-soft: rgba(255, 255, 255, 0.03);
    --text: #f3ece2;
    --muted: #c3b6a8;
    --accent: #c78a53;
    --accent-soft: #e9ccb0;
    --line: rgba(255, 255, 255, 0.09);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    --radius: 32px;
    --content-width: min(1120px, calc(100vw - 2.5rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 16% 18%, rgba(145, 86, 55, 0.17), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(125, 114, 100, 0.08), transparent 20%),
        linear-gradient(180deg, #09090d 0%, #101018 48%, #09090d 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 28%);
    opacity: 0.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.ambient {
    position: fixed;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    filter: blur(84px);
    pointer-events: none;
    opacity: 0.16;
    z-index: -1;
}

.ambient-left {
    top: -8rem;
    left: -6rem;
    background: radial-gradient(circle, rgba(199, 138, 83, 0.6), transparent 68%);
}

.ambient-right {
    top: 8rem;
    right: -8rem;
    background: radial-gradient(circle, rgba(90, 108, 132, 0.45), transparent 68%);
}

.site-header,
.site-footer,
main {
    width: var(--content-width);
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 1rem;
}

.brand {
    display: inline-flex;
    gap: 0.85rem;
    align-items: center;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.site-nav {
    display: inline-flex;
    gap: 2rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-nav a {
    transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

main {
    padding-bottom: 5rem;
}

.panel {
    position: relative;
    background: linear-gradient(180deg, rgba(22, 20, 28, 0.78), rgba(12, 12, 18, 0.72));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%);
    pointer-events: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    gap: 3rem;
    margin-top: 2rem;
    padding: 4.25rem 4rem;
    background:
        radial-gradient(circle at 78% 20%, rgba(199, 138, 83, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(12, 12, 18, 0.9), rgba(10, 10, 14, 0.98));
}

.hero.hero-has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 9, 13, 0.94) 0%, rgba(9, 9, 13, 0.78) 42%, rgba(9, 9, 13, 0.86) 100%),
        var(--hero-art) center / cover no-repeat;
    opacity: 0.34;
}

.hero.hero-has-image > * {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 38rem;
}

.hero-title-art {
    display: block;
    max-width: min(42rem, 100%);
    width: 100%;
    margin: 0 0 1.15rem;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--accent-soft);
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.74rem;
    font-weight: 800;
}

.hero-meta {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.58);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero h1,
.story-panel h2,
.section-heading h2,
.request-copy h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.3rem, 8vw, 6.3rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
}

.story-panel h2,
.section-heading h2,
.request-copy h2 {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: 1.02;
}

.hero-subtitle {
    margin: 1.25rem 0 0;
    max-width: 34rem;
    font-size: clamp(1.15rem, 1.95vw, 1.5rem);
    line-height: 1.46;
    color: #f1dfcc;
}

.hero-tagline {
    margin: 1.4rem 0 0;
    max-width: 28rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    line-height: 1.3;
    color: var(--accent-soft);
}

.hero-blurb,
.story-panel p,
.benefit-grid p,
.timeline p,
.request-copy p,
.faq-grid p,
.quote-credit {
    color: var(--muted);
    line-height: 1.82;
}

.hero-blurb {
    margin: 1.35rem 0 0;
    max-width: 33rem;
}

.spot-pill {
    display: inline-grid;
    gap: 0.25rem;
    margin-top: 1.6rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.025);
}

.spot-pill-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.spot-pill strong {
    font-size: 1.6rem;
    line-height: 1;
}

.spot-pill span:last-child {
    color: var(--muted);
    font-size: 0.95rem;
}

.spot-pill.is-sold-out {
    border-color: rgba(199, 138, 83, 0.28);
    background: rgba(199, 138, 83, 0.08);
}

.hero-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.25rem;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    padding: 0.9rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, #ca8c53, #ab6235);
    color: #fff8ef;
    box-shadow: 0 14px 34px rgba(199, 138, 83, 0.22);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
}

.hero-visual {
    display: grid;
    align-content: center;
    justify-items: end;
}

.cover-card {
    display: grid;
    grid-template-columns: 0.5rem 1fr;
    width: min(24rem, 100%);
    min-height: 33rem;
    border-radius: 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, #181117 0%, #101018 56%, #090b12 100%);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.38);
}

.cover-spine {
    background: linear-gradient(180deg, rgba(238, 199, 150, 0.95), rgba(158, 88, 49, 0.55));
}

.cover-face {
    display: grid;
    align-content: end;
    gap: 1rem;
    padding: 2.3rem;
    background:
        radial-gradient(circle at 52% 28%, rgba(202, 140, 83, 0.18), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
        linear-gradient(180deg, rgba(9, 10, 15, 0.2), rgba(8, 9, 13, 0.92));
}

.cover-kicker,
.cover-author,
.cover-caption {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.79rem;
}

.cover-kicker,
.cover-author {
    color: #ead8c4;
}

.cover-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.8rem, 8vw, 5.6rem);
    line-height: 0.88;
}

.cover-caption {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.54);
    text-align: right;
}

.cover-card--art {
    grid-template-columns: 1fr;
    background: rgba(255, 255, 255, 0.02);
}

.cover-art {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.float-card {
    transform: translateY(0);
    animation: float-card 9s ease-in-out infinite;
}

@keyframes float-card {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.story-grid,
.benefits,
.process,
.request-panel,
.faq {
    margin-top: 3rem;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    gap: 2.5rem;
    align-items: start;
}

.story-panel,
.quote-panel,
.request-panel {
    padding: 3rem;
}

.story-panel p + p,
.quote-panel p + p {
    margin-top: 1rem;
}

.request-copy {
    display: grid;
    gap: 1.2rem;
    align-content: start;
}

.request-copy .eyebrow,
.request-copy p {
    margin: 0;
}

.quote-panel {
    display: grid;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(18, 17, 24, 0.62), rgba(10, 10, 14, 0.72));
}

.quote-panel h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1.1;
}

.quote-panel blockquote {
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
}

.author-portrait {
    width: 8rem;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 1.2rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.author-portrait img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.benefits,
.process,
.faq {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
}

.benefits::before,
.process::before,
.faq::before {
    display: none;
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 1.6rem;
}

.benefit-grid,
.timeline,
.faq-grid {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid article,
.timeline article,
.faq-grid article {
    padding: 1.45rem 1.2rem 0 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.benefit-grid article + article,
.timeline article + article,
.faq-grid article + article {
    padding-left: 1.4rem;
    border-left: 1px solid var(--line);
}

.benefit-grid h3,
.timeline h3,
.faq-grid h3,
.agreement-heading h3 {
    margin: 0 0 0.7rem;
}

.timeline-step {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(199, 138, 83, 0.35);
    color: var(--accent-soft);
    font-weight: 800;
}

.request-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2.5rem;
    align-items: start;
    background: linear-gradient(180deg, rgba(18, 17, 24, 0.86), rgba(10, 10, 14, 0.96));
}

.availability-card {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 1.4rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.025);
}

.availability-card.is-sold-out {
    border-color: rgba(199, 138, 83, 0.26);
    background: rgba(199, 138, 83, 0.08);
}

.availability-label {
    margin: 0;
    color: var(--accent-soft);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
}

.availability-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1.05;
}

.availability-card p:last-child {
    margin: 0;
}

.microcopy {
    margin-top: 0;
    font-size: 0.95rem;
}

.form-intro {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.request-shell[hidden] {
    display: none;
}

.waitlist-form {
    gap: 1.2rem;
}

.beta-form {
    display: grid;
    gap: 1.5rem;
}

.beta-form[hidden] {
    display: none;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
}

.beta-form label {
    display: grid;
    gap: 0.55rem;
}

.full-width {
    grid-column: 1 / -1;
}

.beta-form span {
    font-size: 0.92rem;
    color: #ead9c8;
}

.beta-form input,
.beta-form select,
.beta-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

.beta-form textarea {
    resize: vertical;
}

.agreement-card {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(199, 138, 83, 0.22);
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(199, 138, 83, 0.06), rgba(255, 255, 255, 0.025));
}

.agreement-details {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.agreement-details summary {
    padding: 1rem 1.2rem;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
}

.agreement-details summary::-webkit-details-marker {
    display: none;
}

.agreement-note,
.agreement-signoff {
    margin: 0;
    color: var(--muted);
}

.agreement-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
}

.agreement-list strong {
    color: var(--text);
}

.agreement-heading p,
.agreement-body p,
.form-status {
    margin: 0;
    color: var(--muted);
}

.agreement-check {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.agreement-check input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
}

.form-status[data-state="success"] {
    color: #d6ebc5;
}

.form-status[data-state="error"] {
    color: #ffc2b1;
}

.survey {
    background: linear-gradient(180deg, rgba(18, 17, 24, 0.78), rgba(10, 10, 14, 0.88));
    padding: 2.8rem;
}

.survey-lead,
.survey-note,
.survey-signoff,
.survey-list {
    color: var(--muted);
    line-height: 1.82;
}

.survey-lead,
.survey-note {
    max-width: 52rem;
}

.survey-shell {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}

.survey-section {
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.survey-section summary {
    display: grid;
    gap: 0.2rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    list-style: none;
}

.survey-section summary::-webkit-details-marker {
    display: none;
}

.survey-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.survey-list {
    margin: 0;
    padding: 0 1.6rem 1.4rem 2.6rem;
}

.survey-list li + li {
    margin-top: 0.85rem;
}

.survey-signoff {
    margin: 1.5rem 0 0;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.6rem 0 3rem;
    margin-top: 1rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--text);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero,
    .story-grid,
    .request-panel,
    .benefit-grid,
    .timeline,
    .faq-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .story-panel,
    .quote-panel,
    .request-panel,
    .survey {
        padding: 2.3rem;
    }

    .site-header,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }

    .hero-visual {
        justify-items: start;
    }

    .author-portrait {
        width: 7rem;
    }

    .cover-caption {
        text-align: left;
    }

    .benefit-grid article,
    .timeline article,
    .faq-grid article {
        padding: 1.15rem 0 0;
    }

    .benefit-grid article + article,
    .timeline article + article,
    .faq-grid article + article {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--line);
        margin-top: 1.2rem;
    }
}

@media (max-width: 640px) {
    :root {
        --content-width: min(1120px, calc(100vw - 1.5rem));
    }

    .hero,
    .story-panel,
    .quote-panel,
    .request-panel,
    .survey {
        padding: 1.8rem;
    }

    .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}