:root {
  --ink: #033e54;
  --ink-2: #064f64;
  --teal: #069086;
  --teal-dark: #04776f;
  --mint: #8bc995;
  --lime: #95c93d;
  --paper: #ffffff;
  --mist: #eef9f8;
  --line: rgba(3, 62, 84, 0.15);
  --shadow: 0 24px 80px rgba(3, 62, 84, 0.14);
  --max: 1180px;
  --header: 82px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(139, 201, 149, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfb 48%, #ffffff 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: #ffffff;
  background: linear-gradient(100deg, rgba(3, 62, 84, 0.98), rgba(3, 83, 99, 0.96));
  box-shadow: 0 12px 34px rgba(3, 62, 84, 0.16);
  transition:
    min-height 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-compact {
  min-height: 68px;
  box-shadow: 0 18px 46px rgba(3, 62, 84, 0.22);
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 4vw, 58px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  opacity: 0.88;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta,
.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 14px 30px rgba(6, 144, 134, 0.28);
}

.button.text {
  min-height: 48px;
  padding-inline: 0;
  color: var(--teal-dark);
  background: transparent;
  box-shadow: none;
}

.button.full {
  width: 100%;
}

.nav-cta:hover,
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(6, 144, 134, 0.35);
}

.button.text:hover {
  transform: translateX(3px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(560px, 1.12fr);
  min-height: calc(100vh - var(--header));
  overflow: hidden;
  background: #ffffff;
}

.hero::before,
.promise::before,
.mission::after,
.next-step::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, transparent 44%, rgba(6, 144, 134, 0.28) 45%, transparent 46%),
    linear-gradient(45deg, transparent 44%, rgba(139, 201, 149, 0.32) 45%, transparent 46%);
  background-size: 42px 42px;
  opacity: 0.42;
}

.hero::before {
  left: -70px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: start;
  justify-self: center;
  width: min(100%, 620px);
  max-width: 560px;
  padding: clamp(32px, 4.6vw, 56px) clamp(22px, 3vw, 42px) clamp(40px, 5vw, 64px);
}

.hero-logo {
  display: inline-flex;
  width: clamp(220px, 20vw, 270px);
  margin-bottom: clamp(22px, 3vw, 30px);
  filter: drop-shadow(0 14px 22px rgba(3, 62, 84, 0.08));
}

.hero-logo img {
  width: 100%;
  height: auto;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(2.55rem, 3.55vw, 3.75rem);
  line-height: 1.03;
  color: var(--ink);
}

.hero-copy p {
  max-width: 540px;
  margin-top: 18px;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.58;
  color: rgba(3, 62, 84, 0.76);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

.hero-media {
  position: relative;
  min-height: 640px;
}

@media (min-width: 981px) {
  .hero-media {
    width: calc(100% + 3px);
    margin-left: -3px;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0 0 0 -3px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 9%,
    rgba(255, 255, 255, 0.48) 20%,
    transparent 34%
  );
}

.hero-media video,
.hero-media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  clip-path: ellipse(118% 88% at 66% 38%);
}

.hero-media video {
  z-index: 1;
  object-position: 45% center;
}

.hero-media img {
  display: none;
}

.hero-media.has-video-error video {
  display: none;
}

.hero-media.has-video-error img {
  display: block;
}

section {
  position: relative;
}

.promise {
  overflow: visible;
  padding: clamp(76px, 10vw, 130px) clamp(20px, 4vw, 56px);
}

.my-story,
.stories {
  overflow-x: hidden;
  padding: clamp(76px, 10vw, 130px) clamp(20px, 4vw, 56px);
}

.section-heading {
  max-width: 760px;
  margin-inline: auto;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.mission-copy h2,
.next-copy h2 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1.05;
}

.next-copy h2 {
  font-size: clamp(2.15rem, 3.25vw, 3.35rem);
}

.section-heading p {
  margin-top: 12px;
  color: rgba(3, 62, 84, 0.66);
  font-weight: 700;
}

.promise::before {
  right: -80px;
  top: 30px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
}

.path-experience {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: stretch;
  max-width: var(--max);
  margin: 56px auto 0;
}

.path-rail {
  position: relative;
  min-height: 100%;
}

.path-rail-glass {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(6, 144, 134, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(238, 249, 248, 0.54)),
    radial-gradient(circle at 50% 12%, rgba(149, 201, 61, 0.22), transparent 24%),
    radial-gradient(circle at 48% 78%, rgba(6, 144, 134, 0.22), transparent 28%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 26px 80px rgba(3, 62, 84, 0.12);
  isolation: isolate;
}

.path-rail-glass::before,
.path-rail-glass::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.path-rail-glass::before {
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(3, 62, 84, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(3, 62, 84, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.path-rail-glass::after {
  inset: 16% 18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 144, 134, 0.28), transparent 64%);
  filter: blur(26px);
  transform: translateY(calc((var(--path-progress, 0) - 0.5) * 140px));
  transition: transform 260ms ease;
}

.path-svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  width: 64%;
  height: 100%;
  overflow: visible;
}

.path-track,
.path-fill {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-track {
  stroke: rgba(3, 62, 84, 0.14);
  stroke-width: 14;
}

.path-fill {
  stroke: var(--teal);
  stroke-width: 14;
  stroke-dasharray: var(--path-length, 1);
  stroke-dashoffset: var(--path-offset, var(--path-length, 1));
  filter: drop-shadow(0 0 16px rgba(6, 144, 134, 0.38));
  transition: stroke-dashoffset 180ms linear;
}

.path-node {
  position: absolute;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid rgba(6, 144, 134, 0.38);
  border-radius: 50%;
  color: var(--teal);
  background:
    radial-gradient(circle, #ffffff 0 45%, rgba(255, 255, 255, 0.92) 46% 100%),
    #ffffff;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.78),
    0 12px 28px rgba(3, 62, 84, 0.12);
  transform: translate(-50%, -50%) scale(0.78);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.path-node::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(6, 144, 134, 0.14);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.65);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.path-node:nth-of-type(1) {
  top: 10%;
}

.path-node:nth-of-type(2) {
  top: 37%;
}

.path-node:nth-of-type(3) {
  top: 66%;
}

.path-node:nth-of-type(4) {
  top: 90%;
}

.path-node.is-active {
  border-color: rgba(6, 144, 134, 0.86);
  color: #ffffff;
  background:
    radial-gradient(circle, var(--teal) 0 49%, rgba(6, 144, 134, 0.9) 50% 100%),
    var(--teal);
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.84),
    0 0 0 12px rgba(6, 144, 134, 0.12),
    0 0 34px rgba(6, 144, 134, 0.58);
  transform: translate(-50%, -50%) scale(1);
}

.path-node.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.path-node-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.path-node-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
}

.path-node-icon.icon-clock::before {
  content: none;
}

.path-node-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-node .path-node-icon.icon-clock svg {
  stroke: currentColor;
}

.path-stages {
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  padding-block: 12vh;
}

.path-stage {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  align-items: start;
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(3, 62, 84, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 249, 248, 0.72)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(3, 62, 84, 0.1);
  opacity: 0.42;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.path-stage.is-visible,
.path-stage.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.path-stage.is-active {
  border-color: rgba(6, 144, 134, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(238, 249, 248, 0.88)),
    #ffffff;
  box-shadow:
    0 28px 84px rgba(3, 62, 84, 0.14),
    0 0 0 1px rgba(6, 144, 134, 0.06);
}

.path-stage-icon {
  position: sticky;
  top: 128px;
}

.path-stage .icon {
  width: 64px;
  height: 64px;
  border-color: rgba(6, 144, 134, 0.48);
  background: rgba(238, 249, 248, 0.86);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.72);
}

.path-stage.is-active .icon {
  border-color: rgba(6, 144, 134, 0.82);
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.82),
    0 0 34px rgba(6, 144, 134, 0.22);
}

.path-stage > div:last-child > span {
  display: inline-flex;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.path-stage h3 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  line-height: 1.02;
}

.path-stage p {
  max-width: 600px;
  margin-top: 18px;
  color: rgba(3, 62, 84, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.72;
}

.icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.icon::before {
  content: "";
  width: 26px;
  height: 26px;
  background: var(--teal);
  mask: var(--icon) center / contain no-repeat;
}

.icon-clock::before {
  content: none;
}

.icon-clock svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clock {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 5h-2v6l5 3 1-1.7-4-2.3V7Z'/%3E%3C/svg%3E");
}

.sprout {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22h-2v-7.2C6.2 14.3 3 11 3 7.1V4h3.1c3.8 0 7 3.1 7.1 6.9 1-2.4 3.3-4 6-4H21v1.8c0 3.4-2.8 6.2-6.2 6.2H12V22ZM5 6v1.1C5 10 7.4 12.4 10.3 12.8h.7v-.7C10.6 8.8 8.2 6.4 5.1 6H5Zm14 3c-2.4.2-4.4 2.1-4.9 4.4h.8c2.1 0 3.9-1.8 4.1-4.4Z'/%3E%3C/svg%3E");
}

.people {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm8 0a4 4 0 1 1 0-8 4 4 0 0 1 0 8ZM2 21v-3a5 5 0 0 1 5-5h2a5 5 0 0 1 5 5v3H2Zm12.5 0v-3.4c0-1.8-.8-3.5-2-4.6H17a5 5 0 0 1 5 5v3h-7.5Z'/%3E%3C/svg%3E");
}

.shield {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2 8 3v6c0 5-3.4 9.5-8 11-4.6-1.5-8-6-8-11V5l8-3Zm0 4.2L7 8.1v3c0 3.4 2 6.6 5 8 3-1.4 5-4.6 5-8v-3l-5-1.9Zm0 3.2 4 3.8-1.4 1.5-2.6-2.4-2.6 2.4L8 13.2l4-3.8Z'/%3E%3C/svg%3E");
}

.mission {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: #ffffff;
}

.mission::after {
  right: -60px;
  top: 80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
}

.mission-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 18% center;
}

.mission-copy {
  align-self: center;
  max-width: 620px;
  padding: clamp(64px, 8vw, 120px) clamp(24px, 8vw, 96px);
}

.mission-copy h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 20px;
  background: var(--teal);
}

.mission-copy p {
  margin-top: 26px;
  font-size: 1.04rem;
  line-height: 1.72;
  color: rgba(3, 62, 84, 0.76);
}

.mission-copy .button {
  margin-top: 34px;
}

.quote-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 54px clamp(24px, 6vw, 80px);
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(6, 144, 134, 0.7), transparent 38%),
    linear-gradient(100deg, #033e54, #006d72);
}

.quote-band::before,
.quote-band::after {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: -1;
  pointer-events: none;
}

.quote-band::before {
  background-image:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(24deg, rgba(149, 201, 61, 0.14) 0 1px, transparent 1px 64px);
  opacity: 0.42;
  animation: quoteDrift 18s linear infinite;
}

.quote-band::after {
  inset: -20% -10%;
  background:
    linear-gradient(90deg, transparent 8%, rgba(255, 255, 255, 0.16) 9%, transparent 10%),
    linear-gradient(90deg, transparent 34%, rgba(149, 201, 61, 0.2) 35%, transparent 36%),
    linear-gradient(90deg, transparent 67%, rgba(255, 255, 255, 0.12) 68%, transparent 69%);
  background-size: 260px 100%, 360px 100%, 420px 100%;
  mix-blend-mode: screen;
  opacity: 0.36;
  animation: quoteCurrent 12s ease-in-out infinite alternate;
}

.quote-band p {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-inline: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.2;
}

@keyframes quoteDrift {
  from {
    transform: translate3d(-3%, -2%, 0);
  }

  to {
    transform: translate3d(3%, 2%, 0);
  }
}

@keyframes quoteCurrent {
  from {
    transform: translateX(-3%) skewX(-8deg);
  }

  to {
    transform: translateX(3%) skewX(-8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-band::before,
  .quote-band::after {
    animation: none;
  }
}

.stories {
  background: #ffffff;
}

.my-story {
  background:
    radial-gradient(circle at 15% 18%, rgba(6, 144, 134, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, rgba(238, 249, 248, 0.72));
}

.my-story-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: stretch;
  max-width: var(--max);
  margin: 50px auto 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(6, 144, 134, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 80px rgba(3, 62, 84, 0.12);
}

.my-story-profile {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 249, 248, 0.78)),
    #ffffff;
}

.my-story-profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(3, 62, 84, 0.14);
}

.my-story-profile h3 {
  margin-top: 8px;
  font-size: 1.35rem;
}

.my-story-profile a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: rgba(3, 62, 84, 0.76);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.profile-contact::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: var(--teal);
  mask: var(--contact-icon) center / contain no-repeat;
}

.contact-phone {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.6 3.2 3.4 5 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.7.6 4.1.6.7 0 1.3.6 1.3 1.3v3.5c0 .7-.6 1.3-1.3 1.3C10.6 21.6 2.4 13.4 2.4 3.3 2.4 2.6 3 2 3.7 2h3.5c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.6 4.1.1.4 0 .9-.3 1.2l-2.2 2.2Z'/%3E%3C/svg%3E");
}

.contact-email {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2Zm0 3.1V17h16V8.1l-8 5.4-8-5.4Zm1.5-1.1 6.5 4.4L18.5 7h-13Z'/%3E%3C/svg%3E");
}

.my-story-profile a:hover {
  color: var(--teal-dark);
}

.my-story-copy {
  align-self: center;
  padding: clamp(8px, 2vw, 22px) clamp(2px, 2vw, 18px);
}

.testimonial-copy,
.my-story-copy p {
  color: rgba(3, 62, 84, 0.78);
  font-size: clamp(1.02rem, 1.22vw, 1.16rem);
  line-height: 1.78;
}

.testimonial-copy p {
  margin: 0;
}

.testimonial-copy p + p,
.my-story-copy p + p {
  margin-top: 20px;
}

.testimonial-copy + .story-signature {
  margin-top: 20px;
}

.story-signature {
  color: var(--teal-dark) !important;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(2.1rem, 4vw, 3.25rem) !important;
  line-height: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: var(--max);
  margin: 52px auto 0;
}

.story-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(3, 62, 84, 0.08);
}

.story-card img,
.story-card .initials {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--mist), #ffffff);
}

.story-card .initials {
  display: grid;
  place-items: center;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
}

.story-card > div:last-child {
  padding: 24px;
}

.story-card h3 {
  font-size: 1.22rem;
}

.story-card p {
  position: relative;
  max-height: 148px;
  margin-top: 14px;
  overflow: hidden;
  font-size: 0.94rem;
  line-height: 1.66;
  color: rgba(3, 62, 84, 0.78);
}

.story-card:not(.is-open) p::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54px;
  background: linear-gradient(transparent, #ffffff);
}

.story-card.is-open p {
  max-height: none;
}

.story-card button {
  margin-top: 20px;
  padding: 0;
  border: 0;
  color: var(--teal-dark);
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.story-card.image-only p,
.story-card.image-only button {
  display: none;
}

.next-step {
  display: grid;
  grid-template-columns: minmax(320px, 480px) minmax(420px, 540px);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  padding: clamp(74px, 9vw, 118px) clamp(20px, 7vw, 92px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 144, 134, 0.9), rgba(3, 62, 84, 0.96)),
    #033e54;
}

.next-step::before {
  left: -90px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  opacity: 0.2;
}

.next-copy {
  display: flex;
  flex-direction: column;
  max-width: 520px;
}

.next-copy p {
  margin-top: 20px;
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.86);
}

.cta-family-cue {
  display: block;
  width: min(136%, 680px);
  margin: auto -72px clamp(-118px, -9vw, -74px) 0;
  pointer-events: none;
}

.cta-family-cue img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.22));
}

.info-form,
.next-step .form-2 {
  align-self: center;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.next-step .form1 {
  align-self: center;
}

.info-form h3,
.next-step .popupheadline {
  text-align: center;
  font-size: 1.35rem;
}

.next-step .popupheadline {
  margin: 0 0 22px;
  color: var(--ink);
  line-height: 1.18;
}

.info-form > p {
  margin: 8px 0 22px;
  color: rgba(3, 62, 84, 0.64);
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

label span {
  font-size: 0.78rem;
  font-weight: 900;
  color: rgba(3, 62, 84, 0.66);
}

input,
select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(3, 62, 84, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
}

.next-step .formtextbox {
  display: block;
  margin-top: 14px;
  padding-left: 44px;
  background-position: 14px 50%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.next-step .formtextbox#name {
  margin-top: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23069086' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.next-step .formtextbox#email {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23069086' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.next-step .formtextbox#telephone {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23069086' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
}

.input-with-icon {
  padding-left: 44px;
  background-position: 14px 50%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.input-person {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23069086' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.input-phone {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23069086' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
}

.input-email {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23069086' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

input:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(6, 144, 134, 0.13);
}

.info-form .button,
.next-step .submit-button {
  margin-top: 18px;
}

.next-step .submit-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), #0db5a5);
  box-shadow: 0 14px 24px rgba(6, 144, 134, 0.24);
  cursor: pointer;
  font-weight: 900;
  white-space: normal;
}

.next-step .submit-button:hover,
.next-step .submit-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(6, 144, 134, 0.28);
}

.next-step .googlecaptcha {
  display: flex;
  justify-content: center;
  min-height: 100px;
  margin-top: 16px;
}

.next-step .googlecaptcha center {
  display: block;
}

.next-step .hiddenformfields,
.next-step .w-form-done,
.next-step .w-form-fail {
  display: none;
}

.consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--teal);
}

.consent-check span {
  color: rgba(3, 62, 84, 0.68);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-success {
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 34px clamp(20px, 4vw, 56px);
  color: #ffffff;
  background: #033e54;
}

.site-footer img {
  width: 180px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #ffffff;
}

.site-footer p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.74);
  text-align: right;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    justify-self: end;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    background: transparent;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: #ffffff;
  }

  body.menu-open .nav-links {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 26px 28px;
    background: #033e54;
  }

  body.menu-open .nav-links a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero,
  .mission,
  .next-step,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 54px;
    padding-bottom: 36px;
  }

  .hero-logo {
    width: 240px;
    margin-bottom: 26px;
  }

  h1 {
    max-width: 10.5ch;
  }

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

  .hero-media::after {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 26%);
  }

  .hero-media video {
    display: none;
  }

  .hero-media img {
    display: block;
    clip-path: ellipse(100% 82% at 58% 48%);
  }

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

  .my-story-card {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .my-story-profile {
    grid-template-columns: minmax(180px, 240px) 1fr;
    align-items: center;
  }

  .my-story-profile img {
    grid-row: span 3;
  }

  .next-copy {
    max-width: 680px;
  }

  .cta-family-cue {
    width: min(100%, 520px);
    margin: 28px auto -8px;
  }

  .path-experience {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .path-rail {
    position: relative;
    top: auto;
    height: 380px;
    min-height: 380px;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }

  .path-rail-glass {
    position: relative;
    top: auto;
    height: 100%;
    min-height: 0;
  }

  .path-stages {
    padding-block: 0;
  }

  .path-stage {
    min-height: 220px;
  }

  .site-footer {
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .hero-copy {
    padding-inline: 20px;
  }

  .hero-logo {
    width: 210px;
    margin-bottom: 24px;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 3.2rem);
    line-height: 1.04;
  }

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

  .button.text {
    justify-content: flex-start;
  }

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

  .promise,
  .my-story,
  .stories {
    padding-inline: 18px;
  }

  .my-story-card {
    gap: 20px;
    margin-top: 34px;
    padding: 16px;
  }

  .my-story-profile {
    grid-template-columns: 1fr;
    padding: 14px;
    text-align: center;
  }

  .my-story-profile img {
    grid-row: auto;
    max-width: 260px;
    margin-inline: auto;
  }

  .my-story-copy {
    padding: 4px 2px;
  }

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

  .path-experience {
    margin-top: 40px;
  }

  .path-rail {
    height: 300px;
    min-height: 300px;
  }

  .path-svg {
    left: 18%;
    width: 64%;
    height: 100%;
  }

  .path-stages {
    gap: 22px;
  }

  .path-stage {
    grid-template-columns: 56px 1fr;
    min-height: auto;
    gap: 16px;
    padding: 20px 16px;
  }

  .path-stage-icon {
    position: static;
  }

  .path-stage .icon {
    width: 52px;
    height: 52px;
  }

  .path-stage h3 {
    font-size: 2rem;
  }

  .mission-image img {
    min-height: 340px;
    object-position: 14% center;
  }

  .mission-copy,
  .next-step {
    padding-inline: 20px;
  }

  .cta-family-cue {
    width: min(100%, 285px);
    margin-top: 18px;
    margin-bottom: -4px;
  }

  .story-card {
    grid-template-rows: 190px 1fr;
  }

  .story-card img,
  .story-card .initials {
    height: 190px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}

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