/* Ironcliff Solutions
   One stylesheet, append-layered. Never refactored mid-build; late changes
   go on the end. Cache key is the ?v= integer in Layout.astro, bumped by hand.

   Motion numbers come from the vault service-site-redesign-sop:
   hover 120-180ms, state change 200-260ms, entrance 400-500ms,
   reveal travel 8-16px, stagger caps at 4 items 60-80ms apart. */

/* ---------- 1. Font ---------- */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- 2. Tokens ---------- */

:root {
  --navy-950: #080d18;
  --navy-900: #0c1526;
  --navy-800: #111c33;
  --navy-700: #1a2740;
  --ink: #0c1526;
  --body: #55617a;
  --muted: #8590a8;
  --line: #e6e9f0;
  --wash: #f6f8fb;
  --slate-300: #a9b4cc;
  --accent-300: #8fb0e8;
  --accent: #3d72e8;
  --accent-600: #2f5fd6;

  --shell: 1180px;
  --gutter: 6vw;

  --enter: cubic-bezier(0.2, 0, 0, 1);
  --state: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 3. Reset and base ---------- */

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

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- 4. Shell ---------- */

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

.section {
  padding-block: 96px;
}

.section--wash {
  background: var(--wash);
}

.section--dark {
  background: var(--navy-950);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section--dark .eyebrow {
  color: var(--accent-300);
}

.h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.lede {
  margin-top: 16px;
  color: var(--body);
  font-size: 17px;
}

.section--dark .lede {
  color: var(--slate-300);
}

.center {
  text-align: center;
}

.center .lede {
  max-width: 620px;
  margin-inline: auto;
}

/* ---------- 5. Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px 14px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition:
    background-color 160ms var(--state),
    transform 120ms var(--state),
    box-shadow 160ms var(--state);
}

.btn__dot {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  transition: transform 200ms var(--state);
}

.btn:hover .btn__dot {
  transform: translateX(3px);
}

.btn:active {
  transform: scale(0.98);
}

.btn--light {
  background: #fff;
  color: var(--navy-950);
  box-shadow: 0 1px 2px rgb(8 13 24 / 0.16);
}

.btn--light:hover {
  box-shadow: 0 8px 24px rgb(8 13 24 / 0.22);
}

.btn--dark {
  background: var(--navy-950);
  color: #fff;
}

.btn--dark:hover {
  background: var(--navy-900);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: color 160ms var(--state);
}

.link-arrow svg {
  transition: transform 200ms var(--state);
}

.link-arrow:hover {
  color: var(--accent-600);
}

.link-arrow:hover svg {
  transform: translateX(3px);
}

/* ---------- 6. Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(8 13 24 / 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(255 255 255 / 0.09);
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: height 220ms var(--state);
}

.header.is-stuck .header__bar {
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.brand svg {
  width: 34px;
  height: 34px;
  transition: width 220ms var(--state), height 220ms var(--state);
}

.header.is-stuck .brand svg {
  width: 28px;
  height: 28px;
}

.brand__word {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand__word span {
  font-weight: 400;
  color: var(--accent-300);
}

.nav {
  display: none;
  gap: 34px;
}

.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-300);
  transition: color 160ms var(--state);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--state);
}

.nav a:hover,
.nav a[aria-current='page'] {
  color: #fff;
}

.nav a:hover::after,
.nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.header__tel {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 160ms var(--state);
}

.header__tel:hover {
  background: rgb(255 255 255 / 0.17);
}

.burger {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  color: #fff;
}

.drawer {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 20px;
  border-top: 1px solid rgb(255 255 255 / 0.09);
}

.drawer.is-open {
  display: flex;
}

.drawer a {
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-300);
}

.drawer a:hover {
  color: #fff;
}

.drawer__tel {
  color: var(--accent-300) !important;
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav,
  .header__tel {
    display: flex;
  }

  .burger,
  .drawer {
    display: none !important;
  }
}

/* ---------- 7. Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.hero__glow {
  position: absolute;
  top: -180px;
  left: -160px;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: rgb(61 114 232 / 0.22);
  filter: blur(90px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 48px;
  padding-block: 84px 96px;
}

.hero__title {
  font-size: clamp(40px, 6.2vw, 68px);
}

.hero__lede {
  max-width: 460px;
  margin-top: 24px;
  color: var(--slate-300);
  font-size: 18px;
}

.hero .btn {
  margin-top: 34px;
}

.hero__figure {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgb(0 0 0 / 0.7);
  outline: 1px solid rgb(255 255 255 / 0.1);
  outline-offset: -1px;
}

.hero__figure img {
  width: 100%;
  aspect-ratio: 589 / 726;
  object-fit: cover;
}

.scroll-cue {
  display: none;
  position: absolute;
  left: 22px;
  bottom: 88px;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate-300);
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, var(--accent-300), transparent);
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding-block: 104px 120px;
  }

  .scroll-cue {
    display: flex;
  }
}

@media (min-width: 1150px) {
  .hero__grid {
    grid-template-columns: 1.02fr 1fr;
  }
}

/* ---------- 8. Cards ---------- */

.grid {
  display: grid;
  gap: 22px;
  margin-top: 56px;
}

@media (min-width: 640px) {
  .grid--4,
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 30px 26px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition:
    transform 220ms var(--state),
    box-shadow 220ms var(--state),
    border-color 220ms var(--state);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgb(61 114 232 / 0.3);
  box-shadow: 0 18px 40px -22px rgb(12 21 38 / 0.4);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgb(61 114 232 / 0.1);
  color: var(--accent);
}

.card__title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}

.card__copy {
  margin-top: 10px;
  color: var(--body);
  font-size: 15px;
}

/* Service cards carry a photo, so the padding moves inside. */
.service {
  overflow: hidden;
  padding: 0;
}

.service__media {
  position: relative;
  overflow: hidden;
}

.service__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 400ms var(--enter);
}

.service:hover .service__media img {
  transform: scale(1.04);
}

.service__num {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgb(8 13 24 / 0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.service__body {
  padding: 26px 26px 30px;
}

/* ---------- 9. Split sections ---------- */

.split {
  display: grid;
  gap: 44px;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .split--flip .split__media {
    order: 2;
  }
}

.split__media {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgb(12 21 38 / 0.5);
}

.split__media img {
  width: 100%;
  object-fit: cover;
}

.split p + p {
  margin-top: 16px;
}

.ticks {
  margin-top: 26px;
  display: grid;
  gap: 11px;
}

.ticks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.ticks svg {
  flex: none;
  color: var(--accent);
}

/* ---------- 10. Stat and review panels ---------- */

.panels {
  display: grid;
  gap: 22px;
}

@media (min-width: 560px) {
  .panels {
    grid-template-columns: 1fr 1fr;
  }
}

.panel {
  padding: 30px 26px;
  border-radius: 18px;
}

.panel--dark {
  background: var(--navy-950);
  color: #fff;
}

.panel--light {
  border: 1px solid var(--line);
  background: #fff;
}

.stat {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.panel--dark .stat__label {
  margin-top: 10px;
  color: var(--slate-300);
  font-size: 14px;
}

.faces {
  display: flex;
}

.faces img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 2px #fff;
}

.faces img + img {
  margin-left: -10px;
}

.stars {
  display: flex;
  gap: 2px;
  margin-top: 16px;
  color: var(--accent);
}

.rating {
  margin-top: 12px;
  font-size: 26px;
  font-weight: 700;
}

.rating__label {
  margin-top: 4px;
  color: var(--body);
  font-size: 14px;
}

/* ---------- 11. Quote and metrics ---------- */

.quote {
  margin-top: 18px;
  color: var(--body);
  font-style: italic;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.metric__value {
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.metric__label {
  margin-top: 5px;
  color: var(--body);
  font-size: 14px;
}

/* ---------- 12. Skill bars ---------- */

.bars {
  display: grid;
  gap: 24px;
  max-width: 640px;
  margin: 44px auto 0;
}

.bar__head {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

.bar__head span:last-child {
  color: var(--accent);
}

.bar__track {
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e2e7f0;
  overflow: hidden;
}

.bar__fill {
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--enter);
}

.is-revealed .bar__fill {
  transform: scaleX(var(--pct));
}

/* ---------- 13. Contact cards ---------- */

.contact-card {
  display: block;
  padding: 38px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  transition:
    transform 220ms var(--state),
    box-shadow 220ms var(--state),
    border-color 220ms var(--state);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgb(61 114 232 / 0.3);
  box-shadow: 0 18px 40px -22px rgb(12 21 38 / 0.4);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgb(61 114 232 / 0.1);
  color: var(--accent);
}

.contact-card__label {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card__value {
  margin-top: 8px;
  font-weight: 600;
}

/* ---------- 14. Page hero ---------- */

.page-hero {
  background: var(--navy-950);
  color: #fff;
  text-align: center;
  padding-block: 88px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
}

/* ---------- 15. CTA band ---------- */

.cta {
  text-align: center;
  padding-block: 84px;
}

.cta h2 {
  margin-top: 4px;
  font-size: clamp(30px, 4vw, 44px);
}

.cta .btn {
  margin-top: 28px;
}

/* ---------- 16. Footer ---------- */

.footer {
  background: var(--navy-950);
  color: var(--slate-300);
}

.footer__grid {
  display: grid;
  gap: 40px;
  padding-block: 68px;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer__blurb {
  max-width: 300px;
  margin-top: 18px;
  font-size: 15px;
}

.footer__head {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.footer__body {
  margin-top: 14px;
  font-size: 15px;
}

.footer__links {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  font-size: 15px;
}

.footer__links a,
.footer__tel {
  transition: color 160ms var(--state);
}

.footer__links a:hover {
  color: #fff;
}

.footer__tel {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-300);
  font-weight: 600;
}

.footer__tel:hover {
  color: #fff;
}

.footer__base {
  border-top: 1px solid rgb(255 255 255 / 0.09);
}

.footer__base .shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-block: 22px;
  font-size: 13px;
}

@media (min-width: 640px) {
  .footer__base .shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__legal {
  display: flex;
  gap: 20px;
}

/* ---------- 17. Reveal on scroll ----------
   One-shot: the observer unobserves on first fire, so nothing re-animates
   on scroll-back. Travel is 14px, inside the 8-16px band. */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 440ms var(--enter),
    transform 440ms var(--enter);
}

.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.reveal[data-delay='1'] {
  transition-delay: 70ms;
}

.reveal[data-delay='2'] {
  transition-delay: 140ms;
}

.reveal[data-delay='3'] {
  transition-delay: 210ms;
}

/* ---------- 18. Reduced motion ----------
   Transforms go, opacity stays. */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transform: none;
    transition-duration: 1ms;
    transition-delay: 0ms;
  }

  .bar__fill {
    transition-duration: 1ms;
  }

  .card:hover,
  .contact-card:hover,
  .service:hover .service__media img,
  .btn:active {
    transform: none;
  }

  .header__bar,
  .brand svg {
    transition-duration: 1ms;
  }
}

/* ---------- 19. Not found ---------- */

.notfound {
  padding-block: 120px;
  text-align: center;
}

.notfound__code {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.notfound__routes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.notfound__routes a {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 160ms var(--state), color 160ms var(--state);
}

.notfound__routes a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- 20. Numbered step cards (contact) ----------
   Appended, not folded into .card__icon, because the stylesheet is
   append-only once the build is running. */

.card__icon--num {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
}

/* ---------- 21. Insights: hub and article prose ----------
   Appended per the append-only rule. Bump CSS_VERSION in Layout.astro. */

.article {
  padding-block: 72px 96px;
}

.article__shell {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 24px;
}

.article__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.article h1 {
  margin-top: 18px;
  font-size: clamp(31px, 4.4vw, 44px);
}

.article__meta {
  margin-top: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.article__lede {
  margin-top: 30px;
  font-size: 19px;
  line-height: 1.62;
  color: var(--ink);
}

.article h2 {
  margin-top: 44px;
  font-size: clamp(21px, 2.5vw, 26px);
}

.article p,
.article ul,
.article ol {
  margin-top: 17px;
  color: var(--body);
}

.article ol {
  padding-left: 21px;
  list-style: decimal;
}

.article ol li,
.article ul li {
  margin-top: 9px;
  padding-left: 4px;
}

.article ul {
  padding-left: 0;
}

.article ul li {
  position: relative;
  padding-left: 20px;
}

.article ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.article a:not(.btn):not(.link-arrow) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 160ms var(--state);
}

.article a:not(.btn):not(.link-arrow):hover {
  color: var(--accent-600);
}

.article strong {
  color: var(--ink);
  font-weight: 600;
}

.article__fit {
  margin-top: 40px;
  padding: 26px;
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: var(--wash);
}

.article__fit p {
  margin-top: 0;
}

.article__fit p + p {
  margin-top: 13px;
}

.article__end {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.article__end .footer__head {
  color: var(--ink);
}

.article__next {
  display: grid;
  gap: 11px;
  margin-top: 14px;
  font-size: 15px;
}

.article__next a {
  color: var(--accent);
  font-weight: 500;
}

/* Insights hub */

.hub__grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 800px) {
  .hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hub__card {
  display: block;
  padding: 30px 28px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    transform 220ms var(--state),
    box-shadow 220ms var(--state),
    border-color 220ms var(--state);
}

.hub__card:hover {
  transform: translateY(-4px);
  border-color: rgb(61 114 232 / 0.3);
  box-shadow: 0 18px 40px -22px rgb(12 21 38 / 0.4);
}

.hub__card h2 {
  margin-top: 12px;
  font-size: 21px;
}

.hub__card p {
  margin-top: 11px;
  color: var(--body);
  font-size: 15px;
}

/* ---------- 22. Insights band on the homepage ---------- */

.insights-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 720px) {
  .insights-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.insights-head .link-arrow {
  flex: none;
}

/* Cards in this band are links, so the arrow inherits the card hover. */
a.card .link-arrow {
  margin-top: 18px;
}

a.card:hover .link-arrow svg {
  transform: translateX(3px);
}

/* ---------- 23. Article title rule ----------
   The divider under the title used to live on the date line. The date came
   out, so the rule moves onto the heading itself. */

.article h1 {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

/* ---------- 24. Footer email ----------
   Plain text, not a mailto, and carrying a space before the @ so a harvester
   scraping for an address pattern does not match it. */

.footer__email {
  margin-top: 16px;
  font-size: 15px;
}
