/* ==========================================================================
   Magic Clean LLC — Bethel Park, PA
   Design direction: dry-foam vs. soaked carpet. Wool, foam, and the banded
   sheen of a freshly vacuumed floor. Ground is Ron's brand navy, taken from
   the logo; madder red carries every call to action and nothing else.
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------- */

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/bricolage-var-latin.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Literata';
  src: url('../fonts/literata-var-latin.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}

/* --- Tokens --------------------------------------------------------------- */

:root {
  /* Ground — Ron's brand navy, taken from the logo */
  --navy:       #1f2f6e;  /* brand navy — the hero and the quote panel */
  --navy-deep:  #141D42;  /* structural chrome — header, footer, chart panel */
  --navy-2:     #2B3D80;  /* lifted panel on navy */
  --navy-3:     #3D4F92;  /* hairline on navy */
  --ink:        #16204A;  /* deeper navy-black: body text and headings */

  /* Text on navy, stepped from the same hue */
  --on-navy-1:  #D4DAF2;  /* nav links */
  --on-navy-2:  #C8D0EE;  /* body copy on dark */
  --on-navy-3:  #9EA9D4;  /* tertiary */
  --on-navy-4:  #8F9BC9;  /* eyebrows, captions, hairline labels */
  --foam:       #FBFAF7;  /* page ground, warm near-white */
  --foam-2:     #F1EEE7;  /* alternating section band */
  --line:       #DDD8CD;

  /* Ink on light */
  --wool:       #6B6154;  /* secondary text */
  --wool-2:     #726960;  /* tertiary / captions — passes AA on both grounds */

  /* The one accent — actions only */
  --madder:     #B23A2B;
  --madder-d:   #8E2C20;
  --madder-t:   #C4553F;  /* madder stepped up for dark grounds */

  /* Chart series — re-validated against the --navy surface
     (CVD ΔE 12.3 protan, normal-vision ΔE 20.3, contrast >= 3:1) */
  --viz-dry:    #1BA88C;
  --viz-hwe:    #C98500;

  /* Type */
  --display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Literata', Georgia, 'Times New Roman', serif;

  /* Measure & rhythm */
  --shell:  76rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --band:   clamp(3.5rem, 8vw, 6.5rem);
  --radius: 10px;
}

/* --- Reset ---------------------------------------------------------------- */

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

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

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

body {
  margin: 0;
  background: var(--foam);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-variant-numeric: tabular-nums lining-nums;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

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

a { color: var(--madder); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--madder-d); }

:focus-visible {
  outline: 3px solid var(--madder);
  outline-offset: 3px;
  border-radius: 3px;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--madder);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 200;
  font-family: var(--display);
}
.skip:focus { left: 0; color: #fff; }

/* --- Shared type helpers -------------------------------------------------- */

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wool-2);
  margin: 0 0 1rem;
  display: block;
}
.eyebrow--onDark { color: var(--on-navy-3); }

.lede {
  font-size: clamp(1.125rem, 2.1vw, 1.3125rem);
  line-height: 1.6;
  color: var(--wool);
  max-width: 38ch;
}
.lede--wide { max-width: 52ch; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  padding: .95rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background-color .16s ease, border-color .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn--call {
  background: var(--madder);
  color: #fff;
  /* On navy the red fill alone is only 2.1:1 against the ground, so dark
     contexts raise the edge to a lighter red (3.5:1) to keep the control
     boundary visible. --btn-edge is set on the dark containers below. */
  border-color: var(--btn-edge, var(--madder));
}
.btn--call:hover { background: var(--madder-d); border-color: var(--madder-d); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn--ghostDark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
}
.btn--ghostDark:hover { border-color: #fff; color: #fff; }

.btn__icon { width: 1.05em; height: 1.05em; flex: none; }

/* --- Header --------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  /* A deeper navy than the hero plus a cast shadow, so the bar stays a
     distinct object instead of dissolving into whatever scrolls under it. */
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, .75);
}

.masthead__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.25rem;
}

.wordmark {
  color: #fff;
  text-decoration: none;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .2rem 0;
}
.wordmark:hover { color: #fff; }

/* Logo 1a — sparkle + Instrument Serif italic, drawn as outlines so it needs
   no font to render. Inherits currentColor, so it reverses on the dark bar. */
.wordmark__logo {
  height: 30px;
  width: auto;
  display: block;
  flex: none;
}

.wordmark__tag {
  font-family: var(--display);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-navy-4);
  padding-bottom: .1rem;
}

@media (max-width: 30rem) {
  .wordmark__logo { height: 26px; }
  .wordmark__tag { display: none; }
}

.nav { display: flex; align-items: center; gap: 1.6rem; }

.nav a {
  font-family: var(--display);
  font-weight: 500;
  font-size: .9375rem;
  color: var(--on-navy-1);
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: #fff; }
.nav a[aria-current='page'] { color: #fff; border-bottom-color: var(--madder-t); }

.masthead .btn--call { padding: .7rem 1.1rem; font-size: .9375rem; }

.navToggle {
  display: none;
  background: transparent;
  border: 1px solid var(--navy-3);
  border-radius: 8px;
  color: #fff;
  min-height: 44px;
  padding: .5rem .9rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
}

@media (max-width: 60rem) {
  .navToggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--navy-3);
    padding: .5rem var(--gutter) 1.25rem;
  }
  .nav[data-open='true'] { display: flex; }
  .nav a {
    padding: .85rem 0;
    border-bottom: 1px solid var(--navy-3);
    font-size: 1.0625rem;
  }
  .nav a[aria-current='page'] { border-bottom-color: var(--navy-3); color: var(--madder-t); }
  .masthead .btn--call { display: none; }
}

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

.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(2.75rem, 6vw, 4.75rem) clamp(3rem, 7vw, 5rem);
}

/* The banding a vacuum leaves in fresh pile: wide, feathered, barely there. */
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  z-index: -2;
  background: repeating-linear-gradient(
    97deg,
    rgba(255, 255, 255, 0)    0px,
    rgba(255, 255, 255, .052) 46px,
    rgba(255, 255, 255, .052) 84px,
    rgba(255, 255, 255, 0)    132px,
    rgba(255, 255, 255, 0)    178px
  );
  /* Dissolve the banding before the hero ends so the next dark band doesn't
     meet it at a hard seam. */
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 45%, transparent 96%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 90% at 78% 15%, rgba(126, 152, 232, .20), transparent 62%);
}

.hero h1 {
  font-size: clamp(2.5rem, 7.2vw, 5rem);
  line-height: .95;
  letter-spacing: -0.04em;
  max-width: 16ch;
  margin-bottom: .35em;
  color: #fff;
}

.hero__lede {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.6;
  color: var(--on-navy-2);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .875rem; align-items: center; }

.hero__note {
  margin-top: 1.75rem;
  font-family: var(--display);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--on-navy-3);
}

/* --- Sections ------------------------------------------------------------- */

.band { padding-block: var(--band); }
.band--tint { background: var(--foam-2); }

.band__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.band__head h2 { font-size: clamp(1.875rem, 4.2vw, 2.875rem); }
.band__head p { color: var(--wool); }

/* --- Signature: the dry-time comparison ----------------------------------- */
/* Two methods, one shared 24-hour axis. The axis is the whole argument, so it
   stays visible and labelled rather than being implied by bar length alone. */

.dryChart {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 58rem;
  /* The evidence sits on its own dark slab. Keeps the chart's contrast — and
     its validated series colours — without another full-bleed navy region. */
  background: var(--navy-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

/* Room to the right of the scale for the direct labels to sit in. */
.dryChart__plot { padding-right: 8.5rem; }

.dryChart__row { margin-bottom: 2.25rem; }

.dryChart__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: #fff;
  margin-bottom: .55rem;
}
.dryChart__name span {
  display: block;
  font-weight: 500;
  font-size: .8125rem;
  letter-spacing: .04em;
  color: var(--on-navy-3);
}

.dryChart__track {
  position: relative;
  height: 30px;
  background: rgba(255, 255, 255, .07);
  border-radius: 4px;
}

.dryChart__fill {
  height: 100%;
  border-radius: 0 4px 4px 0;
  width: var(--w);
  transform-origin: left center;
}

/* Direct label, pinned to the end of its own bar rather than to the axis. */
.dryChart__value {
  position: absolute;
  top: 50%;
  left: var(--w);
  transform: translateY(-50%);
  margin-left: .85rem;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.dryChart__fill--dry { background: var(--viz-dry); }
.dryChart__fill--hwe {
  background: var(--viz-hwe);
  /* Texture doubles as the non-color cue for CVD, print, and forced colors. */
  background-image: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, .17) 0 5px,
    rgba(0, 0, 0, 0)   5px 10px
  );
}

/* Progressive enhancement: bars are full width with no JS. Script arms them
   at scaleX(0), then the reveal runs the growth once the chart is on screen. */
.dryChart[data-armed='true'] .dryChart__fill { transform: scaleX(0); }
.dryChart[data-armed='true'] .dryChart__value { opacity: 0; }

.dryChart[data-revealed='true'] .dryChart__fill {
  animation: growBar .85s cubic-bezier(.22, .8, .3, 1) forwards;
}
.dryChart[data-revealed='true'] .dryChart__value {
  animation: fadeLabel .4s ease .5s forwards;
}
.dryChart[data-revealed='true'] .dryChart__fill--hwe { animation-delay: .1s; }
.dryChart[data-revealed='true'] .dryChart__row:last-of-type .dryChart__value { animation-delay: .6s; }

@keyframes growBar  { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes fadeLabel { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .dryChart[data-armed='true'] .dryChart__fill { transform: scaleX(1); }
  .dryChart[data-armed='true'] .dryChart__value { opacity: 1; }
  .dryChart__fill, .dryChart__value { animation: none !important; }
}

/* Narrow screens have no room beside the scale, so the label drops under its
   bar. It stays absolute — the track is a fixed height and a static child
   would spill into the next row. */
@media (max-width: 44rem) {
  .dryChart__plot { padding-right: 0; }
  .dryChart__value {
    top: auto;
    bottom: -2rem;
    left: 0;
    transform: none;
    margin-left: 0;
    font-size: 1.125rem;
  }
  .dryChart__row { margin-bottom: 3.75rem; }
}

.dryChart__axis {
  position: relative;
  margin-top: .5rem;
  border-top: 1px solid var(--navy-3);
  height: 1.75rem;
}
.dryChart__tick {
  position: absolute;
  top: 0;
  left: var(--x);
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--on-navy-4);
  padding-top: .4rem;
  white-space: nowrap;
}
.dryChart__tick::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: .3rem;
  background: var(--navy-3);
}
.dryChart__tick:first-child { transform: none; }
.dryChart__tick:first-child::before { left: 0; }
.dryChart__tick:last-child { transform: translateX(-100%); }
.dryChart__tick:last-child::before { left: auto; right: 0; }

.dryChart__foot {
  margin-top: 1.5rem;
  font-size: .9375rem;
  color: var(--on-navy-3);
  max-width: 54ch;
}

/* Screen-reader equivalent of the chart. Must be a plain block wrapper — a
   <table> ignores the 1px width and widens the document instead. */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --- Service cards -------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.25rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .16s ease, transform .16s ease;
}
.card:hover { border-color: var(--ink); transform: translateY(-2px); color: inherit; }

.band--tint .card { background: #fff; }

.card h3 { font-size: 1.3125rem; margin-bottom: .4em; }
.card p { font-size: .9875rem; color: var(--wool); margin-bottom: 1.25rem; }

.card__more {
  margin-top: auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--madder);
}
.card:hover .card__more { color: var(--madder-d); }

.card__list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  font-size: .9875rem;
  color: var(--wool);
}
.card__list li { margin-bottom: .3rem; }

/* --- Two-column prose ----------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 52rem) { .split { grid-template-columns: 1fr; } }

.prose { max-width: 40rem; }
.prose h2 { font-size: clamp(1.75rem, 3.6vw, 2.375rem); margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.25rem; margin-top: 1.9em; }
.prose ul { padding-left: 1.15rem; margin: 0 0 1.15em; }
.prose li { margin-bottom: .45rem; }
.prose strong { font-weight: 600; }

/* --- Fact strip ----------------------------------------------------------- */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact { background: var(--foam); padding: 1.5rem; }
.band--tint .fact { background: #fff; }
.fact__k {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: .15rem;
}
.fact__v { font-size: .875rem; color: var(--wool); line-height: 1.45; }

/* --- Service area --------------------------------------------------------- */

.towns {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.towns li {
  font-family: var(--display);
  font-weight: 500;
  font-size: .9375rem;
  padding: .45rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wool);
}

/* --- Quote form ----------------------------------------------------------- */

.quote {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem);
}
.quote h2 { font-size: clamp(1.625rem, 3.4vw, 2.25rem); color: #fff; }
.quote__intro { color: var(--on-navy-2); max-width: 44ch; margin-bottom: 2rem; }

.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .02em;
  margin-bottom: .4rem;
  color: #E4EBEF;
}
.field__hint { font-weight: 400; color: var(--on-navy-4); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: .8rem .9rem;
}
.field textarea { min-height: 6.5rem; resize: vertical; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline-offset: 2px; }

.field--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 40rem) { .field--pair { grid-template-columns: 1fr; gap: 0; } }

.field--hp { position: absolute; left: -9999px; }

.quote .btn--call { width: 100%; justify-content: center; margin-top: .5rem; }

.quote__alt {
  margin-top: 1.25rem;
  font-size: .9375rem;
  color: var(--on-navy-3);
  text-align: center;
}
.quote__alt a { color: #fff; }

/* --- Contact detail block ------------------------------------------------- */

.detail { margin-bottom: 2rem; }
.detail__k {
  font-family: var(--display);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wool-2);
  margin-bottom: .35rem;
}
.detail__v { font-size: 1.125rem; }
.detail__v a { font-weight: 600; }

.phoneBig {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--madder);
  text-decoration: none;
  display: inline-block;
}
.phoneBig:hover { color: var(--madder-d); }

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

.footer {
  background: var(--navy-deep);
  color: var(--on-navy-2);
  padding-block: clamp(3rem, 6vw, 4.5rem) 7rem;
  font-size: .9375rem;
}
.footer h2, .footer h3 { color: #fff; }
.footer a { color: #fff; }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__grid h3 {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--on-navy-4);
  margin-bottom: .9rem;
}
.footer__grid ul { list-style: none; margin: 0; padding: 0; }
.footer__grid li { margin-bottom: .5rem; }

.footer__legal {
  border-top: 1px solid var(--navy-3);
  padding-top: 1.5rem;
  font-size: .8125rem;
  color: var(--on-navy-4);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
}

@media (min-width: 48rem) { .footer { padding-bottom: clamp(3rem, 6vw, 4.5rem); } }

/* --- Sticky mobile call bar ----------------------------------------------- */

.callBar {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: flex;
  gap: .5rem;
  padding: .5rem;
  background: rgba(31, 47, 110, .96);
  border-top: 1px solid var(--navy-3);
  backdrop-filter: blur(8px);
}
.callBar .btn { flex: 1; justify-content: center; padding: .85rem 1rem; }

@media (min-width: 48rem) { .callBar { display: none; } }

/* --- Page intro (interior pages) ------------------------------------------ */

.pageHead {
  background: var(--navy);
  color: #fff;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pageHead::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  background: repeating-linear-gradient(
    97deg,
    rgba(255, 255, 255, 0)    0px,
    rgba(255, 255, 255, .045) 46px,
    rgba(255, 255, 255, .045) 84px,
    rgba(255, 255, 255, 0)    132px,
    rgba(255, 255, 255, 0)    178px
  );
}
.pageHead h1 {
  font-size: clamp(2.125rem, 5.6vw, 3.5rem);
  color: #fff;
  max-width: 20ch;
  margin-bottom: .3em;
}
.pageHead p { color: var(--on-navy-2); max-width: 50ch; font-size: 1.125rem; margin: 0; }

.crumbs {
  font-family: var(--display);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--on-navy-4);
  margin-bottom: 1.25rem;
}
.crumbs a { color: var(--on-navy-2); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* --- Callout -------------------------------------------------------------- */

.callout {
  border-left: 3px solid var(--madder);
  padding: .25rem 0 .25rem 1.25rem;
  margin: 2rem 0;
  font-size: 1.0625rem;
}
.callout p:last-child { margin-bottom: 0; }

/* --- Aside panel ---------------------------------------------------------- */

.panel {
  background: var(--foam-2);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 6rem;
}
.band--tint .panel { background: #fff; border: 1px solid var(--line); }
.panel h3 { font-size: 1.125rem; }
.panel p { font-size: .9375rem; color: var(--wool); }
.panel .btn { width: 100%; justify-content: center; }

@media (max-width: 52rem) { .panel { position: static; } }

/* --- FAQ ------------------------------------------------------------------ */

.faq { border-top: 1px solid var(--line); max-width: 46rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 1.1rem 2rem 1.1rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: .25rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--madder);
}
.faq details[open] summary::after { content: '\2013'; }
.faq details > div { padding-bottom: 1.25rem; color: var(--wool); font-size: .9875rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* His printed tagline, carried through from the invoice and the old site. */
.footer__tag {
  font-family: var(--display);
  font-weight: 600;
  font-size: .6875rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--on-navy-4);
  margin-bottom: .9rem;
  text-wrap: balance;
}

/* Dark grounds brighten the CTA edge so the button reads as a control. */
.masthead, .hero, .pageHead, .quote, .footer, .callBar { --btn-edge: #D4674F; }
