/* ============================================================================
   Lismore Shipping Containers — design system "Broadsheet"
   ----------------------------------------------------------------------------
   Editorial / long-form. A reading column on newsprint, strong typographic
   hierarchy, hairline rules, run-in subheads, pull-quotes and margin notes.
   Deliberately NOT the card-and-grid layout, the two-tier masthead, the
   accordion FAQ or the tile system used by the other brand sites in this
   group. Structural difference between brands is an SEO requirement here.

   COLOUR CONTRAST — measured, sRGB, WCAG 2.1 relative luminance.
   READ THIS BEFORE CHANGING A COLOUR. Every colour used for text below clears
   4.5:1 on the background it is actually used on. Ratios computed and verified;
   re-verify if you touch a value.

     Backgrounds:  --paper #FBFAF7 (newsprint)   --tint #EEF2F9 (cool band)
                   --sand  #F1EFE9 (warm band)   --navy #062D6D (dark band)

     --ink    #101720  17.26:1 on paper · 16.05:1 on tint · 15.67:1 on sand
                       Headings and display type.
     --body   #2B333D  12.24:1 on paper · 11.38:1 on tint · 11.11:1 on sand
                       All body copy.
     --muted  #55606C   6.14:1 on paper ·  5.71:1 on tint ·  5.57:1 on sand
                       Captions, meta, fine print. Passes AA at any size.
     --navy   #062D6D  12.54:1 on paper · 11.66:1 on tint · 11.39:1 on sand
                       THE CRM BRAND COLOUR (#062D6D, brands.code = LIS). It is
                       a deep navy, so unlike the lighter brand colours in this
                       group it is safe for body-scale text. Carries every link,
                       every solid button and the section rules.
     --rust   #9B2C16   7.27:1 on paper ·  6.60:1 on sand
                       Kickers, section numerals, accent rules. Small caps only.
     --wash   #C9D6EE   8.94:1 on --navy. The ONLY light blue permitted as text,
                       and only on the navy band.
     #FFFFFF          13.09:1 on --navy. Headings and body on dark bands.
     --rule   #D8D3C8   1.43:1 — NON-TEXT ONLY. Hairlines and borders. Never
                       used for type anywhere.

   PHOTOGRAPHY: data/site.json has "photos": false, so build.js emits zero <img>
   tags. The img base rule below is kept deliberately — width and height are
   hardcoded on every image the generator would emit, and without height:auto a
   responsive image squashes to its literal attribute height.
   ========================================================================== */

:root {
  --paper: #fbfaf7;
  --tint: #eef2f9;
  --sand: #f1efe9;
  --navy: #062d6d;
  --navy-deep: #042050;
  --wash: #c9d6ee;
  --ink: #101720;
  --body: #2b333d;
  --muted: #55606c;
  --rust: #9b2c16;
  --rule: #d8d3c8;
  --rule-firm: #b9b3a6;
  --measure: 35rem;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.68;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.13;
  margin: 0 0 0.55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.35rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--navy); outline-offset: 2px;
}

strong, b { font-weight: 700; color: var(--ink); }

.wrap { width: 100%; max-width: 74rem; margin: 0 auto; padding: 0 1.4rem; }
.measure { max-width: var(--measure); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------------------------------------------------------- MASTHEAD
   A broadsheet nameplate: centred wordmark with rules either side, a dateline
   strip above it, and a centred nav band beneath. Nothing here is a card. */
.mast { background: var(--paper); border-bottom: 2px solid var(--ink); }

.mast-dateline {
  background: var(--navy);
  color: var(--wash);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.mast-dateline .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 34px; padding-top: 0.35rem; padding-bottom: 0.35rem; }
.mast-dateline span { opacity: 1; }
.mast-dateline a { color: #fff; text-decoration: none; font-weight: 700; letter-spacing: 0.1em; }
.mast-dateline a:hover { text-decoration: underline; }
.dateline-places { display: none; }

.nameplate { padding: 1.5rem 0 1.1rem; text-align: center; position: relative; }
.nameplate .brand { display: inline-block; text-decoration: none; }
.nameplate svg { height: 60px; width: auto; margin: 0 auto; }
.nameplate-rules { display: flex; align-items: center; gap: 1.1rem; }
.nameplate-rules::before, .nameplate-rules::after { content: ""; flex: 1; height: 1px; background: var(--rule-firm); }
.nameplate-sub {
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--muted); margin-top: 0.7rem;
}

.mast-nav { border-top: 1px solid var(--rule); }
.mast-nav .wrap { display: flex; align-items: center; justify-content: center; gap: 0.4rem; position: relative; min-height: 46px; }
.menu { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0 1.6rem; margin: 0; padding: 0; }
.menu a {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
  display: block; padding: 0.75rem 0; border-bottom: 2px solid transparent;
}
.menu a:hover { color: var(--navy); border-bottom-color: var(--navy); }

.burger { display: none; background: none; border: 1px solid var(--rule-firm); border-radius: 2px; padding: 0.5rem 0.6rem; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 3px 0; }

/* ---------------------------------------------------------- BREADCRUMB */
.crumb { border-bottom: 1px solid var(--rule); background: var(--paper); }
.crumb .wrap { padding-top: 0.6rem; padding-bottom: 0.6rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--muted); }
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--navy); text-decoration: underline; }
.crumb strong { color: var(--ink); font-weight: 600; }
.crumb span { padding: 0 0.35rem; color: var(--rule-firm); }

/* ---------------------------------------------------------- PAGE HEAD
   Kicker, headline, standfirst in serif italic, then a byline rule carrying
   the facts. No hero image, no panel, no card. */
.phead { padding: 3rem 0 1.6rem; border-bottom: 1px solid var(--rule); }
.kicker {
  display: block; font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.9rem;
}
.standfirst {
  font-size: clamp(1.14rem, 2.3vw, 1.42rem); line-height: 1.5; color: var(--body);
  font-style: italic; max-width: 38rem; margin-top: 0.4rem;
}
.byline {
  display: flex; flex-wrap: wrap; gap: 0 1.5rem; margin-top: 1.5rem; padding-top: 0.85rem;
  border-top: 1px solid var(--rule);
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.byline b { color: var(--ink); font-weight: 700; }

.phead-acts { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.7rem; }

/* ---------------------------------------------------------- SECTIONS
   Each section is a rule and a marginal numeral, then a reading column. */
.sec { padding: 3rem 0; border-top: 1px solid var(--rule); }
.sec:first-of-type { border-top: 0; }
.sec-tint { background: var(--tint); border-top-color: var(--rule-firm); }
.sec-sand { background: var(--sand); border-top-color: var(--rule-firm); }
.sec-dark { background: var(--navy); border-top: 0; color: #fff; }
.sec-dark h2, .sec-dark h3 { color: #fff; }
.sec-dark p { color: #fff; }
.sec-dark .kicker { color: var(--wash); }
.sec-dark a { color: #fff; }

.secnum {
  display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--rust); margin-bottom: 0.8rem;
}
.sec-dark .secnum { color: var(--wash); }

/* The lede paragraph of a major page gets a drop cap. Editorial device, used
   sparingly — one per page at most. */
.lede::first-letter {
  float: left; font-family: var(--sans); font-weight: 700; font-size: 3.55rem;
  line-height: 0.82; padding: 0.06em 0.12em 0 0; color: var(--navy);
}

/* Run-in subhead: the paragraph starts with its own heading, inline. */
.runin {
  font-family: var(--sans); font-weight: 700; font-size: 0.83rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
}
.runin::after { content: " "; }

/* Pull-quote. Breaks the measure on wide screens, hangs on a rust rule. */
.pq {
  margin: 2.1rem 0; padding: 0 0 0 1.4rem; border-left: 3px solid var(--rust);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem); line-height: 1.35; font-weight: 400;
  color: var(--ink); font-style: italic; max-width: 32rem;
}
.pq cite { display: block; margin-top: 0.6rem; font-family: var(--sans); font-style: normal; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* Margin note. Sits in the right margin at wide widths, inline below on mobile. */
.marg {
  margin: 1.6rem 0; padding: 0.9rem 1.1rem; background: var(--sand);
  border-top: 2px solid var(--navy); font-size: 0.88rem; line-height: 1.55; color: var(--body);
}
.marg b { display: block; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.35rem; }

.caveat {
  border-top: 2px solid var(--rust); border-bottom: 1px solid var(--rule);
  padding: 0.95rem 0; margin: 1.8rem 0; font-size: 0.94rem; color: var(--body);
}
.caveat strong { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--rust); }

.fineprint { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ---------------------------------------------------------- LEDGER TABLE
   Prices and specs as a ruled editorial table: hairlines only, no box, figures
   right-aligned in tabular numerals. */
.ledger { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem; }
.ledger caption { text-align: left; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding-bottom: 0.6rem; }
.ledger th, .ledger td { text-align: left; padding: 0.72rem 0.5rem 0.72rem 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
.ledger thead th { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid var(--ink); font-weight: 700; }
.ledger tbody th { font-family: var(--sans); font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.ledger .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; font-family: var(--sans); font-weight: 600; color: var(--ink); }
.ledger tbody tr:last-child th, .ledger tbody tr:last-child td { border-bottom: 2px solid var(--ink); }
.ledger a { font-family: var(--sans); font-weight: 600; }

/* ---------------------------------------------------------- FAQ AS <dl>
   Definition list, not an accordion and not <details>. Question in sans,
   answer in serif, hairline between. */
.faqdl { margin: 1.2rem 0 0; }
.faqdl dt {
  font-family: var(--sans); font-weight: 700; font-size: 1.02rem; color: var(--ink);
  padding-top: 1.3rem; margin-top: 1.3rem; border-top: 1px solid var(--rule); line-height: 1.3;
}
.faqdl dt:first-of-type { border-top: 2px solid var(--ink); }
.faqdl dd { margin: 0.55rem 0 0; color: var(--body); }

/* ---------------------------------------------------------- LISTS */
.stack { list-style: none; margin: 1.2rem 0; padding: 0; }
.stack li { position: relative; padding: 0.7rem 0 0.7rem 1.6rem; border-bottom: 1px solid var(--rule); }
.stack li::before { content: "\2014"; position: absolute; left: 0; top: 0.7rem; color: var(--rust); font-weight: 700; }
.stack li:first-child { border-top: 1px solid var(--rule); }

.prose ul, .prose ol { margin: 0 0 1.15em; padding-left: 1.3rem; }
.prose li { margin-bottom: 0.5em; }
.prose h2 { margin-top: 2.1rem; padding-top: 1.1rem; border-top: 1px solid var(--rule); }
.prose h3 { margin-top: 1.6rem; }
.prose blockquote { margin: 1.6rem 0; padding-left: 1.3rem; border-left: 3px solid var(--rust); font-style: italic; }

/* ---------------------------------------------------------- INDEX (locality run-on)
   A comma-separated inline index rather than a grid of chips. Newspaper index. */
.index { font-family: var(--sans); font-size: 0.92rem; line-height: 2; color: var(--muted); }
.index a { color: var(--navy); text-decoration: none; font-weight: 600; }
.index a:hover { text-decoration: underline; }

/* ---------------------------------------------------------- COLUMNS
   Two or three reading columns of short items — still ruled, never carded. */
.cols { display: grid; gap: 0 2.6rem; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols > * { border-top: 2px solid var(--ink); padding-top: 1rem; margin-top: 1.6rem; }
.cols h3 { font-size: 1.08rem; }
.cols p { font-size: 0.95rem; }

.post time { display: block; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.45rem; }
.post h3 { margin-bottom: 0.4rem; }
.post h3 a { text-decoration: none; color: var(--ink); }
.post h3 a:hover { color: var(--navy); text-decoration: underline; }

/* ---------------------------------------------------------- BUTTONS */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  padding: 0.85rem 1.5rem; border: 2px solid var(--navy); border-radius: 2px; cursor: pointer;
  line-height: 1.2; text-align: center;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }
.btn-line { background: transparent; color: var(--navy); }
.btn-line:hover { background: var(--navy); color: #fff; }
.btn-rust { background: var(--rust); border-color: var(--rust); color: #fff; }
.btn-rust:hover { background: #7d230f; border-color: #7d230f; color: #fff; }
.btn-wide { display: block; width: 100%; }
.sec-dark .btn-line { color: #fff; border-color: #fff; }
.sec-dark .btn-line:hover { background: #fff; color: var(--navy); }

/* ---------------------------------------------------------- REPLY COUPON
   The lead form, set as a newspaper reply coupon: dashed rule, single column
   inside the reading measure, labels above fields. Not a two-column panel. */
.coupon-band { padding: 3.2rem 0; background: var(--sand); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.coupon-band .kicker { color: var(--rust); }
.coupon-lead { max-width: 38rem; margin-bottom: 2rem; }
.coupon-lead p { font-size: 1.05rem; }

.coupon {
  border: 2px dashed var(--rule-firm); background: var(--paper);
  padding: 1.7rem; max-width: var(--measure);
}
.coupon h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.coupon .coupon-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.3rem; }

.qtoggle { display: flex; gap: 0; margin-bottom: 1.3rem; border: 2px solid var(--navy); border-radius: 2px; overflow: hidden; }
.qtoggle input { position: absolute; opacity: 0; pointer-events: none; }
.qtoggle label {
  flex: 1; text-align: center; padding: 0.6rem 0.5rem; cursor: pointer;
  font-family: var(--sans); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--navy); background: var(--paper);
}
.qtoggle input:checked + label { background: var(--navy); color: #fff; }
.qtoggle input:focus-visible + label { outline: 3px solid var(--rust); outline-offset: -3px; }

.coupon label:not(.qtoggle label) {
  display: block; font-family: var(--sans); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink);
  margin: 1rem 0 0.35rem;
}
.coupon input[type="text"], .coupon input[type="tel"], .coupon input[type="email"], .coupon select, .coupon textarea {
  width: 100%; font-family: var(--serif); font-size: 1rem; color: var(--ink);
  background: #fff; border: 0; border-bottom: 2px solid var(--rule-firm);
  padding: 0.55rem 0.3rem; border-radius: 0;
}
.coupon select { font-family: var(--sans); font-size: 0.92rem; }
.coupon textarea { resize: vertical; border: 2px solid var(--rule-firm); padding: 0.6rem; }
.coupon input:focus, .coupon select:focus, .coupon textarea:focus { border-bottom-color: var(--navy); }
.coupon .btn { margin-top: 1.6rem; }
.qnote { font-size: 0.8rem; color: var(--muted); margin-top: 0.9rem; }

.q-ok { border: 2px solid var(--navy); padding: 1.5rem; background: var(--tint); color: var(--ink); max-width: var(--measure); }
.q-bad { border-left: 4px solid var(--rust); background: #fdf1ee; padding: 0.85rem 1rem; margin-bottom: 1.1rem; font-size: 0.92rem; color: var(--ink); }

/* ---------------------------------------------------------- ACCESS CHECKER */
.checker { border: 2px solid var(--ink); padding: 1.6rem; max-width: 40rem; background: var(--paper); }
.checker .step { display: none; }
.checker .step.on { display: block; }
.checker p { font-family: var(--sans); font-weight: 700; font-size: 1rem; color: var(--ink); }
.opt {
  display: block; width: 100%; text-align: left; margin: 0.5rem 0; padding: 0.7rem 0.9rem;
  background: var(--paper); border: 1px solid var(--rule-firm); border-radius: 2px;
  font-family: var(--serif); font-size: 0.97rem; color: var(--body); cursor: pointer;
}
.opt:hover { border-color: var(--navy); background: var(--tint); }

/* ---------------------------------------------------------- FOOTER
   A colophon: the identity, then the indexes, then the base line. */
.foot { background: var(--navy); color: #fff; margin-top: 0; }
.foot a { color: #fff; }
.foot-top { border-bottom: 1px solid rgba(255, 255, 255, 0.22); padding: 2.8rem 0 2rem; }
.foot-top .wrap { display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr; align-items: start; }
.foot svg { height: 54px; width: auto; }
.foot-tag { margin-top: 1rem; max-width: 30rem; color: #fff; font-size: 0.97rem; }
.foot-k { display: block; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wash); margin-bottom: 0.55rem; }
.foot-nap p { margin: 0 0 0.35rem; }
.foot-phone { display: block; font-family: var(--sans); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; text-decoration: none; margin: 0.2rem 0 0.4rem; }
.foot-mid { padding: 2.2rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
.foot-mid .wrap { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
.foot h3 { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wash); margin-bottom: 0.9rem; }
.foot-mid ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 1.6rem; }
.foot-mid li { margin-bottom: 0.5rem; break-inside: avoid; }
.foot-mid a { text-decoration: none; font-size: 0.93rem; }
.foot-mid a:hover { text-decoration: underline; }
.foot-index { font-size: 0.93rem; line-height: 1.95; color: var(--wash); }
.foot-index a { text-decoration: none; }
.foot-index a:hover { text-decoration: underline; }
.foot-base { padding: 1.4rem 0 5.2rem; font-size: 0.82rem; color: var(--wash); }
.foot-base .wrap { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; }

/* ---------------------------------------------------------- MOBILE ACTION BAR */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: none;
  gap: 0.5rem; padding: 0.55rem; background: var(--paper); border-top: 2px solid var(--ink);
}
.actionbar .btn { flex: 1; padding: 0.8rem 0.5rem; font-size: 0.74rem; }

/* ---------------------------------------------------------- WIDE SCREENS
   Above 1100px the reading column sits left of centre and margin notes move
   into the right margin — the layout device that most distinguishes this site. */
@media (min-width: 1100px) {
  .measure { max-width: var(--measure); }
  .has-margin { display: grid; grid-template-columns: var(--measure) 17rem; gap: 0 3.5rem; align-items: start; }
  .has-margin > .marg { margin: 0.4rem 0 1.4rem; grid-column: 2; }
  .has-margin > *:not(.marg) { grid-column: 1; }
  .pq { max-width: 40rem; margin-left: -1.4rem; padding-left: 1.4rem; }
  .dateline-places { display: inline; }
}

@media (max-width: 860px) {
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .foot-top .wrap, .foot-mid .wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .mast-nav .wrap { justify-content: space-between; }
  .burger { display: block; }
  .menu { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 30; flex-direction: column; gap: 0; background: var(--paper); border-bottom: 2px solid var(--ink); box-shadow: 0 12px 30px rgba(16, 23, 32, 0.14); padding: 0 1.4rem; }
  .menu.show { display: flex; }
  .menu li { border-bottom: 1px solid var(--rule); }
  .menu a { padding: 0.9rem 0; border-bottom: 0; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .nameplate svg { height: 46px; }
  .actionbar { display: flex; }
  .sec { padding: 2.2rem 0; }
  .phead { padding: 2rem 0 1.2rem; }
  .foot-mid ul { columns: 1; }
  .lede::first-letter { font-size: 3rem; }
}

@media print {
  .mast-nav, .actionbar, .coupon-band, .burger { display: none; }
  body { background: #fff; font-size: 11pt; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
