*{box-sizing:border-box}
:root{
  --serif:"Instrument Serif",Georgia,serif;
  --sans:"Helvetica Neue",Helvetica,Arial,sans-serif;
  --ink:#111;
  --muted:#717171;
  --line:#dedede;
  --red:#b62a24;
}
html,body{margin:0;padding:0;background:#fff;color:var(--ink)}
body{font-family:var(--sans);font-weight:300}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{color:inherit}

.page-shell{width:min(1180px,calc(100% - 48px));margin:0 auto}
.topbar{
  min-height:72px;display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid #e7e7e7;font-size:11px
}
.wordmark{font-family:var(--serif);font-size:22px}
.back{padding-bottom:3px;border-bottom:1px solid #111}
.application-layout{
  display:grid;grid-template-columns:minmax(0,1fr) 310px;gap:58px;padding:54px 0 80px
}
.form-column{min-width:0}
.eyebrow{text-transform:uppercase;letter-spacing:.13em;font-size:10px;margin-bottom:15px}
.intro{padding-bottom:38px}
.intro h1{
  font-family:var(--serif);font-size:clamp(34px,4vw,48px);font-weight:400;
  line-height:.98;letter-spacing:-.018em;margin:0 0 16px
}
.intro p{max-width:600px;margin:0;color:#555;font-size:12px;line-height:1.55}

.step{padding:36px 0 42px;border-top:1px solid #e7e7e7}
.step-head{display:grid;grid-template-columns:52px 1fr;gap:12px;margin-bottom:24px}
.step-no{font-family:var(--serif);font-size:23px;line-height:1}
.step h2,.submit-block h2{font-family:var(--serif);font-weight:400;font-size:30px;line-height:1;margin:0}
.step-head p{margin:8px 0 0;color:#777;font-size:11px;line-height:1.5;max-width:560px}

.field-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-left:64px}
.field{display:block;font-size:11px;color:#555}
.field.full{grid-column:1/-1}
.field i{font-style:normal;color:var(--red)}
.field input,.field select,.field textarea{
  width:100%;margin-top:7px;padding:12px 13px;border:1px solid #ddd;border-radius:9px;
  background:#fff;color:#111;outline:none;font-weight:300
}
.field textarea{min-height:105px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:#888}
.field input.invalid,.field select.invalid,.field textarea.invalid{border-color:var(--red)}

.choice-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-left:64px}
.choice{
  min-height:118px;padding:17px;border:1px solid #ddd;border-radius:12px;background:#fff;
  text-align:left;cursor:pointer;transition:.15s ease
}
.choice:hover{border-color:#aaa}
.choice.selected{border-color:#111;box-shadow:inset 0 0 0 1px #111}
.choice strong{display:block;font-size:13px;font-weight:400;margin-bottom:7px}
.choice span{display:block;color:#777;font-size:10.5px;line-height:1.4;min-height:30px}
.choice em{display:block;margin-top:13px;font-style:normal;font-size:11px}
.inline-error{margin:8px 0 0 64px;min-height:14px;color:var(--red);font-size:10px}
.service-note{margin:4px 0 0 64px;color:#777;font-size:10px}

.summary{align-self:start;position:sticky;top:28px}
.summary-card{border:1px solid #ddd;border-radius:16px;padding:23px;background:#fff}
.summary-title{font-family:var(--serif);font-size:29px;margin-bottom:22px}
.summary-row{
  display:flex;justify-content:space-between;gap:18px;padding:11px 0;border-top:1px solid #eee;
  color:#777;font-size:10.5px
}
.summary-row strong{max-width:160px;color:#111;font-weight:400;text-align:right}
.summary small{display:block;margin-top:18px;color:#888;font-size:9.5px;line-height:1.5}

.submit-block{
  display:grid;grid-template-columns:1fr auto;gap:30px;align-items:end;
  border-top:1px solid #e7e7e7;padding:42px 0 0 64px
}
.submit-block p{margin:10px 0 0;max-width:500px;color:#777;font-size:11px;line-height:1.5}
.submit-side{text-align:right}
.submit-link{
  appearance:none;border:0;border-bottom:1px solid #111;background:transparent;
  padding:0 0 5px;margin:0;font-size:12px;font-weight:300;cursor:pointer
}
.submit-link:hover{opacity:.55}
.submit-link:disabled{opacity:.35;cursor:default}
.form-status{margin-top:10px;max-width:240px;color:#666;font-size:10px;line-height:1.4}
.form-status.error{color:var(--red)}
.required-note{margin:26px 0 0 64px;color:#777;font-size:10px}
.required-note::first-letter{}
.required-note{padding-bottom:4px}
.required-note:has(+ *){}
.required-note{ }
.required-note::selection{background:#eee}

footer{
  width:min(1180px,calc(100% - 48px));margin:0 auto;padding:22px 0 34px;border-top:1px solid #e7e7e7;
  display:flex;justify-content:space-between;gap:20px;color:#777;font-size:10px
}
footer a{border-bottom:1px solid #aaa;padding-bottom:2px}

@media(max-width:820px){
  .page-shell{width:calc(100% - 32px)}
  .topbar{min-height:62px}
  .back{font-size:10px}
  .application-layout{grid-template-columns:1fr;gap:34px;padding-top:38px}
  .intro{padding-bottom:32px}
  .intro h1{font-size:38px}
  .field-grid,.choice-grid{grid-template-columns:1fr;margin-left:0}
  .step-head{grid-template-columns:40px 1fr}
  .service-note,.inline-error,.required-note{margin-left:0}
  .summary{position:static;order:2}
  .submit-block{grid-template-columns:1fr;padding-left:0}
  .submit-side{text-align:left}
  footer{width:calc(100% - 32px);flex-direction:column}
}
