/* ==========================================================================
   TURN UP AND TURN OUT FOR HARRIS COUNTY
   Harris County Democratic Party — Coordinated Campaign 2026
   Brand system v1
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------ */
:root {
  /* TURN UP — heat, energy, the block, the noise */
  --up-1:    #FF2D00;
  --up-2:    #FF7A00;
  --up-3:    #FFC400;
  --up-deep: #2A0800;
  --up-tint: #FFF1E6;

  /* TURN OUT — the plan, the ballot, the math */
  --out-1:    #071A5C;
  --out-2:    #1A46D6;
  --out-3:    #56A0FF;
  --out-deep: #03071C;
  --out-tint: #EAF1FF;

  /* Neutrals */
  --ink:      #0B0D12;
  --ink-60:   #4A5060;
  --ink-30:   #8A90A0;
  --rule:     #E2DED6;
  --paper:    #FAF6F0;
  --paper-2:  #F2ECE3;
  --white:    #FFFFFF;

  /* Type */
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Archivo', system-ui, -apple-system, sans-serif;
  --font-accent:  'Instrument Serif', Georgia, 'Times New Roman', serif;

  /* Space + motion */
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --ease:   cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 2px 4px rgba(11,13,18,.04), 0 12px 32px rgba(11,13,18,.08);
  --shadow-lg: 0 4px 8px rgba(11,13,18,.06), 0 32px 64px rgba(11,13,18,.14);
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-variation-settings: 'wdth' 100, 'wght' 400;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--up-3); color: var(--ink); }

/* ---- Type -------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 118, 'wght' 800;
  line-height: .86;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
}
.d-xxl { font-size: clamp(3.4rem, 12vw, 11rem); }
.d-xl  { font-size: clamp(2.75rem, 7.5vw, 6rem); }
.d-lg  { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.d-md  { font-size: clamp(1.4rem, 2.6vw, 2.1rem); }

.accent { font-family: var(--font-accent); font-style: italic; text-transform: none; font-weight: 400; letter-spacing: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 100, 'wght' 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: inline-block;
}
.lede { font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.5; color: var(--ink-60); max-width: 46ch; }

/* ---- Layout ------------------------------------------------------------ */
.wrap { max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 820px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ---- Site header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .85rem var(--gutter);
  background: rgba(250,246,240,.88);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.site-header.on-dark { background: rgba(3,7,28,.7); border-bottom-color: rgba(255,255,255,.14); color: var(--white); }

.mark { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.mark-badge {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 112, 'wght' 800;
  font-size: .78rem; letter-spacing: .04em;
  display: grid; place-items: center;
  width: 2.4rem; height: 2.4rem; border-radius: .55rem;
  background: linear-gradient(135deg, var(--up-1), var(--up-3) 55%, var(--out-2));
  color: var(--white);
}
.mark-text { font-family: var(--font-display); font-variation-settings: 'wdth' 108, 'wght' 800; font-size: .82rem; line-height: 1.1; letter-spacing: .01em; text-transform: uppercase; }
.mark-text small { display: block; font-variation-settings: 'wdth' 100, 'wght' 500; font-size: .64rem; letter-spacing: .1em; opacity: .6; }

.site-nav { display: flex; gap: 1.6rem; margin-left: auto; align-items: center; }
.site-nav a { text-decoration: none; font-size: .9rem; font-variation-settings: 'wght' 600; opacity: .75; transition: opacity .2s; }
.site-nav a:hover, .site-nav a[aria-current="page"] { opacity: 1; }
@media (max-width: 780px) { .site-nav a.hide-sm { display: none; } }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.4rem; border-radius: 999px;
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 104, 'wght' 700;
  font-size: .86rem; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-up   { background: linear-gradient(100deg, var(--up-1), var(--up-2)); color: var(--white); box-shadow: 0 8px 24px rgba(255,45,0,.28); }
.btn-out  { background: var(--out-2); color: var(--white); box-shadow: 0 8px 24px rgba(26,70,214,.28); }
.btn-ink  { background: var(--ink); color: var(--paper); }
.btn-ghost{ border-color: currentColor; opacity: .85; }
.btn-ghost:hover { opacity: 1; }
.btn-sm { padding: .55rem 1rem; font-size: .76rem; }

/* ---- Cards ------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.9rem);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { font-family: var(--font-display); font-variation-settings: 'wdth' 108, 'wght' 750; font-size: 1.15rem; text-transform: uppercase; letter-spacing: -.005em; margin: .35rem 0 .5rem; }
.card p { margin: 0; color: var(--ink-60); font-size: .95rem; }
.card-num { font-family: var(--font-display); font-variation-settings: 'wdth' 118, 'wght' 800; font-size: 2.6rem; line-height: 1; }

/* ---- Stat ------------------------------------------------------------- */
.stat-num { font-family: var(--font-display); font-variation-settings: 'wdth' 120, 'wght' 800; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: .9; letter-spacing: -.03em; }
.stat-label { font-size: .88rem; color: var(--ink-60); margin-top: .6rem; max-width: 26ch; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: var(--out-deep); color: rgba(255,255,255,.72); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer h4 { font-family: var(--font-display); font-variation-settings: 'wght' 700; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--white); margin: 0 0 .9rem; }
.footer-legal { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.5); }

/* ---- Utility ----------------------------------------------------------- */
.on-up  { background: var(--up-deep);  color: var(--white); }
.on-out { background: var(--out-deep); color: var(--white); }
.on-up .lede, .on-out .lede { color: rgba(255,255,255,.72); }
.text-up  { color: var(--up-2); }
.text-out { color: var(--out-3); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

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

/* ==========================================================================
   Photography
   ========================================================================== */
/* isolate so the photo blends with the hero gradient, not the page backdrop */
.page-hero { isolation: isolate; --scrim: 3,7,28; }
/* directional scrim keeps headline + eyebrow legible over the photo */
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(94deg,
    rgba(var(--scrim), .90) 0%,
    rgba(var(--scrim), .68) 40%,
    rgba(var(--scrim), .30) 72%,
    rgba(var(--scrim), .10) 100%);
}
.hero-photo, .page-hero > .hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 60%;
  mix-blend-mode: luminosity; opacity: .60;
  filter: grayscale(1) contrast(1.3) brightness(.95);
}
.page-hero > .wrap { position: relative; z-index: 2; }

/* Duotone photo band */
.photo-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2px; }
.photo-band figure { position: relative; margin: 0; aspect-ratio: 1/1; overflow: hidden; background: var(--out-deep); }
.photo-band img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(1) contrast(1.3) brightness(.6);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
.photo-band figure::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(165deg, var(--up-1), var(--out-1) 85%);
  mix-blend-mode: color; transition: opacity .5s var(--ease);
}
.photo-band figure:hover img { filter: grayscale(0) contrast(1.03) brightness(1); transform: scale(1.05); }
.photo-band figure:hover::after { opacity: .25; }
.photo-band figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 2.5rem .9rem .9rem;
  background: linear-gradient(0deg, rgba(3,7,28,.9), transparent);
  color: #fff; font-family: var(--font-display);
  font-variation-settings: 'wdth' 104, 'wght' 700;
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
}

/* Full-bleed image + text split */
.img-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
@media (max-width: 860px) { .img-split { grid-template-columns: 1fr; } .img-split .img-split-img { min-height: 320px; } }
.img-split-img { background-size: cover; background-position: center; min-height: 460px; }
.img-split-body { padding: clamp(2rem, 5vw, 4.5rem); display: flex; flex-direction: column; justify-content: center; }

/* ==========================================================================
   About / Coordinated page components
   ========================================================================== */

/* Sticky section sub-nav */
.subnav {
  position: sticky; top: 57px; z-index: 50;
  background: var(--out-deep); border-bottom: 1px solid rgba(255,255,255,.12);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.subnav-inner { display: flex; gap: .25rem; padding: 0 var(--gutter); min-width: max-content; }
.subnav a {
  display: flex; align-items: center; gap: .5rem; padding: .8rem .9rem;
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); text-decoration: none; white-space: nowrap;
  font-variation-settings: 'wght' 700; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.subnav a:hover { color: #fff; }
.subnav a.on { color: #fff; border-bottom-color: var(--up-1); }
.subnav .di { color: var(--up-2); font-size: .55rem; }

/* Big numbered "plug into" rows */
.plugs { border-top: 1.5px solid var(--ink); }
.plug {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: clamp(1rem,3vw,2.5rem);
  padding: clamp(1.5rem,3vw,2.25rem) 0; border-bottom: 1px solid var(--rule); align-items: start;
}
.plug-n {
  font-family: var(--font-display); font-variation-settings: 'wdth' 118, 'wght' 800;
  font-size: clamp(2.2rem,4.5vw,3.4rem); line-height: .85; color: var(--up-1); letter-spacing: -.02em;
}
.plug h3 {
  font-family: var(--font-display); font-variation-settings: 'wdth' 108, 'wght' 780;
  font-size: clamp(1.1rem,2.2vw,1.5rem); text-transform: uppercase; margin: 0 0 .5rem; letter-spacing: -.005em;
}
.plug p { margin: 0; color: var(--ink-60); max-width: 62ch; }
@media (max-width: 620px) { .plug { grid-template-columns: 1fr; gap: .5rem; } }

/* Timeline */
.road { position: relative; padding-left: 2.5rem; }
.road::before { content: ''; position: absolute; left: .55rem; top: .5rem; bottom: .5rem; width: 2px;
                background: linear-gradient(180deg, var(--up-1), var(--out-2)); }
.road-item { position: relative; padding: 0 0 2.25rem; }
.road-item::before {
  content: ''; position: absolute; left: -2.5rem; top: .35rem; width: .85rem; height: .85rem;
  border-radius: 50%; background: var(--paper); border: 3px solid var(--up-1);
}
.road-item:last-child::before { border-color: var(--out-2); }
.road-yr {
  font-family: var(--font-display); font-variation-settings: 'wdth' 112, 'wght' 800;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--up-1); display: block; margin-bottom: .3rem;
}
.road-item:last-child .road-yr { color: var(--out-2); }
.road-item h3 { font-family: var(--font-display); font-variation-settings: 'wdth' 108, 'wght' 750;
                font-size: 1.15rem; text-transform: uppercase; margin: 0 0 .4rem; }
.road-item p { margin: 0; color: var(--ink-60); max-width: 58ch; font-size: .95rem; }

/* Step cards */
.step { background: var(--white); border: 1px solid var(--rule); border-radius: 1rem; overflow: hidden; }
.step-head { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--rule); background: var(--paper); }
.step-tag { display: inline-flex; align-items: center; gap: .5rem; font-size: .64rem; letter-spacing: .14em;
            text-transform: uppercase; font-variation-settings: 'wght' 700; margin-bottom: .5rem; }
.step-tag b { color: var(--up-1); }
.step-tag span { color: var(--ink-30); padding-left: .5rem; border-left: 1px solid var(--rule); }
.step-head h3 { font-family: var(--font-display); font-variation-settings: 'wdth' 108, 'wght' 780;
                font-size: 1.35rem; text-transform: uppercase; margin: 0; }
.step-body { padding: 1.5rem; }
.step-body > p { margin: 0 0 1rem; color: var(--ink-60); font-size: .95rem; }
.ticks { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: .6rem; }
.ticks li { display: flex; gap: .6rem; font-size: .92rem; color: var(--ink-60); }
.ticks li svg { flex: 0 0 auto; margin-top: .3rem; color: var(--out-2); }
.ticks b { color: var(--ink); }

/* Vendor cards */
.vendor { background: var(--white); border: 1px solid var(--rule); border-radius: 1rem; padding: 1.5rem;
          display: flex; flex-direction: column; }
.vendor-cat { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--up-1);
              font-variation-settings: 'wght' 700; margin-bottom: .5rem; }
.vendor h3 { font-family: var(--font-display); font-variation-settings: 'wdth' 106, 'wght' 750;
             font-size: 1.15rem; text-transform: uppercase; margin: 0 0 .6rem; }
.vendor p { margin: 0 0 1.25rem; font-size: .9rem; color: var(--ink-60); }
.vendor-foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--rule); font-size: .82rem; }

/* CTA band */
.cta-band { background: linear-gradient(115deg, var(--out-1), var(--out-deep) 75%); color: #fff;
            padding: clamp(2.5rem,6vw,4.5rem) 0; }
.cta-band h2 { font-family: var(--font-display); font-variation-settings: 'wdth' 116, 'wght' 800;
               font-size: clamp(2rem,5vw,3.4rem); text-transform: uppercase; margin: .5rem 0 .8rem; line-height: .95; }
.cta-band p { color: rgba(255,255,255,.72); margin: 0 0 1.8rem; max-width: 52ch; }

/* Lookup tool */
.lookup { background: var(--white); border: 1px solid var(--rule); border-radius: 1rem; padding: clamp(1.5rem,3vw,2.25rem); }
.lookup-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 1rem; align-items: end; }
@media (max-width: 760px) { .lookup-row { grid-template-columns: 1fr; } }
.lookup select { font: inherit; font-size: .95rem; padding: .8rem .9rem; border: 1.5px solid var(--rule);
                 border-radius: .6rem; background: var(--white); width: 100%; }
.lookup select:focus { outline: none; border-color: var(--out-2); box-shadow: 0 0 0 3px rgba(26,70,214,.14); }
.lookup-result { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.lookup-result[hidden] { display: none; }

/* ---- Mobile header: never let the nav widen the page --------------------- */
.site-header { overflow: hidden; }
.site-header .mark { flex: 0 1 auto; min-width: 0; overflow: hidden; }
.site-header .mark-text { white-space: nowrap; }
.site-nav { min-width: 0; }
.subnav { max-width: 100%; }

@media (max-width: 620px) {
  .site-header { padding-inline: 1rem; gap: .6rem; }
  .site-header .mark-text { display: none; }          /* badge carries the brand */
  .site-nav { gap: .9rem; }
  .site-nav a { font-size: .82rem; }
  .site-nav .btn { padding: .5rem .8rem; font-size: .7rem; }
}
@media (max-width: 420px) {
  .site-nav { gap: .7rem; }
  .site-nav a { font-size: .76rem; }
  .site-nav .btn { padding: .45rem .65rem; font-size: .64rem; letter-spacing: .04em; }
}

/* ==========================================================================
   Chair's message
   ========================================================================== */
.chair { position: relative; overflow: hidden; isolation: isolate; color: #fff;
  background:
    radial-gradient(90% 70% at 12% 20%, rgba(255,122,0,.35), transparent 58%),
    radial-gradient(120% 100% at 92% 88%, rgba(10,30,140,.6), transparent 62%),
    linear-gradient(150deg, #8E1200 0%, #3A0700 34%, #071A5C 78%, #03071C 100%);
}
.chair::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(75% 70% at 50% 45%, #000 20%, transparent 78%); }
.chair > .wrap { position: relative; z-index: 2; }

.chair-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
              gap: clamp(1.5rem,4vw,3.5rem); align-items: end; }
@media (max-width: 860px) { .chair-grid { grid-template-columns: 1fr; align-items: start; } }

/* white panel so the cut-out portrait's white background reads as intentional */
.chair-portrait { position: relative; background: #fff; border-radius: 1rem 1rem 0 0;
                  align-self: end; overflow: hidden; }
.chair-portrait img { display: block; width: 100%; height: auto; }
.chair-portrait::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%); }
@media (max-width: 860px) { .chair-portrait { max-width: 340px; border-radius: 1rem; } }

.chair-quote { font-family: var(--font-accent); font-style: italic;
  font-size: clamp(1.35rem, 2.9vw, 2.15rem); line-height: 1.28; color: #fff; margin: 0 0 1.5rem; }
.chair-quote p { margin: 0 0 1rem; }
.chair-quote p:last-child { margin-bottom: 0; }
.chair-quote strong { font-style: normal; font-family: var(--font-display);
  font-variation-settings: 'wdth' 112, 'wght' 800; text-transform: uppercase;
  color: var(--up-3); letter-spacing: -.01em; }
.chair-mark { font-family: var(--font-display); font-variation-settings: 'wdth' 118, 'wght' 800;
  font-size: 3.5rem; line-height: .6; color: var(--up-2); display: block; margin-bottom: .5rem; }

.chair-cite { display: flex; align-items: center; gap: 1rem; padding-top: 1.4rem;
              border-top: 1px solid rgba(255,255,255,.2); }
.chair-cite img { width: 74px; height: 74px; object-fit: cover; object-position: center 22%;
                  border-radius: .6rem; flex: 0 0 auto; }
.chair-cite b { display: block; font-family: var(--font-display);
  font-variation-settings: 'wdth' 108, 'wght' 780; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .01em; }
.chair-cite span { font-size: .84rem; color: rgba(255,255,255,.62); }

/* ==========================================================================
   Mobile navigation
   ========================================================================== */
.nav-toggle {
  display: none; margin-left: auto; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 40px; padding: 0 10px; cursor: pointer;
  background: transparent; border: 1.5px solid var(--rule); border-radius: .5rem;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 780px) {
  /* overflow must stay visible or the dropdown panel is clipped by the header */
  .site-header { position: sticky; overflow: visible; }
  /* the wordmark fits again now that the links collapse into the menu */
  .site-header .mark-text { display: block; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px; margin-left: 0;
    background: var(--out-deep); padding: .6rem; border-bottom: 3px solid var(--up-1);
    box-shadow: 0 22px 40px -12px rgba(3,7,28,.5); max-height: calc(100vh - 57px); overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  /* every link is reachable in the panel, including ones hidden in the bar */
  .site-nav a, .site-nav a.hide-sm {
    display: flex; align-items: center; padding: .95rem 1rem; font-size: 1rem;
    border-radius: .5rem; color: rgba(255,255,255,.82); opacity: 1;
  }
  .site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(255,255,255,.1); color: #fff; }
  .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--up-1); }
  .site-nav .btn { justify-content: center; margin-top: .5rem; font-size: .84rem;
                   min-height: 46px; padding-block: .8rem; }
}

/* Landing splash header on small screens */
@media (max-width: 780px) {
  .splash-header { gap: .4rem; padding: .7rem .8rem; }
  .portal-link { padding: .55rem .7rem; font-size: .62rem; letter-spacing: .06em; min-height: 38px; }
}
@media (max-width: 560px) {
  .splash-header .mark-text { display: none; }
  .portal-link { padding: .5rem .6rem; font-size: .58rem; letter-spacing: .04em; }
}
