:root {
    --ink: #211a1b;
    --paper: #f4ede5;
    --paper-deep: #eadfd4;
    --muted: #776c69;
    --line: rgba(53, 38, 40, .16);
    --accent: #d5604b;
    --accent-dark: #a83d31;
    --night: #1e1518;
    --night-soft: #342126;
    --cream: #f6e9dd;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--cream);
    background:
        radial-gradient(circle at 7% 12%, rgba(183, 69, 59, .19), transparent 27rem),
        radial-gradient(circle at 92% 89%, rgba(177, 112, 82, .13), transparent 32rem),
        linear-gradient(145deg, var(--night) 0%, #181113 54%, #26181c 100%);
    font-family: var(--sans);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: '';
    pointer-events: none;
    opacity: .16;
    background-image: radial-gradient(rgba(255, 255, 255, .22) .55px, transparent .7px);
    background-size: 5px 5px;
}

button,
input,
textarea {
    font: inherit;
}

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

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    padding: .75rem 1rem;
    color: var(--ink);
    background: white;
    border-radius: .4rem;
    transform: translateY(-200%);
}

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

.page-glow {
    position: fixed;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    pointer-events: none;
}

.page-glow--one {
    width: 28rem;
    height: 28rem;
    top: -15rem;
    right: -8rem;
}

.page-glow--two {
    width: 36rem;
    height: 36rem;
    bottom: -27rem;
    left: -11rem;
}

.site-header,
.layout,
.faq-section,
.site-footer {
    width: min(1200px, calc(100% - 64px));
    margin-inline: auto;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 8vw, 7.5rem);
    padding: 6rem 0 7rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.faq-intro {
    align-self: start;
    position: sticky;
    top: 2rem;
}

.faq-intro h2 {
    color: var(--cream);
    font-size: clamp(2.5rem, 4.4vw, 4.25rem);
    line-height: .98;
}

.faq-intro h2 em {
    color: #d9917d;
    font-weight: 400;
}

.faq-intro > p:last-child {
    max-width: 22rem;
    margin: 1.5rem 0 0;
    color: rgba(246, 233, 221, .5);
    font-size: .82rem;
    line-height: 1.65;
}

.faq-list {
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.faq-item summary {
    display: grid;
    grid-template-columns: 1fr 1.8rem;
    gap: 1.5rem;
    align-items: center;
    min-height: 5rem;
    padding: .5rem 0;
    color: rgba(246, 233, 221, .88);
    cursor: pointer;
    font-family: var(--serif);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.3;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:focus-visible {
    outline: 2px solid #d9917d;
    outline-offset: 4px;
}

.faq-item summary i {
    position: relative;
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid rgba(217, 145, 125, .42);
    border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: .7rem;
    height: 1px;
    content: '';
    background: #d9917d;
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    max-width: 45rem;
    margin: -.35rem 4rem 1.6rem 0;
    color: rgba(246, 233, 221, .55);
    font-size: .8rem;
    line-height: 1.7;
}

.ideal-format {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 8vw, 7.5rem);
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto 6rem;
    padding: clamp(2.25rem, 4.5vw, 4.25rem);
    color: var(--ink);
    background:
        radial-gradient(circle at 100% 0, rgba(213, 96, 75, .12), transparent 24rem),
        var(--paper);
    border-radius: 1.2rem;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .2), 0 2px 0 rgba(255, 255, 255, .4) inset;
}

.ideal-format__aside {
    align-self: start;
}

.ideal-format__aside h2 {
    font-size: clamp(2.5rem, 4.3vw, 4.2rem);
    line-height: .97;
}

.ideal-format__aside h2 em {
    color: var(--accent-dark);
    font-weight: 400;
}

.ideal-format__principles {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: 1.7rem;
}

.ideal-format__principles span {
    padding: .48rem .65rem;
    color: #716562;
    background: rgba(255, 255, 255, .45);
    border: 1px solid var(--line);
    border-radius: 10rem;
    font-size: .58rem;
    letter-spacing: .025em;
}

.ideal-format__copy {
    min-width: 0;
}

.ideal-format__lead {
    margin: 0 0 1.6rem;
    color: #3d3032;
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.48;
}

.ideal-format__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.ideal-format__columns p {
    margin: 0;
    color: #716562;
    font-size: .77rem;
    line-height: 1.72;
}

.ideal-format__quote {
    position: relative;
    margin: 1.7rem 0 0;
    padding: 1.2rem 1.35rem 1.2rem 2.1rem;
    color: #4d3e40;
    background: rgba(213, 96, 75, .075);
    border-left: 2px solid var(--accent);
    border-radius: 0 .65rem .65rem 0;
    font-size: .9rem;
    line-height: 1.62;
}

.ideal-format__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.35rem;
}

.ideal-format__status p {
    display: flex;
    align-items: center;
    gap: .42rem;
    margin: 0;
    color: #776a67;
    font-size: .65rem;
    line-height: 1.5;
}

.ideal-format__status p > span {
    width: .42rem;
    height: .42rem;
    flex: 0 0 auto;
    background: #6d9a75;
    border-radius: 50%;
    box-shadow: 0 0 0 .25rem rgba(109, 154, 117, .12);
}

.ideal-format__status strong {
    color: #405c45;
}

.ideal-format__status a {
    display: inline-flex;
    min-height: 2.8rem;
    flex: 0 0 auto;
    align-items: center;
    gap: .75rem;
    padding: 0 .55rem 0 .95rem;
    color: white;
    background: var(--ink);
    border-radius: .5rem;
    font-size: .68rem;
    font-weight: 650;
    text-decoration: none;
    transition: transform .2s, background .2s;
}

.ideal-format__status a i {
    display: grid;
    width: 1.85rem;
    height: 1.85rem;
    place-items: center;
    color: var(--ink);
    background: #dc8069;
    border-radius: .32rem;
    font-style: normal;
}

.ideal-format__status a:hover {
    background: #34292b;
    transform: translateY(-1px);
}

.ideal-format__status a:focus-visible {
    outline: 2px solid var(--accent-dark);
    outline-offset: 3px;
}

.site-header {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.08rem;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    border: 1px solid rgba(246, 233, 221, .5);
    border-radius: 50%;
    font-family: var(--sans);
    font-size: .62rem;
    letter-spacing: .1em;
}

.header-note {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: rgba(246, 233, 221, .62);
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.header-note__copy {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: .18rem;
    line-height: 1.1;
}

.header-note__copy strong {
    color: rgba(246, 233, 221, .78);
    font-size: .69rem;
    font-weight: 650;
    letter-spacing: .09em;
}

.header-note__copy small {
    color: rgba(246, 233, 221, .36);
    font-size: .52rem;
    font-weight: 500;
    letter-spacing: .075em;
}

.status-dot {
    width: .42rem;
    height: .42rem;
    background: #d77b64;
    border-radius: 50%;
    box-shadow: 0 0 0 .28rem rgba(215, 123, 100, .11);
}

.layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 530px);
    gap: clamp(4rem, 8vw, 8.5rem);
    align-items: center;
    min-height: calc(100vh - 184px);
    padding: 2rem 0 5rem;
}

.intro {
    padding-block: 1rem;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: 0 0 1.8rem;
    color: #d9907c;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow span {
    color: rgba(246, 233, 221, .35);
}

h1 {
    max-width: 670px;
    margin: 0;
    color: #f5ece4;
    font-family: var(--serif);
    font-size: clamp(3.3rem, 5.6vw, 5.6rem);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.055em;
}

h1 em {
    color: #d9917d;
    font-weight: 400;
}

.lead {
    max-width: 600px;
    margin: 2.1rem 0 0;
    color: rgba(246, 233, 221, .72);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.7;
}

.author-note {
    max-width: 590px;
    margin-top: 3.3rem;
    padding: 1.45rem 1.55rem 1.5rem;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
}

.after-submit {
    max-width: 590px;
    margin-top: 1rem;
    padding: 1.45rem 1.55rem 1.5rem;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
}

.after-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.after-heading .eyebrow {
    margin: 0;
}

.after-heading h2 {
    color: var(--cream);
    font-size: 1.55rem;
    letter-spacing: -.025em;
}

.after-steps {
    display: grid;
    gap: .85rem;
    margin: 1rem 0;
    padding: 0;
    list-style: none;
}

.after-steps li {
    display: grid;
    grid-template-columns: 1.7rem 1fr;
    gap: .72rem;
    align-items: flex-start;
}

.after-steps li > span {
    display: grid;
    width: 1.7rem;
    height: 1.7rem;
    place-items: center;
    color: #e4a38f;
    border: 1px solid rgba(228, 163, 143, .35);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: .72rem;
}

.after-steps p {
    margin: .03rem 0 0;
    color: rgba(246, 233, 221, .58);
    font-size: .75rem;
    line-height: 1.55;
}

.after-steps strong {
    color: rgba(246, 233, 221, .9);
    font-weight: 650;
}

.support-offer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1rem 1.05rem;
    background: rgba(213, 96, 75, .1);
    border: 1px solid rgba(217, 145, 125, .2);
    border-radius: .7rem;
}

.support-offer > div {
    padding-right: 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.support-offer span,
.support-offer strong {
    display: block;
    white-space: nowrap;
}

.support-offer span {
    margin-bottom: .28rem;
    color: rgba(246, 233, 221, .43);
    font-size: .57rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.support-offer strong {
    color: #e8a995;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
}

.support-offer small {
    color: rgba(246, 233, 221, .45);
    font-family: var(--sans);
    font-size: .58rem;
    font-weight: 400;
}

.support-offer p {
    margin: 0;
    color: rgba(246, 233, 221, .63);
    font-size: .69rem;
    line-height: 1.5;
}

.sponsor-facts {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: .65rem;
    margin-top: .75rem;
}

.sponsor-facts div {
    padding: .7rem .8rem;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: .55rem;
}

.sponsor-facts span,
.sponsor-facts strong {
    display: block;
}

.sponsor-facts span {
    margin-bottom: .23rem;
    color: rgba(246, 233, 221, .36);
    font-size: .55rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sponsor-facts strong {
    color: rgba(246, 233, 221, .85);
    font-family: var(--serif);
    font-size: .9rem;
    font-weight: 400;
}

.travel-note {
    display: flex;
    gap: .52rem;
    margin: .75rem .1rem 0;
    color: rgba(246, 233, 221, .5);
    font-size: .67rem;
    line-height: 1.5;
}

.travel-note span {
    color: #e4a38f;
    flex: 0 0 auto;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.author-avatar {
    display: grid;
    width: 2.55rem;
    height: 2.55rem;
    place-items: center;
    color: var(--night);
    background: #d9907c;
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 1.15rem;
}

.author-meta p {
    margin: 0 0 .15rem;
    font-family: var(--serif);
    font-size: .95rem;
}

.author-meta div span {
    color: rgba(246, 233, 221, .45);
    font-size: .7rem;
}

blockquote {
    margin: 1rem 0 0 3.3rem;
    color: rgba(246, 233, 221, .71);
    font-family: var(--serif);
    font-size: .94rem;
    font-style: italic;
    line-height: 1.6;
}

.trust-row {
    display: flex;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    margin-top: 2.6rem;
}

.trust-row div {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.trust-row strong {
    color: #e0a08d;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
}

.trust-row span {
    color: rgba(246, 233, 221, .38);
    font-size: .68rem;
}

.form-shell {
    position: relative;
    color: var(--ink);
    background: var(--paper);
    border-radius: 1.2rem;
    padding: clamp(2rem, 3.5vw, 3.25rem);
    box-shadow: 0 38px 90px rgba(0, 0, 0, .27), 0 2px 0 rgba(255, 255, 255, .38) inset;
}

.form-shell::before {
    position: absolute;
    width: 4rem;
    height: 4rem;
    top: -1.8rem;
    right: -1.8rem;
    content: '';
    border-top: 1px solid rgba(217, 145, 125, .65);
    border-right: 1px solid rgba(217, 145, 125, .65);
    border-radius: 0 .4rem 0 0;
}

.form-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.eyebrow--dark {
    margin-bottom: 1rem;
    color: var(--accent-dark);
}

.eyebrow--dark span {
    color: rgba(33, 26, 27, .32);
}

h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.035em;
}

.age-badge {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--accent-dark);
    border: 1px solid rgba(168, 61, 49, .35);
    border-radius: 50%;
    font-size: .68rem;
    font-weight: 700;
}

.form-intro {
    margin: 1rem 0 2rem;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.6;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin: 0 0 1.35rem;
    padding: .85rem 1rem;
    border-radius: .65rem;
    font-size: .76rem;
    line-height: 1.45;
}

.alert > span {
    display: grid;
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    font-weight: 800;
}

.alert strong,
.alert p {
    display: block;
    margin: 0;
}

.alert--success {
    color: #365d46;
    background: #e2ede4;
}

.alert--success > span {
    color: white;
    background: #518064;
}

.alert--error {
    color: #87352e;
    background: #f3dcd7;
}

.alert--error > span {
    color: white;
    background: #b34f44;
}

.application-form {
    display: grid;
    gap: 1.1rem;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.field-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 7rem;
    gap: .9rem;
}

.field,
.channel-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.field label,
.channel-fieldset legend,
.label-line {
    display: block;
    margin-bottom: .5rem;
    color: #514648;
    font-size: .73rem;
    font-weight: 650;
}

.label-line {
    display: flex;
    justify-content: space-between;
}

.label-line label {
    margin: 0;
}

.label-line span {
    color: #9d918d;
    font-size: .64rem;
    font-weight: 400;
}

.label-line b {
    font-weight: 500;
}

.label-line .optional-label {
    color: var(--accent-dark);
    font-size: .6rem;
    font-weight: 650;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.field input,
.field textarea {
    width: 100%;
    color: var(--ink);
    background: rgba(255, 255, 255, .46);
    border: 1px solid var(--line);
    border-radius: .55rem;
    outline: 0;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.field input {
    height: 3rem;
    padding: 0 .9rem;
}

.field textarea {
    min-height: 7.2rem;
    padding: .85rem .9rem;
    line-height: 1.55;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #a99e9a;
}

.field input:focus,
.field textarea:focus {
    background: rgba(255, 255, 255, .75);
    border-color: rgba(168, 61, 49, .52);
    box-shadow: 0 0 0 .22rem rgba(168, 61, 49, .08);
}

.field--error input,
.field--error textarea {
    border-color: #b94b43;
}

.field-error {
    display: block;
    min-height: .05rem;
    margin-top: .25rem;
    color: #a83d31;
    font-size: .65rem;
}

.photo-upload {
    display: grid !important;
    grid-template-columns: 3.4rem minmax(0, 1fr) auto;
    gap: .85rem;
    align-items: center;
    min-height: 4.55rem;
    margin: 0 !important;
    padding: .55rem .7rem;
    color: var(--ink) !important;
    background: rgba(255, 255, 255, .42);
    border: 1px dashed rgba(168, 61, 49, .38);
    border-radius: .65rem;
    cursor: pointer;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.photo-upload:hover {
    background: rgba(255, 255, 255, .7);
    border-color: rgba(168, 61, 49, .7);
}

.photo-upload:focus-within {
    border-color: rgba(168, 61, 49, .7);
    box-shadow: 0 0 0 .22rem rgba(168, 61, 49, .08);
}

.photo-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.photo-preview {
    display: grid;
    width: 3.4rem;
    height: 3.4rem;
    place-items: center;
    overflow: hidden;
    color: var(--accent-dark);
    background: #ebddd2;
    border-radius: .48rem;
}

.photo-preview b {
    font-size: 1.15rem;
    font-weight: 400;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-copy {
    min-width: 0;
}

.photo-copy strong,
.photo-copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.photo-copy strong {
    margin-bottom: .28rem;
    color: #493d3f;
    font-size: .76rem;
}

.photo-copy small {
    color: #9a8e8a;
    font-size: .62rem;
    font-weight: 400;
}

.photo-action {
    padding: .5rem .65rem;
    color: var(--accent-dark);
    background: rgba(213, 96, 75, .1);
    border-radius: .38rem;
    font-size: .63rem;
    font-weight: 700;
}

.photo-hint {
    display: flex;
    align-items: flex-start;
    gap: .38rem;
    margin: .55rem .1rem 0;
    color: #756864;
    font-family: var(--serif);
    font-size: .7rem;
    font-style: italic;
    line-height: 1.45;
}

.photo-hint span {
    color: var(--accent);
    font-family: var(--sans);
    font-style: normal;
}

.channel-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}

.channel-option {
    cursor: pointer;
}

.channel-option input {
    position: absolute;
    opacity: 0;
}

.channel-option span {
    display: flex;
    height: 2.9rem;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #6d6260;
    background: rgba(255, 255, 255, .4);
    border: 1px solid var(--line);
    border-radius: .55rem;
    font-size: .78rem;
    transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
}

.channel-option b {
    display: grid;
    width: 1.25rem;
    height: 1.25rem;
    place-items: center;
    color: #756a68;
    border: 1px solid rgba(53, 38, 40, .22);
    border-radius: 50%;
    font-size: .64rem;
}

.channel-option input:checked + span {
    color: #2d2223;
    background: #fffaf5;
    border-color: rgba(168, 61, 49, .46);
    box-shadow: 0 0 0 .18rem rgba(168, 61, 49, .06);
}

.channel-option input:checked + span b {
    color: white;
    background: var(--accent);
    border-color: var(--accent);
}

.channel-option input:focus-visible + span {
    outline: 2px solid var(--accent-dark);
    outline-offset: 2px;
}

.consent {
    position: relative;
    display: grid;
    grid-template-columns: 1.15rem 1fr;
    gap: .65rem;
    align-items: flex-start;
    cursor: pointer;
}

.consent input {
    position: absolute;
    opacity: 0;
}

.consent > span {
    display: grid;
    width: 1.05rem;
    height: 1.05rem;
    margin-top: .08rem;
    place-items: center;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(53, 38, 40, .28);
    border-radius: .2rem;
}

.consent input:checked + span {
    background: var(--accent);
    border-color: var(--accent);
}

.consent input:checked + span::after {
    content: '✓';
    color: white;
    font-size: .72rem;
    font-weight: 800;
}

.consent input:focus-visible + span {
    outline: 2px solid var(--accent-dark);
    outline-offset: 2px;
}

.consent small {
    color: #776c69;
    font-size: .66rem;
    line-height: 1.5;
}

.consent--error small {
    color: #a83d31;
}

.submit-button {
    display: flex;
    height: 3.45rem;
    align-items: center;
    justify-content: space-between;
    margin-top: .1rem;
    padding: 0 .65rem 0 1.2rem;
    color: white;
    background: var(--ink);
    border: 0;
    border-radius: .58rem;
    cursor: pointer;
    font-weight: 650;
    transition: transform .2s, background .2s, box-shadow .2s;
}

.submit-button i {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    color: var(--ink);
    background: #dc8069;
    border-radius: .4rem;
    font-style: normal;
    font-size: 1rem;
    transition: transform .2s;
}

.submit-button:hover {
    background: #34292b;
    box-shadow: 0 .7rem 1.4rem rgba(33, 26, 27, .14);
    transform: translateY(-1px);
}

.submit-button:hover i {
    transform: translate(2px, -2px);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:focus-visible {
    outline: 2px solid var(--accent-dark);
    outline-offset: 3px;
}

.privacy-note {
    margin: -.25rem 0 0;
    color: #968986;
    font-size: .62rem;
    line-height: 1.45;
    text-align: center;
}

.privacy-note span {
    color: var(--accent-dark);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    color: rgba(246, 233, 221, .3);
    border-top: 1px solid rgba(255, 255, 255, .07);
    font-size: .65rem;
}

@media (max-width: 980px) {
    .layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        max-width: 680px;
    }

    .intro {
        padding-top: 3rem;
    }

    .form-shell {
        width: 100%;
    }

    .faq-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 680px;
    }

    .faq-intro {
        position: static;
    }

    .ideal-format {
        grid-template-columns: 1fr;
        gap: 2.8rem;
    }
}

@media (max-width: 620px) {
    .site-header,
    .layout,
    .faq-section,
    .ideal-format,
    .site-footer {
        width: min(100% - 32px, 540px);
    }

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

    .header-note {
        font-size: .62rem;
    }

    .header-note__copy strong {
        font-size: .58rem;
    }

    .header-note__copy small {
        display: none;
    }

    .layout {
        padding-top: 1rem;
    }

    .intro {
        padding-top: 1rem;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4.25rem);
    }

    .lead {
        font-size: .98rem;
    }

    .author-note {
        padding: 1.25rem;
    }

    .after-submit {
        padding: 1.25rem;
    }

    .after-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: .7rem;
    }

    .support-offer {
        grid-template-columns: 1fr;
        gap: .8rem;
    }

    .support-offer > div {
        padding: 0 0 .75rem;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .sponsor-facts {
        grid-template-columns: 1fr;
    }

    blockquote {
        margin-left: 0;
    }

    .trust-row {
        justify-content: space-between;
        gap: .7rem;
    }

    .form-shell {
        padding: 1.6rem 1.25rem;
        border-radius: .85rem;
    }

    .form-shell::before {
        display: none;
    }

    .field-row {
        grid-template-columns: minmax(0, 1fr) 6.2rem;
    }

    .photo-upload {
        grid-template-columns: 3.2rem minmax(0, 1fr);
    }

    .photo-preview {
        width: 3.2rem;
        height: 3.2rem;
    }

    .photo-action {
        display: none;
    }

    .site-footer {
        flex-direction: column;
        justify-content: center;
        gap: .4rem;
        text-align: center;
    }

    .faq-section {
        padding: 4.5rem 0 5rem;
    }

    .faq-item summary {
        min-height: 4.5rem;
    }

    .faq-answer p {
        margin-right: 0;
    }

    .ideal-format {
        gap: 2.2rem;
        margin-bottom: 4rem;
        padding: 1.65rem 1.25rem;
        border-radius: .85rem;
    }

    .ideal-format__columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ideal-format__quote {
        padding: 1rem 1rem 1rem 1.2rem;
    }

    .ideal-format__status {
        align-items: stretch;
        flex-direction: column;
    }

    .ideal-format__status a {
        justify-content: space-between;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
