/* ============================================================================
   FOLIO512
   Offer-book advertising marketing site. Plain CSS, no build step.

   Design direction: "DELIVERED." The site is built like a piece of mail. The
   one timeless, specific truth about FOLIO512 is that it's physically mailed to
   up to 60,000 doors, so the whole visual language is postal: postmarks and
   cancellation marks, perforated stamps, the "PRESORTED STANDARD" permit
   indicia, hand-addressed envelopes, and folio (page-corner) marks. Warm postal
   paper, ink navy, one cancellation-red action color, a whisper of brass foil.

   Type: Libre Franklin (civic American gothic, after Franklin, first U.S. Postmaster)
   for display; Spectral (warm serif) for reading; Courier Prime (typewriter) for
   all the postal furniture: labels, indicia, folios, datelines.

   To re-theme: edit the :root tokens. Nothing else hardcodes color.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,500;0,700;0,800;0,900;1,600&family=Spectral:ital,wght@0,400;0,500;0,600;1,400&family=Courier+Prime:wght@400;700&display=swap');

:root {
  /* Ink: stamp & type */
  --ink:        #1b2a3c;
  --navy:       #14294a;
  --navy-deep:  #0d1c34;
  --navy-line:  #33486a;

  /* Postal paper */
  --paper:      #efe7d6;   /* the page, warm postal stock */
  --paper-2:    #f5efe1;
  --card:       #fbf7ec;   /* the mailpiece / cards */
  --line:       #d7cbb0;   /* paper rules */
  --line-2:     #c6b793;   /* stronger rule */

  /* Cancellation red: the single action color */
  --red:        #b03a2a;
  --red-deep:   #8c2c1f;
  --red-ink:    #9a3324;

  /* Brass foil: the brand jewel, used sparingly (the "512") */
  --gold:       #b1862f;
  --gold-bright:#cfa24a;

  /* Warm grays */
  --ink-soft:   #54607240;  /* not used directly; see below */
  --soft:       #5a6477;
  --faint:      #938b75;

  --maxw: 1140px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --shadow: 0 30px 70px -34px rgba(20,30,50,.5);
  --shadow-sm: 0 14px 36px -22px rgba(20,30,50,.45);

  --ff-disp: "Libre Franklin", system-ui, sans-serif;
  --ff-body: "Spectral", Georgia, "Times New Roman", serif;
  --ff-type: "Courier Prime", ui-monospace, "Courier New", monospace;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: clamp(1.02rem, 0.98rem + 0.25vw, 1.14rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* postal-paper grain: a faint fiber so the cream reads as real stock */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .55;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(120,100,60,.05) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 65%, rgba(120,100,60,.045) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
}
body > * { position: relative; z-index: 1; }

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

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-disp); color: var(--navy); line-height: 1.0; font-weight: 900; letter-spacing: -0.018em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 1.4rem + 5.6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 1.2rem + 3.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 1.05rem + 0.9vw, 1.7rem); font-weight: 800; letter-spacing: -0.01em; }

p { text-wrap: pretty; }
.lead { font-size: clamp(1.12rem, 1.02rem + 0.5vw, 1.4rem); line-height: 1.55; color: var(--ink); max-width: 54ch; }
.soft { color: var(--soft); }
em { font-style: italic; }
strong, b { font-weight: 600; color: var(--ink); }

/* Postal label / dateline: typewriter caps */
.label {
  font-family: var(--ff-type); font-weight: 700;
  font-size: .86rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red-ink);
}
.label.muted { color: var(--faint); font-weight: 400; }
.label.ink { color: var(--navy); }

/* Folio marks: running-head corners, like page numbers in a book */
.folio {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--ff-type); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--faint);
  padding-bottom: .7rem; border-bottom: 1px solid var(--line);
}
.folio .f-no { color: var(--navy); font-weight: 700; }

/* ---------- section rhythm ---------- */
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
/* anchor targets clear the sticky header */
[id] { scroll-margin-top: 88px; }
/* Section kickers read as headers, not fine print. Applies to the three
   `.section-head` blocks and the navy reach band. */
.section-head .label, .zone .label {
  display: block;
  font-size: clamp(1.05rem, .92rem + .5vw, 1.4rem);
  letter-spacing: .13em;
}
.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .9rem; }
.section-head .lead { margin-top: 1.1rem; }
.section-head.center .lead { margin-inline: auto; }

/* ============================================================================
   POSTAL FURNITURE: the signature system
   ========================================================================== */

/* perforated postage stamp (4-edge perforation mask) */
.stamp {
  --r: 5px; --s: 16px;
  position: relative;
  background: var(--navy);
  color: #f3ecdb;
  padding: 1rem .95rem;
  width: 138px; min-height: 156px;
  display: flex; flex-direction: column; justify-content: space-between;
  text-align: center;
  filter: drop-shadow(0 8px 16px rgba(20,30,50,.28));
  -webkit-mask:
    radial-gradient(circle var(--r) at 50% 0,    #0000 var(--r), #000 calc(var(--r) + .5px)) 50% 0   / var(--s) 100% repeat-x,
    radial-gradient(circle var(--r) at 50% 100%, #0000 var(--r), #000 calc(var(--r) + .5px)) 50% 100%/ var(--s) 100% repeat-x,
    radial-gradient(circle var(--r) at 0 50%,    #0000 var(--r), #000 calc(var(--r) + .5px)) 0 50%   / 100% var(--s) repeat-y,
    radial-gradient(circle var(--r) at 100% 50%, #0000 var(--r), #000 calc(var(--r) + .5px)) 100% 50%/ 100% var(--s) repeat-y;
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}
.stamp .s-inner { border: 1.5px solid rgba(207,162,74,.6); border-radius: 2px; padding: .65rem .4rem; height: 100%; display: flex; flex-direction: column; justify-content: space-between; gap: .3rem; }
.stamp .s-top { font-family: var(--ff-type); font-size: .56rem; letter-spacing: .12em; color: var(--gold-bright); }
.stamp .s-mark { font-family: var(--ff-disp); font-weight: 900; font-size: 1.5rem; line-height: .95; letter-spacing: -.02em; }
.stamp .s-mark i { font-style: normal; color: var(--gold-bright); }
.stamp .s-den { font-family: var(--ff-disp); font-weight: 900; font-size: 1.05rem; color: var(--gold-bright); }
.stamp .s-den small { font-family: var(--ff-type); font-weight: 400; font-size: .52rem; letter-spacing: .1em; color: #cdbf9f; display: block; }

/* circular postmark / cancellation (SVG sets currentColor) */
.postmark { width: 168px; height: 168px; color: var(--red-ink); }
.postmark.small { width: 120px; height: 120px; }

/* permit indicia: the "U.S. POSTAGE PAID" box */
.indicia {
  font-family: var(--ff-type); font-size: .66rem; line-height: 1.45; letter-spacing: .08em;
  text-transform: uppercase; text-align: center; color: var(--ink);
  border: 1.5px solid var(--ink); border-radius: 2px;
  padding: .5rem .7rem; width: max-content; background: rgba(255,255,255,.25);
}
.indicia b:not(.wm) { font-weight: 700; }

/* a dashed perforation rule for tear-offs */
.tear {
  border: 0; border-top: 2px dashed var(--line-2);
  margin: 0;
}

/* ---------- buttons / rubber-stamp actions ---------- */
.btn {
  --c: var(--red);
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-type); font-weight: 700;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .9rem 1.5rem;
  border: 2px solid var(--c); background: var(--c); color: #fbf7ec;
  border-radius: 3px; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn .arw { transition: transform .15s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:hover .arw { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 3px; }
.btn-red { --c: var(--red); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-ink { --c: var(--navy); }
.btn-ink:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--ink); }
.btn-ghost:hover { background: var(--navy); border-color: var(--navy); color: #fbf7ec; }
.on-ink .btn-ghost { color: #f3ecdb; border-color: rgba(243,236,219,.55); }
.on-ink .btn-ghost:hover { background: #fbf7ec; color: var(--navy); border-color: #fbf7ec; }

.actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ============================================================================
   HEADER: publication masthead bar
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(239,231,214,.9);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom: 1px solid var(--line-2); box-shadow: 0 8px 24px -20px rgba(20,30,50,.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; height: 70px; }

.brand { display: inline-flex; align-items: baseline; gap: .04em; }
.brand .word { font-family: var(--ff-disp); font-weight: 900; font-size: 1.5rem; letter-spacing: -.02em; color: var(--navy); line-height: 1; }
.brand .word i { font-style: normal; color: var(--gold); }
.brand .word .st { color: var(--gold); font-size: .55em; transform: translateY(-.5em); display: inline-block; margin: 0 .03em; }
.site-footer .brand .word { color: #f3ecdb; }
.site-footer .brand .word i { color: var(--gold-bright); }

/* Inline wordmark: the logo dropped into a line of postal type. Sizes itself
   off whatever label it sits in, so it reads as the logo without blowing up
   the Courier furniture around it. */
.wm { font-family: var(--ff-disp); font-weight: 900; font-size: 1.25em; letter-spacing: -.02em; color: var(--navy); text-transform: none; }
.wm i { font-style: normal; color: var(--gold); }
.zone .wm, .site-footer .wm { color: #f3ecdb; }
.zone .wm i, .site-footer .wm i { color: var(--gold-bright); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav > a { font-family: var(--ff-type); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); transition: color .15s ease; position: relative; }
.nav > a:hover, .nav > a.active { color: var(--navy); }
.nav > a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--red); }
.nav .nav-cta { color: #fbf7ec; background: var(--red); padding: .5rem 1rem; border-radius: 3px; border: 2px solid var(--red); }
.nav .nav-cta:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fbf7ec; }
.nav .nav-cta.active::after { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }

/* ============================================================================
   HERO: the addressed mailpiece
   ========================================================================== */
.hero { padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4.5rem); }

.mailpiece {
  position: relative;
  background:
    linear-gradient(180deg, var(--card), #f7f1e3);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3.25rem);
  overflow: hidden;
}
/* printed inner rule, like an envelope window border */
.mailpiece::before {
  content: ""; position: absolute; inset: 11px; border: 1px solid var(--line);
  border-radius: 3px; pointer-events: none;
}
/* faint airmail-corner tint */
.mailpiece::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(176,58,42,.06), transparent 70%);
  pointer-events: none;
}
.mp-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem;
  position: relative;
}
.mp-from { font-family: var(--ff-type); font-size: .74rem; line-height: 1.7; letter-spacing: .04em; color: var(--soft); text-transform: uppercase; }
.mp-from .fr { color: var(--faint); display: block; font-size: .64rem; letter-spacing: .14em; margin-bottom: .15rem; }
.mp-from b:not(.wm) { color: var(--navy); font-weight: 700; }

/* the stamp + postmark cluster, top-right */
.mp-postage { position: relative; flex: none; }
.mp-postage .postmark { position: absolute; right: -34px; bottom: -30px; transform: rotate(-9deg); }

.mp-body { margin-top: clamp(1.5rem, 4vw, 2.75rem); max-width: 38rem; }
.mp-to { font-family: var(--ff-type); font-size: .9rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red-ink); display: inline-flex; align-items: center; gap: .5rem; }
.mp-to::before { content: "TO"; font-weight: 700; border: 1.5px solid var(--red-ink); border-radius: 2px; padding: .05rem .3rem; font-size: .76rem; }
.mailpiece h1 { margin-top: 1.1rem; font-size: clamp(2.5rem, 1.5rem + 3.6vw, 4.4rem); }
.mailpiece h1 i { font-style: normal; color: var(--red); }
.mp-lead { margin-top: 1.3rem; font-size: clamp(1.08rem, 1rem + 0.45vw, 1.32rem); line-height: 1.55; color: var(--ink); max-width: 46ch; }
.mp-actions { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.mp-call { font-family: var(--ff-type); font-size: .82rem; letter-spacing: .06em; color: var(--soft); }
.mp-call a { color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--gold); }

/* the route / cancellation strip along the bottom */
.mp-route {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-top: 1.1rem; border-top: 1px dashed var(--line-2);
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.1rem;
  font-family: var(--ff-type); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--soft);
}
.mp-route .rt { color: var(--red-ink); font-weight: 700; }
.mp-route .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ============================================================================
   DATELINE: the credo strip
   ========================================================================== */
.dateline { border-block: 1px solid var(--line-2); }
.dateline .wrap { display: flex; align-items: center; justify-content: center; gap: clamp(1rem,4vw,2.5rem); padding-block: clamp(1.5rem,3vw,2.25rem); flex-wrap: wrap; text-align: center; }
.credo { font-family: var(--ff-disp); font-weight: 900; text-transform: uppercase; font-size: clamp(1.4rem, 1rem + 2vw, 2.4rem); color: var(--navy); letter-spacing: -.02em; line-height: 1; }
.credo i { font-style: normal; color: var(--red); }
.dateline .est { font-family: var(--ff-type); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); max-width: 22ch; text-align: left; }

/* ============================================================================
   THE CASE: why a mailbox beats a feed (editorial dispatch, not icon cards)
   ========================================================================== */
.dispatch { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.disp-row {
  display: grid; grid-template-columns: 4.5rem 1fr 12rem; gap: clamp(1rem,3vw,2.5rem);
  align-items: baseline; padding-block: clamp(1.5rem,3vw,2.25rem);
  border-bottom: 1px solid var(--line);
}
.disp-row .d-no { font-family: var(--ff-type); font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); font-weight: 700; color: var(--red-ink); letter-spacing: .02em; line-height: 1; }
.disp-row h3 { color: var(--navy); }
.disp-row .d-no + div h3 { margin-bottom: .5rem; }
.disp-row p { color: var(--soft); max-width: 46ch; }
.disp-row .d-fig { text-align: right; }
.disp-row .d-fig .n { font-family: var(--ff-disp); font-weight: 900; font-size: clamp(2.4rem, 1.6rem + 2.4vw, 3.6rem); color: var(--navy); line-height: .9; letter-spacing: -.02em; }
.disp-row .d-fig .l { font-family: var(--ff-type); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--soft); margin-top: .45rem; line-height: 1.35; }

/* ============================================================================
   REACH / DELIVERY ZONE
   ========================================================================== */
.zone { background: radial-gradient(120% 130% at 85% 5%, var(--navy), var(--navy-deep)); color: #e9e3d3; }
.zone h2, .zone h3 { color: #fff; }
.zone .label { color: var(--gold-bright); }
.zone-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.bignum { font-family: var(--ff-disp); font-weight: 900; font-size: clamp(4.5rem, 3rem + 9vw, 9rem); line-height: .82; letter-spacing: -.04em; color: #fff; }
.bignum i { font-style: normal; color: var(--gold-bright); }
/* "Up to" sits above the figure so the numeral keeps its display size */
.bignum .bignum-pre {
  display: block; font-family: var(--ff-type); font-weight: 400;
  font-size: .9rem; letter-spacing: .16em; text-transform: uppercase;
  color: #c2cadb; line-height: 1; margin-bottom: .55rem;
}
.zone .sub { font-family: var(--ff-type); letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; color: #c2cadb; margin-top: .8rem; }
.routes { list-style: none; padding: 0; display: grid; gap: 0; }
.routes li { display: flex; justify-content: space-between; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--navy-line); font-family: var(--ff-type); font-weight: 700; font-size: .98rem; letter-spacing: .05em; text-transform: uppercase; color: #f3ecdb; }
.routes li:first-child { border-top: 1px solid var(--navy-line); }
.routes li span { color: var(--gold-bright); }
/* zone name + its ZIP, on the left of each row. The ZIP stays lighter than the
   name so the eye lands on the place first, but it must be a cool light gray:
   --faint is a warm mid-tone built for paper and goes muddy on navy. */
.routes li .rz { color: #f3ecdb; display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: .6rem; }
.routes li .rz b { font-weight: 400; color: #b9c4d8; letter-spacing: .04em; }
.zone .indicia { color: #e9e3d3; border-color: var(--navy-line); background: rgba(255,255,255,.04); margin-top: 1.6rem; }

/* ============================================================================
   HOW IT WORKS: a numbered postal sequence
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.5vw,1.75rem); margin-top: 2.5rem; }
/* Column flex so the bullet list can be pinned to the bottom of the card. Body
   copy varies in length between cards; without this the bullets sit at a
   different height in each one. */
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 5px; padding: clamp(1.4rem,2.5vw,1.9rem); display: flex; flex-direction: column; }
.step .check { margin-top: auto; padding-top: 1.5rem; }
.step .s-no { font-family: var(--ff-type); font-weight: 700; font-size: .88rem; letter-spacing: .12em; color: var(--red-ink); display: inline-flex; align-items: center; gap: .5rem; }
.step .s-no::before { content: ""; width: 1.75rem; height: 1.75rem; border: 1.5px solid var(--red-ink); border-radius: 50%; display: grid; place-items: center; }

/* Narrower grid when placements runs only two cards; the template picks it. */
.steps-2 { grid-template-columns: repeat(2,1fr); max-width: 46rem; }

/* Tier badges on the placement cards (GOOD / BETTER / BEST). Boxed like the "TO"
   mark on the mailpiece so the ladder reads as postal furniture, not a caption.
   The last card fills solid, giving the top tier the most weight. */
.step .tier {
  display: inline-block;
  font-family: var(--ff-type); font-weight: 700;
  font-size: .84rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red-ink);
  border: 1.5px solid var(--red-ink); border-radius: 2px;
  padding: .3rem .62rem .26rem;
  line-height: 1;
}
.step .tier.tier-top { background: var(--red-ink); color: var(--card); }
.step h3 { margin-top: 1rem; color: var(--navy); }
.step p { margin-top: .5rem; color: var(--soft); font-size: 1rem; }

/* Talk to a person: the contact strip under the three steps */
.talk {
  margin-top: clamp(1.75rem,3vw,2.5rem); padding-top: clamp(1.5rem,3vw,2rem);
  border-top: 1px dashed var(--line-2);
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: .9rem clamp(1.5rem,4vw,3rem); justify-content: space-between;
}
.talk-lead { font-family: var(--ff-body); font-size: 1.05rem; color: var(--ink); max-width: 34ch; }
.talk-lines { display: flex; flex-wrap: wrap; gap: .6rem clamp(1.25rem,3vw,2.25rem); }
.talk-lines .ti { display: inline-flex; gap: .55rem; align-items: baseline; }
.talk-lines .ti .k { font-family: var(--ff-type); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.talk-lines .ti a { color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--gold); }
.talk-lines .ti a:hover { color: var(--red); }

/* ============================================================================
   FORMATTED BREAK: a cancellation banner that closes out a block. Full-bleed
   navy strip, perforation rules running out to both edges, wordmark franked in
   the middle. Purely a divider: aria-hidden, no copy to maintain.
   ========================================================================== */
.banner { background: var(--navy-deep); margin-top: clamp(2.5rem, 5vw, 4rem); }
.banner-inner { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.25rem); padding-block: clamp(1.15rem, 2.2vw, 1.7rem); }
.banner .bn-rule { flex: 1 1 0; border-top: 1px dashed var(--navy-line); }
.banner .bn-mark { flex: 0 0 auto; font-size: 1.2rem; line-height: 1; white-space: nowrap; }
.banner .wm { color: #f3ecdb; }
.banner .wm i { color: var(--gold-bright); }

/* ============================================================================
   RESERVE: the mail-in reservation card (the conversion card)
   NOTE: the .coupon-form class name predates the "offer book" rename; it is an
   internal hook only and appears in no visible copy.
   ========================================================================== */
.reserve { background: var(--paper-2); }
.coupon-form {
  position: relative; background: var(--card); border: 1px solid var(--line-2);
  border-radius: 6px; box-shadow: var(--shadow); overflow: hidden;
}
.cf-head { background: radial-gradient(120% 140% at 90% 0%, var(--navy), var(--navy-deep)); color: #f3ecdb; padding: clamp(1.5rem,3vw,2.25rem); display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; }
.cf-head h2 { color: #fff; max-width: 16ch; }
.cf-head .label { color: var(--gold-bright); }
.cf-head .lead { color: #cdd4e2; font-size: 1.05rem; margin-top: .9rem; max-width: 40ch; }
/* Form first, contact aside second. Column widths follow the swap so the form
   keeps the wider track. */
.cf-body { padding: clamp(1.5rem,3vw,2.5rem); display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem,4vw,3rem); }
.cf-aside .label { color: var(--red-ink); }
.cf-aside h3 { margin-top: .8rem; color: var(--navy); }
.cf-aside p { margin-top: .7rem; color: var(--soft); font-size: 1rem; }
.cf-contact { display: grid; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px dashed var(--line-2); }
.cf-contact .ci { display: flex; gap: .7rem; align-items: baseline; }
.cf-contact .ci .k { font-family: var(--ff-type); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); min-width: 4.5rem; }
.cf-contact .ci a, .cf-contact .ci span { color: var(--navy); font-weight: 600; }

/* form fields: postal form style (ruled lines) */
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-family: var(--ff-type); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); margin-bottom: .35rem; }
input, select, textarea {
  width: 100%; font-family: var(--ff-body); font-size: 1.02rem; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--line-2); border-radius: 3px;
  padding: .7rem .8rem; transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(176,58,42,.14); }
textarea { min-height: 118px; resize: vertical; }
.form-note { font-family: var(--ff-type); font-size: .76rem; letter-spacing: .03em; color: var(--faint); margin-top: .9rem; line-height: 1.6; }
.coupon-form .btn { width: 100%; justify-content: center; }
.hp { position: absolute; left: -9999px; }

/* ============================================================================
   BRAND FAMILY (about)
   ========================================================================== */
.family { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1rem,2.5vw,1.5rem); margin-top: 2.5rem; }
.fam { padding: 1.6rem; background: var(--card); border: 1px solid var(--line); border-radius: 5px; transition: transform .18s ease, box-shadow .18s ease; }
.fam:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.fam .ft { font-family: var(--ff-disp); font-weight: 900; font-size: 1.4rem; color: var(--navy); letter-spacing: -.01em; }
.fam .fk { font-family: var(--ff-type); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red-ink); margin-top: .25rem; }
.fam p { margin-top: .7rem; color: var(--soft); font-size: 1rem; }
.fam .tagm { display: inline-block; margin-top: .9rem; font-family: var(--ff-type); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); border: 1px dashed var(--line-2); padding: .2rem .5rem; border-radius: 3px; }
.fam .tagm.here { color: var(--red-ink); border-color: var(--red-ink); }

/* generic checklist */
.check { list-style: none; padding: 0; display: grid; gap: .85rem; margin-top: 1.5rem; }
.check li { display: flex; gap: .7rem; align-items: baseline; }
.check li::before { content: "✶"; color: var(--red); font-size: 1rem; flex: none; }
.check b { color: var(--navy); font-weight: 600; }

/* ============================================================================
   PAGE HERO (interior)
   ========================================================================== */
.page-hero { padding-block: clamp(2.5rem,5vw,4rem) clamp(1.5rem,3vw,2.5rem); }
.page-hero .mp-to { margin-bottom: .4rem; }
.page-hero h1 { margin-top: .8rem; }
.page-hero .lead { margin-top: 1.1rem; }

/* ============================================================================
   FOOTER: return address block
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: #c2cadb; padding-block: clamp(3rem,5vw,4.5rem) 2rem; position: relative; overflow: hidden; }
.footer-pm { position: absolute; right: -30px; top: -20px; color: rgba(207,162,74,.13); width: 220px; height: 220px; transform: rotate(-12deg); }
.footer-top { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: clamp(1.5rem,3vw,2.5rem); position: relative; }
.footer-brand p { margin-top: 1rem; color: #9aa6bd; max-width: 32ch; font-size: 1rem; }
.footer-col h4 { font-family: var(--ff-type); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1rem; font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: #c2cadb; font-size: .98rem; margin-bottom: .55rem; font-family: var(--ff-type); letter-spacing: .02em; }
.footer-col a:hover { color: #fff; }
.footer-parent { color: #8694ad !important; margin-top: .6rem; }
.footer-parent b { color: var(--gold-bright); font-weight: 700; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid var(--navy-line); font-family: var(--ff-type); font-size: .74rem; letter-spacing: .05em; color: #8694ad; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; position: relative; }

/* ============================================================================
   REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }

/* postmark stamps in on load */
@keyframes stampIn { 0% { opacity: 0; transform: rotate(-9deg) scale(1.5); } 60% { opacity: 1; } 100% { opacity: 1; transform: rotate(-9deg) scale(1); } }
.mp-postage .postmark { animation: stampIn .55s cubic-bezier(.3,1.4,.5,1) .35s both; }

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .zone-grid, .cf-body { grid-template-columns: 1fr; }
  .disp-row { grid-template-columns: 3rem 1fr; }
  .disp-row .d-fig { grid-column: 2; text-align: left; margin-top: .5rem; }
  .disp-row .d-fig .n { font-size: 2.2rem; }
}
@media (max-width: 760px) {
  .steps, .family { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .mp-head { flex-direction: column-reverse; align-items: flex-start; }
  .mp-postage { align-self: flex-end; margin-bottom: -1rem; }
  .mp-postage .postmark { right: -10px; bottom: -22px; }
  .mp-body { max-width: none; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line-2);
    padding: .5rem var(--gut) 1.25rem; transform: translateY(-120%); transition: transform .3s ease;
    box-shadow: 0 20px 40px -22px rgba(20,30,50,.4);
  }
  body.nav-open .nav { transform: translateY(0); }
  .nav > a { padding: .95rem 0; border-bottom: 1px solid var(--line); }
  .nav > a.active::after { display: none; }
  .nav .nav-cta { text-align: center; margin-top: 1rem; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .dateline .wrap { flex-direction: column; }
  .dateline .est { text-align: center; max-width: none; }
}

/* ============================================================================
   ACCESSIBILITY
   ========================================================================== */
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .mp-postage .postmark { animation: none; }
}
