/* Enervexa PowerLabs — newspaper modular grid + ticker */
:root {
  --navy: #183868;
  --navy-deep: #102440;
  --mid: #00609A;
  --sky: #30A0D8;
  --sky-2: #5BB8E4;
  --paper: #F3F6F8;
  --sheet: #FFFFFF;
  --ink: #101820;
  --muted: #3E5166;
  --line: #C5D0DC;
  --line-strong: #183868;
  --on-dark: #F4F8FC;
  --on-dark-muted: #D4E4F2;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --maxw: 1120px;
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --cond: "Barlow Condensed", "Barlow", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, blockquote {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: var(--on-dark); padding: 10px 16px; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-primary { background: var(--navy); color: var(--on-dark); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(243, 246, 248, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(16, 24, 32, .45);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { width: 40px; height: 40px; object-fit: cover; }
.brand-lock { display: flex; flex-direction: column; line-height: 1.05; }
.brand-lock strong {
  font-family: var(--cond); font-size: 16px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
}
.brand-lock em {
  font-style: normal; font-family: var(--cond); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--mid);
}

.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  font-family: var(--cond);
  font-size: 14px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  transition: color .2s var(--ease), transform .25s var(--ease);
}
.nav .nav-cta {
  color: var(--on-dark); background: var(--navy);
  padding: 8px 14px;
}
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 10px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Ticker */
.ticker {
  background: var(--navy-deep);
  color: var(--on-dark);
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 248, 252, .12);
  padding: 10px 0;
}
.ticker-alt {
  background: var(--navy);
  border-block: 1px solid rgba(244, 248, 252, .12);
}
.ticker-track {
  display: flex; align-items: center; gap: 22px;
  width: max-content;
  white-space: nowrap;
  font-family: var(--cond);
  font-size: 13px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  animation: ticker 36s linear infinite;
}
.ticker-track.reverse { animation-name: ticker-rev; animation-duration: 40s; }
.tick-dot { color: var(--sky); font-size: 8px; }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes ticker-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* Front page */
.front { padding: 28px 0 8px; }
.paper-sheet {
  background: var(--sheet);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -28px rgba(16, 36, 64, .35);
  padding: 18px 22px 28px;
  position: relative;
}
.paper-sheet::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.folio-bar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 16px;
  font-family: var(--cond);
  font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  position: relative; z-index: 1;
}
.folio-live {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--mid);
}
.folio-live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 0 rgba(48, 160, 216, .7);
  animation: live 1.6s ease-out infinite;
}
@keyframes live {
  0% { box-shadow: 0 0 0 0 rgba(48, 160, 216, .55); }
  100% { box-shadow: 0 0 0 10px rgba(48, 160, 216, 0); }
}

.nameplate {
  text-align: center;
  padding: 22px 8px 18px;
  border-bottom: 3px double var(--navy);
  position: relative; z-index: 1;
}
.name-kicker {
  font-family: var(--cond);
  font-size: 13px; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.name-mark {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.name-flame {
  width: 52px; height: 64px;
  animation: flame-bob 4.5s ease-in-out infinite;
}
.rib { transform-origin: 50% 90%; }
.rib-a { animation: rib-sway 3.6s ease-in-out infinite; }
.rib-b { animation: rib-sway 3.6s ease-in-out infinite .2s; }
.rib-c { animation: rib-sway 3.6s ease-in-out infinite .4s; }
@keyframes flame-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes rib-sway {
  0%, 100% { transform: rotate(0deg) scaleY(1); }
  50% { transform: rotate(-3deg) scaleY(1.04); }
}
.name-sub {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
}

.front-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px 32px;
  padding: 28px 4px 8px;
  position: relative; z-index: 1;
}
.kicker {
  font-family: var(--cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}
.lead-hed {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.lead-deck {
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 54ch;
}
.lead-body {
  color: var(--muted);
  font-size: 1rem;
  max-width: 58ch;
}
.drop {
  float: left;
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: .8;
  padding: 6px 10px 0 0;
  color: var(--navy);
  font-weight: 600;
}
.lead-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Infographic */
.infobox {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 12px 12px 14px;
  height: 100%;
}
.info-head {
  display: flex; justify-content: space-between;
  font-family: var(--cond);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding: 2px 4px 8px;
}
.grid-svg { width: 100%; height: auto; display: block; margin: 8px 0; }
.nodes circle {
  fill: var(--sheet);
  stroke: var(--navy);
  stroke-width: 1.6;
  transform-box: fill-box;
  transform-origin: center;
}
.node { animation: node-pulse 2.8s ease-in-out infinite; }
.n2 { animation-delay: .2s; }
.n3 { animation-delay: .35s; }
.n4 { animation-delay: .5s; }
.n5 { animation-delay: .65s; }
.n6 { animation-delay: .8s; }
.n7 { animation-delay: .95s; fill: var(--sky); }
.n8 { animation-delay: 1.1s; }
.n9 { animation-delay: 1.25s; }
.n10 { animation-delay: 1.4s; }
@keyframes node-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.28); }
}
.pulse-line {
  fill: none;
  stroke: var(--sky);
  stroke-width: 2;
  stroke-dasharray: 18 220;
  stroke-dashoffset: 0;
  animation: current 3.4s linear infinite;
}
.pulse-line.delay { animation-duration: 4.2s; stroke: var(--mid); }
@keyframes current { to { stroke-dashoffset: -238; } }
.wave {
  stroke-dasharray: 8 6;
  animation: wave-run 2.2s linear infinite;
}
@keyframes wave-run { to { stroke-dashoffset: -56; } }

.info-legend {
  list-style: none; margin: 0; padding: 8px 4px 0;
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-family: var(--cond);
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.lg {
  display: inline-block; width: 10px; height: 10px; margin-right: 6px; vertical-align: -1px;
}
.lg-sky { background: var(--sky); }
.lg-mid { background: var(--mid); }
.lg-navy { background: var(--navy); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 18px 4px 0;
  border-top: 2px solid var(--navy);
  position: relative; z-index: 1;
}
.stat {
  padding: 16px 12px 4px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat dt {
  font-family: var(--cond);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}
.stat dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
}

/* Sections */
.section { padding: 80px 0; }
.section-rule { border-top: 1px solid var(--line); }
.sec-folio {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 10px;
  margin-bottom: 28px;
}

/* Modular grid */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px 24px;
}
.lead-mod { grid-column: span 8; }
.rail-mod { grid-column: span 4; }
.story { grid-column: span 4; }
.mod-grid.tight { margin-top: 36px; }

.mod {
  background: var(--sheet);
  border: 1px solid var(--line);
  padding: 24px 22px 26px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.lead-mod h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.lead-mod p + p { margin-top: 14px; }
.lead-mod p, .story p, .rail-mod p { color: var(--muted); }
.story h3, .rail-mod h3 {
  font-size: 1.45rem;
  color: var(--navy);
  margin: 6px 0 12px;
}

.rail-list { list-style: none; margin: 16px 0 0; padding: 0; }
.rail-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
  transition: background .25s var(--ease), padding .25s var(--ease), transform .25s var(--ease);
}
.rail-list strong { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); font-weight: 600; }
.rail-list span, .rail-list a { color: var(--muted); font-size: .95rem; }
.rail-list a { color: var(--mid); }

/* Quote band — dark, near-white text */
.quote-band {
  background: var(--navy-deep);
  color: var(--on-dark);
  padding: 80px 0;
}
.quote-inner { text-align: center; max-width: 820px; margin: 0 auto; }
.quote-kicker {
  font-family: var(--cond);
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--on-dark-muted); font-weight: 700; margin-bottom: 18px;
}
.quote-band blockquote {
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  font-style: italic;
  font-weight: 500;
  color: var(--on-dark);
  line-height: 1.2;
}
.quote-attr {
  margin-top: 20px;
  font-family: var(--cond);
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--on-dark-muted); font-weight: 600;
}

/* Method rows */
.method-head { max-width: 640px; margin-bottom: 8px; }
.method-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--navy);
}
.method-head p { color: var(--muted); margin: 14px 0 8px; font-size: 1.05rem; }
.method-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.method-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}
.method-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--mid);
  line-height: 1;
}
.method-row h3 { font-size: 1.45rem; color: var(--navy); margin-bottom: 8px; }
.method-row p { color: var(--muted); max-width: 62ch; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.faq-lead h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--navy);
}
.faq-lead p { color: var(--muted); margin-top: 16px; }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px;
  font-family: var(--serif); font-size: clamp(1.12rem, 2vw, 1.35rem);
  color: var(--ink);
}
.faq-ico { position: relative; flex: 0 0 16px; width: 16px; height: 16px; }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; background: var(--mid); border-radius: 1px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ico::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .faq-ico::after { transform: scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a p { color: var(--muted); margin: 0 0 22px; padding-right: 24px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--navy);
}
.contact-copy p { color: var(--muted); margin: 16px 0 22px; }
.contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--mid);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color .2s, color .2s, transform .25s var(--ease);
}
.contact-addr {
  margin-top: 18px !important;
  font-size: .95rem;
  color: var(--muted);
}
.contact-form {
  background: var(--sheet);
  border: 1px solid var(--line);
  padding: 28px;
  display: grid; gap: 16px;
  transition: box-shadow .28s var(--ease), transform .28s var(--ease);
}
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--cond);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.field input, .field textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  padding: 12px 14px;
  font: inherit; font-size: 15px;
  width: 100%; resize: vertical;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--mid);
  box-shadow: 0 0 0 3px rgba(0, 96, 154, .14);
}
.contact-form .btn { justify-self: start; }

/* Footer — dark band, near-white text */
.site-footer {
  background: var(--navy-deep);
  color: var(--on-dark);
  padding: 56px 0 32px;
}
.site-footer .brand-lock strong { color: var(--on-dark); }
.site-footer .brand-lock em { color: var(--sky-2); }
.footer-inner { display: flex; flex-direction: column; gap: 22px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-tag {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--on-dark-muted); margin: 0;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.footer-nav a {
  color: var(--on-dark-muted);
  font-family: var(--cond);
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  transition: color .2s, transform .25s var(--ease);
}
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid rgba(244, 248, 252, .16);
  color: var(--on-dark-muted); font-size: 14px;
}

/* Reveal — must sit before hover transforms */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .name-flame, .rib, .pulse-line, .wave, .node, .folio-live i { animation: none; }
}

/* Hover AFTER .reveal.in so lift is not overwritten */
@media (hover: hover) and (pointer: fine) {
  .nav a:hover { color: var(--navy); }
  .nav .nav-cta:hover {
    background: var(--mid); color: var(--on-dark);
    transform: translateY(-2px);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--mid);
    box-shadow: 0 14px 28px -12px rgba(24, 56, 104, .55);
  }
  .btn-ghost:hover {
    transform: translateY(-2px);
    background: var(--navy);
    color: var(--on-dark);
  }
  .mod:hover {
    transform: translateY(-6px);
    border-color: var(--mid);
    box-shadow: 0 18px 40px -24px rgba(16, 36, 64, .4);
  }
  .method-row:hover {
    background: var(--sheet);
    transform: translateX(6px);
    box-shadow: inset 3px 0 0 var(--sky);
  }
  .rail-list li:hover {
    background: var(--paper);
    padding-left: 8px;
    transform: translateX(4px);
  }
  .faq-q:hover { color: var(--mid); }
  .contact-email:hover { border-bottom-color: var(--mid); color: var(--navy); }
  .contact-form:hover { box-shadow: 0 18px 40px -28px rgba(16, 36, 64, .35); }
  .footer-nav a:hover { color: var(--on-dark); }
  .stat:hover { background: var(--paper); }
}

/* Tablet */
@media (max-width: 960px) {
  .front-grid, .faq-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .lead-mod { grid-column: span 12; }
  .rail-mod { grid-column: span 12; }
  .story { grid-column: span 6; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
}

/* Mobile */
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(243, 246, 248, .98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 22px;
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .nav a {
    padding: 14px 4px; font-size: 15px; border-bottom: 1px solid var(--line); color: var(--ink);
  }
  .nav .nav-cta { text-align: center; margin-top: 12px; border: 0; }

  .wrap { padding: 0 20px; }
  .front { padding: 16px 0 0; }
  .paper-sheet { padding: 14px 14px 22px; }
  .paper-sheet::before { inset: 4px; }
  .section { padding: 64px 0; }
  .quote-band { padding: 56px 0; }
  .name-flame { width: 40px; height: 50px; }
  .lead-actions .btn, .contact-form .btn { width: 100%; }
  .story, .lead-mod, .rail-mod { grid-column: span 12; }
  .mod-grid { gap: 16px; }
  .method-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .contact-form { padding: 22px 18px; }
  .footer-bottom { flex-direction: column; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 0; }
  .stat:last-child { border-bottom: 0; }
  .folio-bar {
    justify-content: center;
    text-align: center;
    row-gap: 6px;
  }
  .folio-bar span:nth-child(1),
  .folio-bar span:nth-child(4) { display: none; }
  .name-mark { gap: 8px; }
  .nameplate { padding: 16px 4px 14px; }
  .header-inner { height: 64px; }
  .nav { inset: 64px 0 auto 0; }
}

@media (max-width: 420px) {
  .section { padding: 56px 0; }
  .lead-hed { font-size: 1.85rem; }
  .lead-mod h2, .method-head h2, .faq-lead h2, .contact-copy h2 { font-size: 1.7rem; }
  .name-sub { font-size: 1rem; }
  .drop { font-size: 2.6rem; }
  .mod { padding: 20px 16px 22px; }
}
