:root {
  --paper: #FBF9F4;
  --paper-2: #F4F0E7;
  --card: #FFFFFF;
  --ink: #1A1815;
  --ink-2: #4A443B;
  --ink-3: #6B6459;
  --ink-4: #8A8175;
  --rule: #E4DED2;
  --rule-2: #EFEAE0;
  --line: #CFC7B8;
  --pine: #23453D;
  --pine-wash: #F0F5F2;
  --pine-line: #CFDCD6;
  --rust: #9A4E2A;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --pad: 20px;
}
@media (min-width: 760px) { :root { --pad: 40px; } }
@media (min-width: 1100px) { :root { --pad: 56px; } }

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 760px) { body { font-size: 17px; } }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; text-align: left; }
button:focus-visible, select:focus-visible, input:focus-visible, a:focus-visible {
  outline: 2px solid var(--pine); outline-offset: 2px;
}
a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--rust); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.012em; margin: 0; text-wrap: pretty; }
p { text-wrap: pretty; }

.wrap { max-width: 1068px; margin: 0 auto; padding: 0 var(--pad); }
.narrow { max-width: 640px; margin: 0 auto; }
.eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rust); }
.label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-4); }
.num { font-variant-numeric: tabular-nums; }

/* masthead */
.mast {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad); border-bottom: 1px solid var(--rule);
}
.mast-mark { display: flex; align-items: baseline; gap: 10px; min-height: 44px; }
.mark { font-family: var(--serif); font-size: 21px; letter-spacing: 0.02em; color: var(--pine); }
.mark-sub { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-4); display: none; }
.mast-note { font-size: 13px; color: var(--ink-3); }
@media (min-width: 620px) { .mark-sub { display: inline; } .mark { font-size: 23px; } }

/* landing */
.hero { padding-top: 44px; }
@media (min-width: 900px) { .hero { padding-top: 84px; } }
.hero-grid { display: grid; gap: 36px; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 40px; align-items: start; } }
.hero h1 { font-size: 35px; line-height: 1.08; margin: 18px 0; }
@media (min-width: 620px) { .hero h1 { font-size: 46px; } }
@media (min-width: 1100px) { .hero h1 { font-size: 56px; } }
.hero-lede { font-size: 18px; line-height: 1.5; color: var(--ink-2); margin: 0 0 16px; max-width: 30em; }
@media (min-width: 900px) { .hero-lede { font-size: 20px; } }
.hero-sub { font-size: 15.5px; color: var(--ink-3); margin: 0 0 30px; max-width: 30em; }
.cta-row { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
@media (min-width: 620px) { .cta-row { flex-direction: row; align-items: center; gap: 20px; } }
.cta-note { font-size: 13.5px; color: var(--ink-4); text-align: center; }
@media (min-width: 620px) { .cta-note { text-align: left; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 0 30px; border-radius: 3px;
  font-size: 17px; font-weight: 500; letter-spacing: 0.01em;
  background: var(--pine); color: var(--paper);
  transition: background 0.15s;
}
.btn:hover { background: #1A342E; }
.btn[disabled] { background: var(--rule); color: var(--ink-4); cursor: not-allowed; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 3px;
  font-size: 15.5px; font-weight: 500;
  background: transparent; color: var(--pine); border: 1px solid var(--line);
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: var(--pine-wash); border-color: var(--pine); }
.btn-block { width: 100%; }
.btn-text { text-decoration: underline; text-underline-offset: 4px; color: var(--ink-3); min-height: 44px; display: inline-flex; align-items: center; font-size: 15px; }
.btn-text:hover { color: var(--rust); }

.sample { border: 1px solid var(--rule); background: var(--paper-2); padding: 26px 24px; border-radius: 3px; }
.sample-fig { font-family: var(--serif); font-size: 32px; line-height: 1.1; }
.sample-cap { font-size: 13.5px; color: var(--ink-3); margin: 4px 0 20px; padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
.sample-list { display: flex; flex-direction: column; gap: 13px; font-size: 15px; }
.sample-list div { display: flex; gap: 13px; }
.sample-list b { color: var(--rust); font-weight: 400; }
.sample-list span { color: var(--ink-2); }

.three { display: grid; gap: 30px; border-top: 1px solid var(--rule); padding-top: 40px; margin-top: 56px; }
@media (min-width: 860px) { .three { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px; } }
.three h3 { font-size: 20px; margin-bottom: 10px; }
.three p { font-size: 15px; line-height: 1.6; color: var(--ink-3); margin: 0; }

.money-note { border: 1px solid var(--rule); border-left: 3px solid var(--pine); background: var(--card); padding: 26px 28px; border-radius: 3px; max-width: 640px; margin: 48px 0 80px; }
.money-note p { margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: var(--ink-2); }

/* intake */
.progress-head { padding: 18px 0 0; }
.progress-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.progress-bar { height: 2px; background: var(--rule); }
.progress-fill { height: 2px; background: var(--pine); transition: width 0.35s cubic-bezier(0.2, 0.7, 0.3, 1); }
.q { padding: 34px 0 40px; animation: rise 0.38s cubic-bezier(0.2, 0.7, 0.3, 1) both; }
@media (min-width: 760px) { .q { padding: 72px 0 100px; } }
@keyframes rise { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .q { animation: none; } .progress-fill { transition: none; } }
.q h2 { font-size: 29px; line-height: 1.15; margin: 16px 0 12px; }
@media (min-width: 760px) { .q h2 { font-size: 40px; margin: 20px 0 16px; } }
.q-help { font-size: 15.5px; line-height: 1.6; color: var(--ink-3); margin: 0 0 28px; max-width: 32em; }
@media (min-width: 760px) { .q-help { font-size: 16px; margin-bottom: 38px; } }

.opts { display: flex; flex-direction: column; gap: 9px; }
.opt {
  display: flex; align-items: center; gap: 15px; min-height: 62px;
  padding: 13px 18px; border: 1px solid #DED7CA; background: var(--card);
  border-radius: 3px; font-size: 16.5px; transition: border-color 0.14s, background 0.14s;
}
.opt:hover { border-color: var(--line); background: #FEFDFB; }
.opt.on { border-color: var(--pine); background: var(--pine-wash); }
.opt-main { flex-grow: 1; }
.opt-note { display: block; font-size: 13.5px; color: var(--ink-4); margin-top: 1px; }
.dot { width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0; border: 1px solid var(--line); }
.opt.on .dot { border-color: var(--pine); background: var(--pine); box-shadow: inset 0 0 0 3px var(--card); }
.box { width: 20px; height: 20px; border-radius: 2px; flex-shrink: 0; border: 1px solid var(--line); background: var(--card); display: flex; align-items: center; justify-content: center; align-self: flex-start; margin-top: 2px; }
.opt.on .box { border-color: var(--pine); background: var(--pine); }
.box svg { opacity: 0; }
.opt.on .box svg { opacity: 1; }
.opt-multi { align-items: flex-start; }

.field { width: 100%; min-height: 60px; padding: 0 16px; border: 1px solid var(--line); border-radius: 3px; background: var(--card); font-size: 17px; font-family: inherit; color: var(--ink); }
select.field { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6459' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
.field-note { font-size: 13.5px; color: var(--ink-4); margin: 14px 0 0; }

.amt-rows { display: flex; flex-direction: column; gap: 22px; }
.amt-row { border-top: 1px solid var(--rule); padding-top: 16px; }
.amt-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.amt-head b { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.amt-head span { font-size: 12.5px; color: var(--ink-4); }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { min-height: 44px; padding: 0 15px; display: inline-flex; align-items: center; border-radius: 999px; font-size: 14.5px; border: 1px solid #DED7CA; background: var(--card); color: var(--ink-2); }
.chip:hover { border-color: var(--line); }
.chip.on { background: var(--pine); border-color: var(--pine); color: var(--paper); }

.q-foot { margin-top: 34px; display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
@media (min-width: 620px) { .q-foot { flex-direction: row; align-items: center; gap: 18px; } }
.q-hint { font-size: 13.5px; color: var(--ink-4); text-align: center; }
@media (min-width: 620px) { .q-hint { text-align: left; } }
.q-legal { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--rule); font-size: 12.5px; color: #9A9285; line-height: 1.6; }

/* roadmap */
.rm { padding-top: 32px; padding-bottom: 60px; }
@media (min-width: 760px) { .rm { padding-top: 58px; padding-bottom: 96px; } }
.rm-head { max-width: 780px; }
.rm-head h2 { font-size: 31px; line-height: 1.11; margin: 16px 0 14px; }
@media (min-width: 760px) { .rm-head h2 { font-size: 44px; margin: 20px 0 18px; } }
.rm-head p { font-size: 16.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }
@media (min-width: 760px) { .rm-head p { font-size: 18px; } }

.stats { margin-top: 34px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 44px; } }
.stat { padding: 18px 16px 18px 0; border-bottom: 1px solid var(--rule-2); }
@media (min-width: 760px) { .stat { padding: 26px 24px; border-bottom: 0; border-right: 1px solid var(--rule); } .stat:first-child { padding-left: 0; } .stat:last-child { border-right: 0; padding-right: 0; } }
.stat .label { display: block; margin-bottom: 10px; }
.stat b { display: block; font-family: var(--serif); font-weight: 400; font-size: 27px; line-height: 1; }
@media (min-width: 760px) { .stat b { font-size: 34px; } }

.sec { margin-top: 44px; }
@media (min-width: 760px) { .sec { margin-top: 62px; } }
.sec > .eyebrow { display: block; margin-bottom: 16px; }

.now-item {
  border-top: 1px solid var(--rule); padding: 20px 0;
  display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 8px 12px; align-items: start;
}
.now-n { font-family: var(--serif); font-size: 21px; color: #C7BFB0; line-height: 1.24; grid-row: 1; }
.now-body { grid-column: 2; }
.now-title { font-family: var(--serif); font-size: 20px; line-height: 1.24; margin-bottom: 7px; }
.now-item p { margin: 0; font-size: 15px; line-height: 1.62; color: var(--ink-3); max-width: 46em; }
.now-meta { grid-column: 2; font-size: 12.5px; color: var(--ink-4); white-space: pre-line; line-height: 1.5; }
@media (min-width: 900px) {
  .now-item { grid-template-columns: 44px minmax(0, 1fr) 170px; gap: 24px; padding: 26px 0; }
  .now-n { font-size: 26px; }
  .now-title { font-size: 23px; }
  .now-meta { grid-column: 3; grid-row: 1; text-align: right; }
}

.dl-grid { display: grid; gap: 0 40px; }
@media (min-width: 860px) { .dl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.dl { border-top: 1px solid var(--rule); padding: 18px 0; }
@media (min-width: 760px) { .dl { padding: 22px 0; } }
.dl-when { font-size: 12.5px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--pine); margin-bottom: 7px; }
.dl h3 { font-size: 19px; line-height: 1.3; margin-bottom: 6px; }
.dl p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-3); }

.acct { border-top: 1px solid var(--rule); padding: 20px 0; display: grid; gap: 10px; }
@media (min-width: 900px) { .acct { grid-template-columns: 232px minmax(0, 1fr); gap: 32px; padding: 24px 0; align-items: start; } }
.acct h3 { font-size: 19px; line-height: 1.25; }
.acct-val { font-size: 13.5px; color: var(--ink-4); margin-top: 3px; }
.tag { display: inline-block; margin-top: 9px; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pine); border: 1px solid var(--pine-line); background: var(--pine-wash); padding: 4px 9px; border-radius: 2px; }
.tag.warn { color: var(--rust); border-color: #E3CBBC; background: #FBF1EB; }
.acct p { margin: 0; font-size: 15px; line-height: 1.62; color: var(--ink-2); max-width: 52em; }

.pros-sec { margin-top: 52px; border-top: 1px solid var(--ink); padding-top: 30px; }
@media (min-width: 760px) { .pros-sec { margin-top: 70px; } }
.pros-lede { font-size: 15.5px; color: var(--ink-3); margin: 8px 0 24px; max-width: 44em; }
.pros { display: grid; gap: 16px; }
@media (min-width: 860px) { .pros { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
.pro { border: 1px solid var(--rule); background: var(--card); border-radius: 3px; padding: 24px; display: flex; flex-direction: column; gap: 13px; }
.pro-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.pro-top h3 { font-size: 21px; }
.pro-urg { font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-4); white-space: nowrap; }
.pro-urg.hot { color: var(--rust); }
.pro p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-3); }
.pro-cost { font-size: 13.5px; color: var(--ink-3); padding-top: 11px; border-top: 1px solid var(--rule-2); }
.pro-cost b { color: var(--ink); font-weight: 400; }

.keep { margin-top: 44px; border: 1px solid var(--rule); background: var(--paper-2); border-radius: 3px; padding: 26px 24px; display: grid; gap: 22px; }
@media (min-width: 900px) { .keep { grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: center; padding: 32px 34px; } }
.keep h3 { font-size: 22px; margin-bottom: 8px; }
.keep p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-3); }
.keep-actions { display: flex; flex-direction: column; gap: 10px; }

/* handoff */
.crit { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 6px 14px; border-top: 1px solid var(--rule); padding: 20px 0; align-items: start; }
@media (min-width: 760px) { .crit { grid-template-columns: 56px minmax(0, 1fr); gap: 8px 22px; padding: 24px 0; } }
.crit-n { font-family: var(--serif); font-size: 17px; color: #C7BFB0; line-height: 1.3; font-variant-numeric: tabular-nums; }
@media (min-width: 760px) { .crit-n { font-size: 20px; } }
.crit h3 { font-size: 19px; line-height: 1.28; margin-bottom: 7px; }
@media (min-width: 760px) { .crit h3 { font-size: 21px; } }
.crit p { margin: 0; font-size: 15px; line-height: 1.62; color: var(--ink-3); max-width: 48em; }

.asks { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.asks li {
  position: relative; padding: 16px 0 16px 34px; border-bottom: 1px solid var(--rule);
  font-family: var(--serif); font-size: 18px; line-height: 1.4;
}
@media (min-width: 760px) { .asks li { font-size: 20px; padding-left: 40px; } }
.asks li::before { content: "\201C"; position: absolute; left: 0; top: 12px; font-family: var(--serif); font-size: 32px; color: var(--pine); line-height: 1; }

.offer { border: 1px solid var(--rule); background: var(--paper-2); border-radius: 3px; padding: 24px; }
@media (min-width: 760px) { .offer { padding: 32px 34px; } }
.offer > .eyebrow { display: block; margin-bottom: 18px; }
.steps { display: grid; gap: 18px; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } }
.step { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 12px; align-items: start; }
.step-n { font-family: var(--serif); font-size: 19px; color: var(--pine); line-height: 1.3; }
.step h3 { font-size: 17px; line-height: 1.3; margin-bottom: 5px; }
.step p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-3); }
.offer-act { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--rule); display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
@media (min-width: 620px) { .offer-act { flex-direction: row; align-items: center; gap: 20px; } }

.disclose { margin-top: 28px; border: 1px solid var(--rule); border-left: 3px solid var(--pine); background: var(--card); border-radius: 3px; padding: 24px 26px; max-width: 720px; }
.disclose p { margin: 11px 0 0; font-size: 14.5px; line-height: 1.65; color: var(--ink-2); }
.disclose b { font-weight: 400; color: var(--ink); }

/* done */
.done { text-align: center; padding: 90px var(--pad) 130px; max-width: 620px; margin: 0 auto; }
.done-mark { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--pine); margin: 0 auto 26px; display: flex; align-items: center; justify-content: center; }
.done h2 { font-size: 31px; line-height: 1.15; margin-bottom: 14px; }
.done p { font-size: 16.5px; line-height: 1.6; color: var(--ink-3); margin: 0 0 30px; }

/* footer */
.foot { border-top: 1px solid var(--rule); margin-top: 60px; padding: 30px var(--pad) 48px; max-width: 1068px; margin-left: auto; margin-right: auto; }
.foot p { font-size: 12.5px; color: #9A9285; line-height: 1.65; margin: 0 0 12px; max-width: 62em; }
.foot-meta { color: var(--ink-4); }

/* resume banner */
.resume { background: var(--pine-wash); border-bottom: 1px solid var(--pine-line); padding: 12px var(--pad); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; font-size: 14.5px; color: var(--ink-2); }
.resume-acts { display: flex; gap: 16px; align-items: center; }

@media print {
  .mast, .foot, .resume, .keep, .btn, .btn-ghost, .btn-text, .pro button { display: none !important; }
  body { font-size: 11pt; background: #fff; }
  .rm { padding: 0; }
  .now-item, .dl, .acct, .pro { break-inside: avoid; }
  a { text-decoration: none; color: inherit; }
}

/* intro request form */
.sent-table { border-top: 1px solid var(--ink); }
.sent-row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: 15px;
}
.sent-row span:first-child { color: var(--ink-4); flex-shrink: 0; }
.sent-row span:last-child { text-align: right; color: var(--ink); }
.sent-note { font-size: 13.5px; color: var(--ink-4); margin: 14px 0 0; line-height: 1.6; }

.form-grid { display: grid; gap: 14px; }
@media (min-width: 760px) { .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .form-grid .full { grid-column: 1 / -1; } }
.field-label { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; color: var(--ink-3); }
.field-label .req { color: var(--rust); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.field-label .field { min-height: 54px; }
textarea.area { min-height: 96px; padding: 14px 16px; line-height: 1.5; resize: vertical; }

/* where everything is */
.wwrap { padding-top: 30px; padding-bottom: 70px; }
@media (min-width: 760px) { .wwrap { padding-top: 56px; padding-bottom: 96px; } }
.wprivacy { margin-top: 34px; border: 1px solid var(--rule); border-left: 3px solid var(--pine); background: var(--card); border-radius: 3px; padding: 24px 26px; max-width: 760px; }
.wprivacy p { margin: 12px 0 0; font-size: 14.5px; line-height: 1.65; color: var(--ink-2); }
.wprivacy b { font-weight: 500; color: var(--ink); }

.wowner { margin-top: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--ink); display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; }
.wprog { text-align: right; }
.wprog .label { display: block; margin-bottom: 6px; }
.wprog b { font-family: var(--serif); font-weight: 400; font-size: 26px; }

.wsec { padding: 30px 0; border-bottom: 1px solid var(--rule); }
.wsec h3 { font-size: 24px; margin-bottom: 8px; }
@media (min-width: 760px) { .wsec h3 { font-size: 27px; } }
.wsec-help { font-size: 14.5px; line-height: 1.6; color: var(--ink-3); margin: 0 0 22px; max-width: 52em; }

.wgrid { display: grid; gap: 14px; }
@media (min-width: 760px) { .wgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.wf { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--ink-3); }
.wf.wide { grid-column: span 2; }
.wf.full { grid-column: 1 / -1; }
.wf .field { min-height: 50px; font-size: 16px; }
.wf select.field { padding-right: 40px; }

.wrow { display: grid; grid-template-columns: minmax(0, 1fr) 40px; gap: 10px; align-items: start; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px dashed var(--rule); }
.wdel { align-self: center; width: 40px; height: 40px; border-radius: 50%; color: var(--ink-4); font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.wdel:hover { background: #FBF1EB; color: var(--rust); }
.wadd { margin-top: 4px; }

.wfoot { margin-top: 44px; border: 1px solid var(--rule); background: var(--paper-2); border-radius: 3px; padding: 26px 24px; display: grid; gap: 20px; }
@media (min-width: 900px) { .wfoot { grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; align-items: center; padding: 32px 34px; } }
.wfoot h3 { font-size: 22px; margin-bottom: 8px; }
.wfoot p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-3); }
.wprint-only { display: none; }

@media print {
  .noprint, .wdel, .wadd { display: none !important; }
  .wsec { break-inside: auto; padding: 16px 0; }
  .wsec h3 { break-after: avoid; }
  .wrow { grid-template-columns: minmax(0, 1fr); border-bottom: 1px solid #ddd; break-inside: avoid; }
  .wgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .wf { font-size: 8pt; }
  .wf .field { min-height: 0; border: 0; border-bottom: 1px solid #bbb; border-radius: 0; padding: 2px 0; font-size: 10pt; background: none; }
  .wf select.field { appearance: none; background-image: none; padding-right: 0; }
  .wowner { border-bottom: 2px solid #000; }
  .wprint-only { display: block; margin-top: 24px; padding-top: 12px; border-top: 1px solid #bbb; font-size: 8pt; color: #666; }
}

.wcross { margin-top: 48px; border-top: 1px solid var(--rule); padding-top: 34px; display: grid; gap: 20px; max-width: 760px; }
@media (min-width: 760px) { .wcross { grid-template-columns: minmax(0, 1fr) 210px; gap: 36px; align-items: center; } }
.wcross h3 { font-size: 24px; margin: 10px 0 8px; }
.wcross p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-3); }

/* reminder signup */
.remind { margin-top: 20px; border: 1px solid var(--pine-line); background: var(--pine-wash); border-radius: 3px; padding: 26px 24px; }
@media (min-width: 760px) { .remind { padding: 32px 34px; } }
.remind-head h3 { font-size: 24px; margin: 10px 0 10px; }
@media (min-width: 760px) { .remind-head h3 { font-size: 27px; } }
.remind-head p { margin: 0; font-size: 15px; line-height: 1.62; color: var(--ink-2); max-width: 54em; }
.remind-form { margin-top: 22px; display: grid; gap: 14px; }
@media (min-width: 860px) { .remind-form { grid-template-columns: 1.4fr 1fr auto; gap: 16px; align-items: end; } }
.remind-act { display: flex; flex-direction: column; gap: 8px; }
@media (min-width: 860px) { .remind-act { align-items: flex-start; } }
.remind-act .btn { white-space: nowrap; }
.remind-fine { margin: 18px 0 0; font-size: 13px; line-height: 1.6; color: var(--ink-3); }
@media print { .remind { display: none !important; } }
