:root {
  --ink: #111113;
  --ink-soft: #2e2e32;
  --muted: #6d6a6e;
  --mauve: #af9cad;
  --mauve-dark: #8e778a;
  --mauve-soft: #f2eef1;
  --action: #775f73;
  --action-hover: #654e61;
  --white: #ffffff;
  --line: #dedadd;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Raleway", Arial, sans-serif;
  --page-padding: clamp(24px, 4.6vw, 80px);
  --content-width: 1440px;
  --header-height: 92px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 58px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--mauve-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  width: min(100%, var(--content-width));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 42px);
}

.brand {
  flex: 0 0 clamp(178px, 15vw, 226px);
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 1.6vw, 30px);
  margin-left: auto;
  white-space: nowrap;
}

.main-nav a,
.nav-expertise summary,
.phone-link {
  position: relative;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-expertise {
  position: static;
}

.nav-expertise summary {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
}

.nav-expertise summary::-webkit-details-marker {
  display: none;
}

.nav-expertise summary::after {
  content: "+";
  color: var(--mauve-dark);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-expertise[open] summary::after {
  transform: rotate(45deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: var(--page-padding);
  left: var(--page-padding);
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 52px);
  padding: 34px clamp(28px, 4vw, 58px) 40px;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(17, 17, 19, 0.11);
  white-space: normal;
}

.mega-menu > div:not(.mega-intro) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mega-menu a {
  display: block;
  padding: 4px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.mega-menu a::after {
  display: none;
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  color: var(--action);
}

.mega-menu .mega-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.05;
}

.mega-intro {
  padding-right: clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.mega-intro span,
.eyebrow {
  color: var(--mauve-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-intro p {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--mauve-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-separator {
  width: 1px;
  height: 38px;
  background: var(--line);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.menu-toggle svg,
.scroll-cue svg,
.text-link svg,
.dialog-header svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 26px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary {
  background: var(--action);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--action-hover);
}

.button-outline {
  border-color: var(--mauve);
  color: var(--mauve-dark);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--mauve-soft);
}

.button-compact {
  min-height: 46px;
  padding: 12px 20px;
  white-space: nowrap;
  font-size: 13px;
}

.hero {
  position: relative;
  width: min(100%, var(--content-width));
  min-height: min(760px, calc(100vh - var(--header-height)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
}

.hero-copy,
.procedure-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: clamp(36px, 4vw, 68px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(30px, 4vw, 66px) clamp(64px, 8vw, 108px)
    var(--page-padding);
}

.hero-copy > div,
.procedure-hero-copy > div {
  min-width: 0;
}

.signature-rule {
  width: 3px;
  height: 86%;
  min-height: 320px;
  background: var(--mauve);
}

.hero h1,
.procedure-hero h1 {
  margin: 0 0 30px;
  font-family: var(--display);
  font-size: clamp(68px, 6.8vw, 108px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.79;
  text-transform: uppercase;
}

.hero-intro,
.procedure-hero-copy > div > p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.8;
}

.hero blockquote,
.approach blockquote {
  margin: 30px 0 36px;
  color: var(--mauve-dark);
  font-family: var(--display);
  font-size: clamp(28px, 2.3vw, 38px);
  font-style: italic;
  line-height: 1.2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-portrait {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--white);
}

.hero-portrait img {
  width: 118%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: var(--page-padding);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 18px;
}

.section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(84px, 9vw, 140px) var(--page-padding);
}

.section-heading h2,
.consultation-band h2,
.article-section h2,
.article-aside h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 4.3vw, 72px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-transform: uppercase;
}

.accent-line {
  display: block;
  width: 58px;
  height: 2px;
  margin: 24px 0 26px;
  background: var(--mauve);
}

.section-heading > p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 19px);
}

/* Expertise atlas */

.expertise-atlas {
  border-top: 1px solid var(--line);
  background: #faf8f9;
}

.atlas-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(48px, 9vw, 150px);
  margin-bottom: clamp(52px, 6vw, 88px);
}

.atlas-heading .eyebrow {
  margin: 0 0 18px;
}

.atlas-heading h2,
.universe-intro h2,
.cross-universes h2,
.news-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 5.2vw, 84px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.atlas-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--white);
  border: 1px solid var(--line);
}

.expertise-card {
  position: relative;
  min-height: clamp(430px, 45vw, 610px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.expertise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 17, 19, 0.06) 20%, rgba(17, 17, 19, 0.86) 100%);
}

.expertise-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.expertise-card:nth-child(2) img,
.expertise-card:nth-child(4) img {
  object-position: center 28%;
}

.expertise-card:hover img,
.expertise-card:focus-visible img {
  transform: scale(1.035);
  filter: grayscale(0.45) contrast(1.02);
}

.expertise-index {
  position: absolute;
  top: 30px;
  right: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--display);
  font-size: 30px;
}

.expertise-card-copy {
  position: absolute;
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(30px, 4.6vw, 64px);
  left: clamp(28px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.expertise-card-copy small {
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.expertise-card-copy strong {
  font-family: var(--display);
  font-size: clamp(48px, 4.6vw, 70px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.83;
  text-transform: uppercase;
}

.expertise-card-copy > span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.expertise-card-copy b {
  font-size: 20px;
  font-weight: 400;
}

.concerns {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(64px, 7vw, 120px);
  border-top: 1px solid var(--line);
}

.concern-media {
  min-height: 650px;
  overflow: hidden;
  background: #161616;
}

.concern-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: opacity 220ms ease;
}

.concern-media img.is-changing {
  opacity: 0.25;
}

.concern-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concern-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.concern-list li {
  border-bottom: 1px solid var(--line);
}

.concern-list a {
  min-height: 88px;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 14px;
}

.concern-number {
  color: var(--mauve);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.concern-label {
  font-size: clamp(17px, 1.3vw, 21px);
}

.text-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 4px 0;
  border-bottom: 1px solid var(--mauve);
  color: var(--mauve-dark);
  font-size: 13px;
  transition: gap 220ms var(--ease);
}

.concern-list a:hover .text-link,
.concern-list a:focus-visible .text-link {
  gap: 28px;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: clamp(68px, 10vw, 170px);
  background: linear-gradient(to right, #fbf9fa 0%, var(--white) 74%);
}

.approach-copy > p {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 18px;
}

.video-card {
  position: relative;
  aspect-ratio: 1;
  max-width: 540px;
  justify-self: end;
  overflow: hidden;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(175, 156, 173, 0.28);
  color: var(--white);
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background 220ms ease,
    transform 220ms var(--ease);
}

.play-button:hover {
  background: rgba(142, 119, 138, 0.72);
  transform: translate(-50%, -50%) scale(1.06);
}

.play-button svg {
  width: 48px;
  fill: var(--white);
}

.results {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(64px, 8vw, 130px);
  border-top: 1px solid var(--line);
}

.results-media {
  min-width: 0;
  margin: 0;
}

.before-after {
  --position: 50%;
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #d4d0cf;
  user-select: none;
  isolation: isolate;
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.ba-before {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 0;
  display: grid;
  place-items: center;
  z-index: 3;
  pointer-events: none;
}

.ba-divider span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: var(--action);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(17, 17, 19, 0.18);
  transform: translateX(-50%);
}

.ba-divider svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.ba-label {
  position: absolute;
  top: 20px;
  z-index: 2;
  padding: 7px 11px;
  background: rgba(17, 17, 19, 0.72);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-label-before {
  left: 20px;
}

.ba-label-after {
  right: 20px;
}

.demo-watermark {
  position: absolute;
  right: 50%;
  bottom: 16px;
  z-index: 3;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(50%);
  pointer-events: none;
  white-space: nowrap;
}

.before-after input {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after:has(input:focus-visible) {
  outline: 3px solid var(--action);
  outline-offset: 5px;
}

.results-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-bottom: 1px solid var(--line);
}

.results-controls p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.results-controls strong {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-selector {
  display: flex;
  align-items: center;
}

.case-selector button {
  width: 46px;
  min-height: 46px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.case-selector button:hover,
.case-selector button:focus-visible,
.case-selector button.is-active {
  border-bottom-color: var(--action);
  color: var(--ink);
}

.case-selector button:active {
  transform: scale(0.96);
}

.results-copy > p:not(.disclosure) {
  max-width: 560px;
  margin: 0 0 34px;
  font-size: 18px;
}

.disclosure {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

.journey {
  border-top: 1px solid var(--line);
  padding-top: clamp(66px, 7vw, 108px);
  padding-bottom: clamp(66px, 7vw, 108px);
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.journey-list li {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  padding: 0 36px;
  border-left: 1px solid var(--mauve);
}

.journey-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.journey-number {
  color: var(--mauve);
  font-family: var(--display);
  font-size: clamp(58px, 5vw, 82px);
  line-height: 0.85;
}

.journey h3,
.article-section h3,
.process-list h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.journey p,
.process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.consultation-band {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  align-items: center;
  gap: clamp(34px, 5vw, 84px);
  padding: clamp(56px, 6vw, 92px) max(var(--page-padding), calc((100vw - var(--content-width)) / 2 + var(--page-padding)));
  background: var(--ink);
  color: var(--white);
}

.consultation-band > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: clamp(34px, 5vw, 84px);
}

.consultation-band h2 {
  font-size: clamp(42px, 3.7vw, 64px);
}

.consultation-phone {
  font-size: clamp(26px, 2.4vw, 40px);
  white-space: nowrap;
}

.consultation-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.consultation-action p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.55;
}

.site-footer {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 30px var(--page-padding);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px 30px;
  color: var(--ink-soft);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 34px;
}

.site-footer nav a:hover {
  color: var(--mauve-dark);
}

.site-footer--expanded {
  padding-top: 56px;
  padding-bottom: 42px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2fr);
  align-items: start;
  gap: 48px clamp(60px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.footer-intro img {
  width: min(250px, 100%);
  height: auto;
}

.footer-intro p {
  max-width: 300px;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.site-footer .footer-sitemap section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-sitemap h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
}

.site-footer .footer-sitemap a {
  color: var(--muted);
  line-height: 1.45;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.site-footer .footer-bottom nav {
  display: flex;
  gap: 28px;
}

.mobile-actions {
  display: none;
}

.prototype-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-dialog {
  width: min(920px, calc(100vw - 36px));
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--white);
}

.video-dialog::backdrop {
  background: rgba(17, 17, 19, 0.82);
  backdrop-filter: blur(6px);
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
}

.dialog-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
}

.dialog-header button {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Universe pages */

.universe-hero {
  width: min(100%, var(--content-width));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
}

.universe-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(66px, 8vw, 116px) clamp(36px, 6vw, 92px) clamp(66px, 8vw, 116px)
    var(--page-padding);
  background: #faf8f9;
}

.universe-hero .breadcrumbs {
  margin-bottom: 38px;
}

.universe-hero h1,
.news-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(68px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: 0.82;
  text-transform: uppercase;
}

.universe-hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.3vw, 20px);
}

.universe-hero-copy .button-row {
  margin-top: 36px;
}

.universe-hero-media {
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
}

.universe-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.universe-hero--lifting .universe-hero-media img {
  object-position: center;
}

.universe-hero--doctor .universe-hero-media {
  background: #f5f5f5;
}

.universe-hero--doctor .universe-hero-media img {
  object-position: center 28%;
}

.universe-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  align-items: start;
  gap: clamp(60px, 10vw, 160px);
  border-top: 1px solid var(--line);
}

.universe-intro-copy {
  padding-top: 10px;
}

.universe-intro-copy .lead {
  margin-bottom: 28px;
}

.universe-intro-copy p:not(.lead) {
  color: var(--ink-soft);
}

.topic-section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 0 var(--page-padding) clamp(90px, 10vw, 150px);
}

.topic-section > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.topic-section > header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.topic-section > header p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.topic-card {
  min-height: 230px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 24px;
  padding: 36px 36px 38px 0;
  border-bottom: 1px solid var(--line);
}

.topic-card:nth-child(even) {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.topic-card > span {
  color: var(--mauve);
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}

.topic-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(27px, 2.3vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.topic-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.topic-card a {
  display: inline-flex;
  gap: 14px;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--mauve);
  color: var(--mauve-dark);
  font-size: 12px;
}

.information-strip {
  width: 100%;
  padding: clamp(64px, 7vw, 100px) max(var(--page-padding), calc((100vw - var(--content-width)) / 2 + var(--page-padding)));
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(50px, 9vw, 140px);
  background: var(--ink);
  color: var(--white);
}

.information-strip h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 4vw, 66px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.information-strip p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 16px;
}

.cross-universes {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(84px, 9vw, 130px) var(--page-padding);
}

.cross-universes h2 {
  font-size: clamp(46px, 4.5vw, 72px);
}

.cross-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid var(--ink);
}

.cross-links a {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 23px;
  line-height: 1;
}

.cross-links a:first-child {
  border-left: 1px solid var(--line);
}

.cross-links span {
  align-self: flex-end;
  color: var(--mauve-dark);
  font-family: var(--body);
  font-size: 18px;
}

.cross-links a:hover,
.cross-links a:focus-visible {
  background: var(--mauve-soft);
}

/* News page */

.news-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: clamp(80px, 10vw, 150px) max(var(--page-padding), calc((100vw - var(--content-width)) / 2 + var(--page-padding)));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 17, 19, 0.86) 0%, rgba(17, 17, 19, 0.2) 75%);
}

.news-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: grayscale(1);
}

.news-hero-content {
  max-width: 800px;
}

.news-hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.news-hero h1 {
  margin-top: 18px;
}

.news-list {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(84px, 9vw, 140px) var(--page-padding);
}

.news-intro {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.news-intro p {
  margin: 0;
  color: var(--ink-soft);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.news-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  background: var(--white);
}

.news-card time,
.news-card small {
  color: var(--mauve-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 30px 0 20px;
  font-family: var(--display);
  font-size: clamp(31px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 0.98;
}

.news-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.news-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 30px;
}

/* Procedure page */

.procedure-hero {
  width: min(100%, var(--content-width));
  min-height: 570px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.procedure-hero-copy {
  padding-top: 48px;
  padding-bottom: 48px;
}

.procedure-hero h1 {
  margin-top: 24px;
  font-size: clamp(62px, 4.6vw, 76px);
  line-height: 0.88;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--mauve-dark);
  font-size: 12px;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.procedure-hero-image {
  min-height: 570px;
  overflow: hidden;
  background: var(--ink);
}

.procedure-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
}

.article-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  min-height: 65px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(34px, 6vw, 96px);
  padding: 0 var(--page-padding);
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.article-nav a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  white-space: nowrap;
}

.article-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--mauve);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.article-nav a:hover::after,
.article-nav a.is-active::after {
  transform: scaleX(1);
}

.article-nav a.is-active {
  color: var(--mauve-dark);
}

.article-shell {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) var(--page-padding);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
}

.article-content {
  min-width: 0;
}

.article-section {
  max-width: 850px;
  scroll-margin-top: calc(var(--header-height) + 88px);
  padding: 0 0 clamp(78px, 8vw, 124px);
  margin: 0 0 clamp(78px, 8vw, 124px);
  border-bottom: 1px solid var(--line);
}

.article-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.article-section .section-heading h2 {
  font-size: clamp(45px, 4vw, 64px);
}

.medical-note {
  margin: 0 0 28px;
  color: var(--mauve-dark);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.lead {
  margin: 0 0 40px;
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.65;
}

.procedure-accordions {
  margin-top: 32px;
  border-top: 1px solid var(--mauve);
}

.procedure-accordions details {
  border-bottom: 1px solid var(--mauve);
}

.procedure-accordions summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-size: 17px;
}

.procedure-accordions summary::-webkit-details-marker {
  display: none;
}

.procedure-accordions summary span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.procedure-accordions summary span::before,
.procedure-accordions summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 16px;
  height: 1px;
  background: var(--ink);
}

.procedure-accordions summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.procedure-accordions details[open] summary span::after {
  transform: rotate(0);
}

.procedure-accordions details p {
  max-width: 720px;
  margin: 0;
  padding: 0 52px 28px 0;
  color: var(--ink-soft);
}

.editorial-columns {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 70px;
  margin-top: 42px;
}

.editorial-columns p {
  margin: 0;
  color: var(--ink-soft);
}

.line-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.line-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.process-list {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  border-top: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--mauve);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.risk-section {
  padding: clamp(50px, 6vw, 76px);
  background: #f8f6f7;
  border-bottom: 0;
}

.risk-section p {
  margin: 0 0 22px;
}

.risk-section p:last-child {
  margin-bottom: 0;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 96px);
  padding-left: 42px;
  border-left: 2px solid var(--mauve);
}

.article-aside h2 {
  color: var(--mauve-dark);
  font-size: 37px;
}

.article-aside p {
  margin: 22px 0 28px;
  color: var(--ink-soft);
}

.article-aside .button {
  width: 100%;
}

.article-aside .aside-note {
  color: var(--mauve-dark);
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.js .reveal.reveal-delay {
  transition-delay: 100ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero .reveal,
.js .procedure-hero .reveal,
.js .universe-hero .reveal,
.js .news-hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1220px) {
  :root {
    --header-height: 80px;
  }

  .header-inner {
    justify-content: space-between;
  }

  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

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

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 120;
  }

  .main-nav {
    position: fixed;
    z-index: 110;
    inset: var(--header-height) 0 auto;
    height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 34px var(--page-padding);
    background: var(--white);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 200ms ease,
      transform 200ms ease,
      visibility 200ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
  }

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

  .nav-expertise {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav-expertise summary {
    width: 100%;
    justify-content: space-between;
    padding: 18px 0;
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
  }

  .mega-menu {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding: 8px 0 34px;
    border: 0;
    box-shadow: none;
  }

  .mega-intro {
    grid-column: 1 / -1;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mega-intro p {
    font-size: 20px;
  }

  .mega-menu a {
    padding: 5px 0;
    border: 0;
    font-family: var(--body);
    font-size: 12px;
  }

  .mega-menu .mega-title {
    font-family: var(--display);
    font-size: 23px;
  }

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

  .phone-link,
  .header-separator {
    display: none;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .hero,
  .procedure-hero,
  .universe-hero {
    grid-template-columns: 1fr;
  }

  .atlas-heading,
  .universe-intro,
  .information-strip,
  .news-intro {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    min-height: 560px;
  }

  .universe-hero-media {
    min-height: 520px;
  }

  .topic-section > header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: 340px;
  }

  .site-footer--expanded {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .procedure-hero-copy {
    min-height: auto;
    padding-right: var(--page-padding);
  }

  .hero h1,
  .procedure-hero h1 {
    font-size: clamp(66px, 14vw, 96px);
  }

  .hero-portrait {
    min-height: 600px;
  }

  .hero-portrait img {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .concerns,
  .approach,
  .results {
    grid-template-columns: 1fr;
  }

  .concern-media {
    min-height: 540px;
  }

  .concern-content {
    order: -1;
  }

  .approach {
    gap: 64px;
  }

  .video-card {
    justify-self: start;
  }

  .results-copy {
    order: -1;
  }

  .journey-list {
    grid-template-columns: 1fr;
  }

  .journey-list li,
  .journey-list li:first-child {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .consultation-band {
    grid-template-columns: 1fr;
  }

  .consultation-band > * + * {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 0;
  }

  .procedure-hero-image {
    min-height: 520px;
  }

  .article-nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 34px;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .article-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-aside {
    position: static;
    order: -1;
    max-width: 620px;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -10px 30px rgba(17, 17, 19, 0.08);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-actions a:last-child {
    background: var(--action);
    color: var(--white);
  }

  .mobile-actions svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  body.menu-open .mobile-actions {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  :root {
    --page-padding: 22px;
    --header-height: 72px;
  }

  .brand {
    flex-basis: 170px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .main-nav a {
    font-size: 29px;
  }

  .nav-expertise summary {
    font-size: 29px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mega-intro {
    grid-column: auto;
  }

  .mega-menu a {
    font-size: 12px;
  }

  .hero-copy,
  .procedure-hero-copy {
    grid-template-columns: 2px 1fr;
    gap: 20px;
    padding-top: 52px;
    padding-bottom: 24px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    grid-template-rows: minmax(260px, 34svh) auto;
  }

  .hero-portrait {
    order: -1;
    height: min(34svh, 300px);
    min-height: 260px;
    border-bottom: 1px solid var(--line);
  }

  .hero-portrait img {
    width: 108%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-copy {
    order: 2;
    align-items: stretch;
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .hero-copy .signature-rule {
    height: 100%;
    min-height: 0;
  }

  .signature-rule {
    min-height: 260px;
  }

  .hero h1,
  .procedure-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(56px, 17vw, 76px);
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(48px, 14.5vw, 58px);
    line-height: 0.82;
  }

  .hero blockquote {
    margin: 18px 0 22px;
    font-size: 25px;
  }

  .procedure-hero h1 {
    font-size: clamp(34px, 12vw, 42px);
    letter-spacing: -0.055em;
    overflow-wrap: normal;
  }

  .hero-intro,
  .procedure-hero-copy > div > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero .button-row {
    gap: 10px;
  }

  .hero .button-row .button-primary {
    display: none;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading h2,
  .article-section .section-heading h2 {
    font-size: 44px;
  }

  .atlas-heading h2,
  .universe-intro h2,
  .cross-universes h2,
  .news-intro h2 {
    font-size: 44px;
  }

  .expertise-card {
    min-height: 480px;
  }

  .expertise-card-copy strong {
    font-size: 45px;
  }

  .expertise-card-copy > span {
    font-size: 11px;
  }

  .universe-hero {
    min-height: 0;
  }

  .universe-hero-copy {
    padding: 52px var(--page-padding) 58px;
  }

  .universe-hero h1,
  .news-hero h1 {
    font-size: clamp(50px, 15vw, 67px);
  }

  .universe-hero-media {
    min-height: 360px;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .topic-card,
  .topic-card:nth-child(even) {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 30px 0;
    border-left: 0;
  }

  .information-strip {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .cross-links {
    grid-template-columns: 1fr;
  }

  .cross-links a {
    min-height: 96px;
  }

  .news-hero {
    min-height: 460px;
  }

  .news-card .text-link {
    width: auto;
    overflow: visible;
    justify-content: flex-start;
    gap: 14px;
    color: var(--mauve-dark);
    font-size: 12px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .concern-media {
    min-height: 430px;
  }

  .concern-list a {
    grid-template-columns: 48px 1fr auto;
  }

  .concern-number {
    font-size: 31px;
  }

  .concern-label {
    font-size: 15px;
  }

  .text-link {
    width: 28px;
    overflow: hidden;
    justify-content: center;
    gap: 0;
    color: transparent;
    font-size: 0;
  }

  .text-link span {
    color: var(--mauve-dark);
    font-size: 18px;
  }

  .approach {
    background: #fbf9fa;
  }

  .results {
    gap: 42px;
  }

  .before-after {
    aspect-ratio: 2 / 1;
  }

  .ba-divider span {
    width: 46px;
    height: 46px;
  }

  .results-controls {
    align-items: flex-start;
  }

  .results-controls p {
    padding-top: 12px;
  }

  .journey-list li {
    grid-template-columns: 68px 1fr;
    gap: 12px;
  }

  .consultation-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .procedure-hero-image {
    min-height: 360px;
  }

  .breadcrumbs {
    font-size: 11px;
  }

  .article-nav {
    min-height: 58px;
  }

  .article-shell {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .article-aside {
    padding-left: 24px;
  }

  .editorial-columns {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .risk-section {
    margin-left: calc(var(--page-padding) * -1);
    margin-right: calc(var(--page-padding) * -1);
    padding: 48px var(--page-padding);
  }
}

@media (max-width: 380px) {
  .section-heading h2,
  .article-section .section-heading h2 {
    font-size: 36px;
  }

  .article-aside h2 {
    font-size: 32px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
