/* ============================================================================
   Strategy Matters Insurance Solutions - interim marketing site
   One stylesheet, no build step, no dependencies. Served from Cloudflare Pages.

   DESIGN READ
   Multi-page local-service marketing site for two audiences at once: East County
   San Diego blue-collar employers, and adults approaching 65. Trust-first
   editorial language built on the client's own navy-and-gold logo.

   DIALS  variance 6 / motion 4 / density 4
   Motion is deliberately low. A large share of the audience is Medicare-age, so
   scroll-hijack and parallax are actively hostile here. Reveals use CSS
   scroll-driven animation only, feature-gated, so a browser without support
   shows the content outright rather than hiding it.

   THEME LOCK  light, with navy bookends (masthead + hero at the top, CTA +
   footer at the bottom). The body never flips mid-scroll. A dark-scheme variant
   is defined at the bottom via tokens.

   SHAPE LOCK  two radii only. Pill (999px) for anything interactive; 14px for
   panels, cards and images. No third value.

   COLOR LOCK  one accent, gold. It appears at full brightness on navy, and as
   --gold-deep for text on light where full gold would fail contrast. Every pair
   in use was measured against WCAG AA before shipping; see CLAUDE.md.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens -- */
:root {
  /* brand, sampled from the client's own logo file */
  --navy:        #0e1330;
  --navy-deep:   #090c22;
  --navy-panel:  #171d42;
  --gold:        #d4a943;
  --gold-lt:     #f0d47a;
  --gold-deep:   #7d5a0b;   /* 5.81:1 on --paper; gold that is legal as text */

  --paper:       #f6f6f4;
  --surface:     #fdfdfc;
  --tint:        #eeece6;
  --ink:         #151a2e;   /* 15.92:1 on --paper */
  --muted:       #5a6079;   /*  5.74:1 on --paper */
  --line:        rgba(21, 26, 46, .13);
  --line-strong: rgba(21, 26, 46, .22);

  /* on navy */
  --cream:       #f4f1e8;   /* 16.11:1 on --navy */
  --on-navy-mut: #b9bfd6;   /*  9.95:1 on --navy */
  --line-navy:   rgba(212, 169, 67, .26);

  --r-panel: 14px;
  --r-pill: 999px;

  --shadow: 0 1px 2px rgba(21, 26, 46, .04), 0 8px 28px rgba(21, 26, 46, .07);
  --shadow-lift: 0 2px 4px rgba(21, 26, 46, .06), 0 18px 44px rgba(21, 26, 46, .12);

  --wrap: 1180px;
  --gut: clamp(20px, 4.5vw, 44px);
}

/* ------------------------------------------------------------------ font -- */
/* Self-hosted so the page makes no third-party request. One variable file
   carries both the weight and width axes, which is where the display type gets
   its character without a second family. */
@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo-latin-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17.5px;
  line-height: 1.65;
  font-weight: 400;
  font-variation-settings: 'wdth' 100;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: var(--cream);
  padding: 12px 20px; border-radius: 0 0 var(--r-panel) 0;
}
.skip:focus { left: 0; }

/* --------------------------------------------------------------- layout --- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { width: 100%; max-width: 760px; margin-inline: auto; padding-inline: var(--gut); }

section { padding-block: clamp(56px, 8vw, 104px); }
.band-tint { background: var(--tint); }
.band-navy { background: var(--navy); color: var(--cream); }
.band-navy h2, .band-navy h3 { color: var(--cream); }
.band-navy p { color: var(--on-navy-mut); }
.band-navy a { color: var(--gold-lt); }

/* ------------------------------------------------------------------ type -- */
h1, h2, h3 {
  margin: 0 0 .5em;
  font-weight: 680;
  line-height: 1.12;
  letter-spacing: -.021em;
  font-variation-settings: 'wdth' 108;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.45rem); }
h3 { font-size: clamp(1.14rem, 1.7vw, 1.3rem); font-variation-settings: 'wdth' 104; letter-spacing: -.012em; }

p { margin: 0 0 1.1em; max-width: 66ch; }
p:last-child { margin-bottom: 0; }

.lede { font-size: clamp(1.08rem, 1.9vw, 1.28rem); line-height: 1.55; color: var(--muted); }
.band-navy .lede { color: var(--on-navy-mut); }

.rule-gold {
  width: 54px; height: 3px; border: 0; margin: 0 0 26px;
  background: var(--gold); border-radius: var(--r-pill);
}

/* ---------------------------------------------------------------- button -- */
/* One primary treatment site-wide: gold surface, navy label. It reads the same
   on the navy bookends and on the light body, so the call to action never has
   to be relearned. Measured 8.28:1. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 27px;
  border-radius: var(--r-pill);
  font-size: 1.02rem; font-weight: 620; line-height: 1.2;
  font-variation-settings: 'wdth' 102;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s cubic-bezier(.16,1,.3,1), background-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }

.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: var(--navy); box-shadow: var(--shadow-lift); }

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

.band-navy .btn-ghost { color: var(--cream); border-color: rgba(244, 241, 232, .38); }
.band-navy .btn-ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

.btn:active { transform: translateY(1px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ------------------------------------------------------------- masthead --- */
.masthead {
  background: var(--navy);
  border-bottom: 1px solid rgba(212, 169, 67, .18);
  position: sticky; top: 0; z-index: 50;
}
.masthead-in {
  display: flex; align-items: center; gap: 22px;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; padding-block: 10px; }
.brand img { width: 46px; height: auto; }
.brand-name {
  display: block;
  color: var(--cream); font-weight: 640; font-size: 1.02rem; line-height: 1.15;
  font-variation-settings: 'wdth' 104; letter-spacing: -.01em;
}
.brand-sub {
  display: block;
  color: var(--gold); font-size: .715rem; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 560; margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 5px; }
.nav a {
  color: var(--cream); text-decoration: none;
  padding: 9px 13px; border-radius: var(--r-pill);
  font-size: .95rem; font-weight: 520;
  transition: background-color .16s ease, color .16s ease;
}
.nav a:hover { background: rgba(244, 241, 232, .11); color: #fff; }
.nav a[aria-current="page"] { color: var(--gold-lt); background: rgba(212, 169, 67, .13); }

.masthead .btn { padding: 11px 20px; font-size: .95rem; }

/* mobile nav: <details>, so it works with zero JavaScript */
.navtoggle { display: none; }
.navtoggle > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--cream); border: 1px solid rgba(244, 241, 232, .34);
  padding: 10px 16px; border-radius: var(--r-pill); font-weight: 560; font-size: .95rem;
}
.navtoggle > summary::-webkit-details-marker { display: none; }
.navtoggle > summary svg { width: 19px; height: 19px; }
.navtoggle[open] > summary .i-open,
.navtoggle:not([open]) > summary .i-close { display: none; }

@media (max-width: 900px) {
  .masthead-in { min-height: 64px; flex-wrap: wrap; }
  .navtoggle { display: block; }
  .nav {
    display: none; order: 3; width: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 6px 0 16px;
  }
  .navtoggle[open] ~ .nav { display: flex; }
  .nav a { padding: 13px 15px; font-size: 1.05rem; }
  .masthead > .wrap > .masthead-in > .btn { display: none; }
}

/* ------------------------------------------------------------------ hero -- */
/* padding-block:0 is load-bearing. .hero is itself a <section>, so without this it
   inherits the generic section padding AND adds .hero-grid's, which put the headline
   almost 200px down the viewport and read as a layout fault rather than as space. */
.hero { background: var(--navy); color: var(--cream); overflow: hidden; padding-block: 0; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(44px, 5.5vw, 76px);
}
.hero h1 { color: var(--cream); }
.hero .lede { color: var(--on-navy-mut); max-width: 46ch; }
.hero-media {
  border-radius: var(--r-panel); overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  position: relative;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }

.licline {
  margin: 26px 0 0; padding-top: 20px;
  border-top: 1px solid var(--line-navy);
  font-size: .875rem; color: var(--on-navy-mut); letter-spacing: .01em;
  max-width: 46ch;
}
.licline strong { color: var(--gold-lt); font-weight: 600; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 10; }
}

/* page header for interior pages */
.pagehead { background: var(--navy); color: var(--cream); padding-block: clamp(44px, 6vw, 76px); }
.pagehead h1 { color: var(--cream); max-width: 20ch; }
.pagehead .lede { color: var(--on-navy-mut); max-width: 60ch; }
.crumb {
  font-size: .8rem; letter-spacing: .11em; text-transform: uppercase;
  color: var(--gold); font-weight: 580; margin: 0 0 16px;
}
.crumb a { color: var(--gold); text-decoration: none; }
.crumb a:hover { color: var(--gold-lt); text-decoration: underline; }

/* ----------------------------------------------------------------- bento -- */
/* Three coverage lines, three cells. Asymmetric on purpose: the lead cell is
   the commercial centre of the business, not one of three equal tiles. */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.bento > :first-child { grid-row: span 2; }

.tile {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow);
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--line-strong); color: inherit; }
.tile-media { overflow: hidden; background: var(--tint); }
.tile-media img { width: 100%; object-fit: cover; aspect-ratio: 16 / 10; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.tile:hover .tile-media img { transform: scale(1.035); }

/* The lead tile spans two rows, so its natural content is shorter than the cell and
   leaves a dead gap above the link (margin-top:auto pins the link to the bottom).
   Let the photograph absorb the surplus instead of leaving a void. */
/* Absolute fill rather than height:100%: the media box gets its height from flex-grow,
   and a percentage height on the child does not reliably resolve against that. */
.bento > :first-child .tile-media { flex: 1; min-height: 320px; position: relative; }
.bento > :first-child .tile-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: auto;
}
/* .tile-body is flex:1 as well, so without this the surplus is SPLIT between the photo
   and the text block, and margin-top:auto on the link reopens the gap lower down. */
.bento > :first-child .tile-body { flex: none; }
.tile-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.tile h3 { margin-bottom: 8px; }
.tile p { color: var(--muted); font-size: .985rem; margin-bottom: 18px; }
.tile-go {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-deep); font-weight: 620; font-size: .95rem;
}
.tile-go svg { width: 17px; height: 17px; transition: transform .22s ease; }
.tile:hover .tile-go svg { transform: translateX(4px); }

@media (max-width: 820px) {
  .bento { grid-template-columns: 1fr; }
  .bento > :first-child { grid-row: auto; }
  .bento > :first-child .tile-media img { aspect-ratio: 16 / 10; }
}

/* ------------------------------------------------------------ fact strip -- */
.facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin-top: 44px;
}
.fact { border-top: 2px solid var(--gold); padding-top: 18px; }
.fact dt {
  font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 680; line-height: 1.1;
  font-variation-settings: 'wdth' 106; letter-spacing: -.02em; color: var(--ink);
}
.fact dd { margin: 7px 0 0; color: var(--muted); font-size: .95rem; line-height: 1.5; }
@media (max-width: 700px) { .facts { grid-template-columns: 1fr; gap: 26px; } }

/* ------------------------------------------------------------ media band -- */
.mediaband { position: relative; background: var(--navy); overflow: hidden; }
.mediaband > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .62;
}
.mediaband .wrap { position: relative; }
/* Opaque enough on the left to carry text at AA, clearing toward the right so the
   ridge is actually visible. At .3 opacity under a flat scrim the photograph read as
   a slightly-lighter navy rectangle, which is worse than having no photograph. */
.mediaband::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--navy) 8%, rgba(14, 19, 48, .92) 42%, rgba(14, 19, 48, .55) 78%, rgba(14, 19, 48, .35));
}
.mediaband .wrap { z-index: 1; }

/* ------------------------------------------------------------- text+media -- */
.duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 68px); align-items: center;
}
.duo-media img { border-radius: var(--r-panel); width: 100%; object-fit: cover; aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.duo.flip .duo-media { order: 2; }
@media (max-width: 820px) {
  .duo { grid-template-columns: 1fr; gap: 30px; }
  .duo.flip .duo-media { order: 0; }
}

/* ----------------------------------------------------------------- quote -- */
.quote { max-width: 900px; margin-inline: auto; text-align: center; }
.quote blockquote {
  margin: 0 0 26px;
  font-size: clamp(1.4rem, 3vw, 2.05rem); line-height: 1.3; font-weight: 600;
  font-variation-settings: 'wdth' 105; letter-spacing: -.017em;
  color: var(--ink); text-wrap: balance;
}
.quote figcaption { color: var(--muted); font-size: .96rem; }
.quote figcaption b { display: block; color: var(--ink); font-weight: 620; font-size: 1.02rem; }

/* ------------------------------------------------------------------ list -- */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; line-height: 1.55; }
.checks svg { width: 21px; height: 21px; flex: none; color: var(--gold-deep); margin-top: 3px; }
.band-navy .checks svg { color: var(--gold); }
.checks.two { grid-template-columns: 1fr 1fr; gap: 15px 38px; }
@media (max-width: 760px) { .checks.two { grid-template-columns: 1fr; } }

/* grouped two-column reference list, used instead of one long <ul> */
.grouped { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(26px, 4vw, 48px); }
.grouped h3 { font-size: 1.02rem; margin-bottom: 14px; padding-bottom: 11px; border-bottom: 2px solid var(--gold); }
.grouped ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.grouped li { color: var(--muted); font-size: .97rem; line-height: 1.5; }
@media (max-width: 700px) { .grouped { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ contact -- */
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-panel); padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.band-navy .contact-card {
  background: var(--navy-panel); border-color: var(--line-navy); box-shadow: none;
}
.lines { display: grid; gap: 20px; margin: 0; }
.line { display: flex; gap: 16px; align-items: center; }
.ico {
  flex: none; width: 46px; height: 46px; border-radius: var(--r-panel);
  background: rgba(212, 169, 67, .15); border: 1px solid rgba(212, 169, 67, .3);
  display: grid; place-items: center; color: var(--gold-deep);
}
.band-navy .ico { color: var(--gold-lt); }
.ico svg { width: 21px; height: 21px; }
.line-label {
  display: block; font-size: .755rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 580; margin-bottom: 1px;
}
.band-navy .line-label { color: var(--on-navy-mut); }
.line-value { display: block; font-size: 1.19rem; font-weight: 620; color: var(--ink); text-decoration: none; overflow-wrap: anywhere; }
/* 44px floor on the tappable ones. A meaningful share of this audience is 65+ and
   reaching for a phone number on a phone; 24px clears WCAG 2.5.8 but is not enough. */
a.line-value { display: inline-flex; align-items: center; min-height: 44px; }
.band-navy .line-value { color: var(--cream); }
a.line-value:hover { color: var(--gold-deep); }
.band-navy a.line-value:hover { color: var(--gold-lt); }

/* ----------------------------------------------------------------- notes -- */
.note {
  background: var(--tint); border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-panel) var(--r-panel) 0;
  padding: 20px 24px; margin: 0;
}
.note p { font-size: .93rem; color: var(--muted); margin-bottom: .7em; }
.note p:last-child { margin-bottom: 0; }
.band-navy .note { background: var(--navy-panel); border-left-color: var(--gold); }

/* ---------------------------------------------------------------- footer -- */
.foot { background: var(--navy-deep); color: var(--on-navy-mut); padding-block: clamp(48px, 6vw, 72px) 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.foot h2 { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: 15px; font-weight: 580; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
/* inline-block + padding so each footer link is a >=24px target (WCAG 2.5.8) rather
   than a 16px line of text. The gap shrinks to compensate, so the rhythm is unchanged. */
.foot a { color: var(--cream); text-decoration: none; font-size: .96rem; display: inline-block; padding-block: 6px; }
.foot a:hover { color: var(--gold-lt); text-decoration: underline; }
.foot p { font-size: .9rem; color: var(--on-navy-mut); line-height: 1.6; }
.foot-brand img { width: 62px; margin-bottom: 14px; }
.foot-name { color: var(--cream); font-weight: 620; font-size: 1.02rem; display: block; margin-bottom: 6px; }
.foot-base {
  margin-top: 42px; padding-top: 26px; border-top: 1px solid rgba(244, 241, 232, .14);
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between;
  font-size: .845rem; color: var(--on-navy-mut);
}
.foot-base p { font-size: .845rem; margin: 0; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ------------------------------------------------------------ disclosure -- */
.disclosure { background: var(--navy-deep); color: var(--on-navy-mut); padding-block: 0 40px; }
.disclosure div {
  border-top: 1px solid rgba(244, 241, 232, .14); padding-top: 24px;
  font-size: .82rem; line-height: 1.65;
}
.disclosure p { font-size: .82rem; color: var(--on-navy-mut); max-width: none; }

/* --------------------------------------------------------------- reveal --- */
/* Scroll-driven animation only, and only where the browser implements it.
   Anywhere else the content is simply visible, so nothing can be hidden by a
   feature that failed to load. There is no JavaScript on this site. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) and (min-width: 861px) {
    .reveal {
      animation: rise linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 26%;
    }
    @keyframes rise {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: none; }
    }
  }
}

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

/* ------------------------------------------------------------ dark scheme -- */
/* The page is light by design. Under a dark system preference the same tokens
   are restated so the navy bookends stay brand-correct and the body inverts
   without any section flipping relative to its neighbours. */
@media (prefers-color-scheme: dark) {
  :root {
    --paper:   #101426;
    --surface: #171c31;
    --tint:    #1a1f36;
    --ink:     #edeef4;
    --muted:   #a6adc4;
    --line:        rgba(237, 238, 244, .14);
    --line-strong: rgba(237, 238, 244, .28);
    --gold-deep:   #e8c46a;
    --navy:        #0b0f26;
    --navy-deep:   #070a1c;
    --navy-panel:  #151a3b;
    --shadow:      0 1px 2px rgba(0, 0, 0, .3), 0 8px 28px rgba(0, 0, 0, .34);
    --shadow-lift: 0 2px 4px rgba(0, 0, 0, .34), 0 18px 44px rgba(0, 0, 0, .46);
  }
  .btn-ghost { color: var(--ink); border-color: var(--line-strong); }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); }
  .tile-media { background: var(--tint); }
}

/* ------------------------------------------------------------------ print -- */
@media print {
  .masthead, .btn-row, .mediaband > img { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .band-navy, .hero, .pagehead, .foot { background: #fff !important; color: #000 !important; }
  .band-navy h1, .band-navy h2, .hero h1, .pagehead h1, .foot a { color: #000 !important; }
  a[href^="http"]::after { content: ' (' attr(href) ')'; font-size: 9pt; }
}
