@charset "UTF-8";
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulseSoft {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(217, 91, 128, 0.2);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(217, 91, 128, 0);
  }
}
:root {
  --ink: #251820;
  --muted: #7e6672;
  --line: #f1d8e1;
  --soft: #fff8fa;
  --white: #ffffff;
  --ruby: #d95b80;
  --ruby-dark: #a92f57;
  --teal: #c75f75;
  --blue: #ef9eb3;
  --cream: #fff7f9;
  --mint: #fff0f4;
  --shadow: 0 24px 80px rgba(169, 47, 87, 0.15);
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #251820;
  background: #fff8fa;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

::selection {
  color: #ffffff;
  background: #d95b80;
}

:focus-visible {
  outline: 3px solid rgba(199, 95, 117, 0.4);
  outline-offset: 4px;
}

/* Header */
.site-header {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(223, 232, 234, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0;
}
.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 12px rgba(169, 47, 87, 0.18));
}
.brand span {
  color: #d95b80;
}

.nav-links,
.site-footer nav {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  color: #7e6672;
  font-size: 0.94rem;
  font-weight: 700;
}
.nav-links a,
.site-footer nav a {
  position: relative;
}
.nav-links a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: #d95b80;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.nav-links a[aria-current=page], .nav-links a:hover,
.site-footer nav a[aria-current=page],
.site-footer nav a:hover {
  color: #d95b80;
}
.nav-links a[aria-current=page]::after, .nav-links a:hover::after,
.site-footer nav a[aria-current=page]::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: #251820;
  transition: all 180ms ease;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  background: #ffffff;
  border-bottom: 1px solid #f1d8e1;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  z-index: 19;
}
.mobile-nav a {
  padding: 12px 0;
  color: #7e6672;
  font-weight: 700;
  font-size: 0.94rem;
}
.mobile-nav a[aria-current=page] {
  color: #d95b80;
  font-weight: 900;
}
.mobile-nav a:hover {
  color: #d95b80;
}
.mobile-nav:not([hidden]) {
  display: flex;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}
.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta,
.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #d95b80, #a92f57);
  box-shadow: 0 14px 26px rgba(217, 91, 128, 0.22);
}

.button.secondary {
  color: #a92f57;
  border-color: #f1d8e1;
  background: #ffffff;
}
.button.secondary:hover {
  border-color: rgba(217, 91, 128, 0.32);
  box-shadow: 0 14px 38px rgba(169, 47, 87, 0.09);
}

/* Hero */
.hero {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(48px, 7vw, 96px);
  background: radial-gradient(circle at 88% 12%, rgba(199, 95, 117, 0.13), transparent 28%), linear-gradient(115deg, #ffffff 0%, #fff8fa 58%, #f7edf2 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(241, 216, 225, 0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(241, 216, 225, 0.35) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 72%, transparent);
  opacity: 0.42;
}

.medical-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  background: radial-gradient(circle at 86% 18%, rgba(239, 158, 179, 0.28), transparent 28%), linear-gradient(120deg, #ffffff 0%, #fff8fa 50%, #ffe9ef 100%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  animation: fadeUp 700ms ease both;
}

.reveal-right {
  animation: slideInRight 760ms ease both;
}

.page-hero {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  padding-top: clamp(64px, 9vw, 118px);
  padding-bottom: clamp(64px, 9vw, 118px);
  border-bottom: 1px solid #f1d8e1;
  background: linear-gradient(135deg, rgba(217, 91, 128, 0.12), transparent 44%), #ffffff;
}
.page-hero > * {
  max-width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}
.page-hero.app-hero {
  background: linear-gradient(135deg, rgba(199, 95, 117, 0.16), transparent 42%), #ffffff;
}

.coming-soon-hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 82% 28%, rgba(217, 91, 128, 0.18), transparent 30%), linear-gradient(135deg, #ffffff, #fff0f5);
}

.coming-soon-logo {
  position: absolute;
  right: clamp(40px, 8vw, 132px);
  bottom: clamp(42px, 8vw, 112px);
  z-index: 1;
  width: clamp(220px, 24vw, 390px);
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 28px 70px rgba(169, 47, 87, 0.14));
  pointer-events: none;
}

.lock-button {
  position: absolute;
  top: clamp(24px, 5vw, 58px);
  right: clamp(24px, 5vw, 72px);
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(217, 91, 128, 0.18);
  border-radius: 50%;
  color: #a92f57;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(169, 47, 87, 0.09);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.lock-button:hover {
  color: #d95b80;
  transform: translateY(-2px);
  box-shadow: 0 24px 80px rgba(169, 47, 87, 0.15);
}
.lock-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-hero h1,
.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.75rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
}

.references-hero h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 1;
}

.page-hero p,
.lede {
  max-width: 680px;
  color: #7e6672;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 16px;
  color: #d95b80;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-visual,
.hero-media {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.hero-media {
  position: relative;
  z-index: 1;
}

.hero-infographic {
  position: relative;
  width: min(100%, 660px);
  margin: 0;
  overflow: hidden;
  border: 10px solid #ffffff;
  border-radius: 44px 44px 12px 44px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(145, 36, 72, 0.2);
}
.hero-infographic img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.phone-shell {
  width: min(360px, 100%);
  min-height: 620px;
  padding: 24px;
  border: 12px solid #1c2430;
  border-radius: 46px;
  background: linear-gradient(180deg, #ffffff, #f2f7f7);
  box-shadow: 0 24px 80px rgba(169, 47, 87, 0.15);
  transform: rotate(2deg);
}

.phone-status,
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.phone-status span {
  display: block;
  width: 72px;
  height: 9px;
  border-radius: 999px;
  background: #e7eff0;
}

.pulse-card,
.journal-card,
.feature-card,
.quote-card,
.cta-panel,
.contact-card,
.contact-details,
.tab-list article,
.person-card,
.app-window {
  background: #ffffff;
  border: 1px solid #f1d8e1;
  box-shadow: 0 14px 38px rgba(169, 47, 87, 0.09);
}

.pulse-card {
  margin-top: 32px;
  padding: 26px;
  border-radius: 28px;
}
.pulse-card p {
  margin: 0;
}
.pulse-card strong {
  display: block;
  margin-top: 10px;
  color: #d95b80;
  font-size: 3rem;
}

.pulse-card p,
.journal-card span,
.metric-row span {
  color: #7e6672;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pulse-line {
  height: 68px;
  margin-top: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, transparent 20%, rgba(217, 91, 128, 0.16) 20% 24%, transparent 24% 45%, rgba(217, 91, 128, 0.26) 45% 49%, transparent 49%), #faf1f4;
}

.metric-row {
  margin-top: 16px;
}
.metric-row div {
  flex: 1;
  padding: 18px;
  border-radius: 20px;
  background: #f5f8f8;
}
.metric-row strong {
  display: block;
  margin-top: 8px;
}

.journal-card {
  margin-top: 16px;
  padding: 22px;
  border-radius: 24px;
}
.journal-card p {
  color: #7e6672;
  line-height: 1.5;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 360px;
  width: 100%;
  border: 10px solid #ffffff;
  background: linear-gradient(135deg, rgba(217, 91, 128, 0.22), rgba(239, 158, 179, 0.18)), repeating-linear-gradient(45deg, #fff3f6 0 14px, #ffe7ef 14px 28px);
  box-shadow: 0 24px 80px rgba(169, 47, 87, 0.15);
}
.image-placeholder::before, .image-placeholder::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}
.image-placeholder::before {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 18%;
}
.image-placeholder::after {
  width: 220px;
  height: 220px;
  right: -52px;
  bottom: -42px;
}
.image-placeholder span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  color: #a92f57;
  border: 1px solid rgba(217, 91, 128, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}
.image-placeholder.portrait {
  min-height: 620px;
  border-radius: 220px 220px 16px 16px;
}
.image-placeholder.landscape {
  min-height: 430px;
  border-radius: 8px;
}

.floating-card {
  position: absolute;
  right: 34px;
  bottom: 22px;
  width: min(230px, 42%);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(145, 36, 72, 0.17);
  backdrop-filter: blur(14px);
  animation: floatY 4s ease-in-out infinite;
}
.floating-card span {
  color: #7e6672;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.floating-card strong {
  display: block;
  margin-top: 8px;
  color: #d95b80;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.05;
}
.floating-card p {
  margin-bottom: 0;
  color: #7e6672;
}

/* Sections */
.section {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(54px, 8vw, 96px);
}
.section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.section p {
  color: #7e6672;
  line-height: 1.7;
}

.section > .section-heading,
.section > .card-grid,
.section > .case-strip,
.section > .stat-panel,
.section > .tab-list,
.section > .slider-shell {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section.split,
.section.testimonials,
.section.contact-layout,
.section.card-grid {
  max-width: calc(1180px + clamp(40px, 10vw, 144px));
  margin-left: auto;
  margin-right: auto;
}

.service-band {
  background: #ffffff;
}

.about-band {
  background: linear-gradient(90deg, rgba(217, 91, 128, 0.07), transparent 48%), #fff8fa;
}

.patient-dashboard {
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 10px solid #ffffff;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(169, 47, 87, 0.15);
}
.patient-dashboard img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 22px;
}
.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.person-card {
  min-height: 230px;
  border-radius: 10px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.feature-card:hover,
.person-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 91, 128, 0.28);
  box-shadow: 0 22px 54px rgba(23, 33, 43, 0.12);
}
.feature-card:hover .feature-card__image img,
.person-card:hover .feature-card__image img {
  transform: scale(1.04);
}
.feature-card h3,
.person-card h3 {
  margin: 18px 0 8px;
  font-size: 1.35rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
}
.feature-card h3,
.feature-card p,
.feature-card .card-link {
  margin-right: 10px;
  margin-left: 10px;
}
.feature-card p {
  flex: 1;
}

.person-card {
  padding: 28px;
}

.feature-card__image {
  overflow: hidden;
  margin: 0 0 8px;
  border-radius: 8px;
  background: #fff8fa;
}
.feature-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 240ms ease;
}

.icon-dot {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #d95b80;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.28);
  transition: transform 180ms ease;
}
.icon-dot.teal {
  background: #c75f75;
}
.icon-dot.blue {
  background: #ef9eb3;
}

.card-link,
.text-link,
.person-card a {
  cursor: pointer;
}

.card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 14px;
  color: #a92f57;
  font-weight: 900;
}
.card-link::after {
  margin-left: 8px;
  content: "→";
  transition: transform 180ms ease;
}
.card-link:hover::after {
  transform: translateX(5px);
}

.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 50%;
  background: rgba(217, 91, 128, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #d95b80;
  font-weight: 900;
}
.text-link:hover {
  color: #a92f57;
}

.appointment-strip {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: calc(1180px + clamp(40px, 10vw, 144px));
  margin: 0 auto;
  padding-top: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(34px, 5vw, 56px);
  color: #ffffff;
  background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.2), transparent 28%), linear-gradient(135deg, #a92f57, #d95b80);
  box-shadow: 0 24px 80px rgba(169, 47, 87, 0.15);
}
.appointment-strip .eyebrow,
.appointment-strip h2 {
  color: #ffffff;
}
.appointment-strip h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
}
.appointment-strip .button {
  background: #ffffff;
  color: #a92f57;
}

.stats-strip {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: calc(1180px + clamp(40px, 10vw, 144px));
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  background: #f1d8e1;
  border-top: 1px solid #f1d8e1;
  border-bottom: 1px solid #f1d8e1;
}
.stats-strip div {
  min-height: 148px;
  padding: 30px 20px;
  text-align: center;
  background: #ffffff;
}
.stats-strip strong {
  display: block;
  color: #d95b80;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}
.stats-strip span {
  display: block;
  margin-top: 12px;
  color: #7e6672;
  font-weight: 900;
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #f1d8e1;
  background: #f1d8e1;
  box-shadow: 0 14px 38px rgba(169, 47, 87, 0.09);
}
.stat-panel div {
  min-height: 132px;
  padding: 24px;
  background: #ffffff;
}
.stat-panel strong {
  display: block;
  color: #d95b80;
  font-size: 2.1rem;
}
.stat-panel span {
  color: #7e6672;
  font-weight: 800;
}

.cases {
  background: linear-gradient(180deg, #fff1f5, #ffffff);
}

.slider-shell,
.testimonial-slider {
  position: relative;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  --visible-items: 3;
  --slide-basis: calc((100% - 36px) / 3);
  display: flex;
  gap: 18px;
  transition: transform 350ms ease;
  will-change: transform;
}
.slider-track > * {
  flex: 0 0 var(--slide-basis);
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #d95b80;
  box-shadow: 0 14px 38px rgba(169, 47, 87, 0.09);
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.slider-button:hover:not(:disabled) {
  background: #a92f57;
  transform: translateY(-50%) scale(1.06);
}
.slider-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}
.slider-button.prev {
  left: -23px;
}
.slider-button.next {
  right: -23px;
}

.has-no-overflow .slider-button,
.has-no-overflow .slider-dots {
  display: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(217, 91, 128, 0.26);
}
.slider-dots button.is-active {
  width: 26px;
  background: #d95b80;
}

.case-strip {
  gap: 18px;
}
.case-strip article {
  min-height: 260px;
  padding: 30px;
  color: #ffffff;
  background: radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 26%), linear-gradient(145deg, #a92f57, #d95b80);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(169, 47, 87, 0.2);
  transition: transform 180ms ease;
  cursor: pointer;
}
.case-strip article:hover {
  transform: translateY(-5px);
}
.case-strip span {
  font-weight: 900;
  opacity: 0.72;
}
.case-strip h3 {
  margin: 18px 0 8px;
  font-size: 1.35rem;
}
.case-strip p {
  color: rgba(255, 255, 255, 0.82);
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.testimonial-track {
  --visible-items: 1;
}

.early-warning-visual {
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 10px solid #ffffff;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(169, 47, 87, 0.15);
}
.early-warning-visual img {
  display: block;
  width: 100%;
  min-height: clamp(420px, 55vw, 760px);
  object-fit: contain;
  object-position: center;
}

.team-section {
  background: #ffffff;
}

.testimonial-band {
  max-width: none;
  background: linear-gradient(135deg, rgba(217, 91, 128, 0.08), transparent 46%), #fff7fa;
}
.testimonial-band .cta-panel {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}
.testimonial-band .early-warning-visual {
  max-width: min(1500px, 100vw - clamp(40px, 10vw, 144px));
  margin-right: auto;
  margin-left: auto;
}

.quote-card,
.cta-panel,
.contact-card,
.contact-details {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 6px;
}

.contact-card form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
  color: #251820;
}
.contact-card form label input,
.contact-card form label textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #f1d8e1;
  border-radius: 6px;
  font: inherit;
  color: #251820;
  background: #ffffff;
}
.contact-card form label textarea {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  margin: 16px 0 0;
  font-weight: 700;
}
.form-message.is-success {
  color: #a92f57;
}
.form-message.is-error {
  color: #a92f57;
}

.contact-form-note {
  margin-top: 16px;
  color: #7e6672;
  font-size: 0.92rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quote-card {
  min-height: 320px;
}
.quote-card p {
  color: #251820;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.25;
}

.avatar-placeholder {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.8) 0 24%, transparent 25%), linear-gradient(145deg, rgba(217, 91, 128, 0.28), rgba(239, 158, 179, 0.22));
}

.stars {
  display: block;
  margin-top: 18px;
  color: #d95b80;
  letter-spacing: 0.08em;
}

.site-footer {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 38px;
  border-top: 1px solid #f1d8e1;
  background: linear-gradient(90deg, rgba(217, 91, 128, 0.06), transparent 35%), #ffffff;
}
.site-footer p {
  max-width: 420px;
  color: #7e6672;
}

.footer-bottom {
  display: grid;
  grid-column: 1/-1;
  gap: 10px;
  justify-items: center;
  padding-top: 20px;
  border-top: 1px solid #f1d8e1;
  color: #7e6672;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}
.footer-bottom p {
  max-width: none;
  margin: 0;
}
.footer-bottom a {
  color: #a92f57;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  justify-content: center;
}
.footer-credit a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.footer-credit a img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  object-fit: contain;
}

.terms-layout {
  display: grid;
  gap: 18px;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
.terms-layout article {
  background: #ffffff;
  border: 1px solid #f1d8e1;
  box-shadow: 0 14px 38px rgba(169, 47, 87, 0.09);
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
}
.terms-layout h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.tab-list {
  display: grid;
  gap: 16px;
}
.tab-list article {
  padding: 24px;
}

.person-card {
  cursor: pointer;
  overflow: hidden;
}
.person-card:hover .person-photo {
  transform: scale(1.04);
}
.person-card a {
  display: inline-flex;
  margin-top: 10px;
  color: #d95b80;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.person-card:hover a {
  opacity: 1;
  transform: translateY(0);
}

.person-photo {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 4/5;
  place-items: center;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.72) 0 18%, transparent 19%), linear-gradient(145deg, rgba(217, 91, 128, 0.24), rgba(199, 95, 117, 0.18));
  transition: transform 220ms ease;
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linkedin-link {
  align-items: center;
  gap: 8px;
}
.linkedin-link span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 4px;
  color: #ffffff;
  background: #0a66c2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.app-window {
  min-height: 360px;
  padding: 22px;
  border-radius: 6px;
}

.window-bar {
  display: flex;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid #f1d8e1;
}
.window-bar span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d95b80;
}
.window-bar span:nth-child(2) {
  background: #c75f75;
}
.window-bar span:nth-child(3) {
  background: #ef9eb3;
}

.dashboard-lines {
  display: grid;
  gap: 18px;
  padding-top: 34px;
}
.dashboard-lines strong {
  font-size: 1.6rem;
}
.dashboard-lines i {
  display: block;
  height: 42px;
  border-radius: 999px;
  background: #eef5f5;
}
.dashboard-lines i:nth-child(3) {
  width: 76%;
}
.dashboard-lines i:nth-child(4) {
  width: 58%;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 24px;
}

.admin-modal[hidden] {
  display: none;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 24, 32, 0.48);
  backdrop-filter: blur(8px);
}

.admin-modal__panel {
  background: #ffffff;
  border: 1px solid #f1d8e1;
  box-shadow: 0 14px 38px rgba(169, 47, 87, 0.09);
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: clamp(24px, 5vw, 42px);
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(37, 24, 32, 0.28);
}
.admin-modal__panel h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.admin-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #f1d8e1;
  border-radius: 50%;
  color: #7e6672;
  background: #ffffff;
  font-weight: 900;
}
.admin-modal__close:hover {
  color: #d95b80;
  border-color: rgba(217, 91, 128, 0.35);
}

.admin-modal__message {
  min-height: 24px;
  margin: 0;
  color: #a92f57;
  font-weight: 800;
}
.admin-modal__message.is-success {
  color: #287462;
}

/* Forms */
form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #7e6672;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #f1d8e1;
  padding: 14px 16px;
  font: inherit;
  color: #251820;
  background: #fbfdfd;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
input:focus,
textarea:focus {
  border-color: rgba(199, 95, 117, 0.68);
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(199, 95, 117, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  cursor: pointer;
  font: inherit;
}

.supporter-strip {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: calc(1180px + clamp(40px, 10vw, 144px));
  margin: 0 auto;
  background: #f1d8e1;
}
.supporter-strip span {
  display: grid;
  min-height: 112px;
  place-items: center;
  color: rgba(169, 47, 87, 0.62);
  background: #ffffff;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  text-transform: uppercase;
}

.news-section {
  background: #ffffff;
}

.news-card {
  background: #ffffff;
  border: 1px solid #f1d8e1;
  box-shadow: 0 14px 38px rgba(169, 47, 87, 0.09);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.news-card h3,
.news-card p,
.news-card .card-link {
  margin-right: 24px;
  margin-left: 24px;
}
.news-card h3 {
  margin-top: 24px;
}
.news-card .card-link {
  margin-bottom: 26px;
}
.news-card p {
  flex: 1;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(23, 33, 43, 0.12);
}
.news-card:hover .news-card__image img {
  transform: scale(1.03);
}

.news-card__image {
  overflow: hidden;
  margin: 0;
  background: #fff8fa;
}
.news-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
}
.content-layout.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
}

.content-visual,
.content-panel,
.metric-list article,
.reference-list article {
  background: #ffffff;
  border: 1px solid #f1d8e1;
  box-shadow: 0 14px 38px rgba(169, 47, 87, 0.09);
}

.content-visual {
  overflow: hidden;
  margin: 0;
  border: 10px solid #ffffff;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(169, 47, 87, 0.15);
}
.content-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature-hero-image {
  padding-top: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(28px, 5vw, 58px);
  background: #fff8fa;
}
.feature-hero-image .content-visual.large {
  max-width: min(1180px, 100vw - clamp(40px, 10vw, 144px));
  margin-right: auto;
  margin-left: auto;
}
.feature-hero-image .content-visual.large img {
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #ffffff;
}

.content-panel {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 10px;
}
.content-panel h2 {
  margin-bottom: 18px;
}

.metric-list,
.reference-list {
  display: grid;
  gap: 16px;
}

.metric-list article,
.reference-list article {
  padding: 22px;
  border-radius: 8px;
}

.reference-section {
  background: #ffffff;
}

.reference-list {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}
.reference-list strong,
.reference-list span {
  display: block;
}
.reference-list span {
  margin-top: 8px;
  color: #7e6672;
  line-height: 1.6;
}
.reference-list a {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  color: #a92f57;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.image-placeholder.small {
  min-height: 190px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 220ms ease;
}

/* Responsive */
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto 1fr auto;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .site-header,
  .site-footer,
  .hero,
  .split,
  .testimonials,
  .contact-layout,
  .content-layout,
  .content-layout.reverse {
    grid-template-columns: 1fr;
  }
  .nav-links {
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .card-grid.three, .card-grid.four {
    grid-template-columns: 1fr;
  }
  .case-strip {
    display: flex;
  }
  .hero {
    min-height: auto;
  }
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .appointment-strip,
  .supporter-strip {
    grid-template-columns: 1fr;
  }
  .slider-button.prev {
    left: 6px;
  }
  .slider-button.next {
    right: 6px;
  }
  .section-heading {
    text-align: left;
  }
  .coming-soon-logo {
    position: static;
    width: clamp(150px, 42vw, 240px);
    margin-top: 34px;
    justify-self: center;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }
  .page-hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-hero > * {
    max-width: min(100%, 342px);
    margin-left: 0;
    margin-right: 0;
  }
  .hamburger {
    justify-self: end;
  }
  .header-cta {
    grid-column: 1/-1;
    justify-self: start;
    width: max-content;
  }
  .coming-soon-hero .eyebrow {
    font-size: 0.68rem;
    overflow-wrap: anywhere;
  }
  .page-hero h1,
  .hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.35rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }
  .page-hero h1,
  .page-hero p,
  .page-hero .hero-actions {
    max-width: min(100%, 342px);
  }
  .hero-copy,
  .hero h1,
  .hero p,
  .hero .hero-actions {
    max-width: min(100%, 342px);
  }
  .hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero .button {
    max-width: 100%;
  }
  .page-hero p {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
  .hero-visual {
    min-height: auto;
  }
  .phone-shell {
    min-height: 540px;
    transform: none;
  }
  .stat-panel {
    grid-template-columns: 1fr;
  }
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .image-placeholder.portrait {
    min-height: 420px;
    border-radius: 120px 120px 12px 12px;
  }
  .floating-card {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    width: min(100%, 420px);
    margin-top: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
