:root {
  --lilac-50: #fbf6fb;
  --lilac-100: #e9d8eb;
  --lilac-200: #dcc4df;
  --purple-700: #786080;
  --purple-800: #5d4666;
  --purple-900: #3f3146;
  --gold: #c6a764;
  --gold-soft: #eadbb3;
  --ink: #2a2230;
  --muted: #6d6071;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(63, 49, 70, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--lilac-50);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 62px;
  padding: 7px clamp(18px, 5vw, 72px);
  background: rgba(251, 246, 251, 0.86);
  border-bottom: 1px solid rgba(120, 96, 128, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: auto;
  height: 48px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  color: var(--purple-800);
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a,
.secondary-button,
.contact-list a {
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.secondary-button:hover,
.contact-list a:hover {
  color: var(--gold);
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-cta,
.primary-button {
  background: var(--purple-700);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(120, 96, 128, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.primary-button:hover {
  background: var(--purple-900);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(120, 96, 128, 0.32);
}

.secondary-button {
  border: 1px solid rgba(120, 96, 128, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: var(--purple-800);
  box-shadow: 0 10px 22px rgba(120, 96, 128, 0.08);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: calc(100svh - 62px);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px) 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle at 84% 20%, rgba(220, 196, 223, 0.42), transparent 22%),
    radial-gradient(circle at 78% 74%, rgba(234, 219, 179, 0.3), transparent 24%),
    linear-gradient(118deg, rgba(233, 216, 235, 0.98), rgba(251, 246, 251, 0.96) 46%, rgba(234, 219, 179, 0.36)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10vw -18vw auto;
  width: 46vw;
  min-width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(198, 167, 100, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 7%;
  left: -6%;
  width: min(26vw, 320px);
  aspect-ratio: 1;
  border-radius: 42% 58% 53% 47% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.82), transparent 28%),
    radial-gradient(circle at 65% 55%, rgba(234, 219, 179, 0.42), transparent 58%),
    rgba(220, 196, 223, 0.2);
  filter: blur(4px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
}

.hero-inner::before {
  content: "";
  position: absolute;
  top: 6%;
  left: -3%;
  width: min(22vw, 220px);
  height: min(22vw, 220px);
  border: 1px solid rgba(198, 167, 100, 0.22);
  border-radius: 38% 62% 64% 36% / 35% 34% 66% 65%;
  opacity: 0.75;
  pointer-events: none;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--purple-900);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: 6.3rem;
}

h2 {
  font-size: 3.8rem;
}

h3 {
  margin: 0;
  color: var(--purple-900);
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--purple-800);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.22;
}

.hero-text {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-text-secondary {
  margin-top: 8px;
}

.hero-copy {
  position: relative;
  padding: 0;
}

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

.hero-visual {
  position: relative;
  justify-self: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -14%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(234, 219, 179, 0.72) 0 12%, transparent 13%),
    radial-gradient(circle, rgba(198, 167, 100, 0.2), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: 8%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(120, 96, 128, 0.16);
  border-radius: 46% 54% 63% 37% / 46% 44% 56% 54%;
  pointer-events: none;
}

.portrait-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: min(38vw, 458px);
  min-width: 290px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(233, 216, 235, 0.92) 48%, rgba(234, 219, 179, 0.52));
  border: 2px solid rgba(198, 167, 100, 0.82);
  box-shadow:
    0 32px 80px rgba(63, 49, 70, 0.18),
    0 0 0 14px rgba(255, 255, 255, 0.3),
    0 0 0 28px rgba(233, 216, 235, 0.24);
  overflow: hidden;
  animation: floatPortrait 7s ease-in-out infinite;
}

.portrait-ring::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(120, 96, 128, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-ring::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background:
    conic-gradient(
      from 220deg,
      rgba(198, 167, 100, 0.12),
      rgba(255, 255, 255, 0) 22%,
      rgba(120, 96, 128, 0.15) 48%,
      rgba(255, 255, 255, 0) 70%,
      rgba(198, 167, 100, 0.18)
    );
  filter: blur(8px);
  z-index: -1;
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  filter: saturate(0.92) contrast(0.96);
}

.hero-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(138px, 178px));
  justify-content: center;
  align-items: start;
  gap: clamp(34px, 4.8vw, 68px);
  width: 100vw;
  max-width: none;
  min-height: 166px;
  margin: clamp(26px, 5vw, 52px) calc(50% - 50vw) 0 auto;
  margin-top: auto;
  padding: 14px clamp(18px, 3vw, 34px) 10px;
  overflow: hidden;
  isolation: isolate;
}

.hero-cards::before {
  content: "";
  position: absolute;
  inset: 0 0 0 9%;
  z-index: -1;
  background-color: #e9d8eb;
  background-image:
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.52), transparent 18%),
    radial-gradient(circle at 72% 0%, rgba(198, 167, 100, 0.14), transparent 24%),
    linear-gradient(90deg, rgba(233, 216, 235, 0), #e9d8eb 8%, #eadcf0 38%, #e4d0e6 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 13px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 18px 18px;
  border-radius: 120px 0 0 120px;
  border-left: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -18px 28px rgba(120, 96, 128, 0.05);
  transform: translateX(100%);
}

.hero-cards::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -8%;
  width: min(24vw, 280px);
  height: 20px;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(198, 167, 100, 0.32), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  background-size: 100% 1px, 100% 100%;
  background-repeat: no-repeat;
  background-position: center center, center top;
  opacity: 0;
}

.hero-card-item {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 8px 8px 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
  text-align: center;
  opacity: 0;
  transform: translateX(100px);
}

.hero-card-item img {
  width: min(100%, 104px);
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-card-item p {
  margin: 0;
  max-width: 12ch;
  color: var(--purple-800);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
  text-wrap: balance;
}

.hero-cards.reveal {
  opacity: 1;
  transform: none;
}

.hero-cards.reveal.is-visible::before {
  animation: cardsPanelReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-cards.reveal.is-visible::after {
  animation: cardsLineReveal 900ms ease 180ms forwards;
}

.hero-cards.reveal.is-visible .hero-card-item {
  animation: cardsImageReveal 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-cards.reveal.is-visible .hero-card-item:nth-child(1) {
  animation-delay: 180ms;
}

.hero-cards.reveal.is-visible .hero-card-item:nth-child(2) {
  animation-delay: 260ms;
}

.hero-cards.reveal.is-visible .hero-card-item:nth-child(3) {
  animation-delay: 340ms;
}

.hero-cards.reveal.is-visible .hero-card-item:nth-child(4) {
  animation-delay: 420ms;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 92px);
  max-width: 1120px;
  margin: 0 auto;
}

.section-content {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-content p {
  margin: 0 0 18px;
}

.centered {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.about-section {
  background:
    radial-gradient(circle at top right, rgba(220, 196, 223, 0.35), transparent 30%),
    linear-gradient(180deg, #fffaf7, #fbf6fb);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
  max-width: 1120px;
  margin: 0 auto;
}

.about-copy h2 {
  font-size: clamp(3.6rem, 7vw, 5.4rem);
}

.about-text {
  max-width: 620px;
  margin-top: 22px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-placeholder {
  display: flex;
  align-items: center;
  min-height: 220px;
  padding: 24px 28px;
  border: 1px dashed rgba(198, 167, 100, 0.48);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.about-placeholder p {
  margin: 0;
  color: rgba(109, 96, 113, 0.88);
  font-style: italic;
}

.about-visual {
  justify-self: end;
  width: 100%;
  max-width: 500px;
}

.about-frame {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(233, 216, 235, 0.72));
  border: 1px solid rgba(198, 167, 100, 0.3);
  box-shadow: 0 24px 60px rgba(63, 49, 70, 0.12);
}

.about-frame::before,
.about-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-frame::before {
  inset: -14px auto auto -14px;
  width: 110px;
  height: 110px;
  border-top: 2px solid rgba(198, 167, 100, 0.5);
  border-left: 2px solid rgba(198, 167, 100, 0.5);
  border-top-left-radius: 28px;
}

.about-frame::after {
  right: -14px;
  bottom: -14px;
  width: 120px;
  height: 120px;
  border-right: 2px solid rgba(120, 96, 128, 0.24);
  border-bottom: 2px solid rgba(120, 96, 128, 0.24);
  border-bottom-right-radius: 30px;
}

.about-photo-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(234, 219, 179, 0.22), rgba(233, 216, 235, 0.1));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    inset 0 0 0 2px rgba(120, 96, 128, 0.08);
}

.about-photo-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  object-position: center top;
}

.path-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(233, 216, 235, 0.82), transparent 34%),
    radial-gradient(circle at bottom right, rgba(234, 219, 179, 0.28), transparent 32%),
    linear-gradient(180deg, #fffdfc, #f8eff8 56%, #fff9f4);
}

.path-section::before,
.path-section::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(14px);
}

.path-section::before {
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(220, 196, 223, 0.5), transparent 68%);
}

.path-section::after {
  bottom: -120px;
  left: -40px;
  background: radial-gradient(circle, rgba(234, 219, 179, 0.4), transparent 68%);
}

.path-shell {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.path-heading {
  margin-bottom: 42px;
}

.path-lead {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.path-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.path-panel,
.path-bridge,
.compare-card,
.path-column,
.path-closing {
  border: 1px solid rgba(120, 96, 128, 0.14);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(63, 49, 70, 0.08);
  backdrop-filter: blur(12px);
}

.path-panel,
.path-column {
  border-radius: 30px;
}

.path-panel {
  padding: clamp(24px, 4vw, 34px);
}

.path-panel-label,
.path-column h3 {
  margin: 0;
  color: var(--purple-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.95rem;
  line-height: 1.05;
}

.path-list,
.path-mini-list {
  display: grid;
  gap: 14px;
}

.path-list {
  margin-top: 26px;
}

.path-list-item,
.path-mini-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.path-list-item {
  grid-template-columns: 56px minmax(0, 1fr);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(198, 167, 100, 0.2);
}

.path-mini-item {
  grid-template-columns: 52px minmax(0, 1fr);
}

.path-list-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.path-list-item p,
.path-mini-item p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.4;
}

.path-list-item p {
  align-self: center;
}

.path-mini-item p {
  align-self: center;
}

.path-icon,
.compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.path-icon {
  width: 56px;
  height: 56px;
  color: #b07ac2;
  background: linear-gradient(180deg, rgba(220, 196, 223, 0.8), rgba(233, 216, 235, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

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

.path-icon svg,
.compare-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-bridge {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(220, 196, 223, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.78);
}

.path-bridge-mark {
  display: block;
  margin-bottom: 12px;
  color: rgba(198, 167, 100, 0.82);
  font-size: 2.5rem;
  line-height: 1;
}

.path-bridge p {
  margin: 0;
  color: var(--purple-800);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.06;
}

.path-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.compare-card {
  min-height: 100%;
  padding: 30px;
  border-radius: 30px;
  text-align: center;
}

.compare-card h3 {
  margin: 16px 0 10px;
  color: var(--purple-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.compare-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.compare-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  color: var(--gold);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(234, 219, 179, 0.5));
  box-shadow: inset 0 0 0 1px rgba(198, 167, 100, 0.22);
}

.compare-divider {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 72px;
  margin-inline: -18px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
  filter: drop-shadow(0 14px 24px rgba(198, 167, 100, 0.28));
}

.compare-divider span {
  display: block;
  transform: translateY(-12px);
}

.compare-divider::before,
.compare-divider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 42px;
  height: 66px;
  background: var(--gold);
  border-radius: 42px 42px 0 0;
  z-index: -1;
}

.compare-divider::before {
  left: 41px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.compare-divider::after {
  left: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.path-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.path-column {
  padding: 28px;
}

.path-mini-list {
  margin-top: 20px;
}

.path-closing {
  margin-top: 24px;
  padding: 20px 28px;
  border-radius: 999px;
  text-align: center;
  background: linear-gradient(180deg, rgba(220, 196, 223, 0.5), rgba(255, 255, 255, 0.84));
}

.path-closing p {
  margin: 0;
  color: var(--purple-800);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.15;
}

.path-closing strong {
  color: var(--gold);
  font-weight: 700;
}

.care-section {
  background: var(--white);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.care-card {
  min-height: 278px;
  padding: 28px;
  border: 1px solid rgba(120, 96, 128, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbf6fb);
  box-shadow: 0 14px 40px rgba(63, 49, 70, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.care-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 167, 100, 0.55);
  box-shadow: 0 20px 54px rgba(63, 49, 70, 0.12);
}

.care-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--purple-700);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.care-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.quote-band {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: var(--purple-700);
  color: var(--lilac-50);
}

.quote-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.quote-inner p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.2rem;
  line-height: 1.08;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(233, 216, 235, 0.72), rgba(251, 246, 251, 1));
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(120, 96, 128, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  font-size: 3.4rem;
}

.contact-panel p:not(.eyebrow) {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 8px;
  color: var(--purple-800);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 36px clamp(18px, 5vw, 72px);
  background: var(--purple-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.footer-main {
  display: grid;
  gap: 14px;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-stack {
  display: grid;
  gap: 6px;
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: flex-end;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

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

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

@keyframes floatPortrait {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes cardsPanelReveal {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes cardsImageReveal {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cardsLineReveal {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .main-nav {
    display: none;
  }

  .hero-inner,
  .care-grid,
  .contact-panel,
  .path-top-grid,
  .path-bottom-grid,
  .path-compare,
  .about-layout,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  h1 {
    font-size: 4.6rem;
  }

  h2,
  .contact-panel h2 {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1.55rem;
  }

  .quote-inner p {
    font-size: 3.25rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .portrait-ring {
    width: min(70vw, 390px);
  }

  .hero-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 12px 10px;
  }

  .hero-card-item img {
    width: min(100%, 68px);
  }

  .hero-card-item p {
    max-width: 8.5ch;
    font-size: 0.64rem;
    line-height: 1.08;
  }

  .contact-panel {
    text-align: center;
  }

  .contact-panel p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-panel .primary-button {
    justify-self: center;
  }

  .path-heading {
    margin-bottom: 32px;
  }

  .about-copy {
    text-align: center;
  }

  .about-text {
    margin-left: auto;
    margin-right: auto;
  }

  .about-visual {
    justify-self: center;
    max-width: 460px;
  }

  .path-bridge p {
    max-width: 12ch;
  }

  .compare-divider {
    justify-self: center;
    margin-inline: 0;
    margin-block: -8px;
  }
}

@media (max-width: 720px) {
  .hero-cards {
    gap: 7px;
    padding: 10px 8px 9px;
  }

  .hero-card-item {
    gap: 4px;
  }

  .hero-card-item img {
    width: min(100%, 68px);
  }

  .hero-card-item p {
    max-width: 8ch;
    font-size: 0.64rem;
    line-height: 1.08;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand img {
    width: auto;
    height: 40px;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero::after {
    width: 180px;
  }

  .hero-inner {
    gap: 14px;
  }

  h1 {
    font-size: 3.12rem;
  }

  h2,
  .contact-panel h2 {
    font-size: 2.35rem;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 1.18rem;
    line-height: 1.16;
  }

  .hero-text,
  .section-content,
  .path-lead {
    font-size: 1rem;
  }

  .hero-text {
    margin-top: 9px;
    font-size: 0.95rem;
  }

  .hero-text-secondary {
    margin-top: 2px;
  }

  .quote-inner p {
    font-size: 2.25rem;
  }

  .portrait-ring {
    width: min(54vw, 220px);
    min-width: 190px;
    box-shadow:
      0 28px 64px rgba(63, 49, 70, 0.16),
      0 0 0 10px rgba(255, 255, 255, 0.28),
      0 0 0 18px rgba(233, 216, 235, 0.22);
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 16px;
  }

  .hero-visual {
    order: 2;
    margin-top: 20px;
  }

  .hero-copy {
    transform: translateY(-6px);
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

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

  .hero-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    min-height: auto;
    margin-top: 22px;
    padding: 6px 3px 6px;
  }

  .hero-cards::before {
    inset: 0 -12px 0 2%;
    border-radius: 40px 0 0 40px;
  }

  .hero-cards::after {
    top: 6px;
    right: -12%;
    width: 42vw;
    height: 16px;
  }

  .hero-card-item img {
    width: min(100%, 58px);
  }

  .hero-card-item {
    gap: 3px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-card-item p {
    max-width: 100%;
    font-size: 0.52rem;
    line-height: 1.05;
  }

  .care-card {
    min-height: 230px;
    padding: 24px;
  }

  .path-panel,
  .path-column,
  .compare-card,
  .about-frame {
    padding: 22px;
    border-radius: 24px;
  }

  .path-panel-label,
  .path-column h3,
  .compare-card h3 {
    font-size: 1.65rem;
  }

  .path-icon {
    width: 50px;
    height: 50px;
  }

  .path-icon.small {
    width: 46px;
    height: 46px;
  }

  .path-list-item,
  .path-mini-item {
    gap: 12px;
  }

  .path-mini-item {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .path-list-item p,
  .path-mini-item p,
  .compare-card p {
    font-size: 0.98rem;
  }

  .path-closing {
    padding: 18px 20px;
    border-radius: 28px;
  }

  .about-frame::before,
  .about-frame::after {
    width: 74px;
    height: 74px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-contact-row {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

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

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

  .hero-cards::before,
  .hero-cards::after,
  .hero-card-item,
  .hero-card-item img {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
