:root {
  --bg: #ffffff;
  --ink: #18222f;
  --muted: #5e6977;
  --soft: #f4f8f7;
  --soft-2: #eef5f4;
  --line: #dce8e6;
  --teal: #0f766e;
  --teal-dark: #0b5f59;
  --burgundy: #9f1239;
  --burgundy-dark: #7f0e2d;
  --shadow: 0 24px 80px rgba(16, 34, 46, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 232, 230, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-condensed {
  box-shadow: 0 12px 28px rgba(16, 34, 46, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 50%;
  background: #f7fbfa;
  color: var(--teal);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.3vw, 30px);
  color: #2b3642;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding-block: 26px;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: var(--radius);
  background: var(--burgundy);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0 18px;
  box-shadow: 0 12px 28px rgba(159, 18, 57, 0.18);
}

.header-call svg,
.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 10px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 42%, rgba(15, 118, 110, 0.08), transparent 34rem),
    radial-gradient(circle at 91% 12%, rgba(159, 18, 57, 0.045), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdfd 58%, #f6fbfa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: min(860px, calc(100vh - 76px));
  padding-block: 54px 44px;
}

.hero-copy {
  max-width: 650px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  line-height: 0.98;
  font-weight: 800;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: clamp(1.28rem, 2.4vw, 2rem);
  font-weight: 750;
  line-height: 1.25;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-size: 0.95rem;
  font-weight: 800;
}

.button-primary {
  background: var(--burgundy);
  color: white;
  box-shadow: 0 14px 30px rgba(159, 18, 57, 0.2);
}

.button-primary:hover {
  background: var(--burgundy-dark);
}

.button-secondary {
  border-color: rgba(15, 118, 110, 0.35);
  background: white;
  color: var(--teal-dark);
}

.button-secondary:hover {
  border-color: var(--teal);
  background: var(--soft);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
}

.hero-facts div {
  border-left: 2px solid var(--teal);
  padding-left: 14px;
}

.hero-facts strong {
  display: block;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1.1;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  display: grid;
  align-self: stretch;
  place-items: end center;
  min-height: 520px;
}

.hero-media::before {
  position: absolute;
  width: min(92%, 540px);
  height: min(68%, 470px);
  right: 0;
  bottom: 48px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(231, 242, 240, 0.72));
  box-shadow: 0 34px 90px rgba(16, 34, 46, 0.08);
  content: "";
}

.hero-media::after {
  position: absolute;
  width: 310px;
  height: 310px;
  right: 10%;
  bottom: 18%;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.09);
  content: "";
}

.portrait-frame {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(92%, 490px);
  aspect-ratio: 1 / 1;
  align-self: end;
  place-items: end center;
  border-bottom: 1px solid rgba(15, 118, 110, 0.24);
}

.portrait-frame img {
  width: min(100%, 470px);
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(18, 34, 45, 0.18));
}

.hero-note {
  position: absolute;
  right: min(3vw, 24px);
  bottom: 46px;
  z-index: 3;
  max-width: 300px;
  border: 1px solid rgba(220, 232, 230, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  margin-bottom: 4px;
  line-height: 1.28;
}

.hero-note span {
  color: var(--teal-dark);
  font-weight: 750;
}

.section {
  padding-block: clamp(68px, 9vw, 116px);
  scroll-margin-top: 92px;
}

.section-label {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.text-stack {
  color: var(--muted);
  font-size: 1.04rem;
}

.text-stack p:last-child {
  margin-bottom: 0;
}

.intro-section {
  background: white;
}

.focus-section {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-label) {
  color: var(--muted);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.focus-card {
  min-height: 248px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.focus-card:hover {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: 0 22px 50px rgba(16, 34, 46, 0.08);
  transform: translateY(-3px);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--soft-2);
  color: var(--teal);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.focus-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.focus-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.path-section {
  background: white;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.timeline article {
  min-height: 245px;
  background: white;
  padding: 26px;
}

.timeline time {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 42px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.timeline h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.media-section {
  background: var(--ink);
  color: white;
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.media-section .section-label {
  color: #8dd9d1;
}

.media-section h2 {
  color: white;
}

.media-section .section-heading p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.publication-list {
  display: grid;
  gap: 14px;
}

.publication-card {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  grid-template-areas:
    "visual source"
    "visual title"
    "visual summary"
    "visual link";
  column-gap: 22px;
  min-height: 188px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.publication-card-featured {
  border-color: rgba(141, 217, 209, 0.42);
  background: rgba(141, 217, 209, 0.11);
}

.publication-card:hover,
.publication-card:focus-visible {
  border-color: rgba(141, 217, 209, 0.65);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.publication-logo {
  grid-area: visual;
  display: grid;
  width: 142px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(141, 217, 209, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.publication-logo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.publication-card span {
  grid-area: source;
  display: block;
  margin-bottom: 8px;
  color: #8dd9d1;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.publication-card h3 {
  grid-area: title;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.publication-card p {
  grid-area: summary;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.publication-card .publication-link {
  grid-area: link;
  margin-top: auto;
  padding-top: 18px;
  color: white;
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: none;
}

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

figcaption {
  min-height: 78px;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 16px 18px 18px;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08), rgba(159, 18, 57, 0.06)),
    white;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  padding: clamp(26px, 5vw, 52px);
  box-shadow: 0 24px 80px rgba(16, 34, 46, 0.08);
}

.contact-panel h2 {
  margin-bottom: 14px;
}

.contact-panel p:not(.section-label) {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.phone-card,
.email-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 20px;
}

.phone-card span,
.email-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-card strong,
.email-card strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.email-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.09), rgba(159, 18, 57, 0.06)),
    white;
  padding-block: clamp(70px, 8vw, 108px);
}

.blog-hero-grid {
  display: block;
  max-width: 900px;
  text-align: center;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.blog-hero h1,
.post-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
}

.blog-hero p,
.post-hero p {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.blog-section {
  padding-block: clamp(64px, 8vw, 106px);
  background: var(--soft);
}

.blog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.blog-toolbar p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card > :not(.blog-card-image) {
  margin-right: 28px;
  margin-left: 28px;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  object-fit: cover;
  object-position: center;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.blog-card .meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.06;
}

.blog-card p {
  color: var(--muted);
}

.blog-card .read-more {
  margin-top: auto;
  margin-bottom: 28px;
  color: var(--burgundy);
  font-weight: 850;
}

.post-hero {
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08), rgba(159, 18, 57, 0.05)),
    white;
  padding-block: clamp(68px, 8vw, 110px);
}

.post-cover {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(16, 34, 46, 0.12);
}

.post-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-block: clamp(54px, 7vw, 92px);
}

.post-article {
  max-width: 780px;
}

.post-article h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.post-article h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.post-article p,
.post-article li {
  color: var(--muted);
  font-size: 1.05rem;
}

.post-article a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-article a.button {
  text-decoration: none;
}

.post-article a.button-primary {
  color: white;
}

.post-article a.button-secondary {
  color: var(--teal-dark);
}

.post-article ul,
.post-article ol {
  padding-left: 22px;
}

.answer-box,
.post-cta,
.post-sidebar-card {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 46px rgba(16, 34, 46, 0.08);
}

.answer-box {
  margin-block: 30px;
  padding: 24px;
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.post-cta {
  margin-top: 42px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08), rgba(159, 18, 57, 0.05)),
    white;
}

.post-cta h2 {
  margin-top: 0;
}

.post-cta .button {
  display: inline-flex;
  margin-top: 12px;
}

.post-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}

.post-sidebar-card {
  padding: 22px;
}

.post-sidebar-card h2,
.post-sidebar-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.post-sidebar-card a {
  color: var(--teal-dark);
  font-weight: 850;
}

.reference-list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 850;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: white;
  color: var(--muted);
  padding-block: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.46);
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.contact-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-panel {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08), rgba(159, 18, 57, 0.06)),
    white;
  padding: clamp(26px, 5vw, 42px);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.26);
}

.contact-modal-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.contact-modal-actions {
  display: grid;
  gap: 12px;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
}

.contact-modal-close span {
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.contact-modal-close span:first-child {
  transform: rotate(45deg);
}

.contact-modal-close span:last-child {
  transform: rotate(-45deg);
}

.footer-grid strong {
  display: block;
  color: var(--ink);
}

.footer-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .menu-button {
    display: block;
    order: 3;
  }

  .nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    padding: 8px;
  }

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

  .nav a {
    padding: 13px 12px;
  }

  .nav a::after {
    display: none;
  }

  .header-call {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero {
    background: white;
  }

  .hero-media {
    min-height: 470px;
    order: -1;
  }

  .hero-copy {
    max-width: none;
  }

  .focus-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-layout,
  .contact-panel,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .post-sidebar {
    position: static;
  }
}

@media (max-width: 840px) {
  .hero {
    background:
      linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f6fbfa 100%);
  }

  .hero-grid {
    width: min(100% - 32px, 720px);
    gap: 24px;
    justify-items: center;
    padding-block: 28px 52px;
    text-align: center;
  }

  .hero-copy {
    display: grid;
    width: 100%;
    justify-items: center;
  }

  .hero-media {
    width: 100%;
    min-height: 320px;
    place-items: center;
  }

  .hero-media::before {
    width: min(92%, 500px);
    height: 180px;
    right: auto;
    bottom: 28px;
    left: 50%;
    border-radius: var(--radius);
    transform: translateX(-50%);
  }

  .hero-media::after {
    width: 230px;
    height: 230px;
    right: auto;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
  }

  .portrait-frame {
    width: min(62vw, 320px);
    border-bottom: 0;
  }

  .portrait-frame img {
    width: min(100%, 310px);
  }

  .hero-note {
    display: none;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(2.9rem, 8.4vw, 4.2rem);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 650px;
    margin-inline: auto;
    font-size: clamp(1.18rem, 3.2vw, 1.55rem);
  }

  .hero-text,
  .hero-facts {
    display: none;
  }

  .hero-actions {
    width: min(100%, 520px);
    flex-direction: column;
    margin-inline: auto;
    margin-bottom: 0;
  }

  .hero-actions .button {
    width: 100%;
  }

  .publication-card {
    grid-template-columns: 74px minmax(0, 1fr);
    grid-template-areas:
      "visual source"
      "visual title"
      "summary summary"
      "link link";
    column-gap: 16px;
    align-items: start;
  }

  .publication-logo {
    width: 74px;
  }

  .split,
  .focus-grid,
  .timeline,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .intro-section .split > div:first-child,
  .blog-toolbar,
  .blog-hero,
  .post-hero,
  .contact-panel {
    text-align: center;
  }

  .section-heading,
  .blog-toolbar p,
  .intro-section .split,
  .focus-grid,
  .timeline,
  .blog-card-grid,
  .contact-actions {
    max-width: 640px;
    margin-inline: auto;
  }

  .section-heading p:not(.section-label),
  .contact-panel p:not(.section-label),
  .blog-hero p,
  .post-hero p {
    margin-inline: auto;
  }

  .text-stack,
  .focus-card,
  .timeline article,
  .blog-card,
  .post-article,
  .post-sidebar-card {
    text-align: left;
  }

  .focus-card,
  .timeline article {
    min-height: auto;
  }

  .timeline time {
    margin-bottom: 18px;
  }

  .media-layout,
  .post-layout {
    max-width: 760px;
    margin-inline: auto;
  }

  .sticky-heading {
    text-align: center;
  }

  .sticky-heading p:not(.section-label) {
    margin-inline: auto;
  }

  .phone-card {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .section {
    scroll-margin-top: 112px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-call {
    width: 44px;
    padding: 0;
    border-radius: 50%;
  }

  .header-call span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .hero-grid {
    gap: 22px;
    padding-block: 20px 44px;
  }

  .hero-media {
    min-height: 260px;
  }

  .hero-media::before {
    width: min(100%, 360px);
    height: 142px;
    right: auto;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-media::after {
    width: 190px;
    height: 190px;
    right: auto;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
  }

  .portrait-frame {
    width: min(58vw, 230px);
  }

  .hero-note {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 9.4vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-lead {
    max-width: 430px;
    font-size: 1.06rem;
  }

  .hero-text {
    display: none;
  }

  .hero-actions {
    margin-bottom: 20px;
  }

  .hero-facts {
    display: none;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .split,
  .focus-grid,
  .timeline,
  .blog-card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-toolbar {
    display: block;
  }

  .blog-card,
  .answer-box,
  .post-cta,
  .post-sidebar-card {
    padding: 22px;
  }

  .blog-hero h1,
  .post-hero h1 {
    font-size: clamp(2.15rem, 9vw, 2.85rem);
    line-height: 1.04;
  }

  .timeline article {
    min-height: auto;
  }

  .timeline time {
    margin-bottom: 18px;
  }

  .button {
    width: 100%;
  }
}

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