/* Vernata Health — Founding Site */

:root {
  --blue: #316aa0;
  --blue-dark: #255480;
  --green: #598e88;
  --green-dark: #4a7a75;
  --navy: #1b2d42;
  --navy-deep: #132233;
  --text: #243447;
  --text-muted: #5a6b7d;
  --text-soft: #7a8b9c;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --bg-mist: #eef3f7;
  --border: rgba(36, 52, 71, 0.08);
  --shadow: 0 18px 50px rgba(27, 45, 66, 0.08);
  --shadow-sm: 0 8px 24px rgba(27, 45, 66, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 84px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, calc(100% - 2.5rem));
}

/* ——— Header ——— */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue);
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 28px rgba(49, 106, 160, 0.28);
}

.btn--primary:hover {
  background: var(--blue-dark);
}

.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 28px rgba(89, 142, 136, 0.28);
}

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

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid rgba(49, 106, 160, 0.28);
}

.btn--ghost:hover {
  background: rgba(49, 106, 160, 0.06);
  border-color: var(--blue);
}

.btn--light {
  background: #fff;
  color: var(--blue);
}

.btn--sm {
  min-height: 42px;
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
}

/* ——— Hero ——— */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 4.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(89, 142, 136, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 50% at 5% 80%, rgba(49, 106, 160, 0.08), transparent 50%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 55%, #ffffff 100%);
  overflow: hidden;
}

.hero__waves {
  position: absolute;
  inset: auto -5% -8% -5%;
  height: 42%;
  pointer-events: none;
  opacity: 0.45;
}

.hero__waves svg {
  width: 100%;
  height: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 3.75rem);
  margin-bottom: 0.85rem;
  max-width: none;
  line-height: 1.08;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero__subhead {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero__lead {
  color: var(--text-muted);
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-soft);
  font-size: 0.875rem;
}

.hero__meta-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hero-visual {
  position: relative;
}

.hero-visual__frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-mist);
  aspect-ratio: 4 / 5;
}

.hero-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-float {
  position: absolute;
  left: -1.25rem;
  bottom: 2rem;
  width: min(260px, 70%);
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  animation: float-y 5.5s ease-in-out infinite;
}

.hero-float--alt {
  left: auto;
  right: -0.75rem;
  bottom: auto;
  top: 2.5rem;
  width: min(220px, 58%);
  animation-delay: -2.2s;
}

.hero-float__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(89, 142, 136, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-float__icon--blue {
  background: rgba(49, 106, 160, 0.12);
  color: var(--blue);
}

.hero-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.hero-float span {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.2;
  display:block;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ——— Sections ——— */

.section {
  padding: 6rem 0;
  position: relative;
}

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

.section--navy {
  background: linear-gradient(160deg, var(--navy) 0%, #243b55 100%);
  color: rgba(255, 255, 255, 0.86);
}

.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section--navy .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

/* ——— Approach cards ——— */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.85rem 1.65rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: rgba(49, 106, 160, 0.1);
  color: var(--blue);
}

.feature-card__icon--green {
  background: rgba(89, 142, 136, 0.12);
  color: var(--green);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ——— Forward / diagram ——— */

.forward-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.forward-copy p {
  color: var(--text-muted);
}

.forward-copy p + p {
  margin-top: 1rem;
}

.forward-copy .highlight {
  color: var(--navy);
  font-weight: 600;
}

.diagram-panel {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem 1.5rem;
  overflow: hidden;
}

.diagram-panel--expanded {
  padding: 2.25rem 2rem 2rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diagram-panel--expanded .care-diagram {
  gap: 0.85rem;
}

.diagram-panel--expanded .care-item {
  padding: 0.55rem 0.75rem;
  font-size: 0.8rem;
}

.diagram-panel--expanded .care-outcome img {
  width: 88px;
}

.diagram-panel--expanded .care-outcome p {
  font-size: 0.88rem;
}

.diagram-panel__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
  margin-bottom: 1.25rem;
}

.care-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.65rem;
  align-items: center;
}

.care-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.care-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.care-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.care-item__dot--green {
  background: var(--green);
}

.care-flow {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(49, 106, 160, 0.2), rgba(89, 142, 136, 0.55));
  position: relative;
}

.care-flow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--green);
  border-top: 1.5px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
}

.care-outcome {
  text-align: center;
  padding: 0.75rem;
}

.care-outcome img {
  width: 72px;
  height: auto;
  margin: 0 auto 0.65rem;
}

.care-outcome p {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
}

.graphic-separator {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 100px;
  background: #fff;
  line-height: 0;
}

.graphic-separator img {
  width: 100%;
  height: auto;
  display: block;
}

/* ——— Understanding ——— */

.understanding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.story-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}

.story-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(89, 142, 136, 0.15);
  flex-shrink: 0;
}

.media-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-mist);
  aspect-ratio: 4 / 5;
  position: relative;
}

.media-frame--landscape {
  aspect-ratio: 16 / 10;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, transparent 20%, rgba(19, 34, 51, 0.72) 100%),
    repeating-linear-gradient(
      -12deg,
      rgba(49, 106, 160, 0.08) 0 12px,
      rgba(89, 142, 136, 0.08) 12px 24px
    ),
    linear-gradient(145deg, #dce7f0, #e8f0ee);
  color: #fff;
}

.placeholder__tag {
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: auto;
}

.placeholder strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.placeholder p {
  font-size: 0.8125rem;
  line-height: 1.45;
  opacity: 0.9;
  margin: 0;
}

.placeholder-note {
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-soft);
  background: var(--bg-soft);
  border: 1px dashed rgba(49, 106, 160, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.placeholder-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  color: var(--blue);
  display: block;
  margin-top: 0.4rem;
  white-space: pre-wrap;
}

/* ——— Journey ——— */

.journey-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.journey-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
}

.journey-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(49, 106, 160, 0.25);
}

.journey-step:nth-child(2) .journey-step__num {
  background: var(--green);
  box-shadow: 0 8px 20px rgba(89, 142, 136, 0.25);
}

.journey-step:nth-child(3) .journey-step__num {
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(27, 45, 66, 0.22);
}

.journey-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.journey-step p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* ——— Getting started ——— */

.started-panel {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.started-panel h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
}

.started-panel p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 1.75rem;
}

/* ——— Contact ——— */

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-media {
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  position: relative;
}

.contact-media .placeholder,
.contact-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 0;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-card h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.contact-card > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.inquiry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.chip {
  appearance: none;
  border: 1.5px solid var(--border);
  background: var(--bg-soft);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover {
  border-color: rgba(49, 106, 160, 0.35);
  color: var(--blue);
}

.chip.is-active {
  background: rgba(49, 106, 160, 0.1);
  border-color: var(--blue);
  color: var(--blue);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  background: var(--bg-soft);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(49, 106, 160, 0.12);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-alert {
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.form-alert--success {
  background: rgba(89, 142, 136, 0.12);
  color: var(--green-dark);
  border: 1px solid rgba(89, 142, 136, 0.28);
}

.form-alert--error {
  background: rgba(180, 60, 60, 0.08);
  color: #8a2f2f;
  border: 1px solid rgba(180, 60, 60, 0.2);
}

.form-footnote {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* ——— Footer ——— */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: calc(4rem + 50px) 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  right: -2%;
  bottom: -8%;
  width: min(420px, 55vw);
  opacity: 0.06;
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img.logo-mark {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 32ch;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-brand a.email {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-weight: 600;
}

.footer-brand a.email:hover {
  color: var(--green);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-disclaimer {
  width: 100%;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
  max-width: 900px;
}

/* ——— Reveal motion ——— */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@media (scripting: none) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ——— Responsive ——— */

@media (max-width: 980px) {
  .hero-grid,
  .forward-grid,
  .understanding-grid,
  .journey-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
  }

  .hero-visual__frame {
    aspect-ratio: 5 / 4;
  }

  .hero h1 {
    max-width: none;
  }

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

  .care-diagram {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .care-flow {
    width: 2px;
    height: 24px;
    margin-inline: auto;
    background: linear-gradient(180deg, rgba(49, 106, 160, 0.2), rgba(89, 142, 136, 0.55));
  }

  .care-flow::after {
    right: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(50%) rotate(135deg);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-media {
    min-height: 0;
    height: auto;
  }

  .contact-media img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .hero-float--alt {
    display: none;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 4.25rem 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 3rem;
  }

  .hero-float {
    left: 0.75rem;
    bottom: 0.75rem;
    width: min(230px, 78%);
  }
}

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

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

  .hero-float,
  .hero-float--alt {
    animation: none;
  }
}
