:root {
    --bg: #16110d;
    --panel: rgba(36, 25, 18, 0.9);
    --panel-soft: rgba(248, 236, 213, 0.05);
    --text: #f1e6d2;
    --muted: #cfbea3;
    --accent: #8d2315;
    --accent-soft: #d0ae71;
    --accent-olive: #7f7654;
    --line: rgba(208, 174, 113, 0.2);
    --shadow: 0 20px 56px rgba(0, 0, 0, 0.44);
    --radius: 4px;
    --content-width: min(1160px, calc(100vw - 2.5rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Cormorant Garamond", serif;
    color: var(--text);
    background:
        radial-gradient(circle at 14% 14%, rgba(141, 35, 21, 0.24), transparent 24%),
        radial-gradient(circle at 78% 12%, rgba(208, 174, 113, 0.12), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(120, 104, 68, 0.12), transparent 28%),
        linear-gradient(180deg, #1b140f 0%, #120f0d 35%, #1b140f 100%);
    overflow-x: hidden;
    line-height: 1.25;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 248, 232, 0.04), transparent 24%),
        repeating-linear-gradient(90deg, rgba(255, 248, 232, 0.018) 0, rgba(255, 248, 232, 0.018) 1px, transparent 1px, transparent 9px);
    opacity: 0.45;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
    font-family: "Manrope", sans-serif;
}

.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(141, 35, 21, 0.55), transparent 68%);
}

.ambient-right {
    top: 8rem;
    right: -8rem;
    background: radial-gradient(circle, rgba(159, 136, 88, 0.35), 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 1.15rem;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    gap: 0.85rem;
    align-items: center;
    font-family: "Manrope", sans-serif;
    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(208, 174, 113, 0.34);
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(141, 35, 21, 0.86), rgba(94, 18, 10, 0.92));
    box-shadow: inset 0 0 0 1px rgba(255, 244, 224, 0.12);
}

.site-nav {
    display: inline-flex;
    gap: 2rem;
    font-family: "Manrope", sans-serif;
    color: var(--muted);
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.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(47, 32, 23, 0.94), rgba(27, 20, 16, 0.96));
    border: 1px solid var(--line);
    border-top: 2px solid rgba(141, 35, 21, 0.5);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248, 236, 213, 0.07), transparent 28%);
    pointer-events: none;
}

/* Corner bracket marks — futuristic Japanese panel decoration */
.panel::after {
    content: "";
    position: absolute;
    inset: 1.2rem;
    background:
        linear-gradient(to right,  rgba(208, 174, 113, 0.38) 20px, transparent 20px) top    left  / 20px 1px no-repeat,
        linear-gradient(to bottom, rgba(208, 174, 113, 0.38) 20px, transparent 20px) top    left  / 1px 20px no-repeat,
        linear-gradient(to left,   rgba(208, 174, 113, 0.38) 20px, transparent 20px) bottom right / 20px 1px no-repeat,
        linear-gradient(to top,    rgba(208, 174, 113, 0.38) 20px, transparent 20px) bottom right / 1px 20px no-repeat;
    pointer-events: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    gap: 3rem;
    margin-top: 2rem;
    padding: 5.4rem 5.5rem;
    background:
        radial-gradient(circle at 78% 20%, rgba(208, 174, 113, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(52, 35, 24, 0.96), rgba(24, 19, 16, 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;
    position: relative;
    z-index: 1;
}

.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);
    font-family: "Manrope", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.74rem;
    font-weight: 800;
}

.hero-meta {
    margin: 0 0 1rem;
    color: rgba(241, 230, 210, 0.54);
    font-family: "Manrope", sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero h1,
.story-panel h2,
.section-heading h2,
.request-copy h2,
.quote-panel h3,
.origins-lead {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
}

.story-panel h2,
.section-heading h2,
.request-copy h2,
.quote-panel h3,
.origins-lead {
    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.3rem, 1.95vw, 1.7rem);
    line-height: 1.42;
    color: #eddcc0;
}

.hero-tagline {
    margin: 1.4rem 0 0;
    max-width: 28rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 2.3vw, 2.2rem);
    line-height: 1.25;
    color: #f0c78d;
}

.hero-blurb,
.story-panel p,
.benefit-grid p,
.timeline p,
.request-copy p,
.faq-grid p,
.quote-credit,
.origins-body p,
.origins-pull,
.survey-lead,
.survey-note,
.survey-signoff,
.survey-list {
    color: var(--muted);
    font-size: 1.42rem;
    line-height: 1.55;
}

.hero-blurb {
    margin: 1.35rem 0 0;
    max-width: 33rem;
}

.spot-pill {
    display: inline-grid;
    gap: 0.25rem;
    margin-top: 1.6rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(208, 174, 113, 0.24);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(248, 236, 213, 0.06), rgba(141, 35, 21, 0.08));
}

.spot-pill-label {
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.spot-pill strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
}

.spot-pill span:last-child {
    color: var(--muted);
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
}

.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.95rem 1.45rem;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    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, #9f2d18, #6e190d);
    color: #fff8ef;
    box-shadow: 0 14px 34px rgba(111, 25, 12, 0.35);
}

.button-secondary {
    border-color: rgba(208, 174, 113, 0.22);
    background: rgba(248, 236, 213, 0.03);
    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: 4px;
    overflow: hidden;
    border: 1px solid rgba(208, 174, 113, 0.22);
    background: linear-gradient(160deg, #221711 0%, #17120f 56%, #0d0a09 100%);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.46);
}

.cover-spine {
    background: linear-gradient(180deg, rgba(208, 174, 113, 0.96), rgba(132, 87, 43, 0.6));
}

.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 {
    font-family: "Manrope", sans-serif;
    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(241, 230, 210, 0.62);
    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(-3px); }
}

.story-grid,
.merch,
.origins,
.benefits,
.process,
.request-panel,
.faq {
    margin-top: 5rem;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    gap: 2.5rem;
    align-items: start;
}

.merch {
    padding: 4rem 4.2rem;
    background:
        radial-gradient(circle at 88% 12%, rgba(208, 174, 113, 0.16), transparent 22%),
        radial-gradient(circle at 0% 100%, rgba(141, 35, 21, 0.2), transparent 24%),
        linear-gradient(180deg, rgba(45, 30, 22, 0.96), rgba(22, 17, 14, 0.98));
}

.section-heading--merch {
    display: grid;
    max-width: 56rem;
}

.merch-intro {
    margin: 0;
    color: var(--muted);
    font-size: 1.24rem;
    line-height: 1.45;
    max-width: 42rem;
}

.merch-store-link {
    justify-self: start;
    margin-top: 0.8rem;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 15rem));
    justify-content: center;
    gap: 1.2rem;
}

.merch-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid rgba(208, 174, 113, 0.22);
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(43, 30, 22, 0.9), rgba(20, 16, 14, 0.96));
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.merch-card:hover,
.merch-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(208, 174, 113, 0.4);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.merch-image-link {
    display: block;
    aspect-ratio: 4 / 3;
    max-height: 11.2rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.merch-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.merch-card:hover .merch-image,
.merch-card:focus-within .merch-image {
    transform: scale(1.03);
}

.merch-card-body {
    display: grid;
    gap: 0.62rem;
    align-content: start;
    padding: 0.95rem 0.95rem 1rem;
}

.merch-type {
    margin: 0;
    color: var(--accent-soft);
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.merch-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.26rem;
    line-height: 1.12;
}

.merch-card-meta {
    display: grid;
    gap: 0.65rem;
    margin-top: auto;
}

.merch-price {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: #f2ddba;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.merch-cta {
    min-height: 2.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
}

.merch-disclaimer {
    margin: 1.1rem 0 0;
    color: rgba(241, 230, 210, 0.65);
    font-family: "Manrope", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.story-panel,
.quote-panel,
.request-panel,
.origins {
    padding: 4rem 4.8rem;
}

.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(61, 40, 25, 0.72), rgba(23, 18, 15, 0.82));
}

.quote-panel blockquote {
    margin: 0;
    font-size: 1.58rem;
    line-height: 1.45;
    color: var(--muted);
}

.author-portrait {
    width: 8.7rem;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.author-portrait img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.origins {
    background:
        radial-gradient(circle at 88% 12%, rgba(141, 35, 21, 0.16), transparent 18%),
        linear-gradient(180deg, rgba(43, 30, 21, 0.96), rgba(24, 18, 14, 0.98));
}

.section-heading--origins {
    max-width: 48rem;
}

.origins-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 2.4rem;
    align-items: start;
}

.origins-intro {
    display: grid;
    gap: 1rem;
    padding-right: 2rem;
    border-right: 1px solid var(--line);
}

.origins-lead {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 0.98;
}

.origins-pull {
    margin: 0;
    color: #e3d4bc;
    font-size: 1.58rem;
    line-height: 1.35;
}

.origins-body p {
    margin: 0;
}

.origins-body p + p {
    margin-top: 1rem;
}

.origins-body p:first-child::first-letter {
    float: left;
    margin: 0.1rem 0.5rem 0 0;
    color: var(--accent-soft);
    font-size: 4.4rem;
    line-height: 0.75;
}

.benefits,
.process,
.faq {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
}

.benefits::before,
.process::before,
.faq::before,
.benefits::after,
.process::after,
.faq::after {
    display: none;
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 2.2rem;
}

.section-heading h2::after {
    content: "";
    display: block;
    margin-top: 1rem;
    width: 2.8rem;
    height: 2px;
    background: linear-gradient(to right, var(--accent), var(--accent-soft));
}

.benefit-grid,
.timeline,
.faq-grid {
    display: grid;
    gap: 1.8rem;
    border-top: none;
}

.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 {
    position: relative;
    padding: 2.4rem 2.8rem;
    background: linear-gradient(180deg, rgba(42, 30, 22, 0.9), rgba(23, 18, 15, 0.96));
    border: 1px solid var(--line);
    border-top: 2px solid rgba(141, 35, 21, 0.5);
    border-radius: 4px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

/* Corner bracket marks on cards */
.benefit-grid article::before,
.timeline article::before,
.faq-grid article::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    width: 10px;
    height: 10px;
    border-top: 1px solid rgba(208, 174, 113, 0.45);
    border-right: 1px solid rgba(208, 174, 113, 0.45);
    pointer-events: none;
}

/* Bottom-left corner bracket on cards */
.benefit-grid article::after,
.timeline article::after,
.faq-grid article::after {
    content: "";
    position: absolute;
    bottom: 0.7rem;
    left: 0.7rem;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid rgba(208, 174, 113, 0.45);
    border-left: 1px solid rgba(208, 174, 113, 0.45);
    pointer-events: none;
}

.benefit-grid h3,
.timeline h3,
.faq-grid h3,
.agreement-heading h3 {
    margin: 0 0 0.7rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1.04;
}

.timeline-step {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 2px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(208, 174, 113, 0.35);
    color: var(--accent-soft);
    font-family: "Manrope", sans-serif;
    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(53, 34, 22, 0.94), rgba(24, 18, 15, 0.98));
}

.availability-card {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 1.4rem 1.35rem;
    border: 1px solid rgba(208, 174, 113, 0.2);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(248, 236, 213, 0.05), rgba(141, 35, 21, 0.08));
}

.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);
    font-family: "Manrope", sans-serif;
    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-family: "Manrope", sans-serif;
    font-size: 0.92rem;
}

.form-intro {
    margin: 0;
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1.5;
}

.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-family: "Manrope", sans-serif;
    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(208, 174, 113, 0.18);
    border-radius: 2px;
    color: var(--text);
    background: rgba(248, 236, 213, 0.03);
}

.beta-form textarea {
    resize: vertical;
}

.agreement-card {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(208, 174, 113, 0.22);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(208, 174, 113, 0.08), rgba(248, 236, 213, 0.025));
}

.agreement-details {
    border: 1px solid rgba(208, 174, 113, 0.15);
    border-radius: 4px;
    background: rgba(248, 236, 213, 0.02);
    overflow: hidden;
}

.agreement-details summary {
    padding: 1rem 1.2rem;
    cursor: pointer;
    list-style: none;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
}

.agreement-details summary::-webkit-details-marker {
    display: none;
}

.agreement-note,
.agreement-signoff {
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.agreement-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
    font-size: 1.16rem;
}

.agreement-list strong {
    color: var(--text);
}

.agreement-heading p,
.agreement-body p {
    margin: 0;
    color: var(--muted);
    font-family: "Manrope", sans-serif;
}

.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 {
    font-family: "Manrope", sans-serif;
    font-size: 0.94rem;
    line-height: 1.5;
    transition: opacity 280ms ease;
}

.form-status:empty {
    display: none;
}

.form-status[data-state="success"] {
    display: block;
    padding: 0.9rem 1.1rem;
    background: rgba(140, 200, 120, 0.08);
    border: 1px solid rgba(140, 200, 120, 0.28);
    border-left: 3px solid rgba(140, 200, 120, 0.7);
    border-radius: 2px;
    color: #cce8b8;
}

.form-status[data-state="error"] {
    display: block;
    padding: 0.9rem 1.1rem;
    background: rgba(200, 60, 40, 0.08);
    border: 1px solid rgba(200, 80, 60, 0.28);
    border-left: 3px solid rgba(200, 80, 60, 0.7);
    border-radius: 2px;
    color: #ffc2b1;
}

.survey {
    background: linear-gradient(180deg, rgba(50, 34, 24, 0.92), rgba(24, 18, 15, 0.98));
    padding: 4rem 4.8rem;
}

.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: 4px;
    background: rgba(248, 236, 213, 0.025);
    overflow: hidden;
}

.survey-section summary {
    display: grid;
    gap: 0.2rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    list-style: none;
    font-family: "Manrope", sans-serif;
}

.survey-section summary::-webkit-details-marker {
    display: none;
}

.survey-kicker {
    font-family: "Manrope", sans-serif;
    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;
    font-size: 1.28rem;
}

.survey-list li + li {
    margin-top: 0.85rem;
}

.survey-signoff {
    margin: 1.5rem 0 0;
}

/* ── Resend section ──────────────────────────────── */
.resend-section {
    margin-top: 2.4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0.9rem;
}

.resend-divider {
    margin: 0;
    text-align: center;
    position: relative;
    font-family: "Manrope", sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.resend-divider::before,
.resend-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 6rem);
    height: 1px;
    background: var(--line);
}

.resend-divider::before { left: 0; }
.resend-divider::after  { right: 0; }

.resend-intro {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
}

.resend-form {
    display: grid;
    gap: 0.85rem;
}

.resend-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: end;
}

.resend-grid label {
    display: grid;
    gap: 0.45rem;
}

.resend-grid label span {
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    color: #ead9c8;
}

.resend-grid input {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(208, 174, 113, 0.18);
    border-radius: 2px;
    color: var(--text);
    background: rgba(248, 236, 213, 0.03);
    font-family: "Manrope", sans-serif;
    font-size: 0.94rem;
}

@media (max-width: 540px) {
    .resend-grid {
        grid-template-columns: 1fr;
    }
}

.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);
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.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,
    .origins-layout,
    .request-panel,
    .benefit-grid,
    .timeline,
    .faq-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .story-panel,
    .quote-panel,
    .request-panel,
    .merch,
    .survey,
    .origins {
        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;
    }

    .origins-intro {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-bottom: 1.5rem;
    }

    .cover-caption {
        text-align: left;
    }

    .benefit-grid article,
    .timeline article,
    .faq-grid article {
        padding: 1.8rem 2rem;
    }

    .merch-grid {
        grid-template-columns: repeat(2, minmax(0, 15rem));
    }
}

@media (max-width: 640px) {
    :root {
        --content-width: min(1120px, calc(100vw - 1.5rem));
    }

    .hero,
    .story-panel,
    .quote-panel,
    .request-panel,
    .merch,
    .survey,
    .origins {
        padding: 1.8rem;
    }

    .hero-blurb,
    .story-panel p,
    .benefit-grid p,
    .timeline p,
    .request-copy p,
    .faq-grid p,
    .quote-credit,
    .origins-body p,
    .origins-pull,
    .survey-lead,
    .survey-note,
    .survey-signoff,
    .survey-list {
        font-size: 1.28rem;
    }

    .button {
        width: 100%;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }

    .merch-card {
        max-width: 17rem;
        margin-inline: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}