:root {
  --blue: #005eb8;
  --blue-deep: #073763;
  --blue-soft: #eaf4ff;
  --yellow: #ffd100;
  --yellow-soft: #fff8d1;
  --white: #ffffff;
  --off-white: #f8fbfe;
  --ink: #122131;
  --muted: #526273;
  --line: #d9e3ec;
  --line-strong: #b9cad9;
  --shadow: 0 22px 60px rgba(7, 55, 99, .11);
  --radius: 18px;
  --max: 1180px;
  --reading: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p, li, dd { overflow-wrap: break-word; }
h1, h2, h3 { color: var(--blue-deep); margin: 0; font-family: inherit; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 4.4vw, 3.9rem); line-height: 1.04; letter-spacing: -.042em; font-weight: 790; }
h2 { font-size: clamp(1.7rem, 3vw, 2.65rem); line-height: 1.13; letter-spacing: -.028em; font-weight: 770; }
h3 { font-size: 1.2rem; line-height: 1.3; letter-spacing: -.01em; font-weight: 760; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; }
::selection { color: var(--ink); background: var(--yellow); }
:focus-visible { outline: 3px solid var(--blue-deep); outline-offset: 3px; box-shadow: 0 0 0 6px var(--yellow); }
.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; }
.skip-link { position: fixed; z-index: 500; top: 12px; left: 12px; transform: translateY(-180%); padding: 10px 16px; color: var(--ink); background: var(--yellow); border-radius: 8px; font-weight: 800; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }

.flag-line { position: relative; z-index: 120; display: grid; grid-template-columns: repeat(3, 1fr); height: 6px; background: var(--white); }
.flag-line span:nth-child(1) { background: var(--white); border-bottom: 1px solid var(--line); }
.flag-line span:nth-child(2) { background: var(--blue); }
.flag-line span:nth-child(3) { background: var(--yellow); }
.status-bar { padding: 8px 20px; color: var(--white); background: var(--blue-deep); text-align: center; font-size: .82rem; letter-spacing: .015em; }
.status-bar strong { display: inline-flex; align-items: center; gap: .55em; color: var(--yellow); }
.status-bar strong::before { content: ""; width: .58em; height: .58em; flex: 0 0 .58em; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 0 rgba(255, 209, 0, .55); animation: status-pulse 1.8s ease-in-out infinite; }

@keyframes status-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 209, 0, .48); }
  50% { opacity: .42; box-shadow: 0 0 0 5px rgba(255, 209, 0, 0); }
}

.site-header {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 8px max(24px, calc((100vw - var(--max)) / 2));
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { flex: 0 0 auto; display: block; text-decoration: none; }
.brand img { width: 128px; height: auto; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 2px; }
.main-nav a { padding: 10px 10px; border-radius: 8px; color: #34495e; font-size: .875rem; font-weight: 720; line-height: 1.25; text-decoration: none; white-space: nowrap; }
.main-nav a:hover { color: var(--blue-deep); background: var(--blue-soft); }
.main-nav a[aria-current="page"] { color: var(--blue-deep); box-shadow: inset 0 -3px 0 var(--yellow); }
.menu-button { display: none; width: 48px; height: 48px; padding: 11px; color: var(--blue-deep); background: var(--white); border: 1px solid var(--line-strong); border-radius: 10px; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main { min-height: 55vh; overflow: clip; }
.hero {
  position: relative;
  isolation: isolate;
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, .88fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  padding: clamp(72px, 9vw, 118px) max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(135deg, var(--white) 0 55%, var(--off-white) 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before { content: ""; position: absolute; z-index: -1; width: min(42vw, 500px); aspect-ratio: 1; right: max(-150px, calc((100vw - var(--max)) / 2 - 180px)); top: 50%; transform: translateY(-50%); border: clamp(24px, 4vw, 54px) solid var(--blue-soft); border-right-color: var(--yellow-soft); border-radius: 50%; opacity: .95; }
.hero.compact { min-height: 360px; }
.hero-copy { max-width: 800px; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .16em; line-height: 1.4; text-transform: uppercase; }
.lead { max-width: 760px; margin: 24px 0 0; color: #40566c; font-size: clamp(1.08rem, 1.75vw, 1.32rem); line-height: 1.62; }
.hero-logo { width: min(40vw, 470px); justify-self: center; filter: drop-shadow(0 24px 36px rgba(7, 55, 99, .14)); }
.hero-mark { width: min(33vw, 330px); aspect-ratio: 1; justify-self: center; position: relative; border: 30px solid var(--blue); border-right-color: var(--yellow); border-bottom-color: #d8dde2; border-radius: 50%; transform: rotate(-16deg); }
.hero-mark::after { content: ""; position: absolute; inset: 26%; background: var(--white); border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 13px rgba(255,255,255,.8); }

.section { padding: clamp(76px, 9vw, 124px) max(24px, calc((100vw - var(--max)) / 2)); }
.section.soft { background: var(--off-white); }
.section.blue { background: var(--blue-soft); }
.section.dark { color: var(--white); background: var(--blue-deep); }
.section.yellow { background: var(--yellow-soft); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark .eyebrow { color: var(--yellow); }
.section-heading { max-width: 850px; margin-bottom: clamp(36px, 5vw, 58px); }
.section-heading > p:not(.eyebrow) { max-width: var(--reading); margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }
.section.dark .section-heading > p:not(.eyebrow) { color: #dbe8f2; }
.reading { max-width: var(--reading); }
.reading p { color: var(--muted); font-size: 1.04rem; }

.status-grid { width: min(calc(100% - 48px), var(--max)); max-width: var(--max); margin: -34px auto 0; position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.status-grid div { min-height: 118px; display: grid; align-content: center; padding: 24px 28px; border-right: 1px solid var(--line); }
.status-grid div:last-child { border: 0; }
.status-grid strong { color: var(--blue-deep); font-size: 1.55rem; line-height: 1; }
.status-grid span { margin-top: 8px; color: var(--muted); font-size: .9rem; }

.duality { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-strong); }
.duality article { padding: 36px 32px 36px 0; border-bottom: 1px solid var(--line-strong); }
.duality article + article { padding-left: 40px; border-left: 1px solid var(--line-strong); }
.duality h3 { display: flex; align-items: center; gap: 12px; }
.duality h3::before { content: ""; flex: 0 0 10px; width: 10px; height: 10px; background: var(--yellow); border: 5px solid var(--blue); border-radius: 50%; }
.duality p { max-width: 510px; margin: 14px 0 0; color: var(--muted); }
.statement { max-width: 900px; margin: 30px 0 0; padding-left: 22px; border-left: 5px solid var(--yellow); color: var(--blue-deep); font-size: clamp(1.18rem, 2vw, 1.5rem); font-weight: 700; }

.process-list { padding: 0; list-style: none; counter-reset: process; border-top: 1px solid rgba(7,55,99,.23); }
.process-list li { counter-increment: process; display: grid; grid-template-columns: 76px minmax(180px, .65fr) minmax(0, 1.35fr); gap: 24px; padding: 26px 0; border-bottom: 1px solid rgba(7,55,99,.23); }
.process-list li::before { content: counter(process, decimal-leading-zero); color: var(--blue); font-size: .85rem; font-weight: 850; letter-spacing: .1em; }
.process-list strong { color: var(--blue-deep); }
.process-list span { color: #40566c; }
.section.dark .process-list { border-color: rgba(255,255,255,.22); }
.section.dark .process-list li { border-color: rgba(255,255,255,.22); }
.section.dark .process-list li::before { color: var(--yellow); }
.section.dark .process-list strong { color: var(--white); }
.section.dark .process-list span { color: #dbe8f2; }

.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: clamp(40px, 7vw, 84px); align-items: start; }
.plain-list, .check-list, .principle-list, .program-list, .legal-list { padding: 0; list-style: none; }
.plain-list li, .check-list li { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid var(--line); color: var(--muted); }
.plain-list li::before { content: "—"; position: absolute; left: 0; color: var(--yellow); font-weight: 900; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.side-note { padding: 28px 30px; background: var(--white); border: 1px solid var(--line); border-top: 6px solid var(--yellow); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); }
.side-note h3 { margin-bottom: 12px; }
.side-note p { color: var(--muted); margin: 0; }
.side-note.blue-note { border-top-color: var(--blue); }

.roles { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-strong); }
.role { padding: 30px 34px 30px 0; border-bottom: 1px solid var(--line-strong); }
.role:nth-child(even) { padding-left: 40px; border-left: 1px solid var(--line-strong); }
.role b { display: block; margin-bottom: 8px; color: var(--blue); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.role p { margin: 0; color: var(--muted); }

.principle-list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 54px; counter-reset: principles; border-top: 1px solid var(--line-strong); }
.principle-list li { counter-increment: principles; display: grid; grid-template-columns: 46px 1fr; gap: 14px; padding: 24px 0; border-bottom: 1px solid var(--line-strong); }
.principle-list li::before { content: counter(principles, decimal-leading-zero); color: var(--blue); font-size: .78rem; font-weight: 850; letter-spacing: .08em; }
.principle-list strong { color: var(--blue-deep); }
.principle-list p { margin: 7px 0 0; color: var(--muted); }

.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.22); }
.method-grid article { min-height: 190px; padding: 26px; background: var(--blue-deep); }
.method-grid b { color: var(--yellow); font-size: .76rem; letter-spacing: .12em; }
.method-grid h3 { margin: 18px 0 10px; }
.method-grid p { margin: 0; color: #dbe8f2; font-size: .92rem; }

.program-list { border-top: 1px solid var(--line-strong); }
.program-list li { display: grid; grid-template-columns: minmax(200px, .55fr) minmax(0, 1.45fr); gap: clamp(28px, 6vw, 76px); padding: 34px 0; border-bottom: 1px solid var(--line-strong); }
.program-list h3 { display: flex; gap: 12px; align-items: baseline; font-size: 1.35rem; }
.program-list h3::before { content: ""; width: 24px; height: 5px; flex: 0 0 24px; background: var(--yellow); }
.program-list p { margin: 0; color: var(--muted); }
.program-list p + p { margin-top: 10px; }
.program-list strong { color: var(--blue-deep); }

.contact-options { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(26px, 5vw, 58px); }
.contact-options a {
  width: min(100%, 280px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(var(--blue-deep), var(--blue-deep)) padding-box,
    conic-gradient(from -30deg, var(--white) 0 33.333%, var(--blue) 33.333% 66.666%, var(--yellow) 66.666% 100%) border-box;
  border: 10px solid transparent;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(7,55,99,.16);
}
.contact-options a:hover { transform: translateY(-4px) scale(1.018); box-shadow: 0 24px 48px rgba(7,55,99,.22); }
.contact-options span { color: var(--yellow); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-options strong { color: var(--white); font-size: clamp(.98rem, 2vw, 1.18rem); line-height: 1.35; overflow-wrap: anywhere; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 20px; border: 2px solid transparent; border-radius: 10px; font-weight: 800; text-decoration: none; }
.button.primary { color: var(--blue-deep); background: var(--yellow); }
.button.secondary { color: var(--blue-deep); background: var(--white); border-color: var(--blue-deep); }
.section.dark .button.secondary { color: var(--white); background: transparent; border-color: rgba(255,255,255,.65); }
.button:hover { box-shadow: 0 10px 24px rgba(7,55,99,.14); transform: translateY(-1px); }

.logo-story { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: clamp(42px, 8vw, 100px); align-items: center; }
.logo-story img { width: min(42vw, 520px); justify-self: center; filter: drop-shadow(0 20px 34px rgba(7,55,99,.12)); }
.quote { max-width: 900px; margin: 0; padding-left: 26px; border-left: 7px solid var(--yellow); color: var(--white); font-size: clamp(1.45rem, 3vw, 2.45rem); font-weight: 720; line-height: 1.4; }

.legal-shell { display: grid; grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr); gap: clamp(34px, 7vw, 90px); align-items: start; }
.legal-toc { position: sticky; top: 122px; padding-left: 18px; border-left: 4px solid var(--yellow); }
.legal-toc strong { display: block; margin-bottom: 10px; color: var(--blue-deep); }
.legal-toc a { display: block; padding: 5px 0; color: var(--muted); font-size: .9rem; text-decoration: none; }
.legal-toc a:hover { color: var(--blue); }
.legal-copy { max-width: 820px; }
.legal-copy section { padding: 0 0 34px; margin: 0 0 34px; border-bottom: 1px solid var(--line); scroll-margin-top: 130px; }
.legal-copy section:last-child { border: 0; }
.legal-copy h2 { margin-bottom: 16px; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.legal-copy h3 { margin: 24px 0 10px; }
.legal-copy p, .legal-copy li, .legal-copy dd { color: var(--muted); }
.legal-copy a { color: var(--blue); font-weight: 720; }
.legal-data { display: grid; grid-template-columns: minmax(160px, .42fr) 1fr; margin: 0; border-top: 1px solid var(--line); }
.legal-data dt, .legal-data dd { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--line); }
.legal-data dt { padding-right: 22px; color: var(--blue-deep); font-weight: 760; }
.legal-list li { padding: 8px 0 8px 24px; position: relative; }
.legal-list li::before { content: "•"; position: absolute; left: 4px; color: var(--blue); font-weight: 900; }
.pending-note { padding: 22px 24px; color: var(--ink); background: var(--yellow-soft); border-left: 6px solid var(--yellow); }
.pending-note strong { color: var(--blue-deep); }
.note-box { max-width: 900px; padding: 26px 30px; background: var(--white); border: 1px solid var(--line); border-left: 6px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow); }
.note-box h3 { margin-bottom: 10px; }
.note-box p { margin: 0; color: var(--muted); }
.note-box p + p { margin-top: 10px; }
.section.dark .note-box { color: var(--ink); }
.duality a { text-decoration: none; }
.duality a:hover h3 { color: var(--blue); }
.revision { margin-top: 34px; color: var(--muted); font-size: .9rem; }

.site-footer { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(180px, .7fr) minmax(160px, .6fr); gap: clamp(34px, 6vw, 78px); padding: 68px max(24px, calc((100vw - var(--max)) / 2)) 28px; color: #dbe8f2; background: #052541; border-top: 7px solid var(--yellow); }
.footer-intro { display: grid; grid-template-columns: 84px 1fr; gap: 20px; align-items: start; }
.footer-intro img { width: 84px; height: auto; }
.footer-intro strong { color: var(--white); font-size: 1.3rem; }
.footer-intro p { max-width: 480px; margin: 8px 0 0; color: #b9ccdc; }
.footer-column h2 { margin: 0 0 16px; color: var(--yellow); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: 9px 0; color: #dbe8f2; text-decoration: none; }
.footer-column a:hover { color: var(--yellow); }
.footer-bottom { grid-column: 1 / -1; margin: 10px 0 0; padding-top: 24px; color: #9fb6c9; border-top: 1px solid rgba(255,255,255,.18); font-size: .83rem; }

@media (max-width: 1080px) {
  .site-header { min-height: 84px; }
  .menu-button { display: block; }
  .main-nav { width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 14px max(24px, calc((100vw - var(--max)) / 2)) 20px; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .js .main-nav { display: none; }
  .js .main-nav.is-open { display: grid; }
  .main-nav a { white-space: normal; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .status-bar { font-size: .74rem; }
  .brand img { width: 104px; }
  .hero, .hero.compact { min-height: auto; grid-template-columns: 1fr; padding-top: 66px; padding-bottom: 78px; }
  .hero::before { width: 430px; right: -280px; top: 35%; }
  .hero-logo { width: min(82vw, 390px); }
  .hero-mark { display: none; }
  .status-grid { width: calc(100% - 40px); grid-template-columns: 1fr; }
  .status-grid div { min-height: 98px; border-right: 0; border-bottom: 1px solid var(--line); }
  .duality, .roles, .principle-list, .split, .logo-story, .contact-options, .legal-shell { grid-template-columns: 1fr; }
  .duality article + article, .role:nth-child(even) { padding-left: 0; border-left: 0; }
  .legal-toc { position: static; }
  .program-list li { grid-template-columns: 1fr; gap: 14px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-intro, .footer-bottom { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .site-header { padding-left: 16px; padding-right: 16px; }
  .main-nav { grid-template-columns: 1fr; padding-left: 16px; padding-right: 16px; }
  .section, .hero { padding-left: 20px; padding-right: 20px; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 12px; }
  .process-list li span { grid-column: 2; }
  .method-grid { grid-template-columns: 1fr; }
  .legal-data { grid-template-columns: 1fr; }
  .legal-data dt { padding-bottom: 0; border-bottom: 0; }
  .contact-options strong { font-size: .94rem; }
  .site-footer { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .footer-intro, .footer-bottom { grid-column: auto; }
  .cta-row .button { width: 100%; }
}

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

/* Ajustes Espira Viva */
.side-note .process-list { border-top-color: var(--line-strong); }
.side-note .process-list li { grid-template-columns: 44px 1fr; gap: 6px 12px; padding: 16px 0; border-color: var(--line); }
.side-note .process-list li span { grid-column: 2; }
.side-note .process-list li::before { padding-top: 3px; }
.method-grid h3 { font-size: 1.02rem; color: var(--white); }
.section.dark .note-box h3 { color: var(--blue-deep); }
.threshold-list li { grid-template-columns: 76px minmax(200px, .5fr) minmax(0, 1.5fr); }
.threshold-list li::before { content: ""; width: 14px; height: 14px; margin-top: 7px; background: var(--yellow); border-radius: 50%; }
.section.dark .statement { color: var(--white); }
.stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stage-grid article { padding: 28px 30px; background: var(--white); border: 1px solid var(--line); border-top: 6px solid var(--blue); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); }
.stage-grid article:nth-child(2) { border-top-color: var(--yellow); }
.stage-grid article:nth-child(3) { border-top-color: #b9c4cf; }
.stage-grid b { display: block; margin-bottom: 8px; color: var(--blue); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.stage-grid h3 { font-size: 1.08rem; margin-bottom: 14px; }
.stage-grid ol { padding: 0; list-style: none; counter-reset: none; }
.stage-grid ol li { position: relative; padding: 9px 0 9px 40px; color: var(--muted); border-top: 1px solid var(--line); }
.stage-grid ol li::before { content: attr(data-n); position: absolute; left: 0; color: var(--blue); font-size: .78rem; font-weight: 850; letter-spacing: .08em; top: 11px; }
.program-list .tag { display: inline-block; margin: 10px 0 0 36px; padding: 3px 10px; color: var(--blue-deep); background: var(--yellow); border-radius: 999px; font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; vertical-align: middle; }
.program-list > li > div p + p { margin-top: 10px; }
@media (max-width: 780px) { .stage-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .threshold-list li { grid-template-columns: 30px 1fr; } .threshold-list li span { grid-column: 2; } }
.side-note .plain-list li { color: var(--muted); }
.side-note .plain-list li:last-child { border-bottom: 0; }
.section.dark .section-heading > p:not(.eyebrow) { max-width: var(--reading); }
.contact-options a { width: min(100%, 320px); padding: 34px; }
.contact-options strong { font-size: 1.02rem; overflow-wrap: normal; word-break: keep-all; }
