/* "The claim document you'll wish you had."
   White claim-form paper, ink, ruled sections, one highlighter mark, one red stamp. */
@font-face {
  font-family: "Display";
  src: url("/assets/fonts/display.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  --paper: #ffffff;
  --ink: #17161a;
  --rule: #ddd9cf;
  --muted: #5c5952;
  --mark: #ffe33d;
  --stamp: #c8102e;
  --display: "Display", "Arial Narrow", Impact, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}
* { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.55;
}
main, .letterhead, .foot { max-width: 40rem; margin: 0 auto; padding: 0 1.25rem; }

a { color: inherit; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* letterhead */
.letterhead {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 1.1rem; padding-bottom: 1.1rem;
  border-bottom: 2px solid var(--ink);
}
.wordmark { font-family: var(--display); font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; }
.formno { font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* hero */
.hero { padding: 2.75rem 0 3rem; }
h1 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 9vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: .005em;
}
.mark {
  background-image: linear-gradient(0deg, var(--mark), var(--mark));
  background-repeat: no-repeat;
  background-size: 100% 78%;
  background-position: 0 60%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 .08em;
}
@media (prefers-reduced-motion: no-preference) {
  .mark { animation: sweep .6s ease-out .25s backwards; }
  @keyframes sweep { from { background-size: 0 78%; } to { background-size: 100% 78%; } }
}
.subhead { margin-top: 1.25rem; font-size: 1.1rem; color: var(--ink); max-width: 34rem; }

/* CTA */
.cta, .reserve button {
  display: block;
  width: 100%;
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--ink);
  cursor: pointer;
}
.cta:hover, .reserve button:hover { background: var(--paper); color: var(--ink); }
.cta:active, .reserve button:active { background: var(--mark); color: var(--ink); }

/* signature: the manifest */
.manifest {
  position: relative;
  margin-top: 2.5rem;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--rule);
  padding: 1rem 1.1rem 1.2rem;
}
.manifest-head {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--rule); padding-bottom: .55rem; margin-bottom: .35rem;
}
.manifest ul { list-style: none; padding: 0; font-family: var(--mono); font-size: .82rem; }
.row { display: flex; align-items: baseline; gap: .5rem; padding: .42rem 0; }
.leader { flex: 1; border-bottom: 2px dotted var(--rule); transform: translateY(-3px); }
.val { font-variant-numeric: tabular-nums; }
.sn { font-style: normal; color: var(--muted); font-size: .72rem; }
.row.is-hot > :first-child { background: var(--mark); padding: 0 .25em; }
.row.more, .row.more .val { color: var(--muted); }
.stamp {
  position: absolute; top: -.8rem; right: .8rem;
  transform: rotate(6deg);
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--stamp); border: 2px solid var(--stamp);
  padding: .2rem .45rem; background: var(--paper);
}

/* ruled sections */
.sec { border-top: 1px solid var(--ink); padding: 2.25rem 0 2.75rem; }
.eyebrow {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem;
}
.prose { max-width: 34rem; }

.steps { padding-left: 0; list-style: none; counter-reset: step; max-width: 34rem; }
.steps li { counter-increment: step; display: flex; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--rule); }
.steps li::before {
  content: counter(step);
  font-family: var(--display); font-size: 1.5rem; line-height: 1.1;
  min-width: 1.5rem;
}
.steps li:last-child { border-bottom: 0; }

.gets { list-style: none; padding: 0; font-family: var(--mono); font-size: .85rem; max-width: 34rem; }
.gets li { padding: .55rem 0; border-bottom: 1px solid var(--rule); }
.gets li::before { content: "☑ "; }
.gets li:last-child { border-bottom: 0; }

.faq { max-width: 34rem; }
.faq dt { font-weight: 700; margin-top: 1.3rem; }
.faq dt:first-child { margin-top: 0; }
.faq dd { margin: .35rem 0 0; color: var(--ink); }

/* reserve form */
.reserve form { max-width: 34rem; }
.reserve input[type="email"] {
  width: 100%;
  padding: .95rem 1rem;
  font: inherit;
  font-family: var(--mono);
  border: 1.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
}
.reserve button { margin-top: .75rem; }
.hp { position: absolute; left: -9999px; height: 1px; width: 1px; opacity: 0; }
.fine { margin-top: .8rem; font-family: var(--mono); font-size: .74rem; color: var(--muted); }

/* footer */
.foot {
  display: flex; justify-content: space-between;
  border-top: 2px solid var(--ink);
  padding-top: 1rem; padding-bottom: 2.5rem; margin-top: 1rem;
  font-family: var(--mono); font-size: .74rem; color: var(--muted);
}

@media (min-width: 44rem) {
  .hero { padding-top: 4rem; }
  .cta { display: inline-block; width: auto; min-width: 22rem; }
}
