.inquiry-page { background: #fbfaf8; }

.form-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(390px, 42vw) minmax(0, 1fr);
    isolation: isolate;
}

.form-story {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    color: var(--white);
}

.form-story-media,
.form-story-media img,
.form-story-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.form-story-media img {
    object-fit: cover;
    object-position: 50% 52%;
    filter: none;
}

.form-story-shade {
    background: linear-gradient(180deg, rgba(11, 11, 10, .18) 15%, rgba(11, 11, 10, .08) 44%, rgba(11, 11, 10, .78) 100%);
}

.form-story-mark {
    position: absolute;
    z-index: 1;
    top: 34px;
    left: 40px;
    width: 156px;
    line-height: 0;
}

.form-story-mark img { width: 100%; height: auto; }

.form-story-copy {
    position: absolute;
    z-index: 1;
    right: clamp(32px, 4vw, 70px);
    bottom: clamp(46px, 7vh, 84px);
    left: clamp(32px, 4vw, 70px);
}

.form-story-copy h1 {
    max-width: 9.5ch;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(52px, 5.1vw, 82px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .94;
}

.form-story-copy h1 em { font-weight: 400; }

.form-story-copy p {
    max-width: 47ch;
    margin: 28px 0 0;
    font-size: 14px;
    line-height: 1.65;
}

.form-panel {
    min-width: 0;
    padding: 34px clamp(28px, 5.2vw, 92px) 64px;
    background: #fbfaf8;
}

.form-panel-top {
    min-height: 52px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 20px;
}

.form-panel-top p,
.form-back {
    margin: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.form-panel-top p { color: #756e65; text-align: right; }

.form-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    color: var(--ink);
    text-decoration: none;
}

.form-back svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.25;
    transition: transform .2s ease;
}

.form-back:hover svg { transform: translateX(-3px); }

.form-email-option {
    display: grid;
    grid-template-columns: minmax(180px, .85fr) minmax(230px, 1.1fr) minmax(210px, .85fr);
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 24px;
    border: 1px solid var(--ink);
    background: #f2eee8;
}

.form-email-intro h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1;
}

.form-email-intro p {
    margin: 10px 0 0;
    color: #625d56;
    font-size: 14px;
    line-height: 1.55;
}

.form-email-checklist {
    margin: 0;
    padding-left: 20px;
    color: #4d4943;
    font-size: 13px;
    line-height: 1.6;
}

.form-email-contact {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-width: 0;
    text-align: center;
}

.form-email-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    background: var(--ink);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
}

.form-email-action:hover { background: #3c3934; }
.form-email-action:focus-visible { outline: 3px solid #b56f38; outline-offset: 3px; }

.form-email-address {
    overflow-wrap: anywhere;
    color: #625d56;
    font-size: 13px;
    line-height: 1.4;
}

.form-frame-shell {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.form-frame {
    display: block;
    width: 100%;
    height: var(--form-frame-height, 2400px);
    border: 0;
    background: #fbfaf8;
}

.form-submit-note {
    max-width: 48ch;
    margin: 28px auto;
    padding-inline: 24px;
    color: #625d56;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
}

.form-frame-shell.has-error + .form-submit-note { display: none; }
.form-submit-note span { display: block; }
.form-submit-note span + span { margin-top: 8px; }
.form-submit-note strong {
    display: block;
    margin-top: 10px;
    color: var(--ink);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.form-loading {
    position: absolute;
    inset: 88px 20px auto;
    margin: 0;
    color: #756e65;
    font-family: var(--display);
    font-size: 30px;
    text-align: center;
}

.form-loading[hidden] { display: none; }

.form-error {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 80px auto;
    padding: 46px;
    border: 1px solid var(--ink);
    background: #fbfaf8;
    text-align: center;
}

.form-error[hidden] { display: none; }
.form-error h2 { margin: 0 0 14px; font-family: var(--display); font-size: 42px; font-weight: 400; line-height: 1; }
.form-error p { margin: 0; color: #625d56; font-size: 16px; line-height: 1.7; }
.form-error a { color: var(--ink); text-underline-offset: 4px; }
.form-frame-shell.has-error .form-frame {
    position: absolute;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
}

.form-noscript {
    margin: 80px auto;
    padding: 0 24px;
    color: #625d56;
    text-align: center;
}

.form-noscript a { color: var(--ink); text-underline-offset: 4px; }

.form-support {
    max-width: 650px;
    margin: 24px auto 0;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    color: #625d56;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
}

.form-support p { margin: 0 0 12px; }
.form-support a { color: var(--ink); text-underline-offset: 4px; }
.form-support-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
.form-support-links a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; }
.form-support-links a[href="/privacy.html"] { font-size: 14px; }

@media (max-width: 980px) {
    .form-shell { grid-template-columns: minmax(330px, 38vw) minmax(0, 1fr); }
    .form-story-copy h1 { font-size: clamp(48px, 6vw, 64px); }
    .form-panel { padding-inline: 22px; }
    .form-email-option { grid-template-columns: 1fr; align-items: start; }
    .form-email-contact { align-items: flex-start; text-align: left; }
}

@media (max-width: 820px) {
    .form-shell { display: block; }
    .form-story {
        position: relative;
        height: 62svh;
        min-height: 500px;
    }
    .form-story-media img { object-position: center 47%; }
    .form-story-mark { top: 22px; left: 22px; width: 132px; }
    .form-story-copy { right: 22px; bottom: 36px; left: 22px; }
    .form-story-copy h1 { max-width: 10ch; font-size: clamp(48px, 14vw, 68px); }
    .form-story-copy p { max-width: 38ch; margin-top: 20px; font-size: 14px; }
    .form-panel { padding: 0 0 46px; }
    .form-panel-top { display: none; }
    .form-email-option {
        width: auto;
        margin: 0 22px 30px;
        padding: 24px 22px;
    }
    .form-email-action { width: 100%; }
    .form-support { margin: 0 22px; padding-top: 24px; }
    .form-support-links { flex-direction: column; gap: 8px; }
    .form-error { margin: 54px 20px; padding: 38px 24px; }
    .form-error h2 { font-size: 36px; }
}

@media (max-width: 420px) {
    .form-story { height: 58svh; min-height: 460px; }
    .form-story-copy h1 { font-size: 50px; }
}

@media (prefers-reduced-motion: reduce) {
    .form-back svg { transition: none; }
}
