/* ==========================================================================
   Farm Out Loud — farmoutloud.com
   Palette and ink sampled directly from the Issue 001 cover.
   ========================================================================== */

:root {
  /* Colour — the page is the same sheet the magazine is printed on */
  --paper:      #F8F5F0;   /* sampled from the cover stock */
  --paper-2:    #F0ECE4;   /* quiet band */
  --ink:        #373737;   /* sampled from the cover wordmark */
  --ink-soft:   #6B6763;
  --ink-faint:  #A7A199;   /* printer's marks and rules only — too light for text */
  --label:      #66625D;   /* small-caps labels, AA on both paper tones */
  --rule:       #E2DCD2;
  --rule-firm:  #CFC8BC;
  --mark:       #C0402C;   /* label-tape red — the inventory dot, once per page */
  --mark-text:  #A63523;   /* same red, darkened to clear AA as small text */
  --dark:       #2E2D2B;   /* inverted band */

  /* Type */
  --display: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --prose:   "Newsreader", Georgia, "Times New Roman", serif;
  --mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Measure */
  --wrap: 1160px;
  --gut:  clamp(1.25rem, 5vw, 3.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--prose);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection { background: #E6DFD2; }

/* --- Shared primitives --------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
  margin: 0;
}

.lede {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 34em;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* Running head: a hairline with the section label sitting on it, the way a
   printed page marks where you are in the book. */
.band { padding-block: clamp(4rem, 9vw, 7rem); }
.band--quiet { background: var(--paper-2); }
.band__head { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* --- Headings ------------------------------------------------------------ */

h1, h2, h3 { font-family: var(--display); font-weight: 800; margin: 0; }

.h-section {
  font-size: clamp(1.75rem, 3.6vw, 2.625rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  max-width: 16em;
}

.h-page {
  font-size: clamp(2.25rem, 5.6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.022em;
  max-width: 13em;
}

/* --- Masthead ------------------------------------------------------------ */

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.375rem;
  border-bottom: 1px solid var(--rule);
}

.masthead__mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.9375rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.masthead__nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.masthead__nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.masthead__nav a:hover,
.masthead__nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ink); }

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.005em;
  padding: 1.0625rem 1.75rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { background: #23221F; border-color: #23221F; transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }

.btn--onDark { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--onDark:hover { background: #FFF; border-color: #FFF; color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* --- Hero ---------------------------------------------------------------- */

.hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.25rem, 8.4vw, 5.75rem);
  line-height: 0.86;
  letter-spacing: -0.008em;
  text-transform: uppercase;
  margin: 0;
}
.wordmark span { display: block; }

.hero__rule {
  height: 1px;
  background: var(--ink);
  margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(1.25rem, 2.5vw, 1.75rem);
}

.hero__deck {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  line-height: 1.35;
  margin: 0 0 0.875rem;
}

.hero__body {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--ink-soft);
  max-width: 30em;
}

.hero__issue {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.875rem;
  margin-bottom: 0.625rem;
}
.hero__issue span {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
}

.hero__question {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  letter-spacing: 0.185em;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.375rem);
}

/* --- The cover, shown as a press proof ----------------------------------- */

.proof {
  position: relative;
  /* The whole proof — marks, sheet and caption — has to clear the fold. */
  --cover-h: min(60vh, 640px);
  justify-self: end;
  width: fit-content;
  max-width: 100%;
}

.proof__sheet {
  position: relative;
  width: fit-content;
  border: 1px solid rgba(55, 55, 55, 0.10);
  box-shadow:
    0 1px 1px rgba(55, 55, 55, 0.05),
    0 24px 48px -28px rgba(55, 55, 55, 0.38);
}

/* Crop marks: the L-pairs a printer trims to, offset from the trim edge. */
.proof__sheet::after {
  content: "";
  position: absolute;
  inset: -30px;
  pointer-events: none;
  background-image:
    linear-gradient(var(--ink-faint), var(--ink-faint)), linear-gradient(var(--ink-faint), var(--ink-faint)),
    linear-gradient(var(--ink-faint), var(--ink-faint)), linear-gradient(var(--ink-faint), var(--ink-faint)),
    linear-gradient(var(--ink-faint), var(--ink-faint)), linear-gradient(var(--ink-faint), var(--ink-faint)),
    linear-gradient(var(--ink-faint), var(--ink-faint)), linear-gradient(var(--ink-faint), var(--ink-faint));
  background-repeat: no-repeat;
  background-size: 1px 18px, 18px 1px, 1px 18px, 18px 1px, 1px 18px, 18px 1px, 1px 18px, 18px 1px;
  background-position:
    left 30px top 0,            left 0 top 30px,
    right 30px top 0,           right 0 top 30px,
    left 30px bottom 0,         left 0 bottom 30px,
    right 30px bottom 0,        right 0 bottom 30px;
}

.proof__sheet img {
  height: var(--cover-h);
  width: auto;
  max-width: 100%;
}

.proof__caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--label);
}

/* --- Manifesto ----------------------------------------------------------- */

.manifesto p {
  font-size: clamp(1.1875rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  max-width: 30em;
  margin: 0 0 1.25rem;
}

.manifesto__turn {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.375rem, 2.8vw, 1.875rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.015em;
  margin-top: clamp(2rem, 4vw, 2.75rem) !important;
  margin-bottom: 0 !important;
  max-width: 16em !important;
}
.manifesto__turn em { font-style: normal; color: var(--ink-soft); }

/* --- Contents ------------------------------------------------------------ */

.contents__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contents__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contents__list li { padding-block: clamp(1rem, 2.2vw, 1.5rem); }
.contents__list li + li { border-top: 1px solid var(--rule); }

/* The five titles are what sells the issue — nothing competes with them. */
.contents__title {
  font-size: clamp(1.25rem, 2.7vw, 1.75rem);
  line-height: 1.22;
  font-weight: 500;
}

.note {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  max-width: 22em;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.note strong { font-weight: 600; }

/* --- Why ----------------------------------------------------------------- */

.why__body {
  max-width: 32em;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.58;
}
.why__body p { margin: 0 0 1.125rem; }
.why__close {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
}

/* --- Forms --------------------------------------------------------------- */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}
.field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 0.4375rem; }

.field label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field label .opt { color: var(--label); letter-spacing: 0.08em; }

.field input,
.field select,
.field textarea {
  font-family: var(--prose);
  font-size: 1.0625rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-firm);
  border-radius: 0;
  padding: 0.4375rem 0 0.5rem;
  width: 100%;
  transition: border-color .18s ease;
  appearance: none;
}
.field ::placeholder,
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-faint); opacity: 1; }

.field textarea { min-height: 7rem; resize: vertical; line-height: 1.55; }
.field select { cursor: pointer; padding-right: 1.5rem; }

.field input:hover,
.field select:hover,
.field textarea:hover { border-bottom-color: var(--ink-faint); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
  box-shadow: 0 1px 0 0 var(--ink);
}

.check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink-soft);
  cursor: pointer;
}
.check input {
  flex: none;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.1875rem;
  accent-color: var(--ink);
  cursor: pointer;
}

.form__foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}
.form__fineprint {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--label);
  line-height: 1.6;
  margin: 0;
  max-width: 26em;
}

/* Honeypot — off-screen, never shown, not announced */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form__status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.875rem 1rem;
  border-radius: 2px;
  font-size: 1rem;
  line-height: 1.5;
}
.form__status[hidden] { display: none !important; }
.form__status--ok  { background: #ECEFE7; border: 1px solid #C9D2BC; color: #3B4733; }
.form__status--err { background: #F6EAE7; border: 1px solid #E3C4BC; color: #8A3A28; }

/* --- Sponsor band (the one inverted panel on the page) ------------------- */

.sponsor-band {
  background: var(--dark);
  color: var(--paper);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.sponsor-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: end;
}
.sponsor-band .eyebrow { color: rgba(248, 245, 240, 0.5); }
.sponsor-band h2 {
  font-size: clamp(1.625rem, 3.4vw, 2.375rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0.875rem 0 1rem;
}
.sponsor-band p {
  margin: 0;
  color: rgba(248, 245, 240, 0.72);
  max-width: 40em;
  font-size: 1.0625rem;
}

.inventory {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink);
}
.sponsor-band .inventory { color: rgba(248, 245, 240, 0.9); }
.inventory::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--mark);
  border-radius: 50%;
  flex: none;
}

/* --- Contribute strip ---------------------------------------------------- */

.contribute__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}

/* --- Sponsor page: audience + rates -------------------------------------- */

.facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem);
}
.facts dt {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 0.5rem;
}
.facts dd {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 2.3em;              /* two lines, so the notes below align */
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.facts dd small {
  font-family: var(--prose);
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 0.5rem;
  line-height: 1.4;
}

/* --- The book map ---------------------------------------------------------
   The rate card drawn as the issue itself: seven sellable pages in book
   order, front to back. It shows position, price and how much is left in one
   object — which a table of the same numbers cannot do.
   ------------------------------------------------------------------------ */

.bookmap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(0.375rem, 0.9vw, 0.75rem);
}

.page {
  aspect-ratio: 1545 / 1999;
  display: flex;
  flex-direction: column;
  padding: clamp(0.625rem, 1.1vw, 0.9375rem);
  border: 1px solid var(--rule-firm);
  border-radius: 1px;
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(55, 55, 55, 0.04);
}

/* One of a kind — the three cover positions carry the ink edge. */
.page--premium { border-color: var(--ink); }

.page__pos {
  font-family: var(--mono);
  font-size: 0.6875rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--label);
}
.page--premium .page__pos { color: var(--ink); }

.page__rate {
  margin-top: auto;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.0625rem, 1.55vw, 1.4375rem);
  letter-spacing: -0.015em;
  line-height: 1;
}

/* An open page is simply an empty page. Mark one only when it sells:
   add class "page--taken" and a <span class="page__state">Reserved</span>. */
.page--taken {
  background: var(--paper-2);
  border-color: var(--rule-firm);
  border-style: dashed;
}
.page--taken .page__pos,
.page--taken .page__rate { color: var(--label); }

.page__state {
  margin-top: 0.4375rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mark-text);
}

.bookmap__axis {
  display: flex;
  justify-content: space-between;
  margin: 0.875rem 0 0;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--label);
}

@media (max-width: 1039px) {
  .bookmap { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bookmap__axis { display: none; }
}
/* Stacked two-up, a page card is mostly empty space and the book order no
   longer reads left-to-right — so below this the map becomes a rate list,
   each row keeping the page's left edge. */
@media (max-width: 639px) {
  .bookmap {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  /* Separators between rows only, matching the contents list. */
  .page + .page { border-top: 1px solid var(--rule); }
  .page {
    aspect-ratio: auto;
    flex-direction: row;
    align-items: baseline;
    gap: 0.875rem;
    padding: 0.9375rem 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  /* Premium positions read from the label, not from an accent bar. */
  .page--premium .page__pos { font-weight: 500; }
  .page--taken { background: var(--paper-2); box-shadow: 0 0 0 0.5rem var(--paper-2); }
  .page__pos br { display: none; }
  /* The price stays the rightmost thing in every row, marked or not. */
  .page__pos { margin-right: auto; }
  .page__state { order: 2; margin-top: 0; }
  .page__rate { order: 3; margin-top: 0; font-size: 1.125rem; }
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.875rem;
}
.steps li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.75rem;
  color: var(--ink-soft);
}
.steps li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 0.6875rem;
  background: var(--ink-faint);
  border-radius: 50%;
}

/* --- Footer -------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--rule);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  margin-top: 0;
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem 2.5rem;
}
.footer__mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.footer__line {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--label);
  margin: 0;
  line-height: 1.9;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__nav a { color: var(--ink-soft); text-decoration: none; }
.footer__nav a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* --- Simple pages (thanks / 404) ----------------------------------------- */

.simple {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(3.5rem, 10vw, 7rem);
}

/* --- Focus --------------------------------------------------------------- */

a:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.sponsor-band a:focus-visible { outline-color: var(--paper); }

/* --- Page-load sequence -------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise .75s cubic-bezier(.2, .7, .3, 1) both; }
  .rise-1 { animation-delay: .04s; }
  .rise-2 { animation-delay: .12s; }
  .rise-3 { animation-delay: .20s; }
  .rise-4 { animation-delay: .28s; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }

  .settle { animation: settle 1s cubic-bezier(.2, .7, .3, 1) .18s both; }
  @keyframes settle {
    from { opacity: 0; transform: translateY(20px) rotate(1.1deg); }
    to   { opacity: 1; transform: none; }
  }
}

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 900px) {
  .hero__grid,
  .contents__grid,
  .form-grid { grid-template-columns: minmax(0, 1fr); }

  .sponsor-band__grid,
  .contribute__grid { grid-template-columns: minmax(0, 1fr); align-items: start; }

  .hero__grid { gap: clamp(2.75rem, 8vw, 3.5rem); }
  /* Width-driven below the two-column breakpoint — `fit-content` plus a
     percentage max-width can't resolve, and collapses the cover. */
  .proof { justify-self: start; width: 100%; max-width: 30rem; }
  .proof__sheet { width: 100%; }
  .proof__sheet img { height: auto; width: 100%; }
}

@media (max-width: 620px) {
  body { font-size: 1.0625rem; }
  .field-grid { grid-template-columns: minmax(0, 1fr); }
  /* Pull the sheet in by the mark offset so the crop marks land exactly on
     the text column's margins instead of pushing the page sideways. */
  .proof { padding-inline: 20px; }
  .proof__sheet::after {
    inset: -20px;
    background-size: 1px 12px, 12px 1px, 1px 12px, 12px 1px, 1px 12px, 12px 1px, 1px 12px, 12px 1px;
    background-position:
      left 20px top 0,    left 0 top 20px,
      right 20px top 0,   right 0 top 20px,
      left 20px bottom 0, left 0 bottom 20px,
      right 20px bottom 0, right 0 bottom 20px;
  }
  .proof__caption { flex-direction: column; gap: 0.25rem; margin-top: 2rem; }
  .masthead { flex-wrap: wrap; gap: 0.75rem 1.25rem; }
  .rates th, .rates td { padding-right: 0.625rem; font-size: 0.9375rem; }
}

@media print {
  .masthead__nav, .btn, form { display: none; }
  body { background: #fff; }
}
