@import url("https://fonts.googleapis.com/css2?family=Carlito:wght@400;700&family=Libre+Baskerville:wght@400;700&display=swap");

:root {
  --ink: #0D4F90;
  --ink-soft: #1F7CB8;
  --paper: #F9F4EA;
  --paper-deep: #F9F4EA;
  --white: #F9F4EA;
  --teal: #1F7CB8;
  --aqua: #17B3E9;
  --blue: #1F7CB8;
  --gold: #17B3E9;
  --muted: #1F7CB8;
  --line: #1F7CB8;
  --shadow: 0 16px 44px #0D4F90;
  --radius: 8px;
  --header: 84px;
  --font-sans: "Carlito", Calibri, "Calibri Light", Aptos, "Segoe UI", Arial, sans-serif;
  --font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, var(--paper) 0 1px, var(--white) 1px 5px),
    linear-gradient(135deg, var(--paper), var(--white) 44%, var(--paper));
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

main {
  perspective: 1400px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section,
.parallax-band,
.marquee {
  opacity: 0.92;
  transform: translateY(54px) rotateX(6deg) scale(0.985);
  transform-origin: center top;
  transform-style: preserve-3d;
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.section.is-section-visible,
.parallax-band.is-section-visible,
.marquee.is-section-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
}

.section {
  padding: clamp(86px, 10vw, 150px) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

h1 {
  max-width: min(1180px, 100%);
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(4rem, 7.4vw, 7.8rem);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 5.6vw, 5.95rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.15;
}

p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.72;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

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

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

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

.button--ghost {
  border-color: var(--white);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  background: var(--blue);
}

.button--subtle {
  min-height: 42px;
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button--subtle:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(0deg, var(--ink) 0 1px, var(--blue) 1px 5px),
    var(--ink);
  color: var(--white);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.preloader p {
  position: absolute;
  bottom: 12vh;
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 7.2rem);
  line-height: 1.08;
}

.preloader__pulse {
  width: min(680px, 80vw);
  height: 78px;
  overflow: hidden;
  color: var(--aqua);
}

.preloader__pulse span {
  display: block;
  width: 160%;
  height: 100%;
  background:
    linear-gradient(90deg, var(--ink) 0 5%, currentColor 5% 6%, var(--ink) 6% 15%, currentColor 15% 16%, var(--ink) 16% 30%, currentColor 30% 31%, var(--ink) 31% 100%),
    linear-gradient(135deg, var(--ink) 43%, currentColor 43% 45%, var(--ink) 45% 52%, currentColor 52% 54%, var(--ink) 54%);
  clip-path: polygon(0 52%, 8% 52%, 11% 36%, 14% 70%, 18% 20%, 24% 78%, 28% 52%, 100% 52%, 100% 58%, 28% 58%, 24% 84%, 18% 28%, 14% 78%, 11% 45%, 8% 58%, 0 58%);
  animation: pulse-run 1.2s linear infinite;
}

@keyframes pulse-run {
  to {
    transform: translateX(-18%);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  width: 100%;
  height: var(--header);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: var(--paper);
  box-shadow: 0 8px 24px var(--ink);
  color: var(--ink);
  backdrop-filter: blur(20px);
}

.brand-mark {
  display: inline-flex;
  width: 150px;
  height: 54px;
  align-items: center;
  justify-content: flex-start;
}

.brand-mark img {
  max-height: 52px;
  object-fit: contain;
}

.site-header:not(.is-scrolled) .brand-mark img {
  filter: brightness(0) invert(1);
}

.quick-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 36px);
  color: currentColor;
  font-size: clamp(0.9rem, 1.03vw, 1.05rem);
  font-weight: 800;
}

.quick-nav a {
  position: relative;
  opacity: 0.82;
  white-space: nowrap;
  transition: color 240ms ease, opacity 240ms ease, transform 240ms ease;
}

.quick-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-nav a:hover,
.quick-nav a.is-active {
  opacity: 1;
  transform: translateY(-2px);
}

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

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.results-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(13, 79, 144, 0.18);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.results-button:hover {
  border-color: var(--aqua);
  background: var(--teal);
  transform: translateY(-2px);
}

.menu-button {
  justify-self: end;
  display: inline-flex;
  height: 46px;
  align-items: center;
  gap: 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 16px 0 18px;
  background: none;
  color: currentColor;
  cursor: pointer;
  font-weight: 800;
}

.menu-button i {
  position: relative;
  width: 18px;
  height: 18px;
}

.menu-button i::before,
.menu-button i::after {
  position: absolute;
  left: 2px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease;
}

.menu-button i::before {
  top: 5px;
}

.menu-button i::after {
  bottom: 5px;
}

.menu-button:hover i::before {
  transform: translateY(3px);
}

.menu-button:hover i::after {
  transform: translateY(-3px);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: clamp(16px, 3vw, 42px);
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 1px, var(--blue) 1px 6px),
    var(--ink);
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

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

.menu-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-overlay__top img {
  width: clamp(112px, 10vw, 142px);
  filter: brightness(0) invert(1);
}

.menu-overlay__top button {
  border: 1px solid var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  background: none;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.menu-overlay nav {
  display: grid;
  align-content: center;
  gap: clamp(2px, 0.7vh, 6px);
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(14px, 3vh, 30px) 0;
}

.menu-overlay nav a {
  border-bottom: 1px solid var(--blue);
  padding: clamp(4px, 1vh, 8px) 0 clamp(6px, 1.2vh, 10px);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, min(4.1vw, 6.6vh), 3.35rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  transition: color 180ms ease, padding-left 180ms ease;
}

.menu-overlay nav a:hover {
  padding-left: 18px;
  color: var(--aqua);
}

.menu-overlay__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  width: 100%;
}

.menu-overlay__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px clamp(34px, 8vw, 140px);
  color: var(--aqua);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
}

.menu-overlay__contact-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.menu-overlay__contact a {
  color: var(--white);
  font-weight: 800;
}

.menu-overlay__contact-item span,
.menu-overlay__contact-item a {
  white-space: nowrap;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 0.86rem;
  font-weight: 900;
}

.menu-overlay__social {
  width: auto;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  margin-top: 0;
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 72px) 0 84px;
  background-color: var(--ink);
  background-image: url("assets/images/editorial-clean/editorial-hero-clean.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  display: none !important;
  z-index: 0;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  transform-origin: center;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, var(--ink), var(--blue) 48%, var(--blue)),
    linear-gradient(0deg, var(--ink), var(--blue) 44%);
  opacity: 0.78;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(24px, 5vh, 70px);
}

.hero .eyebrow {
  color: var(--aqua);
}

.hero__lead {
  max-width: 780px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 42px;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--white);
  border-radius: 50%;
}

.scroll-cue span {
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  animation: cue 1.5s ease-in-out infinite;
}

@keyframes cue {
  50% {
    transform: translateY(5px) rotate(45deg);
  }
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.intro__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.intro__media::after {
  display: none;
}

.intro__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.012);
  transform-origin: center;
}

.intro__copy p:not(.eyebrow) {
  max-width: 660px;
}

.intro__copy h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4.4vw, 4.55rem);
  line-height: 1.1;
}

.intro__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.intro__metrics strong {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.86rem;
}

.marquee {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.marquee div {
  display: flex;
  min-width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 24px 26px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 4.2rem);
  white-space: nowrap;
}

.marquee span::after {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  content: "";
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(36px, 6vw, 76px);
}

.section-heading--split {
  display: flex;
  max-width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading--split h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.section-heading__action {
  flex: 0 0 auto;
  margin-bottom: 6px;
}

.services__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.services__preview {
  position: sticky;
  top: calc(var(--header) + 32px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.services__preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 200ms ease, transform 400ms ease;
}

.services__preview img.is-swapping {
  opacity: 0;
  transform: scale(1.04);
}

.services__list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  width: 100%;
  grid-template-columns: 48px minmax(0, 0.9fr) minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  background: none;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.service-row span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-row strong {
  font-family: var(--font-serif);
  font-size: clamp(1.42rem, 2.35vw, 2.1rem);
  font-weight: 500;
  line-height: 1.22;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-row small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-row:hover,
.service-row.is-active {
  color: var(--blue);
}

.parallax-band {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
}

.parallax-band__image {
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(90deg, var(--ink), var(--blue)),
    url("assets/images/editorial-premium/parallax-heart-digital.png") center / cover fixed;
  opacity: 0.58;
}

.parallax-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink), var(--ink), var(--blue));
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.parallax-band__content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.parallax-band .eyebrow {
  color: var(--aqua);
}

.parallax-band h2 {
  max-width: 900px;
  color: var(--white);
}

.parallax-band p:not(.eyebrow) {
  max-width: 660px;
  color: var(--white);
}

.pathways {
  background: linear-gradient(180deg, var(--paper), var(--white));
}

.pathways__grid {
  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);
}

.pathway {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
  transition: background 220ms ease, transform 220ms ease;
}

.pathway:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.pathway span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pathway h3 {
  font-family: var(--font-serif);
  font-weight: 500;
}

.pathway p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.process__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: stretch;
}

.process__copy {
  position: sticky;
  top: calc(var(--header) + 48px);
  align-self: stretch;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.process__copy h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 3.85vw, 4.45rem);
  line-height: 1.1;
}

.process__steps {
  position: relative;
  min-height: 620px;
}

.process-step {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.process-step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.process-step img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--ink), var(--blue) 60%);
  opacity: 0.82;
  content: "";
}

.process-step div {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: clamp(28px, 5vw, 54px);
}

.process-step span {
  color: var(--aqua);
  font-weight: 900;
}

.process-step h3 {
  margin-top: 12px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.process-step p {
  color: var(--white);
}

.slider-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 9px;
}

.slider-controls button {
  width: 38px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.slider-controls button.is-active {
  background: var(--aqua);
}

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

.contact h2,
.contact .eyebrow {
  color: var(--white);
}

.contact h2 {
  max-width: 700px;
  font-size: clamp(2rem, 3.8vw, 3.65rem);
  line-height: 1.12;
  overflow-wrap: normal;
}

.contact .eyebrow {
  color: var(--aqua);
}

.contact p {
  color: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: stretch;
}

.contact__copy {
  position: sticky;
  top: calc(var(--header) + 48px);
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.contact__details {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.contact__details a,
.contact__details span {
  border-top: 1px solid var(--blue);
  padding-top: 14px;
  color: var(--white);
}

.contact__details strong {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 42px);
  background: var(--ink);
  box-shadow: 0 22px 60px var(--ink);
  backdrop-filter: blur(16px);
}

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.checkbox {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 14px 14px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px var(--blue);
}

.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.45;
}

.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--aqua);
}

.contact-form .button {
  width: fit-content;
  border: 0;
  background: var(--aqua);
  color: var(--ink);
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--aqua);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 30px;
  background: var(--paper);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px 34px;
  align-items: stretch;
  min-height: clamp(128px, 10vw, 148px);
}

.site-footer__brand,
.site-footer__nav,
.site-footer__legal {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.site-footer__brand {
  align-items: flex-start;
}

.site-footer__brand-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.site-footer__social {
  margin-top: 14px;
}

.site-footer p {
  max-width: 380px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.site-footer__nav {
  font-weight: 800;
}

.site-footer__nav-list {
  display: grid;
  gap: 10px;
}

.site-footer__legal {
  align-items: flex-end;
  justify-self: end;
  text-align: right;
}

.site-footer__supersalud {
  width: min(250px, 100%);
  height: auto;
  margin-left: auto;
  object-fit: contain;
}

.inner-hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 82px) 0 86px;
  background: var(--ink);
  color: var(--white);
}

.inner-hero__media,
.inner-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-hero__media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.inner-hero__shade {
  background:
    linear-gradient(90deg, var(--ink), rgba(13, 79, 144, 0.88) 38%, rgba(31, 124, 184, 0.62)),
    linear-gradient(0deg, rgba(13, 79, 144, 0.82), rgba(31, 124, 184, 0.18));
}

.inner-hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding-top: clamp(18px, 4vh, 54px);
}

.inner-hero .eyebrow {
  color: var(--aqua);
}

.inner-hero h1 {
  max-width: 960px;
  font-size: clamp(2.85rem, 5.6vw, 5.75rem);
  line-height: 1.08;
}

[data-page="servicios"] .inner-hero h1 {
  max-width: 1020px;
  font-size: clamp(2.1rem, 3.45vw, 3.65rem);
}

.inner-hero__lead {
  max-width: 780px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumb a {
  opacity: 0.78;
}

.breadcrumb span {
  color: var(--aqua);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.content-kicker {
  position: sticky;
  top: calc(var(--header) + 48px);
}

.content-kicker h2 {
  max-width: 620px;
  font-size: clamp(2.02rem, 3.35vw, 3.72rem);
  line-height: 1.1;
}

[data-page="politicas"] .content-kicker h2 {
  max-width: 540px;
  font-size: clamp(1.95rem, 3vw, 3.25rem);
}

.rich-copy {
  display: grid;
  gap: 22px;
}

.rich-copy p {
  max-width: 780px;
}

.fact-strip {
  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);
}

.fact {
  min-height: 170px;
  padding: 22px;
  background: var(--paper);
}

.fact strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.16rem, 1.7vw, 1.62rem);
  font-weight: 500;
  line-height: 1.22;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.fact span {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

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

.info-card,
.service-card,
.center-card,
.document-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(249, 244, 234, 0.76);
  min-width: 0;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.info-card:hover,
.service-card:hover,
.center-card:hover,
.document-card:hover {
  background: var(--white);
  box-shadow: 0 16px 36px rgba(13, 79, 144, 0.13);
  transform: translateY(-3px);
}

.info-card span,
.service-card span,
.center-card span,
.document-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-card h3,
.service-card h3,
.center-card h3,
.document-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 1.55vw, 1.58rem);
  font-weight: 500;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.info-card p,
.service-card p,
.center-card p,
.document-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.service-catalog {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.service-card {
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 0;
  border-radius: 0;
  background: var(--paper);
}

.service-card span {
  margin-bottom: 0;
}

.center-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.center-card address {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-style: normal;
  font-size: 0.94rem;
  line-height: 1.55;
}

.center-card .button {
  width: fit-content;
  min-height: 42px;
  margin-top: auto;
  border-color: var(--ink);
  padding: 0 16px;
  font-size: 0.88rem;
}

.preparations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 255px), 1fr));
  gap: 14px;
}

.preparation-card,
.preparation-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(249, 244, 234, 0.76);
}

.preparation-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
}

.preparation-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.preparation-card h3,
.preparation-detail h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.preparation-card p {
  margin-bottom: 18px;
  font-size: 0.96rem;
}

.preparation-card .button {
  width: fit-content;
  min-height: 42px;
  margin-top: auto;
  border-color: var(--ink);
  padding: 0 16px;
  font-size: 0.88rem;
}

.preparation-detail {
  display: grid;
  gap: 14px;
}

.preparation-detail--accent {
  background: rgba(23, 179, 233, 0.12);
}

.preparation-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preparation-detail li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.preparation-study-link {
  display: grid;
  gap: 6px;
  color: var(--ink);
}

.preparation-study-link span {
  font-weight: 900;
}

.preparation-study-link small {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.preparation-study {
  display: grid;
  gap: 18px;
}

.preparation-instructions {
  display: grid;
  gap: 18px;
}

.preparation-instructions h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.preparation-instructions p {
  margin: 0;
}

.preparation-instructions ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preparation-instructions li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--ink-soft);
  line-height: 1.58;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 110px) 0;
  background: var(--ink);
  color: var(--white);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band h2 {
  max-width: 760px;
  font-size: clamp(2.05rem, 3.55vw, 3.8rem);
  line-height: 1.12;
  overflow-wrap: normal;
}

.cta-band .eyebrow {
  color: var(--aqua);
}

.cta-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.cta-band__panel {
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 40px);
  background: rgba(249, 244, 234, 0.08);
}

.cta-band__panel p {
  margin-bottom: 0;
}

.ai-summary {
  border-block: 1px solid var(--line);
  padding: clamp(50px, 7vw, 78px) 0;
  background: rgba(31, 124, 184, 0.08);
}

.ai-summary__box {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.ai-summary__box h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.ai-summary ul,
.document-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-summary li,
.document-list li,
.plain-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.centers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 255px), 1fr));
  gap: 14px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 38px);
  background: var(--paper);
}

.contact-panel a,
.contact-panel strong {
  color: var(--ink);
  font-weight: 900;
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

[data-page="radiologos"] .inner-hero__shade {
  background:
    linear-gradient(90deg, rgba(13, 79, 144, 0.96), rgba(13, 79, 144, 0.84) 42%, rgba(31, 124, 184, 0.42)),
    linear-gradient(0deg, rgba(13, 79, 144, 0.82), rgba(31, 124, 184, 0.12));
}

.radiologists-hero .inner-hero__media {
  object-position: center right;
}

[data-page="radiologos"] .inner-hero h1 {
  max-width: 1020px;
  font-size: clamp(2.85rem, 5.35vw, 5.75rem);
}

.radiologists-facts .fact {
  min-height: 188px;
}

.radiologists-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.radiologists-card-grid .info-card {
  display: flex;
  min-height: 318px;
  flex-direction: column;
}

.radiologists-card-grid .info-card p {
  margin-top: auto;
}

.radiologists-card--wide {
  grid-column: span 2;
}

.radiologists-media-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.radiologists-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.radiologists-media img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.radiologists-tech-copy h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4.45vw, 4.75rem);
}

.radiologists-tech-copy p {
  max-width: 700px;
}

.radiologists-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.radiologists-check-grid span {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  background: rgba(249, 244, 234, 0.78);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.28;
}

.radiologists-check-grid span::before {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 2px solid var(--aqua);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--paper);
  background: var(--ink);
  content: "";
}

.radiologists-growth {
  background:
    linear-gradient(90deg, rgba(13, 79, 144, 0.96), rgba(31, 124, 184, 0.88)),
    var(--ink);
}

.radiologists-tags span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(249, 244, 234, 0.68);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
}

.radiologists-specialty-grid {
  counter-reset: specialty;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.radiologists-specialty-column {
  display: grid;
  align-content: start;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.radiologists-specialty-grid span {
  counter-increment: specialty;
  display: grid;
  min-height: 78px;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 24px;
  align-items: center;
  padding: 0 26px 0 0;
  background: rgba(249, 244, 234, 0.78);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.14rem, 1.58vw, 1.62rem);
  line-height: 1.18;
}

.radiologists-specialty-grid span::before {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--teal);
  content: counter(specialty, decimal-leading-zero);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 900;
}

.radiologists-specialty-grid span:hover {
  background: var(--white);
}

.radiologists-contact .contact__grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
}

.radiologists-contact-note {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--blue);
  padding-top: 20px;
}

.radiologists-contact-note strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.18;
}

.radiologists-contact-note span {
  color: var(--white);
  line-height: 1.55;
}

.radiologists-form-anchor {
  min-width: 0;
  scroll-margin-top: calc(var(--header) + 24px);
}

.radiologists-form {
  gap: 24px;
  scroll-margin-top: calc(var(--header) + 22px);
}

.radiologists-form fieldset {
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.radiologists-form legend {
  margin-bottom: 2px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 2vw, 1.78rem);
  font-weight: 500;
  line-height: 1.16;
}

.radiologists-form .field input[type="file"] {
  cursor: pointer;
}

.radiologists-file-upload {
  display: grid;
  gap: 4px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(249, 244, 234, 0.1);
  color: var(--white);
  cursor: pointer;
}

.radiologists-file-upload span {
  color: var(--white);
  font-weight: 900;
}

.radiologists-file-upload small {
  color: var(--white);
  font-size: 0.86rem;
  opacity: 0.82;
}

.radiologists-file-input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.radiologists-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 158px), 1fr));
  gap: 10px;
}

.radiologists-choice-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.radiologists-choice-grid label {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: rgba(249, 244, 234, 0.08);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.radiologists-choice-grid input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  accent-color: var(--aqua);
}

.radiologists-choice-grid span {
  min-width: 0;
}

.radiologists-options-panel {
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(249, 244, 234, 0.08);
  color: var(--white);
}

.radiologists-options-panel summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.radiologists-options-panel summary::-webkit-details-marker {
  display: none;
}

.radiologists-options-panel summary::after {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.radiologists-options-panel[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.radiologists-options-panel .radiologists-choice-grid {
  border-top: 1px solid var(--blue);
  padding: 12px;
}

.radiologists-form .checkbox a {
  color: var(--aqua);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

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

  .section,
  .parallax-band,
  .marquee {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 721px) {
  .hero {
    height: 100svh;
    min-height: 760px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .quick-nav {
    display: none;
  }

  .header-actions {
    grid-column: 2;
  }

  .intro__grid,
  .services__grid,
  .process__grid,
  .contact__grid,
  .content-grid,
  .cta-band__grid,
  .ai-summary__box,
  .radiologists-media-grid,
  .radiologists-contact .contact__grid {
    grid-template-columns: 1fr;
  }

  .services__preview,
  .process__copy,
  .contact__copy,
  .content-kicker {
    position: relative;
    top: auto;
  }

  .radiologists-contact .contact__copy {
    min-height: auto;
    justify-content: flex-start;
  }

  .services__preview {
    max-width: 520px;
  }

  .pathways__grid,
  .fact-strip,
  .cards-grid,
  .centers-grid,
  .radiologists-card-grid,
  .radiologists-specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .radiologists-card--wide {
    grid-column: span 1;
  }

  .service-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .service-card p {
    grid-column: 2;
  }

  .process__steps {
    min-height: 580px;
  }

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

  .site-footer__legal {
    align-items: flex-start;
    justify-self: start;
    text-align: left;
  }

  .site-footer__supersalud {
    width: min(220px, 100%);
    margin-left: 0;
  }

}

@media (max-width: 720px) {
  :root {
    --header: 72px;
  }

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

  .section {
    padding: 72px 0;
  }

  .section-heading--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .section-heading__action {
    margin-bottom: 0;
  }

  h1 {
    font-size: clamp(2.35rem, 10.8vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.8rem);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 128px;
  }

  .menu-button {
    height: 42px;
    padding: 0 13px 0 15px;
  }

  .header-actions {
    gap: 8px;
  }

  .results-button {
    min-height: 42px;
    max-width: 158px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  @media (max-width: 480px) {
    .results-button {
      max-width: none;
      padding: 0 13px;
      font-size: 0;
    }

    .results-button::after {
      content: "Resultados";
      font-size: 0.76rem;
    }
  }

  .hero {
    min-height: 92svh;
    align-items: center;
    padding-bottom: 74px;
    background-image: none;
  }

  .hero__content {
    padding-top: 36px;
  }

  .hero__media {
    display: block !important;
  }

  .section,
  .parallax-band,
  .marquee {
    transform: translateY(28px) rotateX(2deg) scale(0.992);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .inner-hero {
    min-height: 78svh;
    padding: calc(var(--header) + 62px) 0 72px;
  }

  .inner-hero__lead {
    font-size: 1rem;
  }

  .intro__media,
  .intro__media img {
    min-height: 340px;
  }

  .service-row {
    grid-template-columns: 38px 1fr;
    gap: 8px 14px;
  }

  .service-row small {
    grid-column: 2;
  }

  .parallax-band {
    min-height: 70vh;
    padding: 84px 0;
  }

  .parallax-band__image {
    background-attachment: scroll;
  }

  .pathways__grid,
  .fact-strip,
  .cards-grid,
  .centers-grid,
  .radiologists-card-grid,
  .radiologists-specialty-grid,
  .radiologists-check-grid {
    grid-template-columns: 1fr;
  }

  [data-page="radiologos"] .inner-hero h1 {
    font-size: clamp(2.35rem, 10vw, 4.25rem);
  }

  .radiologists-hero .inner-hero__media {
    object-position: 68% center;
  }

  .radiologists-card-grid .info-card {
    min-height: 250px;
  }

  .radiologists-media img {
    aspect-ratio: 1.08;
  }

  .radiologists-specialty-grid span {
    min-height: 76px;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 16px;
    padding-right: 18px;
    font-size: clamp(1.05rem, 6vw, 1.44rem);
  }

  .radiologists-form {
    padding-top: 48px;
  }

  .service-card {
    grid-template-columns: 38px 1fr;
    gap: 8px 14px;
  }

  .service-card p {
    grid-column: 2;
  }

  .ai-summary__box h2 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .pathway {
    min-height: 230px;
  }

  .pathway span {
    margin-bottom: 34px;
  }

  .process__steps {
    min-height: 520px;
  }

  .field-group {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }

  .menu-overlay__footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .menu-overlay__contact {
    gap: 5px 12px;
  }

  .menu-overlay__contact-item {
    gap: 7px;
  }

  .menu-overlay__social {
    justify-self: start;
    justify-content: flex-start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .site-footer__brand,
  .site-footer__nav,
  .site-footer__legal {
    min-height: 0;
    gap: 18px;
  }

  .site-footer__supersalud {
    width: 150px;
    margin-bottom: 8px;
  }
}

@media (max-height: 760px) {
  .menu-overlay {
    padding: 14px clamp(18px, 3vw, 34px);
  }

  .menu-overlay__top img {
    width: 108px;
  }

  .menu-overlay nav {
    padding: 10px 0 12px;
  }

  .menu-overlay nav a {
    padding: 4px 0 6px;
    font-size: clamp(1.08rem, min(3.7vw, 5.3vh), 2.45rem);
  }

  .menu-overlay__contact {
    gap: 4px 10px;
    font-size: 0.76rem;
  }

  .menu-overlay__social {
    margin-top: 0;
  }

  .menu-overlay__social a {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 0.74rem;
  }
}
