:root {
  --navy: #172754;
  --navy-deep: #1d2d64;
  --blue: #2d4383;
  --champagne: #a18a74;
  --peach: #efa57c;
  --surface: #f8f4f0;
  --gutter: clamp(1.25rem, 4.7vw, 4.75rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--surface);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--navy);
  background: var(--surface);
  font-family: "Avenir Next", Avenir, "Century Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #fff;
  background: var(--blue);
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(max(67rem, 121svh) + clamp(52rem, 91svh, 54.5rem) + 2.5rem);
  overflow: hidden;
  background: linear-gradient(180deg, #f8f4f0 0%, #f9eee7 55%, #f4dfd2 100%);
}

.hero__art,
.hero__art img,
.hero__veil,
.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__art {
  z-index: -4;
  bottom: auto;
  height: clamp(35rem, 63svh, 40rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 84%, transparent 100%);
}

.hero__art img {
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.006);
  animation: art-arrival 1.5s var(--ease-out) both;
  transition: transform 1.2s var(--ease-out);
}

.hero__veil {
  z-index: -3;
  bottom: auto;
  height: clamp(35rem, 63svh, 40rem);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  background:
    linear-gradient(90deg, rgba(252, 250, 248, 0.86) 0%, rgba(252, 250, 248, 0.68) 31%, rgba(252, 250, 248, 0.16) 50%, transparent 61%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, transparent 58%, rgba(247, 217, 196, 0.08) 100%);
}

.hero__grain {
  z-index: 8;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: clamp(1rem, 2.7vh, 1.65rem);
  right: clamp(1.2rem, 3.8vw, 3.75rem);
  left: clamp(1.2rem, 3.8vw, 3.75rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: clamp(4.6rem, 7.5vw, 5.15rem);
  padding: 0 clamp(1.15rem, 2.15vw, 2.25rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.95), transparent 42%),
    radial-gradient(circle at 92% 120%, rgba(255, 206, 180, 0.28), transparent 38%),
    rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 2rem 2.7rem 2.15rem 2.45rem / 2.25rem 1.9rem 2.55rem 2.1rem;
  box-shadow:
    0 1.15rem 3.4rem rgba(99, 71, 70, 0.09),
    0 0.25rem 0.8rem rgba(35, 52, 101, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(151, 126, 117, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
  animation: nav-arrival 0.95s 0.08s var(--ease-out) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(6.7rem, 9.3vw, 8.7rem);
}

.brand img,
.hero h1 img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.65rem, 3.35vw, 3.65rem);
  color: #1c2d5b;
  font-size: clamp(0.84rem, 1.02vw, 0.98rem);
  letter-spacing: -0.018em;
}

.desktop-nav a,
.desktop-nav__services {
  position: relative;
  padding: 0.75rem 0;
  color: rgba(23, 39, 84, 0.86);
  cursor: pointer;
  background: none;
  border: 0;
  transition: color 240ms ease;
}

.desktop-nav__services {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.desktop-nav__services-caret {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  margin-top: -0.18rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.7;
  transform: rotate(45deg);
  transition:
    opacity 240ms ease,
    transform 360ms var(--ease-out);
}

.desktop-nav__services:hover .desktop-nav__services-caret,
.desktop-nav__services:focus-visible .desktop-nav__services-caret,
.desktop-nav__services[aria-expanded="true"] .desktop-nav__services-caret {
  opacity: 1;
}

.desktop-nav__services[aria-expanded="true"] .desktop-nav__services-caret {
  transform: translateY(0.18rem) rotate(-135deg);
}

.desktop-nav a::after,
.desktop-nav__services::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, #2c4384, #f1a983);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav__services:hover,
.desktop-nav__services:focus-visible,
.desktop-nav__services[aria-expanded="true"] {
  color: #0e1d4a;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav__services:hover::after,
.desktop-nav__services:focus-visible::after,
.desktop-nav__services[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav__services::before {
  position: absolute;
  bottom: -0.12rem;
  left: 50%;
  width: 0.27rem;
  height: 0.27rem;
  content: "";
  background: #b49572;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, 0.2rem) scale(0.65);
  transition:
    opacity 260ms ease,
    transform 320ms var(--ease-out);
}

.desktop-nav__services[aria-expanded="true"]::before {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.services-mega {
  --services-anchor-x: 42%;
  position: absolute;
  z-index: 24;
  top: calc(100% + 0.85rem);
  left: 50%;
  display: grid;
  visibility: hidden;
  width: min(64rem, calc(100vw - 5rem));
  min-height: 22rem;
  padding: 1.5rem;
  grid-template-columns: minmax(15rem, 16.75rem) minmax(0, 1fr);
  gap: 1.35rem;
  overflow: visible;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 255, 255, 0.98), transparent 38%),
    radial-gradient(circle at 88% 112%, rgba(246, 209, 188, 0.3), transparent 40%),
    rgba(252, 249, 246, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 1.45rem 1.75rem 1.55rem 1.7rem / 1.65rem 1.42rem 1.82rem 1.48rem;
  box-shadow:
    0 2.1rem 5rem rgba(77, 55, 64, 0.17),
    0 0.35rem 1rem rgba(30, 46, 94, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(26px) saturate(1.22);
  backdrop-filter: blur(26px) saturate(1.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.7rem) scale(0.985);
  transform-origin: var(--services-anchor-x) top;
  transition:
    opacity 260ms ease,
    visibility 260ms ease,
    transform 390ms var(--ease-out);
}

.services-mega::before {
  position: absolute;
  top: -0.78rem;
  left: var(--services-anchor-x);
  width: 1.55rem;
  height: 0.82rem;
  content: "";
  background: rgba(252, 249, 246, 0.96);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 -0.25rem 0.45rem rgba(77, 55, 64, 0.05));
  transform: translateX(-50%);
}

.services-mega::after {
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  height: 1.1rem;
  content: "";
}

.services-mega.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.services-mega__intro {
  display: flex;
  min-width: 0;
  padding: 0.95rem 1.5rem 0.1rem 0.35rem;
  flex-direction: column;
  border-right: 1px solid rgba(158, 128, 108, 0.18);
}

.services-mega__sparkle {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  place-items: center;
  color: #a48765;
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.services-mega__intro h2 {
  margin: 0;
  color: #24396f;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(1.65rem, 2.25vw, 2rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.services-mega__intro h2::after {
  display: block;
  width: 2.35rem;
  height: 1px;
  margin-top: 1.15rem;
  content: "";
  background: linear-gradient(90deg, #e9a57f, rgba(233, 165, 127, 0.08));
}

.services-mega__intro p {
  margin: 1rem 0 0;
  color: rgba(116, 103, 96, 0.75);
  font-size: 0.82rem;
  line-height: 1.55;
}

.services-mega__all {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  align-items: center;
  gap: 0.75rem;
  color: #9a7657;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.services-mega__all span:last-child {
  transition: transform 300ms var(--ease-out);
}

.services-mega__cards {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.services-mega-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: rgba(255, 253, 251, 0.72);
  border: 1px solid rgba(186, 151, 126, 0.16);
  border-radius: 1.05rem 1.25rem 1.08rem 1.18rem / 1.18rem 1.02rem 1.28rem 1.08rem;
  box-shadow:
    0 1.05rem 2.4rem rgba(100, 71, 68, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 420ms var(--ease-out),
    box-shadow 420ms ease,
    border-color 320ms ease;
}

.services-mega-card__image-wrap {
  display: block;
  height: 12rem;
  overflow: hidden;
  background: #eee4db;
}

.services-mega-card__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.015);
  transition: transform 650ms var(--ease-out);
}

.services-mega-card__body {
  display: flex;
  min-height: 7rem;
  padding: 0.9rem 0.78rem 0.82rem 0.9rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.6rem;
}

.services-mega-card__copy {
  display: block;
  min-width: 0;
}

.services-mega-card strong {
  display: block;
  color: #8f765f;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.038em;
}

.services-mega-card small {
  display: block;
  margin-top: 0.5rem;
  color: rgba(105, 94, 88, 0.69);
  font-size: 0.7rem;
  line-height: 1.38;
}

.services-mega-card__arrow {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  place-items: center;
  color: #a18569;
  border: 1px solid rgba(167, 128, 95, 0.28);
  border-radius: 50%;
  font-size: 0.95rem;
  transition:
    transform 320ms var(--ease-out),
    background 320ms ease;
}

.services-mega-card:focus-visible,
.services-mega__all:focus-visible,
.desktop-nav__services:focus-visible {
  outline: 2px solid rgba(45, 67, 131, 0.68);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .services-mega-card:hover,
  .services-mega-card:focus-visible {
    border-color: rgba(186, 151, 126, 0.3);
    box-shadow:
      0 1.4rem 3rem rgba(100, 71, 68, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
    transform: translateY(-0.28rem);
  }

  .services-mega-card:hover img,
  .services-mega-card:focus-visible img {
    transform: scale(1.055);
  }

  .services-mega-card:hover .services-mega-card__arrow,
  .services-mega-card:focus-visible .services-mega-card__arrow {
    background: rgba(248, 231, 219, 0.7);
    transform: translateX(0.18rem);
  }

  .services-mega__all:hover span:last-child,
  .services-mega__all:focus-visible span:last-child {
    transform: translateX(0.22rem);
  }
}

.consultation-link {
  justify-self: end;
  display: inline-grid;
  min-width: clamp(10.7rem, 15vw, 12.2rem);
  min-height: 3.2rem;
  padding: 0.72rem 1.45rem;
  place-items: center;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(135deg, #354a8d 0%, #24366f 52%, #1d2d64 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow:
    0 0.7rem 1.8rem rgba(29, 45, 100, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 300ms var(--ease-out),
    box-shadow 300ms ease,
    background 300ms ease;
}

.consultation-link:hover,
.consultation-link:focus-visible {
  background: linear-gradient(135deg, #42599d, #263a7a);
  box-shadow:
    0 0.95rem 2.3rem rgba(29, 45, 100, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero__content {
  position: absolute;
  z-index: 2;
  top: clamp(16.4rem, 32.8vh, 20.4rem);
  left: clamp(5.2rem, 11.25vw, 10rem);
  width: min(36rem, 45vw);
}

.hero h1 {
  width: clamp(20.5rem, 33.3vw, 31.5rem);
  margin: 0 0 clamp(1.7rem, 3.6vh, 2.15rem);
  animation: copy-arrival 1s 0.22s var(--ease-out) both;
}

.hero__tagline {
  margin: 0;
  color: var(--champagne);
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(1.65rem, 2.65vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  animation: copy-arrival 1s 0.32s var(--ease-out) both;
}

.hero__rule {
  width: 2.8rem;
  height: 2px;
  margin: clamp(1.9rem, 3.9vh, 2.45rem) 0 clamp(1.9rem, 3.8vh, 2.4rem);
  background: linear-gradient(90deg, var(--peach), rgba(239, 165, 124, 0.24));
  transform-origin: left;
  animation: rule-arrival 0.9s 0.46s var(--ease-out) both;
}

.hero__description {
  margin: 0;
  color: #243768;
  font-size: clamp(0.98rem, 1.34vw, 1.22rem);
  line-height: 1.46;
  letter-spacing: -0.018em;
  animation: copy-arrival 1s 0.42s var(--ease-out) both;
}

.hero__actions {
  display: flex;
  gap: clamp(0.9rem, 2.8vw, 2.1rem);
  margin-top: clamp(2.7rem, 5.6vh, 3.4rem);
  animation: copy-arrival 1s 0.56s var(--ease-out) both;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: clamp(10.6rem, 15vw, 11.6rem);
  min-height: 3.35rem;
  padding: 0.78rem 1.55rem;
  color: #34416a;
  border: 1px solid rgba(157, 131, 111, 0.58);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  font-size: 0.91rem;
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    transform 300ms var(--ease-out),
    box-shadow 300ms ease;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #354a8d 0%, #24366f 52%, #1d2d64 100%);
  border-color: #263972;
  box-shadow:
    0 0.75rem 1.9rem rgba(29, 45, 100, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.button:hover,
.button:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #435a9f, #263a7a);
  border-color: #304580;
  box-shadow: 0 0.9rem 2.3rem rgba(29, 45, 100, 0.21);
  transform: translateY(-2px);
}

.button__arrow {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 300ms var(--ease-out);
}

.button:hover .button__arrow,
.button:focus-visible .button__arrow {
  transform: translateX(0.25rem);
}

.hero__benefits {
  position: absolute;
  z-index: 6;
  right: clamp(1.5rem, 4.5vw, 4.5rem);
  top: max(47.5rem, 86svh);
  bottom: auto;
  left: clamp(1.5rem, 4.5vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.7vw, 1.4rem);
  max-width: 72rem;
  margin: 0 auto;
}

.benefit-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(11.7rem, 17vw, 12.8rem);
  padding: clamp(1.2rem, 2vw, 1.55rem) clamp(1.35rem, 2.3vw, 1.9rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1.2rem 3rem rgba(117, 79, 77, 0.09),
    0 0.2rem 0.7rem rgba(57, 74, 122, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(153, 124, 117, 0.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.24);
  backdrop-filter: blur(20px) saturate(1.24);
  animation: benefit-arrival 0.95s 0.72s var(--ease-out) both;
  transition:
    transform 420ms var(--ease-out),
    box-shadow 420ms ease;
}

.benefit-card--personalized {
  border-radius: 2.35rem 2.75rem 2.2rem 2.55rem / 2.6rem 2.25rem 2.75rem 2.15rem;
}

.benefit-card--science {
  border-radius: 2.7rem 2.25rem 2.65rem 2.2rem / 2.25rem 2.75rem 2.2rem 2.7rem;
  animation-delay: 0.82s;
}

.benefit-card--real-life {
  border-radius: 2.2rem 2.7rem 2.35rem 2.75rem / 2.7rem 2.2rem 2.8rem 2.3rem;
  animation-delay: 0.92s;
}

.benefit-card::before,
.benefit-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.benefit-card::before {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.42), transparent 38%),
    radial-gradient(circle at 92% 110%, rgba(255, 207, 181, 0.22), transparent 36%);
  mix-blend-mode: screen;
}

.benefit-card::after {
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  box-shadow: inset 0.1rem 0.1rem 0.7rem rgba(255, 255, 255, 0.38);
}

.benefit-card__surface {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.025);
  transition: transform 700ms var(--ease-out);
}

.benefit-card__content {
  position: relative;
  z-index: 2;
}

.benefit-card__icon {
  display: block;
  width: clamp(3.45rem, 5vw, 4.05rem);
  height: clamp(3.45rem, 5vw, 4.05rem);
  margin: -0.15rem 0 0.7rem -0.15rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0.55rem 1.5rem rgba(73, 69, 105, 0.07);
}

.benefit-card h2 {
  margin: 0;
  color: #26396f;
  font-size: clamp(0.98rem, 1.34vw, 1.13rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.benefit-card p {
  margin: 0.48rem 0 0;
  color: rgba(38, 57, 111, 0.78);
  font-size: clamp(0.83rem, 1.12vw, 0.96rem);
  line-height: 1.52;
  letter-spacing: -0.012em;
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover {
    box-shadow:
      0 1.65rem 3.8rem rgba(117, 79, 77, 0.13),
      0 0.25rem 0.8rem rgba(57, 74, 122, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: translateY(-0.35rem);
  }

  .benefit-card:hover .benefit-card__surface {
    transform: scale(1.055);
  }
}

.services-showcase {
  position: absolute;
  z-index: 5;
  top: max(67rem, 121svh);
  right: clamp(1.5rem, 5.5vw, 5.5rem);
  left: clamp(1.5rem, 5.5vw, 5.5rem);
  max-width: 72rem;
  margin: 0 auto;
}

.services-showcase__header {
  max-width: 41rem;
}

.services-showcase__eyebrow {
  margin: 0;
  color: #9f8871;
  font-size: clamp(0.94rem, 1.4vw, 1.08rem);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.services-showcase__eyebrow-rule {
  display: block;
  width: 2.6rem;
  height: 2px;
  margin: 0.95rem 0 1.05rem;
  background: linear-gradient(90deg, var(--peach), rgba(239, 165, 124, 0.22));
}

.services-showcase h2 {
  margin: 0;
  color: #9c856f;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(3.7rem, 5.7vw, 5.2rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.services-showcase h2 > span,
.services-showcase h2 > small {
  display: block;
}

.services-showcase h2 > small {
  margin-top: 0.85rem;
  font-size: 0.47em;
  line-height: 1.05;
  letter-spacing: -0.042em;
}

.services-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(21rem, 0.95fr);
  gap: clamp(0.85rem, 1.25vw, 1.15rem);
  margin-top: clamp(2.3rem, 4.2vh, 3rem);
}

.services-showcase__stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.25vw, 1.15rem);
}

.service-panel {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(186, 146, 116, 0.24);
  border-radius: 1.5rem 1.8rem 1.55rem 1.75rem / 1.7rem 1.5rem 1.8rem 1.55rem;
  box-shadow:
    0 1.25rem 3.2rem rgba(127, 87, 75, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(12px) saturate(1.18);
  backdrop-filter: blur(12px) saturate(1.18);
  transition:
    transform 420ms var(--ease-out),
    box-shadow 420ms ease;
}

.service-panel--longevity {
  min-height: 31.5rem;
}

.service-panel--beauty,
.service-panel--health {
  min-height: 15.2rem;
}

.service-panel::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 252, 249, 0.86) 0%, rgba(255, 252, 249, 0.64) 48%, transparent 72%);
}

.service-panel__art {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 750ms var(--ease-out);
}

.service-panel__content {
  position: relative;
  z-index: 2;
}

.service-panel--longevity .service-panel__content {
  display: flex;
  width: 54%;
  min-height: 31.5rem;
  flex-direction: column;
  padding: clamp(2rem, 3.4vw, 3rem);
}

.service-panel--beauty .service-panel__content,
.service-panel--health .service-panel__content {
  display: grid;
  width: 86%;
  min-height: 15.2rem;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto;
  column-gap: 1rem;
  align-content: start;
  padding: 1.35rem 1.35rem 1.2rem;
}

.service-panel__icon {
  display: block;
  width: clamp(3.8rem, 5vw, 4.4rem);
  height: clamp(3.8rem, 5vw, 4.4rem);
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0.65rem 1.6rem rgba(108, 79, 68, 0.07);
}

.service-panel--longevity .service-panel__icon {
  margin: -0.3rem 0 1.9rem -0.3rem;
}

.service-panel--beauty .service-panel__icon,
.service-panel--health .service-panel__icon {
  grid-row: 1 / span 2;
}

.service-panel h3 {
  margin: 0;
  color: #9d846c;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.service-panel h3 span {
  display: block;
}

.service-heading__major {
  line-height: 0.96;
}

.service-heading__minor {
  margin-top: 0.05em;
  font-size: 0.76em;
  line-height: 0.98;
}

.service-panel--longevity h3 {
  font-size: 2.4rem;
  line-height: 0.98;
}

.service-panel--health h3 {
  align-self: center;
  font-size: 1.62rem;
  line-height: 0.98;
}

.service-panel--beauty h3 {
  align-self: center;
  font-size: 1.72rem;
  line-height: 0.98;
}

.service-panel--beauty .service-heading__major {
  white-space: nowrap;
}

.service-panel--health .service-heading__minor {
  font-size: 0.8em;
}

.service-panel__rule {
  display: block;
  width: 2.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--peach), rgba(239, 165, 124, 0.2));
}

.service-panel--longevity .service-panel__rule {
  margin: 1.85rem 0 1.75rem;
}

.service-panel--beauty .service-panel__rule,
.service-panel--health .service-panel__rule {
  grid-column: 2;
  margin: 0.85rem 0 0.7rem;
}

.service-panel p {
  margin: 0;
  color: #26396f;
  letter-spacing: -0.012em;
}

.service-panel--longevity p {
  max-width: 20rem;
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  line-height: 1.62;
}

.service-panel--beauty p,
.service-panel--health p {
  grid-column: 2;
  max-width: 18rem;
  font-size: clamp(0.75rem, 0.93vw, 0.84rem);
  line-height: 1.47;
}

.service-panel__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 12.6rem);
  min-height: 2.85rem;
  padding: 0.65rem 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #354a8d 0%, #24366f 52%, #1d2d64 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow:
    0 0.7rem 1.8rem rgba(29, 45, 100, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  transition:
    transform 300ms var(--ease-out),
    box-shadow 300ms ease,
    background 300ms ease;
}

.service-panel--longevity .service-panel__button {
  margin-top: auto;
}

.service-panel--beauty .service-panel__button,
.service-panel--health .service-panel__button {
  grid-column: 2;
  align-self: end;
  min-height: 2.55rem;
  margin-top: 0.65rem;
  font-size: 0.72rem;
}

.service-panel__button:hover,
.service-panel__button:focus-visible {
  background: linear-gradient(135deg, #42599d, #263a7a);
  box-shadow: 0 0.95rem 2.2rem rgba(29, 45, 100, 0.22);
  transform: translateY(-2px);
}

@media (hover: hover) and (pointer: fine) {
  .service-panel:hover {
    box-shadow:
      0 1.7rem 4rem rgba(127, 87, 75, 0.11),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-0.32rem);
  }

  .service-panel:hover .service-panel__art {
    transform: scale(1.045);
  }
}

.team-showcase {
  position: relative;
  isolation: isolate;
  margin-top: -1px;
  padding: clamp(1rem, 1.2vw, 1.25rem) var(--gutter) clamp(3.25rem, 5vw, 4.25rem);
  overflow: hidden;
  background: linear-gradient(180deg, #f4dfd2 0%, #f7e8df 6%, #fbf3ee 17%, #fdf9f6 36%, #ffffff 66%);
}

.team-showcase::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.team-showcase__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.team-showcase__header {
  display: flex;
  max-width: 38rem;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.team-showcase__eyebrow {
  margin: 0;
  color: #9f8871;
  font-size: clamp(0.96rem, 1.4vw, 1.1rem);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.team-showcase__rule,
.team-card__rule {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 165, 124, 0.15), var(--peach), rgba(239, 165, 124, 0.15));
}

.team-showcase__rule {
  width: 2.8rem;
  margin: 1.2rem auto 1.15rem;
}

.team-showcase h2 {
  margin: 0;
  color: #9c856f;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(4.25rem, 6vw, 5.15rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.team-showcase__intro {
  max-width: 35rem;
  margin: clamp(1.25rem, 2.3vw, 1.65rem) auto 0;
  color: #26396f;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.55;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.team-showcase__button {
  display: flex;
  width: min(100%, 12.1rem);
  min-height: 3rem;
  margin-top: clamp(1.4rem, 2.5vw, 1.8rem);
  padding: 0.72rem 1.35rem;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(135deg, #354a8d 0%, #24366f 52%, #1d2d64 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  box-shadow:
    0 0.85rem 2rem rgba(29, 45, 100, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  transition:
    transform 300ms var(--ease-out),
    box-shadow 300ms ease,
    background 300ms ease;
}

.team-showcase__button:hover,
.team-showcase__button:focus-visible {
  background: linear-gradient(135deg, #42599d, #263a7a);
  box-shadow:
    0 1rem 2.4rem rgba(29, 45, 100, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.team-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 23rem));
  gap: clamp(1.35rem, 2.4vw, 1.8rem);
  justify-content: center;
  margin-top: clamp(1.9rem, 3.3vw, 2.35rem);
}

.team-card {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 0.8;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 2.65rem 2.9rem 2.55rem 2.8rem / 2.85rem 2.55rem 2.95rem 2.6rem;
  box-shadow:
    0 1.3rem 3rem rgba(121, 81, 79, 0.07),
    0 0.2rem 0.8rem rgba(45, 66, 124, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(8px) saturate(1.12);
  backdrop-filter: blur(8px) saturate(1.12);
  transition:
    transform 500ms var(--ease-out),
    box-shadow 500ms ease;
}

.team-card--reka {
  border-radius: 2.9rem 2.55rem 2.8rem 2.6rem / 2.55rem 2.9rem 2.6rem 2.95rem;
}

.team-card::before {
  position: absolute;
  z-index: 6;
  inset: 0;
  padding: 2px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(132deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(250, 194, 154, 0.72) 14%,
      rgba(228, 196, 248, 0.72) 31%,
      rgba(170, 222, 244, 0.74) 46%,
      rgba(255, 255, 255, 0.94) 60%,
      rgba(244, 183, 219, 0.7) 78%,
      rgba(255, 211, 170, 0.75) 100%);
  border-radius: inherit;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.team-card::after {
  position: absolute;
  z-index: 5;
  inset: 0.42rem;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 2.25rem 2.5rem 2.15rem 2.4rem / 2.45rem 2.15rem 2.55rem 2.2rem;
  box-shadow:
    inset 0.12rem 0.12rem 0.75rem rgba(255, 255, 255, 0.58),
    inset -0.1rem -0.12rem 0.7rem rgba(218, 181, 220, 0.11);
}

.team-card__portrait-window {
  position: absolute;
  z-index: 1;
  top: 0.7rem;
  right: 0.7rem;
  bottom: 7.15rem;
  left: 0.7rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(180deg, rgba(252, 243, 238, 0.92), rgba(249, 221, 207, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 2.15rem 2.35rem 1.2rem 1.35rem / 2.35rem 2.1rem 1.35rem 1.2rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -0.7rem 1.6rem rgba(239, 183, 154, 0.08);
}

.team-card__portrait {
  position: absolute;
  bottom: -0.15rem;
  left: 50%;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  transform-origin: center bottom;
  transition: transform 700ms var(--ease-out);
}

.team-card--eszter .team-card__portrait {
  width: 101%;
}

.team-card--reka .team-card__portrait {
  width: 103%;
}

.team-card__meta {
  position: absolute;
  z-index: 4;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  display: flex;
  height: 6.7rem;
  padding: 0.65rem 0.75rem 0.5rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(255, 252, 250, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 1.1rem 1.25rem 2.15rem 2.35rem / 1rem 1.2rem 2.35rem 2.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 -0.45rem 1.1rem rgba(255, 255, 255, 0.18);
  text-align: center;
}

.team-card h3 {
  margin: 0;
  color: #9c856f;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.62rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.team-card__rule {
  width: 2.1rem;
  margin: 0.66rem auto 0.56rem;
}

.team-card__meta p {
  margin: 0;
  color: #2d427c;
  font-size: clamp(0.66rem, 0.9vw, 0.74rem);
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .team-card:hover {
    box-shadow:
      0 1.65rem 3.5rem rgba(121, 81, 79, 0.11),
      0 0.25rem 0.9rem rgba(45, 66, 124, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transform: translateY(-0.45rem);
  }

  .team-card:hover .team-card__portrait {
    transform: translateX(-50%) translateY(-0.35rem) scale(1.018);
  }
}

.products-showcase {
  position: relative;
  isolation: auto;
  margin-top: -1px;
  padding: clamp(5.75rem, 7.5vw, 6.5rem) var(--gutter) clamp(4.5rem, 6vw, 5.25rem);
  overflow: visible;
  background: #faefe9;
}

.products-showcase::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.products-showcase__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 68rem);
  margin: 0 auto;
  grid-template-columns: minmax(20rem, 27rem) minmax(31rem, 35.125rem);
  gap: clamp(3.75rem, 7vw, 5.875rem);
  align-items: center;
  justify-content: space-between;
}

.products-showcase__copy {
  width: 100%;
  max-width: 27rem;
}

.products-showcase__eyebrow {
  margin: 0;
  color: #273b78;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.products-showcase__rule {
  display: block;
  width: 1.55rem;
  height: 2px;
  margin: 1.3rem 0 1.55rem;
  background: linear-gradient(90deg, var(--peach), rgba(239, 165, 124, 0.16));
}

.products-showcase h2 {
  margin: 0;
  color: #9c856f;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(3.15rem, 4.55vw, 3.65rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.products-showcase h2 span {
  display: block;
}

.products-showcase h2 span:first-child {
  white-space: nowrap;
}

.products-showcase__intro {
  max-width: 25.5rem;
  margin: clamp(1.35rem, 2.3vw, 1.75rem) 0 0;
  color: #2b407c;
  font-size: clamp(0.96rem, 1.22vw, 1.05rem);
  line-height: 1.58;
  letter-spacing: -0.018em;
}

.products-showcase__button {
  display: flex;
  width: min(100%, 16.15rem);
  min-height: 3.25rem;
  margin-top: clamp(2rem, 3.4vw, 2.45rem);
  padding: 0.75rem 1.45rem 0.75rem 1.7rem;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(135deg, #354a8d 0%, #24366f 52%, #1d2d64 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow:
    0 0.9rem 2.2rem rgba(29, 45, 100, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.94rem;
  transition:
    transform 300ms var(--ease-out),
    box-shadow 300ms ease,
    background 300ms ease;
}

.products-showcase__button span:last-child,
.product-card__arrow {
  transition: transform 300ms var(--ease-out);
}

.products-showcase__cards {
  display: grid;
  width: 100%;
  gap: 0.75rem;
}

.product-card-shell {
  width: 100%;
}

.product-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2.08 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(186, 146, 116, 0.23);
  border-radius: 1.05rem 1.3rem 1.1rem 1.2rem;
  box-shadow:
    0 1.25rem 3rem rgba(127, 87, 75, 0.075),
    0 0.18rem 0.65rem rgba(45, 66, 124, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateZ(0);
  transition:
    transform 500ms var(--ease-out),
    box-shadow 500ms ease,
    border-color 400ms ease;
}

.product-card-shell--wellness .product-card {
  aspect-ratio: 2.31 / 1;
}

.product-card-shell--wellness {
  position: relative;
  z-index: 4;
}

.product-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 253, 251, 0.54) 0%, rgba(255, 253, 251, 0.25) 34%, transparent 60%);
}

.product-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.006);
  transition: transform 800ms var(--ease-out);
}

.product-card__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(1.4rem, 2.6vw, 1.8rem);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  transform: translateY(-50%);
}

.product-card h3 {
  margin: 0;
  color: #9c856f;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(1.55rem, 2.25vw, 1.9rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.product-card__arrow {
  display: inline-block;
  margin-top: 0.75rem;
  color: #9c856f;
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
}

.product-card:focus-visible,
.products-showcase__button:focus-visible {
  outline: 2px solid rgba(45, 67, 131, 0.72);
  outline-offset: 4px;
}

[data-reveal-section].is-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
  transition:
    opacity 720ms ease,
    transform 820ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal-section].is-reveal-ready [data-reveal].is-visible {
  opacity: var(--reveal-opacity, 1);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .products-showcase__button:hover,
  .products-showcase__button:focus-visible {
    background: linear-gradient(135deg, #42599d, #263a7a);
    box-shadow:
      0 1.05rem 2.5rem rgba(29, 45, 100, 0.23),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
  }

  .products-showcase__button:hover span:last-child,
  .products-showcase__button:focus-visible span:last-child {
    transform: translateX(0.22rem);
  }

  .product-card:hover,
  .product-card:focus-visible {
    border-color: rgba(186, 146, 116, 0.38);
    box-shadow:
      0 1.55rem 3.4rem rgba(127, 87, 75, 0.12),
      0 0.22rem 0.75rem rgba(45, 66, 124, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
    transform: translateY(-0.3rem);
  }

  .product-card:hover .product-card__image,
  .product-card:focus-visible .product-card__image {
    transform: scale(1.035);
  }

  .product-card:hover .product-card__arrow,
  .product-card:focus-visible .product-card__arrow {
    transform: translateX(0.28rem);
  }
}

.stories-showcase {
  position: relative;
  isolation: auto;
  margin-top: -1px;
  padding: clamp(6.5rem, 8.2vw, 6.8rem) var(--gutter) 6rem;
  overflow: visible;
  background: linear-gradient(
    180deg,
    #faefe9 0%,
    #f9e9e1 10%,
    #fbeee8 22%,
    #fdf9f7 36%,
    #fdf8f5 48%,
    #faece5 70%,
    #f6dfd1 100%
  );
}

.stories-showcase::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.stories-showcase__art {
  --reveal-opacity: 0.96;
  position: absolute;
  z-index: 1;
  top: clamp(-19rem, -21vw, -15rem);
  right: clamp(-8rem, -6vw, -4rem);
  display: block;
  width: clamp(29rem, 39vw, 35rem);
  height: auto;
  pointer-events: none;
  opacity: var(--reveal-opacity);
  filter: saturate(0.96) drop-shadow(0 1.35rem 2.3rem rgba(125, 81, 84, 0.055));
}

.stories-showcase__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 70.8rem);
  margin: 0 auto;
}

.stories-showcase__header {
  width: min(100%, 47rem);
}

.stories-showcase__eyebrow {
  margin: 0;
  color: #293e7a;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.stories-showcase__rule {
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 1.5rem 0 1.8rem;
  background: linear-gradient(90deg, var(--peach), rgba(239, 165, 124, 0.14));
}

.stories-showcase h2 {
  margin: 0;
  color: #9c856f;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.052em;
}

.stories-showcase h2 span {
  display: block;
}

.stories-showcase__title-primary {
  font-size: clamp(5rem, 7.4vw, 6rem);
  line-height: 0.94;
}

.stories-showcase__title-secondary {
  margin-top: 0.12em;
  font-size: clamp(3.65rem, 5.7vw, 4.65rem);
  line-height: 0.98;
}

.stories-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 5.1rem;
  align-items: start;
}

.story-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 22.4rem;
  margin: 0;
  padding: 2.35rem 2.55rem 2.25rem;
  overflow: hidden;
  flex-direction: column;
  background:
    radial-gradient(circle at 18% 5%, rgba(255, 255, 255, 0.92), transparent 43%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 247, 0.56));
  border: 1px solid rgba(191, 148, 120, 0.22);
  border-radius: 1.65rem 1.9rem 1.7rem 1.82rem / 1.85rem 1.6rem 1.92rem 1.68rem;
  box-shadow:
    0 1.45rem 3.6rem rgba(126, 81, 74, 0.085),
    0 0.2rem 0.75rem rgba(45, 66, 124, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(187, 139, 118, 0.045);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
  transition:
    transform 500ms var(--ease-out),
    box-shadow 500ms ease,
    border-color 400ms ease;
}

.story-card--alyssa {
  margin-top: 4.95rem;
  border-radius: 1.85rem 1.65rem 1.92rem 1.7rem / 1.6rem 1.88rem 1.68rem 1.94rem;
}

.story-card--hayley {
  min-height: 20.65rem;
  margin-top: 3.75rem;
  border-radius: 1.72rem 1.95rem 1.65rem 1.88rem / 1.9rem 1.68rem 1.94rem 1.62rem;
}

.story-card__quote-mark {
  order: -1;
  display: block;
  height: 2.6rem;
  margin: -0.35rem 0 0.85rem;
  color: rgba(225, 170, 137, 0.43);
  font-family: Georgia, serif;
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 0.82;
}

.story-card figcaption {
  margin: 0;
}

.story-card cite {
  color: #9c856f;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(1.65rem, 2.3vw, 1.95rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.038em;
}

.story-card blockquote {
  margin: 1.35rem 0 0;
}

.story-card blockquote p {
  margin: 0;
  color: #2a407c;
  font-size: clamp(0.98rem, 1.38vw, 1.08rem);
  line-height: 1.58;
  letter-spacing: -0.016em;
}

.story-card__rating {
  display: flex;
  width: min(100%, 11.2rem);
  min-height: 3.05rem;
  margin-top: auto;
  padding: 0.65rem 1rem;
  align-items: center;
  justify-content: center;
  color: #9a846d;
  background: rgba(255, 255, 255, 0.57);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow:
    0 0.7rem 1.7rem rgba(115, 78, 74, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  backdrop-filter: blur(12px) saturate(1.08);
}

.story-card__rating span {
  font-size: 0.92rem;
  letter-spacing: 0.46em;
  transform: translateX(0.23em);
}

.stories-showcase.is-reveal-ready [data-reveal="art"] {
  transform: translate3d(2.2rem, -0.5rem, 0) scale(0.985);
  transition-duration: 980ms;
}

@media (hover: hover) and (pointer: fine) {
  .story-card:hover,
  .stories-showcase.is-reveal-ready .story-card.is-visible:hover {
    border-color: rgba(191, 148, 120, 0.36);
    box-shadow:
      0 1.75rem 4rem rgba(126, 81, 74, 0.125),
      0 0.25rem 0.85rem rgba(45, 66, 124, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      inset 0 -1px 0 rgba(187, 139, 118, 0.055);
    transform: translateY(-0.38rem);
  }
}

.faq-showcase {
  position: relative;
  margin-top: -1px;
  padding: clamp(6.75rem, 9vw, 8.25rem) var(--gutter) clamp(7rem, 9vw, 8.5rem);
  overflow: hidden;
  background:
    radial-gradient(62% 30% at 18% 2%, rgba(255, 255, 255, 0.62), transparent 76%),
    radial-gradient(48% 28% at 88% 88%, rgba(239, 165, 124, 0.12), transparent 78%),
    linear-gradient(180deg, #f6dfd1 0%, #faece5 9%, #fdf9f7 28%, #fbf7f4 70%, #f7ebe4 100%);
}

.faq-showcase::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.faq-showcase__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 70.8rem);
  margin: 0 auto;
}

.faq-showcase__header {
  width: min(100%, 45rem);
  margin: 0 auto;
  text-align: center;
}

.faq-showcase__eyebrow {
  margin: 0;
  color: #a38770;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.faq-showcase h2 {
  margin: 1.7rem 0 0;
  color: #a58b73;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(4.15rem, 6.5vw, 5.25rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.faq-showcase h2 span {
  display: block;
}

.faq-showcase__intro {
  margin: clamp(1.7rem, 2.6vw, 2rem) 0 0;
  color: #2d427c;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
  letter-spacing: -0.016em;
}

.faq-list {
  width: min(100%, 57rem);
  margin: clamp(4.25rem, 6vw, 5rem) auto 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 0%, rgba(255, 255, 255, 0.82), transparent 38%),
    rgba(255, 252, 249, 0.58);
  border: 1px solid rgba(185, 145, 116, 0.27);
  border-radius: 1.15rem 1.35rem 1.2rem 1.3rem / 1.28rem 1.12rem 1.38rem 1.16rem;
  box-shadow:
    0 1.4rem 3.6rem rgba(123, 82, 73, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(16px) saturate(1.06);
  backdrop-filter: blur(16px) saturate(1.06);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(184, 145, 116, 0.2);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 5.45rem;
  padding: 1.45rem clamp(1.8rem, 3.35vw, 2.8rem);
  grid-template-columns: minmax(0, 1fr) 1.25rem;
  gap: 2rem;
  align-items: center;
  color: #263b78;
  cursor: pointer;
  background: transparent;
  border: 0;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.28;
  letter-spacing: -0.018em;
  text-align: left;
  transition:
    color 280ms ease,
    background 280ms ease;
}

.faq-question__icon {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
  justify-self: end;
}

.faq-question__icon::before,
.faq-question__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  content: "";
  background: rgba(173, 132, 100, 0.66);
  transform: translate(-50%, -50%);
  transition:
    opacity 280ms ease,
    transform 380ms var(--ease-out);
}

.faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-question__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 480ms var(--ease-out),
    opacity 300ms ease;
}

.faq-answer__inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  max-width: 50rem;
  margin: 0;
  padding: 0 clamp(4.25rem, 6.5vw, 5.7rem) clamp(2.25rem, 3.5vw, 2.75rem) clamp(1.8rem, 3.35vw, 2.8rem);
  color: rgba(42, 64, 124, 0.76);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.68;
  letter-spacing: -0.014em;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-question:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid rgba(45, 67, 131, 0.68);
  outline-offset: -4px;
}

@media (hover: hover) and (pointer: fine) {
  .faq-question:hover,
  .faq-question:focus-visible {
    color: #162a65;
    background: rgba(255, 255, 255, 0.24);
  }
}

.next-step-showcase {
  position: relative;
  min-height: 43.75rem;
  margin-top: -1px;
  padding: clamp(5.5rem, 7vw, 6.75rem) var(--gutter);
  overflow: hidden;
  background: linear-gradient(180deg, #f7ebe4 0%, #fcf4ef 28%, #f7ded2 100%);
}

.next-step-showcase__art,
.next-step-showcase__art img,
.next-step-showcase__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.next-step-showcase__art {
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 100%);
}

.next-step-showcase__art img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.next-step-showcase__veil {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 251, 248, 0.36) 0%, rgba(255, 251, 248, 0.16) 42%, transparent 65%),
    linear-gradient(180deg, rgba(247, 235, 228, 0.22) 0%, transparent 20%);
}

.next-step-showcase::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.011;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.next-step-showcase__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 71rem);
  min-height: 30.5rem;
  margin: 0 auto;
  grid-template-columns: minmax(32rem, 35.5rem) minmax(28rem, 31.5rem);
  gap: clamp(2.25rem, 4vw, 4rem);
  align-items: center;
  justify-content: space-between;
}

.next-step-showcase__copy {
  max-width: 35.5rem;
}

.next-step-showcase__eyebrow {
  margin: 0;
  color: #9c856f;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.next-step-showcase__rule {
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 1.25rem 0 1.45rem;
  background: linear-gradient(90deg, var(--peach), rgba(239, 165, 124, 0.16));
}

.next-step-showcase h2 {
  margin: 0;
  color: #96816e;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(3.7rem, 5.25vw, 4.55rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.056em;
  text-wrap: balance;
}

.next-step-showcase h2 span {
  display: block;
}

.next-step-showcase__title-primary {
  font-size: 0.92em;
  white-space: nowrap;
}

.next-step-showcase__title-secondary {
  margin-top: 0.12em;
  font-size: 0.74em;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.next-step-showcase__intro {
  margin: clamp(1.55rem, 2.5vw, 1.9rem) 0 0;
  color: #2d427c;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.72;
  letter-spacing: -0.016em;
}

.next-step-showcase__button {
  display: flex;
  width: min(100%, 15.9rem);
  min-height: 3.35rem;
  margin-top: clamp(2rem, 3vw, 2.4rem);
  padding: 0.75rem 1.4rem 0.75rem 1.65rem;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(135deg, #354a8d 0%, #24366f 52%, #1d2d64 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  box-shadow:
    0 0.9rem 2.2rem rgba(29, 45, 100, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.92rem;
  transition:
    transform 320ms var(--ease-out),
    box-shadow 320ms ease,
    background 320ms ease;
}

.next-step-showcase__button span:last-child {
  transition: transform 320ms var(--ease-out);
}

.support-card-stage {
  position: relative;
  width: min(100%, 35rem);
  height: 32.5rem;
  justify-self: end;
}

.support-card {
  --card-angle: 0deg;
  position: absolute;
  display: block;
  width: clamp(17rem, 23vw, 18.75rem);
  height: clamp(10.3rem, 14vw, 11.35rem);
  overflow: hidden;
  background: rgba(255, 252, 249, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 1.55rem 1.8rem 1.5rem 1.72rem / 1.72rem 1.48rem 1.86rem 1.55rem;
  box-shadow:
    0 1.55rem 3.6rem rgba(119, 77, 76, 0.105),
    0 0.2rem 0.8rem rgba(48, 66, 121, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: rotate(var(--card-angle));
  transition:
    transform 520ms var(--ease-out),
    box-shadow 480ms ease,
    border-color 400ms ease;
}

.support-card--wellness {
  --card-angle: -5deg;
  top: 0;
  left: 0;
}

.support-card--longevity {
  --card-angle: 6deg;
  z-index: 2;
  top: 10.5rem;
  right: 0;
}

.support-card--personalized {
  --card-angle: -2.5deg;
  z-index: 1;
  bottom: 0;
  left: 2.9rem;
}

.support-card__surface {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 750ms var(--ease-out);
}

.support-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 17% 10%, rgba(255, 255, 255, 0.68), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), transparent 62%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(186, 143, 117, 0.08);
}

.support-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  padding: 1.55rem 1.7rem 1.4rem;
  flex-direction: column;
  justify-content: center;
}

.support-card__icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.65rem;
  place-items: center;
  color: #a3876d;
  background: rgba(255, 252, 248, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow:
    0 0.45rem 1.2rem rgba(121, 82, 78, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.support-card__icon svg {
  width: 1.65rem;
  height: 1.65rem;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-card strong {
  display: block;
  color: #937b67;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(1.52rem, 2.35vw, 1.88rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.038em;
}

.support-card__meta {
  display: flex;
  margin-top: 0.55rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #30467f;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  line-height: 1.3;
  letter-spacing: -0.018em;
}

.support-card__arrow {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  place-items: center;
  color: #9b7f68;
  border: 1px solid rgba(160, 122, 92, 0.22);
  border-radius: 50%;
  font-size: 0.9rem;
  transition:
    transform 320ms var(--ease-out),
    background 320ms ease;
}

.support-card:focus-visible,
.next-step-showcase__button:focus-visible {
  outline: 2px solid rgba(45, 67, 131, 0.72);
  outline-offset: 5px;
}

@media (hover: hover) and (pointer: fine) {
  .next-step-showcase__button:hover,
  .next-step-showcase__button:focus-visible {
    background: linear-gradient(135deg, #42599d, #263a7a);
    box-shadow:
      0 1.05rem 2.5rem rgba(29, 45, 100, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
  }

  .next-step-showcase__button:hover span:last-child,
  .next-step-showcase__button:focus-visible span:last-child {
    transform: translateX(0.22rem);
  }

  .support-card:hover,
  .support-card:focus-visible {
    border-color: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 1.85rem 4.2rem rgba(119, 77, 76, 0.15),
      0 0.25rem 0.9rem rgba(48, 66, 121, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: translateY(-0.42rem) rotate(var(--card-angle)) scale(1.018);
  }

  .support-card:hover .support-card__surface,
  .support-card:focus-visible .support-card__surface {
    transform: scale(1.045);
  }

  .support-card:hover .support-card__arrow,
  .support-card:focus-visible .support-card__arrow {
    background: rgba(255, 249, 245, 0.64);
    transform: translateX(0.2rem);
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  .next-step-showcase {
    min-height: 41rem;
    padding-inline: clamp(2rem, 5vw, 3.5rem);
  }

  .next-step-showcase__inner {
    grid-template-columns: minmax(25rem, 1fr) minmax(25.5rem, 28rem);
    gap: 1.5rem;
  }

  .next-step-showcase h2 {
    font-size: clamp(3.05rem, 5.25vw, 3.62rem);
  }

  .next-step-showcase__intro br {
    display: none;
  }

  .support-card-stage {
    width: 30rem;
    height: 30rem;
  }

  .support-card {
    width: 16.6rem;
    height: 10.2rem;
  }

  .support-card--longevity {
    top: 9.8rem;
  }

  .support-card__content {
    padding: 1.35rem 1.45rem 1.2rem;
  }

  .support-card strong {
    font-size: 1.48rem;
  }

  .support-card__meta {
    font-size: 0.84rem;
  }
}

@media (max-width: 900px) and (min-width: 701px) {
  .next-step-showcase {
    padding-top: 5.5rem;
    padding-bottom: 6rem;
  }

  .next-step-showcase__inner {
    width: min(100%, 46rem);
    grid-template-columns: minmax(0, 1fr);
    gap: 3.75rem;
  }

  .next-step-showcase__copy {
    max-width: 35.5rem;
  }

  .support-card-stage {
    width: 30rem;
    justify-self: center;
  }
}

@media (max-width: 1020px) and (min-width: 769px) {
  .site-header {
    right: 1.5rem;
    left: 1.5rem;
    grid-template-columns: 0.75fr auto 1fr;
    padding-inline: 1.35rem;
  }

  .desktop-nav {
    gap: 1.3rem;
    font-size: 0.82rem;
  }

  .consultation-link {
    min-width: 10.2rem;
    font-size: 0.82rem;
  }

  .services-mega {
    width: calc(100vw - 3rem);
    min-height: 21.5rem;
    padding: 1.25rem;
    grid-template-columns: minmax(12rem, 13.5rem) minmax(0, 1fr);
    gap: 1rem;
  }

  .services-mega__intro {
    padding: 0.75rem 1.1rem 0.1rem 0.3rem;
  }

  .services-mega__intro h2 {
    font-size: 1.55rem;
  }

  .services-mega__cards {
    gap: 0.7rem;
  }

  .services-mega-card__image-wrap {
    height: 10.8rem;
  }

  .services-mega-card__body {
    min-height: 7.5rem;
    padding: 0.85rem 0.72rem 0.75rem 0.8rem;
  }

  .services-mega-card strong {
    font-size: 1.02rem;
  }

  .services-mega-card small {
    font-size: 0.62rem;
  }

  .services-mega-card__arrow {
    width: 1.8rem;
    height: 1.8rem;
  }

  .hero__content {
    top: 29vh;
    left: 7vw;
  }

  .hero h1 {
    width: min(21.5rem, 37vw);
  }
}

@media (max-width: 1020px) and (min-width: 881px) {
  .products-showcase {
    padding-top: 5.5rem;
    padding-bottom: 5rem;
  }

  .products-showcase__inner {
    width: min(100%, 58rem);
    grid-template-columns: minmax(17rem, 22rem) minmax(27rem, 32rem);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .products-showcase h2 {
    font-size: clamp(3rem, 5.2vw, 3.45rem);
  }

}

@media (max-width: 880px) {
  .products-showcase {
    padding-top: 5rem;
    padding-bottom: 5.5rem;
  }

  .products-showcase__inner {
    width: min(100%, 35.125rem);
    grid-template-columns: minmax(0, 1fr);
    gap: 3.25rem;
  }

  .products-showcase__copy {
    max-width: 36rem;
  }

  .products-showcase__cards {
    width: 100%;
    max-width: 35.125rem;
    margin: 0 auto;
  }

}

@media (max-width: 768px) {
  :root {
    --gutter: clamp(1.25rem, 6.2vw, 2rem);
  }

  .hero {
    min-height: 177.5rem;
    background: linear-gradient(180deg, #f8f4f0 0%, #f9eee7 52%, #f4dfd2 100%);
  }

  .hero__art,
  .hero__veil,
  .hero__grain {
    bottom: auto;
    height: max(42rem, 100svh);
    height: max(42rem, 100dvh);
  }

  .hero__art img {
    object-position: center bottom;
    transform: scale(1.002);
    animation-duration: 1.2s;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(252, 249, 246, 0.04) 49%, transparent 72%),
      linear-gradient(90deg, rgba(252, 250, 248, 0.22) 0%, transparent 58%);
  }

  .hero__grain {
    opacity: 0.018;
  }

  .site-header {
    top: max(0.8rem, env(safe-area-inset-top));
    right: 0.85rem;
    left: 0.85rem;
    display: flex;
    justify-content: space-between;
    min-height: 4.25rem;
    padding: 0 0.62rem 0 1rem;
    border-radius: 1.65rem 2.1rem 1.8rem 2rem / 1.85rem 1.55rem 2.05rem 1.7rem;
    animation: none;
  }

  .brand {
    position: relative;
    z-index: 32;
    width: clamp(5.9rem, 26vw, 6.9rem);
  }

  .desktop-nav,
  .consultation-link,
  .services-mega {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 32;
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0;
    place-content: center;
    gap: 0.42rem;
    color: #1f3268;
    cursor: pointer;
    background:
      radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.9), transparent 50%),
      rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(37, 55, 104, 0.17);
    border-radius: 50%;
    box-shadow:
      0 0.45rem 1.2rem rgba(31, 50, 104, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .menu-toggle:focus-visible {
    outline: 2px solid rgba(37, 55, 104, 0.58);
    outline-offset: 3px;
  }

  .menu-toggle span {
    display: block;
    width: 1.05rem;
    height: 1px;
    background: currentColor;
    transition: transform 350ms var(--ease-out);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.235rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.235rem) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 30;
    top: calc(max(0.8rem, env(safe-area-inset-top)) + 4.85rem);
    right: 0.85rem;
    left: 0.85rem;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    padding: 1.3rem 1.25rem 1.15rem;
    max-height: calc(100dvh - 6.2rem);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--navy);
    background:
      radial-gradient(circle at 100% 100%, rgba(255, 202, 176, 0.3), transparent 36%),
      radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.96), transparent 45%),
      rgba(250, 247, 245, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 2rem 2.65rem 2.2rem 2.45rem / 2.35rem 2rem 2.7rem 2.1rem;
    box-shadow:
      0 1.4rem 4rem rgba(65, 45, 57, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      inset 0 -1px 0 rgba(118, 98, 104, 0.08);
    -webkit-backdrop-filter: blur(26px) saturate(1.3);
    backdrop-filter: blur(26px) saturate(1.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.6rem) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 300ms ease,
      visibility 300ms ease,
      transform 380ms var(--ease-out);
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav > a,
  .mobile-services__trigger {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    width: 100%;
    padding: 0.68rem 0.25rem;
    color: var(--navy);
    cursor: pointer;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(31, 50, 104, 0.13);
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: clamp(1.55rem, 7vw, 2rem);
    letter-spacing: -0.045em;
  }

  .mobile-menu nav > a,
  .mobile-services {
    opacity: 0;
    transform: translateY(0.8rem);
    transition:
      opacity 380ms var(--ease-out),
      transform 380ms var(--ease-out);
  }

  .mobile-menu.is-open nav > a,
  .mobile-menu.is-open .mobile-services {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu.is-open nav > :nth-child(2) {
    transition-delay: 45ms;
  }

  .mobile-menu.is-open nav > :nth-child(3) {
    transition-delay: 90ms;
  }

  .mobile-menu.is-open nav > :nth-child(4) {
    transition-delay: 135ms;
  }

  .mobile-menu nav > a > span,
  .mobile-services__trigger > span {
    color: #bc896d;
    font-family: "Avenir Next", Avenir, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .mobile-services__trigger {
    display: grid;
    grid-template-columns: auto 1fr auto;
    text-align: left;
  }

  .mobile-services__trigger strong {
    font: inherit;
    font-weight: 400;
  }

  .mobile-services__trigger i {
    position: relative;
    width: 1rem;
    height: 1rem;
    align-self: center;
  }

  .mobile-services__trigger i::before,
  .mobile-services__trigger i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.9rem;
    height: 1px;
    content: "";
    background: rgba(31, 50, 104, 0.72);
    transform: translate(-50%, -50%);
    transition: transform 320ms var(--ease-out);
  }

  .mobile-services__trigger i::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .mobile-services__trigger[aria-expanded="true"] i::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .mobile-services__trigger:focus-visible {
    outline: 2px solid rgba(37, 55, 104, 0.58);
    outline-offset: -2px;
  }

  .mobile-services__panel {
    display: grid;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    grid-auto-flow: column;
    grid-auto-columns: minmax(8.4rem, 72%);
    gap: 0.7rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    opacity: 0;
    transition:
      max-height 430ms var(--ease-out),
      padding 430ms var(--ease-out),
      opacity 260ms ease,
      visibility 260ms ease;
  }

  .mobile-services__panel::-webkit-scrollbar {
    display: none;
  }

  .mobile-services__panel.is-open {
    visibility: visible;
    max-height: 14rem;
    padding: 0.8rem 0.1rem 1rem;
    opacity: 1;
  }

  .mobile-services__panel a {
    position: relative;
    display: block;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    scroll-snap-align: start;
    background: rgba(255, 253, 251, 0.7);
    border: 1px solid rgba(181, 143, 117, 0.2);
    border-radius: 1rem 1.15rem 1.05rem 1.12rem;
    box-shadow: 0 0.8rem 1.8rem rgba(91, 63, 64, 0.08);
  }

  .mobile-services__panel img {
    display: block;
    width: 100%;
    height: 8.2rem;
    object-fit: cover;
    object-position: center 38%;
  }

  .mobile-services__panel a > span {
    display: block;
    min-height: 3.6rem;
    padding: 0.75rem 0.8rem 0.8rem;
    color: #8f765f;
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-size: 1rem;
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .mobile-menu__consultation {
    display: flex;
    justify-content: space-between;
    min-height: 3.35rem;
    margin-top: 1rem;
    padding: 0.85rem 1.15rem;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, #354a8d, #1d2d64);
    border-radius: 999px;
    box-shadow:
      0 0.7rem 1.8rem rgba(29, 45, 100, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .hero__content {
    top: clamp(7.6rem, 16.5svh, 9.2rem);
    left: var(--gutter);
    width: calc(100% - 2 * var(--gutter));
    transition:
      opacity 300ms ease,
      transform 380ms var(--ease-out),
      filter 380ms ease;
  }

  body.menu-open .hero__content {
    opacity: 0.16;
    filter: blur(3px);
    transform: scale(0.985);
  }

  .hero h1 {
    width: clamp(11.8rem, 54vw, 14rem);
    margin-bottom: 0.8rem;
  }

  .hero__tagline {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .hero__rule {
    width: 2.65rem;
    margin: 1.2rem 0 1.15rem;
  }

  .hero__description {
    max-width: 20rem;
    font-size: clamp(0.91rem, 3.75vw, 1rem);
    line-height: 1.5;
  }

  .hero__actions {
    gap: 0.65rem;
    width: min(100%, 21.2rem);
    margin-top: 1.55rem;
  }

  .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 3.1rem;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
  }

  .hero__benefits {
    top: 40.5rem;
    right: var(--gutter);
    bottom: auto;
    left: var(--gutter);
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    width: auto;
  }

  .benefit-card {
    min-height: 11.9rem;
    padding: 1.25rem 1.5rem;
  }

  .benefit-card__icon {
    width: 3.75rem;
    height: 3.75rem;
  }

  .benefit-card h2 {
    font-size: 1.05rem;
  }

  .benefit-card p {
    font-size: 0.91rem;
  }

  .services-showcase {
    top: 79rem;
    right: var(--gutter);
    left: var(--gutter);
  }

  .services-showcase__header {
    max-width: 100%;
  }

  .services-showcase__eyebrow {
    font-size: 0.98rem;
  }

  .services-showcase h2 {
    font-size: clamp(3rem, 14vw, 4.1rem);
    line-height: 0.98;
  }

  .services-showcase h2 > small {
    margin-top: 0.7rem;
    font-size: 0.5em;
  }

  .services-showcase__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 2.25rem;
  }

  .services-showcase__stack {
    gap: 1rem;
  }

  .service-panel--longevity {
    min-height: 27.5rem;
  }

  .service-panel--beauty,
  .service-panel--health {
    min-height: 21.5rem;
  }

  .service-panel--longevity .service-panel__content,
  .service-panel--beauty .service-panel__content,
  .service-panel--health .service-panel__content {
    display: flex;
    width: min(100%, 22rem);
    min-height: inherit;
    flex-direction: column;
    padding: 1.55rem;
  }

  .service-panel__icon,
  .service-panel--longevity .service-panel__icon,
  .service-panel--beauty .service-panel__icon,
  .service-panel--health .service-panel__icon {
    width: 3.9rem;
    height: 3.9rem;
    margin: -0.1rem 0 1.2rem -0.1rem;
  }

  .service-panel--longevity h3 {
    align-self: auto;
    font-size: 2.25rem;
    line-height: 0.98;
  }

  .service-panel--beauty h3,
  .service-panel--health h3 {
    align-self: auto;
    font-size: 1.48rem;
    line-height: 0.98;
  }

  .service-panel--longevity .service-panel__rule,
  .service-panel--beauty .service-panel__rule,
  .service-panel--health .service-panel__rule {
    margin: 1.25rem 0 1.1rem;
  }

  .service-panel--longevity p,
  .service-panel--beauty p,
  .service-panel--health p {
    max-width: 19rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .service-panel--longevity .service-panel__button,
  .service-panel--beauty .service-panel__button,
  .service-panel--health .service-panel__button {
    width: min(100%, 12.5rem);
    min-height: 2.9rem;
    margin-top: auto;
    font-size: 0.76rem;
  }

  .service-panel::after {
    background: linear-gradient(90deg, rgba(255, 252, 249, 0.94) 0%, rgba(255, 252, 249, 0.78) 53%, rgba(255, 252, 249, 0.12) 82%, transparent 100%);
  }

  .team-showcase {
    padding: 1.25rem var(--gutter) 4.5rem;
    background: linear-gradient(180deg, #f4dfd2 0%, #f7e8df 6%, #fbf3ee 18%, #fdf9f6 38%, #ffffff 68%);
  }

  .team-showcase h2 {
    font-size: clamp(3.45rem, 16vw, 4.15rem);
  }

  .team-showcase__intro {
    max-width: 21.5rem;
    margin-top: 1.2rem;
    font-size: 0.91rem;
    line-height: 1.55;
  }

  .team-showcase__button {
    min-height: 3rem;
    margin-top: 1.4rem;
  }

  .team-showcase__grid {
    grid-template-columns: minmax(0, 20.5rem);
    gap: 1.35rem;
    margin-top: 2rem;
  }

  .team-card {
    aspect-ratio: 0.8;
    border-radius: 2.4rem 2.65rem 2.35rem 2.55rem / 2.6rem 2.35rem 2.7rem 2.4rem;
  }

  .team-card__portrait-window {
    top: 0.65rem;
    right: 0.65rem;
    bottom: 6.4rem;
    left: 0.65rem;
  }

  .team-card--eszter .team-card__portrait {
    width: 97%;
  }

  .team-card--reka .team-card__portrait {
    width: 100%;
  }

  .team-card__meta {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    height: 5.85rem;
  }

  .team-card h3 {
    font-size: clamp(1.2rem, 5.5vw, 1.42rem);
  }

  .team-card__rule {
    margin: 0.5rem auto 0.45rem;
  }

  .team-card__meta p {
    font-size: 0.68rem;
  }

  .products-showcase {
    padding: 4.5rem var(--gutter) 5.25rem;
    background: #faefe9;
  }

  .products-showcase__inner {
    gap: 3rem;
  }

  .products-showcase__copy {
    max-width: 22.5rem;
  }

  .products-showcase__eyebrow {
    font-size: 0.96rem;
  }

  .products-showcase__rule {
    margin: 1.15rem 0 1.35rem;
  }

  .products-showcase h2 {
    font-size: clamp(2.75rem, 12vw, 3.4rem);
    line-height: 1.04;
  }

  .products-showcase h2 span:first-child {
    white-space: normal;
  }

  .products-showcase__intro {
    max-width: 21rem;
    margin-top: 1.35rem;
    font-size: 0.94rem;
    line-height: 1.57;
  }

  .products-showcase__button {
    width: min(100%, 15.8rem);
    min-height: 3.2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
  }

  .products-showcase__cards {
    gap: 0.9rem;
  }

  .product-card,
  .product-card-shell--wellness .product-card {
    height: clamp(11.75rem, 50vw, 12.2rem);
    aspect-ratio: auto;
    border-radius: 1rem 1.2rem 1.05rem 1.15rem;
  }

  .product-card::after {
    background: linear-gradient(90deg, rgba(255, 253, 251, 0.64) 0%, rgba(255, 253, 251, 0.34) 42%, transparent 68%);
  }

  .product-card__content {
    left: clamp(1.15rem, 5.4vw, 1.5rem);
  }

  .product-card h3 {
    font-size: clamp(1.45rem, 7vw, 1.75rem);
  }

  .product-card__arrow {
    margin-top: 0.65rem;
    font-size: 1.55rem;
  }
}

@media (max-width: 1020px) and (min-width: 901px) {
  .stories-showcase {
    padding-top: 6rem;
    padding-bottom: 5.75rem;
  }

  .stories-showcase__inner {
    width: min(100%, 58rem);
  }

  .stories-showcase__title-primary {
    font-size: clamp(4.6rem, 8vw, 5.2rem);
  }

  .stories-showcase__title-secondary {
    font-size: clamp(3.35rem, 6.2vw, 4rem);
  }

  .stories-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 4.75rem;
  }

  .story-card {
    min-height: 21.25rem;
    padding: 2rem 1.85rem 1.9rem;
  }

  .story-card--alyssa {
    margin-top: 4rem;
  }

  .story-card--hayley {
    width: calc(50% - 0.6rem);
    min-height: 19.75rem;
    margin-top: 0;
    grid-column: 1 / -1;
    justify-self: center;
  }

  .story-card blockquote p {
    font-size: 0.96rem;
  }

  .stories-showcase__art {
    top: -15rem;
    right: -7rem;
    width: 31rem;
  }
}

@media (max-width: 900px) and (min-width: 701px) {
  .stories-showcase {
    padding-top: 5.5rem;
    padding-bottom: 6rem;
  }

  .stories-showcase__inner {
    width: min(100%, 46rem);
  }

  .stories-showcase__header {
    max-width: 42rem;
  }

  .stories-showcase__title-primary {
    font-size: clamp(4.25rem, 10vw, 5rem);
  }

  .stories-showcase__title-secondary {
    font-size: clamp(3.1rem, 7.5vw, 3.75rem);
  }

  .stories-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 4.5rem;
  }

  .story-card {
    min-height: 21rem;
    padding: 2rem 2rem 1.9rem;
  }

  .story-card--alyssa {
    margin-top: 3rem;
  }

  .story-card--hayley {
    width: calc(50% - 0.625rem);
    min-height: 19.5rem;
    margin-top: 0;
    grid-column: 1 / -1;
    justify-self: center;
  }

  .stories-showcase__art {
    --reveal-opacity: 0.82;
    top: -13rem;
    right: -8rem;
    width: 28rem;
  }
}

@media (max-width: 700px) {
  .stories-showcase {
    padding: 4.75rem var(--gutter) 5.25rem;
    background: linear-gradient(
      180deg,
      #faefe9 0%,
      #f9e9e1 10%,
      #fbeee8 22%,
      #fdf9f7 36%,
      #fdf8f5 48%,
      #faece5 70%,
      #f6dfd1 100%
    );
  }

  .stories-showcase__inner {
    width: min(100%, 22.5rem);
  }

  .stories-showcase__header {
    width: 100%;
  }

  .stories-showcase__eyebrow {
    font-size: 0.95rem;
  }

  .stories-showcase__rule {
    width: 2rem;
    margin: 1.1rem 0 1.45rem;
  }

  .stories-showcase__title-primary {
    font-size: clamp(2.65rem, 12.5vw, 3.45rem);
    line-height: 0.98;
  }

  .stories-showcase__title-secondary {
    margin-top: 0.15em;
    font-size: clamp(2.05rem, 9.2vw, 2.65rem);
    line-height: 1;
  }

  .stories-showcase__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
    width: 100%;
    max-width: 22.5rem;
    margin: 3rem auto 0;
  }

  .story-card,
  .story-card--alyssa,
  .story-card--hayley {
    width: 100%;
    min-height: 17.5rem;
    margin-top: 0;
    padding: 1.75rem 1.5rem 1.5rem;
    grid-column: auto;
  }

  .story-card__quote-mark {
    height: 2.2rem;
    margin-bottom: 0.7rem;
    font-size: 3.75rem;
  }

  .story-card cite {
    font-size: clamp(1.6rem, 7.5vw, 1.82rem);
  }

  .story-card blockquote {
    margin-top: 1.15rem;
  }

  .story-card blockquote p {
    max-width: 32ch;
    font-size: 1rem;
    line-height: 1.56;
  }

  .story-card__rating {
    width: min(100%, 10.5rem);
    min-height: 2.75rem;
  }

  .stories-showcase__art {
    --reveal-opacity: 0.62;
    top: -7.5rem;
    right: -8.5rem;
    width: 22rem;
  }

  .faq-showcase {
    padding: 5rem var(--gutter) 5.75rem;
    background:
      radial-gradient(90% 24% at 15% 0%, rgba(255, 255, 255, 0.56), transparent 76%),
      linear-gradient(180deg, #f6dfd1 0%, #faece5 8%, #fdf9f7 24%, #fbf7f4 72%, #f7ebe4 100%);
  }

  .faq-showcase__inner {
    width: min(100%, 27rem);
  }

  .faq-showcase__eyebrow {
    font-size: 1rem;
  }

  .faq-showcase h2 {
    margin-top: 1.25rem;
    font-size: clamp(2.85rem, 13vw, 3.55rem);
    line-height: 0.96;
  }

  .faq-showcase__intro {
    margin-top: 1.4rem;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .faq-showcase__intro br {
    display: none;
  }

  .faq-list {
    margin-top: 3rem;
    border-radius: 1rem 1.18rem 1.05rem 1.12rem;
  }

  .faq-question {
    min-height: 4.85rem;
    padding: 1.25rem 1.15rem;
    grid-template-columns: minmax(0, 1fr) 1rem;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.35;
  }

  .faq-answer p {
    padding: 0 2.65rem 1.55rem 1.15rem;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .next-step-showcase {
    min-height: 0;
    padding: 5rem var(--gutter) 5.75rem;
    background: linear-gradient(180deg, #f7ebe4 0%, #fcf4ef 24%, #f7ded2 100%);
  }

  .next-step-showcase__art {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 7%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 7%, #000 100%);
  }

  .next-step-showcase__art img {
    object-position: center top;
  }

  .next-step-showcase__veil {
    background: linear-gradient(180deg, rgba(255, 250, 247, 0.24) 0%, transparent 38%);
  }

  .next-step-showcase__inner {
    display: grid;
    width: min(100%, 27rem);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 3.75rem;
  }

  .next-step-showcase__copy {
    max-width: 100%;
  }

  .next-step-showcase__eyebrow {
    font-size: 0.96rem;
  }

  .next-step-showcase__rule {
    width: 2rem;
    margin: 1.1rem 0 1.35rem;
  }

  .next-step-showcase h2 {
    font-size: clamp(2.25rem, 10.7vw, 3rem);
    line-height: 1;
  }

  .next-step-showcase__title-secondary {
    font-size: 0.8em;
  }

  .next-step-showcase__intro {
    margin-top: 1.4rem;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .next-step-showcase__intro br {
    display: none;
  }

  .next-step-showcase__button {
    width: min(100%, 17rem);
    min-height: 3.3rem;
    margin-top: 1.9rem;
    font-size: 0.9rem;
  }

  .support-card-stage {
    width: min(100%, 22.5rem);
    height: 30.75rem;
    margin: 0 auto;
    justify-self: center;
  }

  .support-card {
    width: min(91%, 19rem);
    height: 10.3rem;
  }

  .support-card--wellness {
    top: 0;
    left: 0;
  }

  .support-card--longevity {
    top: 10.05rem;
    right: 0;
  }

  .support-card--personalized {
    bottom: 0;
    left: 0.85rem;
  }

  .support-card__content {
    padding: 1.35rem 1.4rem 1.2rem;
  }

  .support-card__icon {
    width: 2.55rem;
    height: 2.55rem;
    margin-bottom: 0.55rem;
  }

  .support-card__icon svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .support-card strong {
    font-size: clamp(1.45rem, 7vw, 1.7rem);
  }

  .support-card__meta {
    margin-top: 0.48rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 350px) {
  .hero__content {
    top: 7.35rem;
  }

  .service-panel--beauty h3,
  .service-panel--health h3 {
    font-size: 1.34rem;
  }

  .button {
    padding-inline: 0.82rem;
    font-size: 0.78rem;
  }

  .products-showcase h2 {
    font-size: 2.5rem;
  }

  .product-card h3 {
    font-size: 1.36rem;
  }

  .stories-showcase__title-primary {
    font-size: 2.7rem;
  }

  .stories-showcase__title-secondary {
    font-size: 2.1rem;
  }

  .story-card,
  .story-card--alyssa,
  .story-card--hayley {
    padding-inline: 1.35rem;
  }

  .faq-showcase h2 {
    font-size: 2.65rem;
  }

  .next-step-showcase h2 {
    font-size: 2.15rem;
  }

  .next-step-showcase__title-primary {
    white-space: normal;
  }

  .support-card-stage {
    height: 29.75rem;
  }

  .support-card {
    width: calc(100% - 1.15rem);
    height: 10rem;
  }
}

@keyframes art-arrival {
  from {
    opacity: 0;
    transform: scale(1.035) translate3d(1.2%, 0.8%, 0);
  }
  to {
    opacity: 1;
    transform: scale(1.006) translate3d(0, 0, 0);
  }
}

@keyframes nav-arrival {
  from {
    opacity: 0;
    transform: translateY(-1rem) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes copy-arrival {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rule-arrival {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes benefit-arrival {
  from {
    opacity: 0;
    transform: translateY(1.3rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark Aelan footer */
.site-footer-dark {
  --footer-night: #303463;
  --footer-gold: #c5a487;
  --footer-ink: #f4f1ee;
  --footer-muted: #aeb8d6;
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: clamp(4.75rem, 6vw, 5.6rem) var(--gutter) clamp(4rem, 5vw, 4.75rem);
  overflow: hidden;
  color: var(--footer-ink);
  background: var(--footer-night);
}

.site-footer-dark__inner {
  width: min(100%, 70rem);
  margin: 0 auto;
}

.site-footer-dark__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer-dark__brand a {
  display: block;
  width: clamp(13rem, 19vw, 17.5rem);
  transition:
    opacity 280ms ease,
    transform 420ms var(--ease-out);
}

.site-footer-dark__brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(1.08) saturate(0.88);
}

.site-footer-dark__brand p {
  margin: 0.65rem 0 0;
  color: #d2b99f;
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.site-footer-dark__brand > span {
  width: 2.55rem;
  height: 1px;
  margin-top: 1.85rem;
  background: linear-gradient(90deg, transparent, #e9a27c 25%, #e9a27c 75%, transparent);
}

.site-footer-dark__grid {
  display: grid;
  width: min(100%, 43rem);
  margin: clamp(2.25rem, 3.4vw, 2.9rem) auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4rem, 9vw, 7rem);
  align-items: start;
}

.footer-group {
  min-width: 0;
  text-align: center;
}

.footer-group h3 {
  margin: 0;
  color: var(--footer-gold);
  font-family: "Iowan Old Style", Baskerville, "Baskerville Old Face", Georgia, serif;
  font-size: clamp(1.25rem, 1.85vw, 1.52rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.footer-group__rule {
  display: block;
  width: 1.45rem;
  height: 1px;
  margin: 0.78rem auto 1rem;
  background: linear-gradient(90deg, #e6a27d, rgba(230, 162, 125, 0.2));
}

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

.footer-group li,
.footer-group a,
.footer-group address {
  color: var(--footer-muted);
  font-size: clamp(0.78rem, 1.05vw, 0.88rem);
  line-height: 1.38;
}

.footer-group a {
  transition:
    color 260ms ease,
    text-shadow 260ms ease;
}

.footer-group--contact address {
  display: grid;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  gap: 0.92rem;
  font-style: normal;
  text-align: left;
}

.footer-group--contact {
  padding-left: clamp(2rem, 4vw, 3.5rem);
  border-left: 1px solid rgba(198, 166, 139, 0.2);
}

.footer-group--contact address > span,
.footer-group--contact address > a {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, auto);
  gap: 0.72rem;
  align-items: center;
}

.footer-group--contact svg {
  width: 1.05rem;
  height: 1.05rem;
  overflow: visible;
  fill: none;
  stroke: #d7a887;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer-dark__cta {
  display: flex;
  width: min(100%, 18.6rem);
  min-height: 3.65rem;
  margin: clamp(2.35rem, 3.8vw, 2.85rem) auto 0;
  padding: 0.85rem 1.55rem 0.85rem 1.85rem;
  align-items: center;
  justify-content: space-between;
  color: #303463;
  border: 1px solid rgba(255, 245, 237, 0.82);
  border-radius: 999px;
  background: linear-gradient(112deg, #fff5ed 0%, #f9d7c4 58%, #f2bfa8 100%);
  box-shadow:
    0 0.9rem 2.5rem rgba(224, 148, 124, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  transition:
    transform 380ms var(--ease-out),
    box-shadow 320ms ease,
    background 320ms ease;
}

.site-footer-dark__cta span:last-child {
  font-size: 1.12rem;
  transition: transform 320ms var(--ease-out);
}

.site-footer-dark__legal {
  display: flex;
  margin-top: clamp(2.6rem, 4vw, 3.25rem);
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: rgba(224, 227, 241, 0.78);
  font-size: 0.75rem;
  line-height: 1.4;
}

.site-footer-dark__legal p {
  margin: 0;
}

.site-footer-dark__legal nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-footer-dark__legal i {
  display: block;
  width: 1px;
  height: 0.95rem;
  background: rgba(219, 178, 148, 0.46);
}

.site-footer-dark__legal a {
  transition: color 240ms ease;
}

.site-footer-dark__brand a:focus-visible,
.footer-group a:focus-visible,
.site-footer-dark__cta:focus-visible,
.site-footer-dark__legal a:focus-visible {
  outline: 2px solid rgba(245, 194, 157, 0.92);
  outline-offset: 5px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer-dark__brand a:hover {
    opacity: 0.92;
    transform: translateY(-2px);
  }

  .footer-group a:hover,
  .footer-group a:focus-visible,
  .site-footer-dark__legal a:hover,
  .site-footer-dark__legal a:focus-visible {
    color: #fff8f3;
  }

  .site-footer-dark__cta:hover,
  .site-footer-dark__cta:focus-visible {
    background: linear-gradient(112deg, #fffaf6 0%, #fbdac8 52%, #f4bea4 100%);
    box-shadow:
      0 1.2rem 3rem rgba(224, 148, 124, 0.27),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: translateY(-3px);
  }

  .site-footer-dark__cta:hover span:last-child,
  .site-footer-dark__cta:focus-visible span:last-child {
    transform: translateX(0.25rem);
  }
}

@media (max-width: 900px) {
  .site-footer-dark {
    padding-top: 5rem;
    padding-bottom: 4.5rem;
  }

  .site-footer-dark__grid {
    width: min(100%, 38rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

  .site-footer-dark__cta {
    margin-top: 2.8rem;
  }
}

@media (max-width: 640px) {
  .site-footer-dark {
    padding: 4.5rem 1.25rem 4.25rem;
  }

  .site-footer-dark__brand a {
    width: min(100%, 13.5rem);
  }

  .site-footer-dark__brand p {
    max-width: 17rem;
    margin-top: 0.7rem;
    font-size: 1.02rem;
  }

  .site-footer-dark__brand > span {
    margin-top: 1.55rem;
  }

  .site-footer-dark__grid {
    width: min(100%, 23rem);
    margin-top: 2.35rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.85rem;
  }

  .footer-group {
    padding-top: 1.45rem;
    border-top: 1px solid rgba(174, 186, 220, 0.13);
  }

  .footer-group--contact {
    padding-left: 0;
    border-left: 0;
  }

  .footer-group:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .footer-group h3 {
    font-size: 1.42rem;
  }

  .footer-group li,
  .footer-group a,
  .footer-group address {
    font-size: 0.86rem;
  }

  .footer-group--contact address {
    gap: 0.82rem;
  }

  .site-footer-dark__cta {
    width: min(100%, 18rem);
    margin-top: 2.6rem;
  }

  .site-footer-dark__legal {
    flex-direction: column;
    gap: 0.72rem;
    text-align: center;
  }

  .site-footer-dark__legal > i {
    display: none;
  }

  .site-footer-dark__legal nav {
    gap: 0.9rem;
  }

}

@media (max-width: 360px) {
  .site-footer-dark {
    padding-inline: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-dark *,
  .site-footer-dark *::before,
  .site-footer-dark *::after {
    transition-duration: 0.01ms !important;
  }
}
