/* ==========================================================================
   AeroInspire — shared stylesheet
   Palette: night-sky navy + brand slate blue (#575c8c) + restrained brass
   Type: Libre Franklin (display) / Inter (body)
   ========================================================================== */

:root {
  --navy:        #1b1f36;
  --navy-2:      #262b47;
  --slate:       #575c8c;   /* brand color from the current site */
  --slate-light: #8388b3;
  --ink:         #23273a;
  --muted:       #5b6072;
  --paper:       #f6f6fa;
  --surface:     #ffffff;
  --line:        #e4e4ee;
  --brass:       #a97f3f;
  --brass-soft:  #c6a468;

  --maxw: 1140px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 6px;
  --shadow: 0 1px 2px rgba(27,31,54,.05), 0 8px 24px rgba(27,31,54,.06);

  --f-display: "Libre Franklin", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---- 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; }
  * { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--slate); text-decoration: none; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  font-weight: 700;
}

/* ---- layout helpers ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section--alt { background: var(--surface); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--slate);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  transform: translateY(1px);
}
.center .eyebrow { justify-content: center; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 60ch; }
.center .lead { margin-inline: auto; }

h2.section-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-display); font-weight: 600; font-size: .95rem;
  padding: .8rem 1.5rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brass); color: #fff; }
.btn--primary:hover { background: #96702f; color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--slate); color: var(--navy); }
.btn--on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--on-dark:hover { border-color: #fff; color: #fff; }
.btn__arrow { transition: transform .15s ease; }
.btn:hover .btn__arrow { transform: translate(2px,-2px); }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-weight: 800; color: var(--navy); letter-spacing: -.01em; font-size: 1.15rem; }
.brand:hover { color: var(--navy); }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand span b { color: var(--slate); font-weight: 800; }
.brand__logo { height: 42px; width: auto; display: block; }
@media (max-width: 480px) { .brand__logo { height: 34px; } }

.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__links a:not(.btn) {
  font-family: var(--f-display); font-weight: 500; font-size: .95rem;
  color: var(--ink); padding: .5rem .8rem; border-radius: var(--radius); position: relative;
}
.nav__links a:not(.btn):hover { color: var(--navy); background: var(--paper); }
.nav__links a:not(.btn)[aria-current="page"] { color: var(--slate); }
.nav__links a:not(.btn)[aria-current="page"]::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .28rem; height: 2px; background: var(--brass);
}
.nav__cta { margin-left: .4rem; }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--surface); border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy); position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav__cta.nav__cta--inline { display: none; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1rem;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.btn) { display: block; padding: 1.05rem .5rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav__links li:has(+ .nav__cta) a:not(.btn) { border-bottom: 0; }
  .nav__links a:not(.btn)[aria-current="page"]::after { display: none; }
  .nav__links .nav__cta { margin: 1.1rem 0 .2rem; }
  .nav__links .btn { display: flex; justify-content: center; padding: .95rem 1.5rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1200px 500px at 75% -10%, rgba(131,136,179,.35), transparent 60%),
    linear-gradient(100deg, rgba(16,19,42,.64) 0%, rgba(16,19,42,.52) 40%, rgba(16,19,42,.15) 100%),
    url("../images/hero.jpg") center 30% / cover no-repeat,
    linear-gradient(160deg, var(--navy) 0%, #141830 55%, #10132a 100%);
}
.hero__stars { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.hero__inner { position: relative; padding-block: clamp(4rem, 11vw, 8rem); max-width: 46rem; }
.hero .eyebrow { color: var(--brass-soft); }
.hero .eyebrow::before { background: var(--brass-soft); }
.hero h1 {
  color: #fff; font-size: clamp(2.1rem, 5.4vw, 3.6rem); font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 1.1rem;
}
.hero p { color: rgba(255,255,255,.82); font-size: clamp(1.02rem, 1.7vw, 1.22rem); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__ph-note {
  position: absolute; right: var(--gutter); bottom: 1rem; font-family: var(--f-display);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4);
}

/* ==========================================================================
   Media placeholders (swapped for real images later)
   ========================================================================== */
.ph {
  position: relative; border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(93, 95, 109, 0.11) 0 12px, rgba(93, 95, 109, 0.11) 12px 24px); /* used to be 87, 92, 140, .11 */
  border: 1px dashed rgba(87,92,140,.4);
  display: grid; place-items: center; text-align: center; color: var(--slate);
  min-height: 260px; padding: 1.5rem;
}
.ph__label { font-family: var(--f-display); font-weight: 600; letter-spacing: .04em; }
.ph__hint { font-size: .8rem; color: var(--muted); margin-top: .25rem; }

/* ---- real content images ---- */
.media-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); display: block;
  box-shadow: var(--shadow);
}
.split__media .media-img { aspect-ratio: 4 / 5; }
.about__photo { aspect-ratio: 4 / 5; }
.contact__img { aspect-ratio: 3 / 4; }

/* Photographic intro banner — shared by Expertise + Our Approach.
   .page-hero carries the shared light-text styling; each --modifier sets its own photo. */
.page-hero { position: relative; color: #fff; overflow: hidden; }
.page-hero h1, .page-hero h2 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.86); }
.page-hero .eyebrow { color: var(--brass-soft); }
.page-hero .eyebrow::before { background: var(--brass-soft); }
.page-hero .anchor-grid a {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.22); color: #fff;
  backdrop-filter: blur(2px);
}
.page-hero .anchor-grid a:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.13); }
.page-hero .anchor-grid .num { color: var(--brass-soft); }

/* Expertise photo + overlay (overlay tuned lighter to let more of the photo show) */
.page-hero--expertise {
  background:
    linear-gradient(155deg, rgba(16,19,42,.60) 0%, rgba(27,31,54,.50) 60%, rgba(16,19,42,.52) 100%),
    url("../images/expertise-banner.jpg") center 40% / cover no-repeat;
}

/* Our Approach photo + overlay (a bit darker on the left so the bright sky in this
   photo doesn't wash out the white heading text) */
.page-hero--approach {
  background:
    linear-gradient(110deg, rgba(16,19,42,.86) 0%, rgba(16,19,42,.64) 42%, rgba(20,24,48,.42) 100%),
    url("../images/approach-banner.jpg") center 42% / cover no-repeat;
}

/* ==========================================================================
   Split (image + text)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media .ph { min-height: 340px; height: 100%; }
@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* ==========================================================================
   Service tile grid
   ========================================================================== */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.25rem; }
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }
.tile {
  display: block; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.4rem 1.5rem; color: var(--ink);
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.tile:hover { transform: translateY(-3px); border-color: var(--slate-light); box-shadow: var(--shadow); color: var(--ink); }
.tile__icon { width: 30px; height: 30px; color: var(--slate); margin-bottom: .9rem; }
.tile h3 { font-size: 1.06rem; margin-bottom: .35rem; }
.tile p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.55; }
.tile__more { display: inline-block; margin-top: .9rem; font-family: var(--f-display); font-weight: 600; font-size: .85rem; color: var(--slate); }
.tile:hover .tile__more { color: var(--brass); }

/* ==========================================================================
   How We Work — process steps, static cards, testimonial placeholder
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.25rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.3rem 1.5rem; }
.step__n { display: inline-flex; align-items: center; justify-content: center; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: rgba(169,127,63,.12); color: var(--brass); font-family: var(--f-display); font-weight: 800; font-size: 1rem; margin-bottom: .9rem; }
.step h3 { font-size: 1.08rem; margin: 0 0 .55rem; }
.step ul { margin: 0; padding-left: 1.05rem; }
.step li { color: var(--muted); font-size: .9rem; line-height: 1.5; margin-bottom: .35rem; }

.tile--static { cursor: default; }
.tile--static:hover { transform: none; border-color: var(--line); box-shadow: none; }
.tile--static h3 { margin-bottom: .45rem; }

.differs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
@media (max-width: 720px) { .differs { grid-template-columns: 1fr; } }
.differ { border-left: 2px solid var(--brass); padding: .3rem 0 .3rem 1rem; }
.differ h3 { font-size: 1rem; margin: 0 0 .3rem; }
.differ p { margin: 0; color: var(--muted); font-size: .92rem; }

.philosophy { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.4rem); }
.philosophy p { margin: 0; font-size: 1.05rem; color: var(--ink); max-width: 74ch; }

.note-tag { display: inline-block; margin-top: 1.2rem; font-size: .82rem; color: var(--muted); }
.note-tag a { font-weight: 600; }

.testimonial-empty { border: 1px dashed rgba(87,92,140,.4); border-radius: var(--radius); padding: 2.5rem 1.5rem; text-align: center; color: var(--muted); background: repeating-linear-gradient(135deg, rgba(87,92,140,.04) 0 12px, rgba(87,92,140,.08) 12px 24px); }
.integrity { margin-top: 1.5rem; color: var(--muted); font-size: .95rem; max-width: 78ch; }
.integrity strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Expertise page — anchor chips + detail cards
   ========================================================================== */
.anchor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.25rem; }
.anchor-grid a {
  font-family: var(--f-display); font-weight: 500; font-size: .9rem;
  padding: .7rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); color: var(--ink); display: flex; align-items: center; gap: .55rem;
  transition: border-color .2s ease, color .2s ease;
}
.anchor-grid a:hover { border-color: var(--slate); color: var(--slate); }
.anchor-grid .num { font-size: .78rem; color: var(--brass); font-weight: 700; min-width: 1.4em; }

.field { scroll-margin-top: 90px; border-top: 1px solid var(--line); padding-top: 2.2rem; margin-top: 2.2rem; }
.field:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.field__eyebrow { font-family: var(--f-display); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); font-weight: 700; }
.field h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); margin: .3rem 0 .6rem; }
.field__teaser { color: var(--muted); font-size: 1.02rem; max-width: 68ch; }
.field__text { color: var(--ink); font-size: 1.02rem; max-width: 70ch; margin-top: .4rem; }

/* Pillar structure on the Expertise page */
section[id] { scroll-margin-top: 80px; }
.pillar-caps { columns: 2; column-gap: 2.5rem; margin: 1.3rem 0 .5rem; padding-left: 1.1rem; max-width: 780px; }
@media (max-width: 560px) { .pillar-caps { columns: 1; } }
.pillar-caps li { margin-bottom: .45rem; color: var(--ink); font-weight: 500; }
.pillar-fields { margin-top: 1.5rem; }
.pillar-fields .field:first-of-type { border-top: 1px solid var(--line); padding-top: 2.2rem; margin-top: 2.2rem; }
.pillar-note { color: var(--muted); font-style: italic; margin-top: 1.3rem; }
.field__draft { display: inline-block; margin-top: .6rem; font-size: .74rem; font-family: var(--f-display); letter-spacing: .04em; color: var(--brass); background: rgba(169,127,63,.09); border: 1px solid rgba(169,127,63,.3); padding: .15rem .5rem; border-radius: 4px; }

details.deep { margin-top: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
details.deep > summary {
  cursor: pointer; list-style: none; padding: .9rem 1.1rem; font-family: var(--f-display);
  font-weight: 600; font-size: .92rem; color: var(--slate); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
details.deep > summary::-webkit-details-marker { display: none; }
details.deep > summary .chev { transition: transform .2s ease; flex: none; }
details.deep[open] > summary .chev { transform: rotate(180deg); }
details.deep > .deep__body { padding: 0 1.1rem 1.2rem; }
details.deep > .deep__body p { margin: 0; color: var(--ink); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-note { color: var(--muted); margin-bottom: 2rem; }
.qa { border-bottom: 1px solid var(--line); }
.qa > summary {
  cursor: pointer; list-style: none; padding: 1.15rem 0; font-family: var(--f-display);
  font-weight: 600; font-size: 1.08rem; color: var(--navy); display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.qa > summary::-webkit-details-marker { display: none; }
.qa .chev { flex: none; margin-top: .3rem; transition: transform .2s ease; color: var(--slate); }
.qa[open] .chev { transform: rotate(180deg); }
.qa__body { padding: 0 0 1.4rem; color: var(--ink); }
.qa__body ul { columns: 2; gap: 2rem; padding-left: 1.1rem; margin: .8rem 0; }
@media (max-width: 560px) { .qa__body ul { columns: 1; } }
.qa__body li { margin-bottom: .3rem; }

/* ==========================================================================
   Prose (privacy policy, long text)
   ========================================================================== */
.prose { max-width: 72ch; }
.prose p { margin: 0 0 1.1rem; }
.prose h3 { font-size: 1.15rem; margin-top: 2rem; color: var(--navy); }

/* ==========================================================================
   About page
   ========================================================================== */
.about-head { display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
.about-head .ph { min-height: 380px; }
.about__role { font-family: var(--f-display); font-weight: 600; color: var(--slate); margin: 0 0 1.2rem; font-size: 1.05rem; }
.about__links { margin-top: 1.4rem; display: flex; gap: .8rem; flex-wrap: wrap; }
@media (max-width: 700px) { .about-head { grid-template-columns: 1fr; } .about-head .ph { min-height: 300px; } }

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,5vw,4rem); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-main .form { margin-top: 2rem; }
.contact-aside p { color: var(--muted); }
.contact-aside .direct { margin-top: 1.5rem; font-family: var(--f-display); }
.contact-aside .direct a { font-weight: 600; }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow); }
.field-row { margin-bottom: 1.1rem; }
.field-row label { display: block; font-family: var(--f-display); font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: .4rem; }
.field-row .req { color: var(--brass); }
.field-row input, .field-row textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  padding: .7rem .85rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field-row input:focus, .field-row textarea:focus {
  outline: none; border-color: var(--slate); box-shadow: 0 0 0 3px rgba(87,92,140,.15); background: #fff;
}
.field-row textarea { resize: vertical; min-height: 140px; }
.form .btn { width: 100%; justify-content: center; margin-top: .4rem; }
.form__fine { font-size: .8rem; color: var(--muted); margin-top: 1rem; }

/* ==========================================================================
   CTA band (persistent, every page)
   ========================================================================== */
.cta-band { background: linear-gradient(150deg, var(--slate), var(--navy-2)); color: #fff; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 .4rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,.82); max-width: 46ch; }

/* signature: quiet full-width "name" band */
.name-band { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.name-band::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.name-band .flightpath { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; pointer-events: none; }
.name-band__inner { position: relative; max-width: 60rem; }
.name-band h2 { color: #fff; }
.name-band p { color: rgba(255,255,255,.82); font-size: 1.08rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding-block: 3rem 2rem; }
.footer-top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: inline-flex; align-items: center; gap: .6rem; color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 1.1rem; }
.footer-brand__logo { height: 48px; width: auto; display: block; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.72); font-size: .92rem; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.72); }

/* utilities */
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; color: var(--navy); padding: .6rem 1rem; z-index: 100; border-radius: 0 0 var(--radius) 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--slate); outline-offset: 2px; }
