:root {
  --navy: #080a26;
  --navy-deep: #05061b;
  --champagne: #c7a98e;
  --champagne-light: #dfc8b1;
  --white: #f8f6f4;
  --muted: #9698aa;
  --pink: #f3a5b9;
  --page-gutter: clamp(1.5rem, 4.7vw, 4.75rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-deep);
}

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

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

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

button {
  font: inherit;
}

::selection {
  color: var(--navy);
  background: var(--champagne-light);
}

.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: 100svh;
  overflow: hidden;
  background: var(--navy);
}

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

.hero__art {
  z-index: -4;
  overflow: hidden;
}

.hero__art img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.012);
  animation: art-arrival 1.7s var(--ease-out) both;
  transition: transform 1.2s var(--ease-out);
}

.hero__veil {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 7, 28, 0.32) 0%, rgba(5, 7, 28, 0.06) 48%, transparent 76%),
    linear-gradient(180deg, rgba(5, 6, 26, 0.26) 0%, transparent 26%, rgba(3, 4, 19, 0.12) 100%);
  pointer-events: none;
}

.hero__grain {
  z-index: 8;
  opacity: 0.07;
  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: soft-light;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 8.75rem;
  padding: 0 var(--page-gutter);
  animation: nav-arrival 0.95s 0.12s var(--ease-out) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(7.5rem, 10.6vw, 10.75rem);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(2.1rem, 4.2vw, 4.25rem);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.desktop-nav a {
  position: relative;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.88);
  transition: color 250ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--pink), var(--champagne-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.shop-link {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  min-width: 12.4rem;
  min-height: 3.3rem;
  padding: 0.75rem 1.7rem;
  white-space: nowrap;
  color: #fff;
  background: var(--champagne);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 0 0 rgba(238, 171, 194, 0);
  transition:
    color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease,
    transform 300ms var(--ease-out);
}

.shop-link:hover,
.shop-link:focus-visible {
  color: var(--navy);
  background: var(--champagne-light);
  box-shadow: 0 0.75rem 2.5rem rgba(238, 171, 194, 0.2);
  transform: translateY(-2px);
}

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

.section-nav {
  position: fixed;
  z-index: 55;
  top: 50%;
  right: clamp(1.5rem, 2.2vw, 2rem);
  display: grid;
  justify-items: center;
  gap: 0.72rem;
  padding: 1.18rem 0.72rem;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(10, 13, 43, 0.45);
  border: 1px solid rgba(223, 200, 177, 0.28);
  border-radius: 999px;
  box-shadow:
    0 1.35rem 3.2rem rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  animation: section-nav-arrival 0.9s 0.7s var(--ease-out) both;
}

.section-nav[hidden] {
  display: none;
}

.section-nav__count {
  color: rgba(223, 200, 177, 0.78);
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
}

.section-nav__rail {
  width: 1px;
  height: 1.45rem;
  background: linear-gradient(180deg, transparent, rgba(223, 200, 177, 0.45), transparent);
}

.section-nav a {
  position: relative;
  display: grid;
  width: 1.45rem;
  min-height: 1.35rem;
  place-items: center;
  border-radius: 999px;
  outline-offset: 0.35rem;
}

.section-nav a[hidden] {
  display: none;
}

.section-nav__dot {
  display: block;
  width: 0.36rem;
  height: 0.36rem;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    width 320ms var(--ease-out),
    height 320ms var(--ease-out),
    background 320ms ease,
    box-shadow 320ms ease,
    opacity 320ms ease;
}

.section-nav a:hover .section-nav__dot,
.section-nav a:focus-visible .section-nav__dot {
  background: rgba(255, 255, 255, 0.68);
}

.section-nav a[aria-current="true"] .section-nav__dot {
  width: 0.42rem;
  height: 1.45rem;
  background: linear-gradient(180deg, #f3a5b9 0%, #dfc8b1 45%, #a38b73 100%);
  box-shadow:
    0 0 1.1rem rgba(223, 200, 177, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.13);
}

.section-nav__label {
  position: absolute;
  top: 50%;
  right: calc(100% + 0.95rem);
  min-width: max-content;
  padding: 0.46rem 0.72rem;
  color: #fff;
  background: rgba(8, 10, 38, 0.72);
  border: 1px solid rgba(223, 200, 177, 0.24);
  border-radius: 999px;
  box-shadow: 0 0.75rem 1.9rem rgba(0, 0, 0, 0.18);
  font-size: 0.76rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0.45rem, -50%, 0);
  transition:
    opacity 260ms ease,
    transform 320ms var(--ease-out);
  backdrop-filter: blur(10px);
}

.section-nav__label::before {
  color: var(--champagne-light);
  content: attr(data-section-number);
}

.section-nav a:hover .section-nav__label,
.section-nav a:focus-visible .section-nav__label,
.section-nav a.is-peeking .section-nav__label {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.scroll-progress {
  position: fixed;
  z-index: 54;
  top: 0;
  right: 0;
  left: 0;
  display: none;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, #f3a5b9, #dfc8b1, #8fb5ff);
  box-shadow: 0 0 1rem rgba(223, 200, 177, 0.36);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(36rem, 46vw);
  margin-top: clamp(7.5rem, 13.5vh, 9.5rem);
  margin-left: var(--page-gutter);
}

.hero h1 {
  width: clamp(19rem, 37vw, 37rem);
  margin: 0 0 clamp(1.1rem, 2.4vh, 1.7rem);
  animation: copy-arrival 1s 0.24s var(--ease-out) both;
}

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

.hero__tagline {
  margin: 0;
  font-size: clamp(1.55rem, 2.45vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.035em;
  animation: copy-arrival 1s 0.34s var(--ease-out) both;
}

.hero__rule {
  width: 3.45rem;
  height: 1px;
  margin: clamp(1.6rem, 3.2vh, 2.2rem) 0 clamp(1.55rem, 2.7vh, 1.9rem);
  background: linear-gradient(90deg, #f5b1c3 0%, rgba(245, 177, 195, 0.25) 100%);
  transform-origin: left;
  animation: rule-arrival 0.9s 0.5s var(--ease-out) both;
}

.hero__description {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.38vw, 1.22rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.015em;
  animation: copy-arrival 1s 0.44s var(--ease-out) both;
}

.hero__actions {
  display: flex;
  gap: 1.15rem;
  margin-top: clamp(2.3rem, 4.8vh, 3.4rem);
  animation: copy-arrival 1s 0.58s var(--ease-out) both;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 11.2rem;
  min-height: 3.3rem;
  padding: 0.8rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.96rem;
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    transform 300ms var(--ease-out),
    box-shadow 300ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--champagne);
  border-color: var(--champagne);
}

.button:hover,
.button:focus-visible {
  color: var(--navy);
  background: var(--champagne-light);
  border-color: var(--champagne-light);
  box-shadow: 0 0.75rem 2.5rem rgba(238, 171, 194, 0.16);
  transform: translateY(-2px);
}

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

.hero__edge-label {
  position: absolute;
  z-index: 3;
  right: 1.15rem;
  bottom: 2.15rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.59rem;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
}

.services {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  margin-bottom: -2px;
  padding: clamp(4.75rem, 8vh, 6.5rem) 0 clamp(2rem, 3.5vh, 2.75rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(37, 34, 101, 0.28), transparent 34%),
    radial-gradient(circle at 15% 75%, rgba(18, 28, 82, 0.2), transparent 28%),
    linear-gradient(180deg, #080a26 0%, #06071e 100%);
}

.services::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.045;
  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='.76' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  mix-blend-mode: soft-light;
}

.services__glow {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: 50%;
  width: 70rem;
  height: 40rem;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(49, 40, 125, 0.2), transparent 68%);
  filter: blur(2.5rem);
  transform: translateX(-50%);
}

.services__header {
  position: relative;
  z-index: 4;
  width: min(54rem, calc(100% - 3rem));
  margin: 0 auto;
  text-align: center;
}

.services__eyebrow {
  margin: 0;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.services__eyebrow-rule {
  display: block;
  width: 3.25rem;
  height: 1px;
  margin: 0.9rem auto 0.85rem;
  background: linear-gradient(90deg, var(--pink), rgba(243, 165, 185, 0.08));
}

.services h2 {
  margin: 0;
  color: var(--champagne);
  font-family: "Iowan Old Style", "Bodoni 72", Didot, Georgia, serif;
  font-size: clamp(3.15rem, 5vw, 4.9rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.services__subtitle {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.25rem, 2.05vw, 1.72rem);
  letter-spacing: -0.035em;
}

.services-carousel {
  --card-shift: clamp(19.5rem, 30.5vw, 22rem);
  position: relative;
  width: min(78rem, 100%);
  height: 37rem;
  margin: clamp(2.6rem, 4.6vh, 3.75rem) auto 0;
}

.services-carousel__track {
  position: relative;
  width: 100%;
  height: 34rem;
  perspective: 1200px;
  touch-action: pan-y;
}

.service-card {
  --position-x: 0px;
  --position-y: 0px;
  --card-scale-x: 1;
  --card-scale-y: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23.15rem;
  height: 33rem;
  overflow: hidden;
  background: #080a28;
  border: 1px solid rgba(199, 169, 142, 0.45);
  border-radius: 0.82rem;
  box-shadow: 0 1.4rem 4.5rem rgba(1, 2, 15, 0.16);
  opacity: 1;
  filter: saturate(1) brightness(1);
  transform: translate(-50%, -50%) translate3d(var(--position-x), var(--position-y), 0) scale(var(--card-scale-x), var(--card-scale-y));
  transform-origin: center;
  transition:
    transform 720ms var(--ease-out),
    border-color 500ms ease,
    box-shadow 620ms var(--ease-out),
    filter 500ms ease,
    opacity 500ms ease;
  will-change: transform;
}

.service-card[data-position="-1"] {
  --position-x: calc(-1 * var(--card-shift));
  --card-scale-x: 0.78;
  --card-scale-y: 0.88;
  z-index: 1;
  border-color: rgba(199, 169, 142, 0.3);
  box-shadow: 0 1rem 3rem rgba(1, 2, 15, 0.11);
  filter: saturate(0.78) brightness(0.76);
}

.service-card[data-position="0"] {
  --position-y: -0.35rem;
  z-index: 3;
  border-color: rgba(223, 200, 177, 0.9);
  box-shadow:
    0 2.2rem 6rem rgba(1, 2, 15, 0.48),
    0 0 4rem rgba(101, 63, 183, 0.1);
}

.service-card[data-position="1"] {
  --position-x: var(--card-shift);
  --card-scale-x: 0.78;
  --card-scale-y: 0.88;
  z-index: 1;
  border-color: rgba(199, 169, 142, 0.3);
  box-shadow: 0 1rem 3rem rgba(1, 2, 15, 0.11);
  filter: saturate(0.78) brightness(0.76);
}

.service-card[data-position="-1"]:hover,
.service-card[data-position="1"]:hover {
  filter: saturate(0.96) brightness(0.92);
}

.service-card__art,
.service-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card__art {
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.service-card[data-position="0"] .service-card__art {
  transform: scale(1.018);
}

.service-card__shade {
  background:
    linear-gradient(180deg, rgba(4, 6, 29, 0.1) 0%, rgba(5, 7, 31, 0.36) 25%, rgba(5, 7, 31, 0.12) 70%, rgba(4, 5, 25, 0.24) 100%),
    linear-gradient(90deg, rgba(4, 6, 29, 0.2), transparent 75%);
}

.service-card__select {
  position: absolute;
  z-index: 4;
  inset: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.service-card[data-position="0"] .service-card__select {
  visibility: hidden;
  pointer-events: none;
}

.service-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.9rem 2.75rem 2.65rem;
  pointer-events: none;
}

.service-card__icon {
  display: grid;
  width: 3.9rem;
  height: 3.9rem;
  margin-bottom: 1.55rem;
  place-items: center;
  border: 1px solid rgba(199, 169, 142, 0.92);
  border-radius: 50%;
  box-shadow: inset 0 0 1.2rem rgba(199, 169, 142, 0.04);
}

.service-card__icon img {
  width: 2.1rem;
  height: 2.1rem;
}

.service-card h3 {
  margin: 0;
  color: var(--champagne);
  font-family: "Iowan Old Style", "Bodoni 72", Didot, Georgia, serif;
  font-size: 2.05rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
  font-variant-ligatures: discretionary-ligatures;
}

.service-card__title-main,
.service-card__title-sub {
  display: block;
}

.service-card__title-main {
  font-size: 1.08em;
  line-height: 0.94;
}

.service-card__title-sub {
  margin-top: 0.28em;
  font-size: 0.72em;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.service-card__title-sub--health {
  font-size: 0.67em;
  line-height: 1.08;
}

.service-card__rule {
  display: block;
  width: 3.4rem;
  height: 1px;
  margin: 1.25rem 0 1.15rem;
  background: linear-gradient(90deg, var(--pink), rgba(243, 165, 185, 0.08));
}

.service-card p {
  max-width: 17rem;
  margin: 0;
  color: rgba(222, 223, 233, 0.76);
  font-size: 0.91rem;
  line-height: 1.58;
  letter-spacing: -0.01em;
}

.service-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 3.1rem;
  margin-top: auto;
  padding: 0.7rem 1.65rem;
  color: #fff;
  font-size: 0.88rem;
  background: var(--champagne);
  border-radius: 999px;
  pointer-events: auto;
  transition:
    color 260ms ease,
    background 260ms ease,
    transform 300ms var(--ease-out),
    box-shadow 300ms ease;
}

.service-card__cta:hover,
.service-card__cta:focus-visible {
  color: var(--navy);
  background: var(--champagne-light);
  box-shadow: 0 0.8rem 2.3rem rgba(238, 171, 194, 0.18);
  transform: translateY(-2px);
}

.carousel-arrow {
  position: absolute;
  z-index: 8;
  top: 45%;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-items: center;
  cursor: pointer;
  background: rgba(7, 8, 31, 0.74);
  border: 1px solid rgba(199, 169, 142, 0.68);
  border-radius: 50%;
  backdrop-filter: blur(0.8rem);
  transform: translateY(-50%);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    transform 300ms var(--ease-out),
    box-shadow 300ms ease;
}

.carousel-arrow img {
  width: 1.45rem;
  height: 1.45rem;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: rgba(199, 169, 142, 0.18);
  border-color: var(--champagne-light);
  box-shadow: 0 0 2rem rgba(224, 146, 189, 0.12);
}

.carousel-arrow--previous {
  left: 0.85rem;
}

.carousel-arrow--previous:hover,
.carousel-arrow--previous:focus-visible {
  transform: translate(-0.18rem, -50%);
}

.carousel-arrow--next {
  right: 0.85rem;
}

.carousel-arrow--next:hover,
.carousel-arrow--next:focus-visible {
  transform: translate(0.18rem, -50%);
}

.carousel-pagination {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.carousel-pagination button {
  width: 1.8rem;
  height: 0.22rem;
  padding: 0;
  cursor: pointer;
  background: rgba(120, 113, 190, 0.45);
  border: 0;
  border-radius: 999px;
  transition:
    width 400ms var(--ease-out),
    background 300ms ease,
    box-shadow 300ms ease;
}

.carousel-pagination button[aria-current="true"] {
  width: 2.15rem;
  background: var(--champagne);
  box-shadow: 0 0 1rem rgba(199, 169, 142, 0.18);
}

.services.is-ready .services__header > *,
.services.is-ready .services-carousel {
  opacity: 0;
  transform: translateY(1.5rem);
}

.services.is-ready.is-visible .services__header > *,
.services.is-ready.is-visible .services-carousel {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 800ms var(--ease-out),
    transform 900ms var(--ease-out);
}

.services.is-ready.is-visible .services__header > :nth-child(2) {
  transition-delay: 80ms;
}

.services.is-ready.is-visible .services__header > :nth-child(3) {
  transition-delay: 140ms;
}

.services.is-ready.is-visible .services__header > :nth-child(4) {
  transition-delay: 210ms;
}

.services.is-ready.is-visible .services-carousel {
  transition-delay: 260ms;
}

.team {
  --section-curve-height: clamp(10rem, 13vw, 13rem);
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  color: #0b153f;
  background: #f7f0e8;
}

.team::before {
  position: absolute;
  z-index: 1;
  top: calc(var(--section-curve-height) * -0.62);
  left: 50%;
  width: 136%;
  height: var(--section-curve-height);
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(42, 39, 93, 0.22), transparent 58%),
    #06071e;
  border-bottom: 2px solid #ffe9c9;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  box-shadow:
    inset 0 -3px 10px rgba(255, 190, 142, 0.3),
    0 1px 3px rgba(255, 249, 235, 0.96),
    0 5px 12px rgba(255, 174, 118, 0.64),
    0 14px 34px rgba(111, 89, 166, 0.3);
  filter:
    drop-shadow(0 0 2px rgba(255, 248, 231, 0.9))
    drop-shadow(0 4px 8px rgba(255, 167, 115, 0.48));
  transform: translateX(-50%);
}

.team::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  pointer-events: none;
  background: #06071e;
}

.team__background,
.team__background img,
.team__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.team__background {
  z-index: -3;
}

.team__background img {
  opacity: 0.34;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) brightness(1.08);
}

.team__wash {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(249, 244, 238, 0.96) 0%, rgba(249, 244, 238, 0.88) 34%, rgba(249, 244, 238, 0.54) 62%, rgba(249, 244, 238, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 251, 247, 0.52), rgba(255, 251, 247, 0.22) 48%, rgba(247, 239, 230, 0.48));
}

.team__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(22rem, 0.78fr) minmax(43rem, 1.22fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  width: min(92rem, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vh, 5rem) var(--page-gutter);
}

.team__copy {
  max-width: 28rem;
}

.team__eyebrow {
  margin: 0;
  color: #b4947b;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.team__rule {
  display: block;
  width: 4.25rem;
  height: 1px;
  margin: 1.45rem 0 1.6rem;
  background: linear-gradient(90deg, #e58fa4, rgba(229, 143, 164, 0.08));
}

.team h2 {
  margin: 0;
  color: #0a143f;
  font-family: "Iowan Old Style", "Bodoni 72", Didot, Georgia, serif;
  font-size: clamp(4.7rem, 7.8vw, 7rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.team__description {
  max-width: 26rem;
  margin: clamp(2rem, 4vh, 2.8rem) 0 0;
  color: rgba(11, 21, 63, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.68;
  letter-spacing: -0.025em;
}

.team__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 15.7rem;
  min-height: 3.9rem;
  margin-top: clamp(2.3rem, 4.5vh, 3.2rem);
  padding: 0.9rem 2.15rem;
  color: #fff;
  font-size: 1rem;
  background: #303463;
  border-radius: 999px;
  box-shadow: 0 0.9rem 2.5rem rgba(48, 52, 99, 0.16);
  transition:
    color 260ms ease,
    background 260ms ease,
    transform 300ms var(--ease-out),
    box-shadow 300ms ease;
}

.team__button:hover,
.team__button:focus-visible {
  color: #fff;
  background: #3d4276;
  box-shadow: 0 1rem 2.8rem rgba(48, 52, 99, 0.22);
  transform: translateY(-2px);
}

.team-carousel {
  position: relative;
  width: min(46rem, 100%);
  height: 44rem;
}

.team-carousel__stage {
  position: relative;
  width: 100%;
  height: 39rem;
  perspective: 1200px;
  touch-action: pan-y;
}

.team-card {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 27rem;
  height: 37.5rem;
  overflow: hidden;
  background: #e4cfc0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 1.15rem;
  box-shadow: 0 1.8rem 4.5rem rgba(53, 35, 30, 0.2);
  transform-origin: top left;
  transition:
    transform 760ms var(--ease-out),
    opacity 500ms ease,
    filter 500ms ease,
    box-shadow 620ms var(--ease-out);
  will-change: transform;
}

.team-card[data-team-position="active"] {
  z-index: 2;
  opacity: 1;
  filter: saturate(1) brightness(1);
  transform: translate3d(0, 0, 0) scale(1);
}

.team-card[data-team-position="preview"] {
  z-index: 4;
  opacity: 0.96;
  filter: saturate(0.9) brightness(0.98);
  box-shadow: 0 1.5rem 4rem rgba(53, 35, 30, 0.18);
  transform: translate3d(26rem, 1.4rem, 0) scale(0.56);
}

.team-card__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 28%, rgba(255, 247, 241, 0.98), rgba(227, 203, 187, 0.92) 48%, rgba(194, 162, 146, 0.9) 100%),
    #e3cdbf;
}

.team-card:nth-child(2) .team-card__backdrop {
  background:
    radial-gradient(circle at 52% 25%, rgba(247, 231, 222, 0.98), rgba(214, 183, 169, 0.92) 50%, rgba(170, 139, 136, 0.9) 100%),
    #dac0b4;
}

.team-card__portrait {
  position: absolute;
  z-index: 1;
  right: -6%;
  bottom: 7rem;
  width: 112%;
  height: auto;
  filter: drop-shadow(0 1.1rem 1.3rem rgba(55, 33, 29, 0.14));
  transition: transform 900ms var(--ease-out);
}

.team-card[data-team-position="active"] .team-card__portrait {
  transform: scale(1.015) translateY(-0.25rem);
}

.team-card__select {
  position: absolute;
  z-index: 8;
  inset: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.team-card[data-team-position="active"] .team-card__select {
  visibility: hidden;
  pointer-events: none;
}

.team-card__info {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 15.5rem;
  padding: 6.9rem 2.1rem 1.7rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 11, 42, 0) 0%, rgba(8, 11, 42, 0.82) 38%, #080b2a 68%);
  pointer-events: none;
}

.team-card h3 {
  margin: 0;
  color: var(--champagne-light);
  font-family: "Iowan Old Style", "Bodoni 72", Didot, Georgia, serif;
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.team-card h3 span {
  margin-left: 0.18em;
  font-size: 0.68em;
  letter-spacing: 0;
}

.team-card__info > p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.team-card__rule {
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0.9rem 0 0.65rem;
  background: linear-gradient(90deg, #f09daf, rgba(240, 157, 175, 0.08));
}

.team-card__profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  pointer-events: auto;
}

.team-card__profile > span:last-child {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition:
    color 260ms ease,
    background 260ms ease,
    transform 300ms var(--ease-out);
}

.team-card__profile:hover > span:last-child,
.team-card__profile:focus-visible > span:last-child {
  color: #0b153f;
  background: #fff;
  transform: translateX(0.18rem);
}

.team-carousel__controls {
  position: absolute;
  right: 7rem;
  bottom: 0;
  left: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
}

.team-carousel__controls > button {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  place-items: center;
  cursor: pointer;
  background: rgba(255, 249, 244, 0.42);
  border: 1px solid rgba(173, 140, 116, 0.36);
  border-radius: 50%;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    transform 300ms var(--ease-out),
    box-shadow 300ms ease;
}

.team-carousel__controls > button img {
  width: 1.45rem;
  height: 1.45rem;
}

.team-carousel__controls > button:hover,
.team-carousel__controls > button:focus-visible {
  background: rgba(255, 251, 247, 0.92);
  border-color: rgba(173, 140, 116, 0.72);
  box-shadow: 0 0.7rem 2rem rgba(83, 55, 43, 0.1);
  transform: translateY(-2px);
}

.team-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-carousel__dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  cursor: pointer;
  background: rgba(197, 165, 137, 0.38);
  border: 0;
  border-radius: 50%;
  transition:
    background 260ms ease,
    transform 300ms var(--ease-out),
    box-shadow 300ms ease;
}

.team-carousel__dots button[aria-current="true"] {
  background: #0b153f;
  box-shadow: 0 0 0.9rem rgba(11, 21, 63, 0.15);
  transform: scale(1.12);
}

.team.is-ready .team__copy > *,
.team.is-ready .team-carousel {
  opacity: 0;
  transform: translateY(1.5rem);
}

.team.is-ready.is-visible .team__copy > *,
.team.is-ready.is-visible .team-carousel {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 800ms var(--ease-out),
    transform 900ms var(--ease-out);
}

.team.is-ready.is-visible .team__copy > :nth-child(1) {
  transition-delay: 80ms;
}

.team.is-ready.is-visible .team__copy > :nth-child(2) {
  transition-delay: 120ms;
}

.team.is-ready.is-visible .team__copy > :nth-child(3) {
  transition-delay: 160ms;
}

.team.is-ready.is-visible .team__copy > :nth-child(4),
.team.is-ready.is-visible .team__copy > :nth-child(5) {
  transition-delay: 220ms;
}

.team.is-ready.is-visible .team-carousel {
  transition-delay: 260ms;
}

.section-curve {
  position: relative;
  z-index: 4;
  height: clamp(4.5rem, 7vw, 6.5rem);
  margin-top: -3px;
  margin-bottom: -2px;
  overflow: hidden;
  background: #f7f0e8;
}

.section-curve--inverse > span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 136%;
  height: 205%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 43, 101, 0.24), transparent 54%),
    #06071e;
  border-top: 2px solid #ffe9c9;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow:
    inset 0 3px 10px rgba(255, 190, 142, 0.3),
    0 -1px 3px rgba(255, 249, 235, 0.96),
    0 -5px 12px rgba(255, 174, 118, 0.64),
    0 -14px 34px rgba(111, 89, 166, 0.3);
  filter:
    drop-shadow(0 0 2px rgba(255, 248, 231, 0.9))
    drop-shadow(0 -4px 8px rgba(255, 167, 115, 0.48));
  transform: translateX(-50%);
}

.products {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #06071e;
}

.products__background,
.products__background img,
.products__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.products__background {
  z-index: -3;
}

.products__background img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(0.72);
}

.products__veil {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 30, 0.66) 0%, rgba(5, 7, 30, 0.26) 46%, rgba(5, 7, 30, 0.5) 100%),
    radial-gradient(circle at 50% 18%, rgba(66, 51, 126, 0.16), transparent 38%);
}

.products__container {
  width: min(78rem, 100%);
  margin: 0 auto;
  padding: clamp(3.6rem, 7vh, 5.5rem) var(--page-gutter) clamp(4.5rem, 8vh, 6.5rem);
}

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

.products__eyebrow {
  margin: 0 0 0.85rem;
  color: #c59684;
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  letter-spacing: -0.02em;
}

.products h2 {
  margin: 0;
  color: var(--champagne);
  font-family: "Iowan Old Style", "Bodoni 72", Didot, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.products__title-main,
.products__title-sub {
  display: block;
  text-wrap: balance;
}

.products__title-main {
  font-size: clamp(3.8rem, 7.2vw, 6.6rem);
  line-height: 0.94;
}

.products__title-sub {
  margin-top: 0.12em;
  font-size: clamp(2.45rem, 4.8vw, 4.25rem);
  line-height: 0.98;
}

.products__description {
  max-width: 38rem;
  margin: 1.45rem auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.55;
  letter-spacing: -0.022em;
}

.products__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 16rem;
  min-height: 3.55rem;
  margin: 1.85rem auto 0;
  padding: 0.8rem 1.9rem;
  color: #fff;
  background: var(--champagne);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  box-shadow: 0 1rem 2.7rem rgba(13, 8, 31, 0.22);
  transition:
    color 260ms ease,
    background 260ms ease,
    box-shadow 300ms ease,
    transform 300ms var(--ease-out);
}

.products__button:hover,
.products__button:focus-visible {
  color: var(--navy);
  background: var(--champagne-light);
  box-shadow: 0 1.1rem 3rem rgba(223, 200, 177, 0.18);
  transform: translateY(-2px);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.35rem);
  margin-top: clamp(2.8rem, 5vh, 4rem);
}

.product-card {
  position: relative;
  aspect-ratio: 0.89;
  overflow: hidden;
  background: #171331;
  border: 1px solid rgba(216, 185, 153, 0.38);
  border-radius: 1.15rem;
  box-shadow: 0 1.5rem 4rem rgba(2, 3, 18, 0.22);
  transform: translateZ(0);
  transition:
    border-color 300ms ease,
    box-shadow 420ms var(--ease-out),
    transform 420ms var(--ease-out);
}

.product-card picture,
.product-card > picture img,
.product-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-card > picture img {
  object-fit: cover;
  transition: transform 750ms var(--ease-out), filter 450ms ease;
}

.product-card__shade {
  background:
    linear-gradient(180deg, rgba(8, 8, 32, 0.02) 42%, rgba(7, 7, 28, 0.34) 68%, rgba(5, 6, 25, 0.9) 100%),
    linear-gradient(90deg, rgba(7, 8, 31, 0.16), transparent 42%);
}

.product-card__icon {
  position: absolute;
  top: 1.45rem;
  left: 1.45rem;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  background: rgba(8, 10, 38, 0.28);
  border: 1px solid rgba(216, 185, 153, 0.72);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.product-card__icon img {
  width: 2.25rem;
  height: 2.25rem;
}

.product-card__label {
  position: absolute;
  right: 1.6rem;
  bottom: 1.4rem;
  left: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  color: #fff;
}

.product-card__label > span:first-child {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.product-card__label > span:last-child {
  font-size: 1.55rem;
  transition: transform 350ms var(--ease-out);
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(255, 226, 195, 0.78);
  box-shadow:
    0 2rem 5rem rgba(2, 3, 18, 0.38),
    0 0 2.8rem rgba(201, 130, 162, 0.11);
  transform: translateY(-0.5rem);
}

.product-card:hover > picture img,
.product-card:focus-visible > picture img {
  filter: saturate(1.06) brightness(1.03);
  transform: scale(1.045);
}

.product-card:hover .product-card__label > span:last-child,
.product-card:focus-visible .product-card__label > span:last-child {
  transform: translateX(0.35rem);
}

.products.is-ready .products__header > *,
.products.is-ready .product-card {
  opacity: 0;
  transform: translateY(1.5rem);
}

.products.is-ready.is-visible .products__header > *,
.products.is-ready.is-visible .product-card {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 800ms var(--ease-out),
    transform 900ms var(--ease-out),
    border-color 300ms ease,
    box-shadow 420ms var(--ease-out);
}

.products.is-ready.is-visible .products__header > :nth-child(2) {
  transition-delay: 80ms;
}

.products.is-ready.is-visible .products__header > :nth-child(3),
.products.is-ready.is-visible .products__header > :nth-child(4) {
  transition-delay: 150ms;
}

.products.is-ready.is-visible .product-card:nth-child(1) {
  transition-delay: 190ms;
}

.products.is-ready.is-visible .product-card:nth-child(2) {
  transition-delay: 260ms;
}

.products.is-ready.is-visible .product-card:nth-child(3) {
  transition-delay: 330ms;
}

.testimonials {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 48% 35%, rgba(54, 48, 111, 0.17), transparent 34%),
    linear-gradient(180deg, #06071e 0%, #090a28 54%, #070820 100%);
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 28, 0.22), transparent 28%, transparent 72%, rgba(5, 7, 28, 0.22)),
    radial-gradient(circle at 50% 8%, rgba(117, 91, 148, 0.08), transparent 32%);
}

.testimonials__ribbon {
  position: absolute;
  z-index: -2;
  width: min(46vw, 42rem);
  aspect-ratio: 1.12;
  pointer-events: none;
  background-image: url("assets/hero-aelan-desktop.webp");
  background-repeat: no-repeat;
  background-size: 172% auto;
  mix-blend-mode: screen;
  opacity: 0.115;
  filter: saturate(0.76) brightness(0.82);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 24%, rgba(0, 0, 0, 0.72) 54%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 24%, rgba(0, 0, 0, 0.72) 54%, transparent 78%);
}

.testimonials__ribbon--top {
  top: -12rem;
  right: -8rem;
  background-position: 94% 28%;
  transform: rotate(-7deg);
}

.testimonials__ribbon--bottom {
  bottom: -15rem;
  left: -10rem;
  background-position: 92% 68%;
  opacity: 0.09;
  transform: rotate(166deg);
}

.testimonials__container {
  width: min(78rem, 100%);
  margin: 0 auto;
  padding: clamp(5rem, 10vh, 8rem) var(--page-gutter) clamp(5.5rem, 11vh, 8.5rem);
}

.testimonials__header {
  width: min(52rem, 100%);
}

.testimonials__eyebrow {
  margin: 0;
  color: rgba(217, 184, 156, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  letter-spacing: -0.022em;
}

.testimonials__rule,
.testimonial-card__rule {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, #ef8c85, rgba(239, 140, 133, 0));
}

.testimonials__rule {
  width: 4.1rem;
  margin: 1.25rem 0 1.35rem;
}

.testimonials h2 {
  margin: 0;
  color: var(--champagne);
  font-family: "Iowan Old Style", "Bodoni 72", Didot, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.testimonials__title-main,
.testimonials__title-sub {
  display: block;
  text-wrap: balance;
}

.testimonials__title-main {
  font-size: clamp(4.15rem, 7.2vw, 6.45rem);
  line-height: 0.94;
}

.testimonials__title-sub {
  margin-top: 0.16em;
  font-size: clamp(2.8rem, 4.9vw, 4.25rem);
  line-height: 1;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.35rem);
  margin-top: clamp(3rem, 6vh, 4.6rem);
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: clamp(21rem, 32vw, 25.5rem);
  flex-direction: column;
  padding: clamp(1.8rem, 2.6vw, 2.45rem);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(38, 36, 74, 0.46), rgba(16, 17, 50, 0.32)),
    rgba(10, 12, 42, 0.3);
  border: 1px solid rgba(217, 181, 149, 0.55);
  border-radius: 1.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 239, 220, 0.04),
    0 1.5rem 4rem rgba(2, 3, 18, 0.16);
  backdrop-filter: blur(11px);
  transition:
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 420ms var(--ease-out),
    transform 420ms var(--ease-out);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(226, 182, 160, 0.075), transparent 42%);
}

.testimonial-card__quote {
  height: 2.85rem;
  color: rgba(218, 186, 157, 0.9);
  font-family: Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
}

.testimonial-card h3 {
  margin: 0.35rem 0 0;
  color: var(--champagne);
  font-family: "Iowan Old Style", "Bodoni 72", Didot, Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.testimonial-card__rule {
  width: 3.55rem;
  margin: 1.15rem 0 1.35rem;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  font-style: normal;
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.testimonial-card__stars {
  margin-top: 1.8rem;
  color: #e7bb88;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.testimonial-card:hover {
  background:
    linear-gradient(145deg, rgba(44, 41, 84, 0.54), rgba(18, 19, 55, 0.38)),
    rgba(10, 12, 42, 0.34);
  border-color: rgba(237, 201, 167, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 239, 220, 0.07),
    0 1.9rem 4.8rem rgba(2, 3, 18, 0.28);
  transform: translateY(-0.4rem);
}

.testimonials.is-ready .testimonials__header > *,
.testimonials.is-ready .testimonial-card {
  opacity: 0;
  transform: translateY(1.4rem);
}

.testimonials.is-ready.is-visible .testimonials__header > *,
.testimonials.is-ready.is-visible .testimonial-card {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 780ms var(--ease-out),
    transform 880ms var(--ease-out),
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 420ms var(--ease-out);
}

.testimonials.is-ready.is-visible .testimonials__header > :nth-child(2) {
  transition-delay: 70ms;
}

.testimonials.is-ready.is-visible .testimonials__header > :nth-child(3) {
  transition-delay: 120ms;
}

.testimonials.is-ready.is-visible .testimonial-card:nth-child(1) {
  transition-delay: 180ms;
}

.testimonials.is-ready.is-visible .testimonial-card:nth-child(2) {
  transition-delay: 250ms;
}

.testimonials.is-ready.is-visible .testimonial-card:nth-child(3) {
  transition-delay: 320ms;
}

.faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--navy);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.96), transparent 37%),
    radial-gradient(circle at 82% 78%, rgba(236, 216, 200, 0.32), transparent 42%),
    linear-gradient(145deg, #fbf9f5 0%, #f8f1ea 52%, #f5ede5 100%);
}

.faq::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(7rem, 12vw, 11rem);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(245, 237, 229, 0), #f5ede5 100%);
}

.faq__container {
  position: relative;
  z-index: 1;
  width: min(72rem, 100%);
  margin: 0 auto;
  padding: clamp(5.5rem, 10vh, 8rem) var(--page-gutter) clamp(4.25rem, 7vh, 6rem);
}

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

.faq__eyebrow {
  margin: 0 0 1.3rem;
  color: #ad8f77;
  font-family: "Iowan Old Style", "Bodoni 72", Didot, Georgia, serif;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.faq h2 {
  margin: 0;
  color: #b39980;
  font-family: "Iowan Old Style", "Bodoni 72", Didot, Georgia, serif;
  font-size: clamp(3.1rem, 5.4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.faq__intro {
  max-width: 39rem;
  margin: 1.35rem auto 0;
  color: rgba(32, 47, 98, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.faq__list {
  width: min(57rem, 100%);
  margin: clamp(3rem, 6vh, 4.5rem) auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(184, 147, 119, 0.26);
  border-radius: 1rem;
  box-shadow:
    0 2rem 5rem rgba(88, 60, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(184, 147, 119, 0.21);
  transition: background 300ms ease;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.38);
}

.faq-item summary {
  display: flex;
  min-height: 5.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem clamp(1.5rem, 3.5vw, 2.8rem);
  color: #263667;
  cursor: pointer;
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  line-height: 1.35;
  list-style: none;
  transition:
    color 240ms ease,
    background 240ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: #0f1d51;
  background: rgba(255, 255, 255, 0.2);
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(48, 52, 99, 0.52);
  outline-offset: -4px;
}

.faq-item__icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: #b18f72;
  transform: translate(-50%, -50%);
  transition: transform 320ms var(--ease-out), opacity 220ms ease;
}

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

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
  padding: 0 clamp(1.5rem, 3.5vw, 2.8rem) clamp(1.65rem, 3vw, 2.35rem);
  animation: faq-answer-in 420ms var(--ease-out) both;
}

.faq-item__answer p {
  max-width: 48rem;
  margin: 0;
  color: rgba(38, 54, 103, 0.79);
  font-size: clamp(0.98rem, 1.38vw, 1.1rem);
  line-height: 1.62;
  letter-spacing: -0.014em;
}

.faq.is-ready .faq__header > *,
.faq.is-ready .faq__list {
  opacity: 0;
  transform: translateY(1.3rem);
}

.faq.is-ready.is-visible .faq__header > *,
.faq.is-ready.is-visible .faq__list {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 780ms var(--ease-out),
    transform 880ms var(--ease-out);
}

.faq.is-ready.is-visible .faq__header > :nth-child(2) {
  transition-delay: 70ms;
}

.faq.is-ready.is-visible .faq__header > :nth-child(3) {
  transition-delay: 120ms;
}

.faq.is-ready.is-visible .faq__list {
  transition-delay: 190ms;
}

.final-cta {
  position: relative;
  isolation: isolate;
  margin-top: -4px;
  overflow: hidden;
  color: var(--navy);
  background: #f5ede5;
}

.final-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(9rem, 15vw, 14rem);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #f5ede5 0%,
    rgba(246, 239, 232, 0.92) 18%,
    rgba(247, 241, 234, 0.58) 52%,
    rgba(248, 242, 235, 0) 100%
  );
}

.final-cta__background,
.final-cta__background img,
.final-cta__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta__background {
  z-index: -3;
}

.final-cta__background img {
  object-fit: cover;
  object-position: center;
}

.final-cta__wash {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.36), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(239, 218, 203, 0.08));
}

.final-cta__container {
  display: grid;
  grid-template-columns: minmax(25rem, 0.9fr) minmax(31rem, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  width: min(82rem, 100%);
  margin: 0 auto;
  padding: clamp(4.25rem, 7vh, 6rem) var(--page-gutter);
}

.final-cta__copy {
  max-width: 34rem;
}

.final-cta__eyebrow {
  margin: 0;
  color: #aa8f78;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  letter-spacing: -0.018em;
}

.final-cta__rule {
  display: block;
  width: 4.2rem;
  height: 1px;
  margin: 1.2rem 0 1.45rem;
  background: linear-gradient(90deg, #ef8f8a, rgba(239, 143, 138, 0));
}

.final-cta h2 {
  margin: 0;
  color: #a99179;
  font-family: "Iowan Old Style", "Bodoni 72", Didot, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.final-cta__title-main,
.final-cta__title-sub {
  display: block;
  white-space: nowrap;
}

.final-cta__title-main {
  font-size: clamp(3.4rem, 3.95vw, 4rem);
  line-height: 0.96;
}

.final-cta__title-sub {
  margin-top: 0.06em;
  font-size: clamp(2.35rem, 3vw, 2.9rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.final-cta__description {
  max-width: 32rem;
  margin: 2rem 0 0;
  color: rgba(34, 50, 100, 0.88);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.55;
  letter-spacing: -0.023em;
}

.final-cta__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(27rem, 100%);
  min-height: 4.5rem;
  margin-top: 2.6rem;
  padding: 1rem 2.1rem;
  color: #fff;
  font-size: 1.08rem;
  background: linear-gradient(110deg, #111643 0%, #303463 100%);
  border: 1px solid rgba(48, 52, 99, 0.18);
  border-radius: 999px;
  box-shadow: 0 1.2rem 2.8rem rgba(49, 43, 95, 0.18);
  transition:
    box-shadow 320ms ease,
    transform 360ms var(--ease-out);
}

.final-cta__button > span:last-child {
  font-size: 1.45rem;
  transition: transform 320ms var(--ease-out);
}

.final-cta__button:hover,
.final-cta__button:focus-visible {
  box-shadow: 0 1.5rem 3.3rem rgba(49, 43, 95, 0.26);
  transform: translateY(-0.2rem);
}

.final-cta__button:hover > span:last-child,
.final-cta__button:focus-visible > span:last-child {
  transform: translateX(0.35rem);
}

.final-cta__options {
  display: grid;
  gap: 1.2rem;
}

.support-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 8.7rem;
  padding: 1.15rem 2rem 1.15rem 1.55rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(207, 154, 127, 0.32);
  border-radius: 1.25rem;
  box-shadow:
    0 1.2rem 3.2rem rgba(116, 72, 49, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 360ms ease,
    transform 380ms var(--ease-out);
}

.support-option::after {
  content: "";
  position: absolute;
  top: -45%;
  right: -12%;
  width: 40%;
  height: 190%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(244, 187, 164, 0.15), transparent 66%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.support-option__icon {
  display: grid;
  width: 5.7rem;
  height: 5.7rem;
  place-items: center;
  border-radius: 50%;
}

.support-option__icon img {
  width: 3.25rem;
  height: 3.25rem;
}

.support-option__icon--wellness {
  background: rgba(247, 219, 198, 0.52);
}

.support-option__icon--longevity {
  background: rgba(229, 211, 245, 0.48);
}

.support-option__icon--personalized {
  background: rgba(249, 213, 232, 0.5);
}

.support-option__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.35rem;
}

.support-option__copy strong {
  color: #a48a72;
  font-size: clamp(1.08rem, 1.55vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.support-option__copy > span {
  color: #394678;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.support-option__arrow {
  position: relative;
  z-index: 1;
  color: #283568;
  font-size: 1.55rem;
  transition: transform 340ms var(--ease-out);
}

.support-option:hover,
.support-option:focus-visible {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(199, 143, 115, 0.5);
  box-shadow:
    0 1.6rem 3.8rem rgba(116, 72, 49, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateX(0.35rem);
}

.support-option:hover::after,
.support-option:focus-visible::after {
  opacity: 1;
}

.support-option:hover .support-option__arrow,
.support-option:focus-visible .support-option__arrow {
  transform: translateX(0.35rem);
}

.final-cta.is-ready .final-cta__copy > *,
.final-cta.is-ready .support-option {
  opacity: 0;
  transform: translateY(1.4rem);
}

.final-cta.is-ready.is-visible .final-cta__copy > *,
.final-cta.is-ready.is-visible .support-option {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 780ms var(--ease-out),
    transform 900ms var(--ease-out),
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 360ms ease;
}

.final-cta.is-ready.is-visible .final-cta__copy > :nth-child(2) {
  transition-delay: 70ms;
}

.final-cta.is-ready.is-visible .final-cta__copy > :nth-child(3) {
  transition-delay: 110ms;
}

.final-cta.is-ready.is-visible .final-cta__copy > :nth-child(4),
.final-cta.is-ready.is-visible .final-cta__copy > :nth-child(5) {
  transition-delay: 170ms;
}

.final-cta.is-ready.is-visible .support-option:nth-child(1) {
  transition-delay: 190ms;
}

.final-cta.is-ready.is-visible .support-option:nth-child(2) {
  transition-delay: 260ms;
}

.final-cta.is-ready.is-visible .support-option:nth-child(3) {
  transition-delay: 330ms;
}

.final-cta.is-ready.is-visible .support-option:hover,
.final-cta.is-ready.is-visible .support-option:focus-visible {
  transform: translateX(0.35rem);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 14% 0%, rgba(82, 60, 103, 0.42), transparent 34%),
    radial-gradient(circle at 78% 100%, rgba(31, 34, 86, 0.32), transparent 38%),
    linear-gradient(135deg, #111129 0%, #070820 52%, #05061a 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(224, 199, 176, 0.34);
}

.site-footer__art {
  position: absolute;
  z-index: 0;
  right: -14rem;
  bottom: -14rem;
  width: min(42vw, 39rem);
  aspect-ratio: 1;
  pointer-events: none;
  background-image: url("assets/hero-aelan-desktop.webp");
  background-repeat: no-repeat;
  background-position: 93% 70%;
  background-size: 185% auto;
  mix-blend-mode: screen;
  opacity: 0.3;
  filter: saturate(0.88) brightness(0.9);
  -webkit-mask-image: radial-gradient(circle at center, #000 32%, rgba(0, 0, 0, 0.7) 58%, transparent 78%);
  mask-image: radial-gradient(circle at center, #000 32%, rgba(0, 0, 0, 0.7) 58%, transparent 78%);
  transform: rotate(-8deg);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(82rem, 100%);
  margin: 0 auto;
  padding: clamp(5.5rem, 10vh, 8rem) var(--page-gutter) 2.5rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(16rem, 1.05fr) 1px minmax(26rem, 1.35fr) auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.site-footer__brand {
  display: block;
  width: min(18rem, 100%);
}

.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__divider {
  width: 1px;
  height: 6rem;
  background: rgba(199, 169, 142, 0.18);
}

.site-footer__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.1rem clamp(1.6rem, 2.8vw, 3rem);
  align-items: center;
}

.site-footer__nav a,
.site-footer__consultation {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  white-space: nowrap;
  transition: color 240ms ease;
}

.site-footer__nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__consultation:hover,
.site-footer__consultation:focus-visible {
  color: var(--champagne-light);
}

.site-footer__nav a:hover::after,
.site-footer__nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-footer__consultation {
  display: flex;
  min-width: 12.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 0.65rem;
  border-bottom: 1px solid var(--champagne);
}

.site-footer__consultation > span:last-child {
  color: var(--champagne);
  font-size: 1.3rem;
  transition: transform 300ms var(--ease-out);
}

.site-footer__consultation:hover > span:last-child,
.site-footer__consultation:focus-visible > span:last-child {
  transform: translateX(0.35rem);
}

.site-footer__details {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr 1.3fr 1fr;
  margin-top: clamp(3rem, 6vh, 4.5rem);
  padding: 3rem 0 3.4rem;
  border-top: 1px solid rgba(199, 169, 142, 0.2);
  border-bottom: 1px solid rgba(199, 169, 142, 0.2);
}

.footer-detail {
  min-width: 0;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid rgba(199, 169, 142, 0.17);
}

.footer-detail:first-child {
  padding-left: 0;
}

.footer-detail:last-child {
  padding-right: 0;
  border-right: 0;
}

.footer-detail__heading {
  display: flex;
  min-height: 2.3rem;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.footer-detail__heading h3 {
  margin: 0;
  color: var(--champagne);
  font-size: 0.98rem;
  font-weight: 500;
}

.footer-detail__icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--champagne);
  border: 1px solid rgba(199, 169, 142, 0.54);
  border-radius: 50%;
}

.footer-detail__icon svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-detail address,
.footer-detail p,
.footer-detail__link {
  margin: 0 0 0 2.9rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-detail__link {
  display: inline-block;
  white-space: nowrap;
  transition: color 240ms ease;
}

.footer-detail address {
  white-space: nowrap;
}

.footer-detail__link:hover,
.footer-detail__link:focus-visible {
  color: var(--champagne-light);
}

.footer-detail--hours p + p {
  margin-top: 0.85rem;
}

.footer-detail--social .footer-detail__heading {
  margin-bottom: 1.15rem;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.site-footer__socials a {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  transition:
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    transform 300ms var(--ease-out);
}

.site-footer__socials svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__socials .site-footer__instagram-icon {
  fill: none;
}

.site-footer__socials .site-footer__instagram-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  color: var(--navy);
  background: var(--champagne-light);
  border-color: var(--champagne-light);
  transform: translateY(-0.18rem);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2.25rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.site-footer__bottom nav > span {
  width: 1px;
  height: 0.8rem;
  background: rgba(255, 255, 255, 0.18);
}

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

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--champagne-light);
}

@media (max-width: 1100px) and (min-width: 769px) {
  .site-footer__top {
    grid-template-columns: minmax(14rem, 0.72fr) 1px minmax(23rem, 1.28fr);
    gap: 2rem;
  }

  .site-footer__consultation {
    grid-column: 3;
    width: 14.5rem;
    margin-top: -1rem;
  }

  .site-footer__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 0;
  }

  .footer-detail {
    min-height: 10rem;
    padding: 0 2.5rem 2.5rem;
  }

  .footer-detail:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .footer-detail:nth-child(n + 3) {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(199, 169, 142, 0.17);
  }

  .footer-detail:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .section-curve {
    height: 3.75rem;
  }

  .section-curve--inverse > span {
    top: 0;
    width: 185%;
    height: 190%;
  }

  .products__background img {
    object-position: 64% center;
  }

  .products__container {
    padding: 3.5rem 0 4rem;
  }

  .products__header {
    width: calc(100% - 2.5rem);
  }

  .products__eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.98rem;
  }

  .products__title-main {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .products__title-sub {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .products__description {
    max-width: 31rem;
    margin-top: 1.25rem;
    font-size: 0.98rem;
  }

  .products__button {
    width: 14.8rem;
    min-height: 3.35rem;
    margin-top: 1.55rem;
    padding-inline: 1.65rem;
    font-size: 0.92rem;
  }

  .products__grid {
    display: grid;
    grid-template-columns: minmax(0, min(25rem, calc(100vw - 2.5rem)));
    justify-content: center;
    gap: 1.05rem;
    margin-top: 2.6rem;
    padding: 0 1.25rem;
    overflow: visible;
  }

  .product-card {
    width: 100%;
    aspect-ratio: 0.98;
    border-radius: 1rem;
  }

  .product-card__icon {
    top: 1.2rem;
    left: 1.2rem;
    width: 3.55rem;
    height: 3.55rem;
  }

  .product-card__icon img {
    width: 2rem;
    height: 2rem;
  }

  .product-card__label {
    right: 1.35rem;
    bottom: 1.2rem;
    left: 1.35rem;
  }

  .product-card__label > span:first-child {
    font-size: 1.65rem;
  }

  .testimonials__ribbon {
    width: 27rem;
    opacity: 0.085;
  }

  .testimonials__ribbon--top {
    top: -8.5rem;
    right: -12rem;
  }

  .testimonials__ribbon--bottom {
    bottom: -9rem;
    left: -13rem;
    opacity: 0.065;
  }

  .testimonials__container {
    padding: 4.5rem 0 5rem;
  }

  .testimonials__header {
    width: calc(100% - 2.5rem);
    margin: 0 auto;
  }

  .testimonials__eyebrow {
    font-size: 0.96rem;
  }

  .testimonials__rule {
    margin-block: 1rem 1.2rem;
  }

  .testimonials__title-main {
    font-size: clamp(3.25rem, 15.5vw, 4.65rem);
  }

  .testimonials__title-sub {
    font-size: clamp(2.15rem, 10.5vw, 3.15rem);
  }

  .testimonials__grid {
    grid-auto-columns: min(82vw, 21rem);
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 1rem;
    margin-top: 2.6rem;
    padding: 0 1.25rem 1.1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 1.25rem;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    min-height: 22rem;
    padding: 1.65rem;
    scroll-snap-align: start;
    border-radius: 1rem;
  }

  .testimonial-card h3 {
    font-size: 2.25rem;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
  }

  .faq__container {
    padding: 4.75rem 1.25rem 3rem;
  }

  .faq__eyebrow {
    margin-bottom: 0.9rem;
    font-size: 1rem;
  }

  .faq h2 {
    font-size: clamp(2.75rem, 12.6vw, 3.75rem);
    line-height: 1.04;
  }

  .faq__intro {
    margin-top: 1rem;
    font-size: 0.98rem;
  }

  .faq__list {
    margin-top: 2.6rem;
    border-radius: 0.9rem;
  }

  .faq-item summary {
    min-height: 4.8rem;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
  }

  .faq-item__answer {
    padding: 0 1.25rem 1.45rem;
  }

  .faq-item__answer p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .final-cta__background img {
    object-position: 58% center;
  }

  .final-cta__container {
    display: block;
    min-height: auto;
    padding: 3.5rem 1.25rem 5.5rem;
  }

  .final-cta__copy {
    max-width: none;
  }

  .final-cta__eyebrow {
    font-size: 1rem;
  }

  .final-cta__rule {
    margin-block: 1rem 1.25rem;
  }

  .final-cta h2 {
    max-width: none;
  }

  .final-cta__title-main {
    font-size: clamp(2.15rem, 10.5vw, 3.55rem);
  }

  .final-cta__title-sub {
    font-size: clamp(1.75rem, 8.1vw, 2.75rem);
  }

  .final-cta__description {
    margin-top: 1.45rem;
    font-size: 1rem;
  }

  .final-cta__button {
    width: 100%;
    min-height: 4rem;
    margin-top: 2rem;
    padding-inline: 1.7rem;
    font-size: 1rem;
  }

  .final-cta__options {
    gap: 0.9rem;
    margin-top: 3rem;
  }

  .support-option {
    min-height: 7.1rem;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 0.9rem 1.15rem;
    border-radius: 1rem;
  }

  .support-option__icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .support-option__icon img {
    width: 2.75rem;
    height: 2.75rem;
  }

  .support-option__copy strong {
    font-size: 1.02rem;
  }

  .support-option__copy > span {
    font-size: 0.92rem;
  }

  .support-option__arrow {
    font-size: 1.35rem;
  }

  .site-footer__art {
    right: -16rem;
    bottom: -13rem;
    width: 31rem;
    opacity: 0.16;
  }

  .site-footer__inner {
    padding: 4.5rem 1.25rem 2rem;
  }

  .site-footer__top {
    display: block;
  }

  .site-footer__brand {
    width: 11.75rem;
  }

  .site-footer__divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 2.2rem 0;
  }

  .site-footer__nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    overflow: visible;
  }

  .site-footer__nav a {
    flex: 0 0 auto;
    width: auto;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .site-footer__consultation {
    width: 15.5rem;
    margin-top: 2rem;
  }

  .site-footer__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 3.25rem;
    padding: 2.5rem 0 0;
  }

  .footer-detail {
    min-height: 10rem;
    padding: 0 1.5rem 2.25rem;
  }

  .footer-detail:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .footer-detail:nth-child(n + 3) {
    padding-top: 2.25rem;
    border-top: 1px solid rgba(199, 169, 142, 0.17);
  }

  .footer-detail:nth-child(3) {
    padding-left: 0;
  }

  .footer-detail address,
  .footer-detail p,
  .footer-detail__link {
    margin-left: 0;
    font-size: 0.88rem;
  }

  .site-footer__bottom {
    display: block;
    padding-top: 1.8rem;
  }

  .site-footer__bottom nav {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 380px) {
  .products__title-main {
    font-size: 2.9rem;
  }

  .products__title-sub {
    font-size: 1.95rem;
  }

  .products__description {
    font-size: 0.92rem;
  }

  .testimonials__title-main {
    font-size: 3rem;
  }

  .testimonials__title-sub {
    font-size: 2rem;
  }
}

@keyframes art-arrival {
  from {
    opacity: 0;
    transform: scale(1.08);
    filter: saturate(0.72) blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1.012);
    filter: saturate(1) blur(0);
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes section-nav-arrival {
  from {
    opacity: 0;
    transform: translate3d(0.75rem, -50%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    min-height: 7rem;
  }

  .desktop-nav {
    gap: 1.65rem;
    font-size: 0.9rem;
  }

  .shop-link {
    min-width: 11.75rem;
    padding-inline: 1.25rem;
    font-size: 0.88rem;
  }

  .hero__content {
    margin-top: clamp(7rem, 14vh, 9rem);
  }
}

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

  .section-nav {
    display: none;
  }

  .scroll-progress {
    display: block;
  }

  body.menu-open .scroll-progress {
    opacity: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: clamp(42rem, 100svh, 50rem);
    min-height: clamp(42rem, 100dvh, 50rem);
  }

  .hero__art img {
    object-position: center bottom;
    animation: art-arrival-mobile 1.1s var(--ease-out) both;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(5, 6, 27, 0.18) 0%, rgba(5, 6, 27, 0.36) 38%, rgba(5, 6, 27, 0.6) 64%, rgba(5, 6, 27, 0.12) 88%, transparent 100%),
      linear-gradient(90deg, rgba(5, 6, 27, 0.78) 0%, rgba(5, 6, 27, 0.5) 52%, rgba(5, 6, 27, 0.08) 88%, transparent 100%);
  }

  .hero__grain {
    opacity: 0.035;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    min-height: 6.2rem;
    padding: 0 var(--page-gutter);
    animation: none;
  }

  .brand {
    position: relative;
    z-index: 32;
    width: 7.6rem;
  }

  .desktop-nav,
  .shop-link {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 32;
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0;
    place-content: center;
    gap: 0.42rem;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
  }

  .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;
    inset: 0;
    display: flex;
    min-height: 100svh;
    height: 100dvh;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    padding: max(7.5rem, calc(5.75rem + env(safe-area-inset-top))) var(--page-gutter) max(2rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    background:
      radial-gradient(circle at 90% 85%, rgba(144, 45, 137, 0.38), transparent 31%),
      #070720;
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 350ms ease,
      visibility 350ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    padding: 0.85rem 0;
    font-size: clamp(2rem, 9vw, 3.25rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    opacity: 0;
    transform: translateY(1.2rem);
    transition:
      opacity 400ms var(--ease-out),
      transform 400ms var(--ease-out),
      color 200ms ease;
  }

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

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

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

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

  .mobile-menu nav a span {
    color: var(--champagne);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .mobile-menu__shop {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding: 1.05rem 1.4rem;
    background: var(--champagne);
    border-radius: 999px;
  }

  .hero__content {
    width: calc(100% - 2 * var(--page-gutter));
    margin-top: clamp(1.8rem, 4vh, 3rem);
    margin-left: var(--page-gutter);
  }

  .hero h1 {
    width: clamp(13.5rem, 60vw, 19rem);
    margin-bottom: 1.1rem;
  }

  .hero__tagline {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .hero__rule {
    width: 2.9rem;
    margin: 1.35rem 0 1.25rem;
  }

  .hero__description {
    max-width: 21rem;
    color: rgba(224, 225, 235, 0.82);
    font-size: clamp(0.94rem, 3.7vw, 1.05rem);
    line-height: 1.58;
    text-shadow: 0 1px 1.2rem rgba(4, 5, 22, 0.64);
  }

  .hero__description-break {
    display: none;
  }

  .hero__actions {
    gap: 0.7rem;
    margin-top: 1.75rem;
  }

  .button {
    width: min(10.2rem, calc(50vw - var(--page-gutter) - 0.35rem));
    min-height: 3.15rem;
    padding: 0.75rem 1.1rem;
    font-size: 0.87rem;
  }

  .button--primary {
    color: var(--navy);
  }

  .hero__edge-label {
    display: none;
  }
}

@media (max-width: 340px) {
  .hero__actions {
    flex-direction: column;
    width: 10.5rem;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 42rem;
  }

  .hero__art img {
    object-position: center 58%;
    animation: none;
    transform: scale(1.01);
  }

  .hero__content {
    margin-top: 2.5rem;
  }
}

@media (max-width: 1120px) {
  .services-carousel {
    --card-shift: min(31vw, 21rem);
  }

  .carousel-arrow--previous {
    left: 1rem;
  }

  .carousel-arrow--next {
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .services {
    min-height: 54rem;
    padding: 4.5rem 0 1.75rem;
  }

  .services__header {
    width: calc(100% - 2.5rem);
  }

  .services__eyebrow {
    font-size: 0.68rem;
  }

  .services h2 {
    font-size: clamp(2.75rem, 12vw, 3.75rem);
  }

  .services__subtitle {
    margin-top: 0.75rem;
    font-size: clamp(1.05rem, 5.5vw, 1.35rem);
  }

  .services-carousel {
    --card-shift: min(82vw, 20rem);
    width: 100%;
    height: 34.7rem;
    margin-top: 2.35rem;
  }

  .services-carousel__track {
    height: 31.25rem;
  }

  .service-card {
    top: 50%;
    width: min(22.4rem, calc(100vw - 2rem));
    height: 30.75rem;
    border-radius: 0.75rem;
  }

  .service-card[data-position="-1"],
  .service-card[data-position="1"] {
    --card-scale-x: 0.82;
    --card-scale-y: 0.9;
    opacity: 0.76;
  }

  .service-card__content {
    padding: 2.25rem 2rem 2rem;
  }

  .service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.2rem;
  }

  .service-card__icon img {
    width: 1.9rem;
    height: 1.9rem;
  }

  .service-card h3 {
    font-size: 1.88rem;
  }

  .service-card__rule {
    margin: 1rem 0 0.95rem;
  }

  .service-card p {
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .service-card__cta {
    min-height: 2.9rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.82rem;
  }

  .carousel-arrow {
    top: auto;
    bottom: 0;
    width: 2.85rem;
    height: 2.85rem;
    transform: none;
  }

  .carousel-arrow--previous {
    left: calc(50% - 8rem);
  }

  .carousel-arrow--next {
    right: calc(50% - 8rem);
  }

  .carousel-arrow--previous:hover,
  .carousel-arrow--previous:focus-visible {
    transform: translateX(-0.15rem);
  }

  .carousel-arrow--next:hover,
  .carousel-arrow--next:focus-visible {
    transform: translateX(0.15rem);
  }

  .carousel-pagination {
    bottom: 1.3rem;
  }

  .carousel-pagination button {
    width: 1.25rem;
  }

  .carousel-pagination button[aria-current="true"] {
    width: 1.75rem;
  }
}

@media (max-width: 360px) {
  .services {
    padding-top: 4rem;
  }

  .services h2 {
    font-size: 2.5rem;
  }

  .service-card {
    height: 30.25rem;
  }

  .service-card__content {
    padding: 1.8rem 1.55rem 1.65rem;
  }

  .service-card__icon {
    width: 3.15rem;
    height: 3.15rem;
    margin-bottom: 0.95rem;
  }

  .service-card h3 {
    font-size: 1.68rem;
  }

  .service-card__rule {
    margin: 0.85rem 0 0.8rem;
  }

  .service-card p {
    font-size: 0.78rem;
    line-height: 1.46;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .team__container {
    grid-template-columns: minmax(19rem, 0.72fr) minmax(36rem, 1.28fr);
    gap: 2rem;
  }

  .team-card[data-team-position="preview"] {
    transform: translate3d(23.5rem, 1.4rem, 0) scale(0.5);
  }
}

@media (max-width: 900px) {
  .team {
    --section-curve-height: 8rem;
  }

  .team::before {
    top: calc(var(--section-curve-height) * -0.68);
    width: 180%;
  }

  .team__background img {
    object-position: 64% bottom;
  }

  .team__wash {
    background:
      linear-gradient(180deg, rgba(249, 244, 238, 0.98) 0%, rgba(249, 244, 238, 0.94) 34%, rgba(249, 244, 238, 0.72) 66%, rgba(249, 244, 238, 0.6) 100%),
      linear-gradient(90deg, rgba(249, 244, 238, 0.64), rgba(249, 244, 238, 0.28));
  }

  .team__container {
    display: block;
    min-height: auto;
    padding: 6.5rem var(--page-gutter) 4rem;
  }

  .team__copy {
    max-width: 34rem;
  }

  .team h2 {
    font-size: clamp(4.4rem, 12vw, 6rem);
  }

  .team__description {
    max-width: 31rem;
  }

  .team-carousel {
    width: 100%;
    height: 39rem;
    margin-top: 3.5rem;
  }

  .team-carousel__stage {
    height: 35rem;
  }

  .team-card {
    top: 0;
    left: 50%;
    width: min(26rem, calc(100vw - 3rem));
    height: 34.5rem;
  }

  .team-card[data-team-position="active"] {
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .team-card[data-team-position="preview"] {
    opacity: 0.82;
    transform: translate3d(calc(-50% + min(72vw, 21rem)), 1.15rem, 0) scale(0.68);
  }

  .team-card__portrait {
    right: -5%;
    bottom: 6.2rem;
    width: 110%;
  }

  .team-card__info {
    height: 14.5rem;
    padding: 6.25rem 1.85rem 1.55rem;
  }

  .team-card h3 {
    font-size: 1.58rem;
  }

  .team-carousel__controls {
    right: 0;
    bottom: 0;
    left: 0;
  }
}

@media (max-width: 480px) {
  .site-footer__inner {
    padding-inline: 1.15rem;
  }

  .site-footer__nav {
    justify-content: center;
    gap: 0.55rem;
  }

  .site-footer__nav a {
    font-size: 0.77rem;
  }

  .site-footer__details {
    grid-template-columns: 1fr;
  }

  .footer-detail,
  .footer-detail:first-child,
  .footer-detail:nth-child(2),
  .footer-detail:nth-child(3),
  .footer-detail:last-child {
    min-height: auto;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(199, 169, 142, 0.17);
    border-right: 0;
  }

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

  .footer-detail__heading {
    margin-bottom: 0.7rem;
  }

  .site-footer__bottom nav {
    gap: 0.7rem 1rem;
  }

  .site-footer__bottom nav > span {
    display: none;
  }

  .team__container {
    padding: 6rem 1.25rem 3.5rem;
  }

  .team__eyebrow {
    font-size: 0.98rem;
  }

  .team h2 {
    font-size: clamp(4rem, 20vw, 5.25rem);
  }

  .team__description {
    margin-top: 1.75rem;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .team__button {
    width: 13.75rem;
    min-height: 3.45rem;
    margin-top: 2rem;
    padding: 0.8rem 1.65rem;
    font-size: 0.92rem;
  }

  .team-carousel {
    height: 36.75rem;
    margin-top: 3rem;
  }

  .team-carousel__stage {
    height: 32.9rem;
  }

  .team-card {
    width: calc(100vw - 2.5rem);
    height: 32.5rem;
  }

  .team-card[data-team-position="preview"] {
    transform: translate3d(calc(-50% + 75vw), 1rem, 0) scale(0.72);
  }

  .team-card__portrait {
    bottom: 5.4rem;
    width: 109%;
  }

  .team-card__info {
    height: 13.6rem;
    padding: 5.9rem 1.55rem 1.35rem;
  }

  .team-card h3 {
    font-size: 1.42rem;
  }

  .team-card__info > p,
  .team-card__profile {
    font-size: 0.82rem;
  }

  .team-card__profile > span:last-child {
    width: 2.45rem;
    height: 2.45rem;
  }

  .team-carousel__controls > button {
    width: 2.9rem;
    height: 2.9rem;
  }
}

@media (max-width: 640px) {
  .team__container {
    padding-top: 5.25rem;
  }

  .team h2 {
    font-size: clamp(3.7rem, 16vw, 4.5rem);
  }

  .team-carousel {
    height: 38rem;
    margin-top: 2.5rem;
  }

  .team-carousel__stage {
    height: 34rem;
    overflow: hidden;
    border-radius: 1.15rem;
  }

  .team-card {
    z-index: 1;
    height: 33.75rem;
    transform-origin: center top;
    transition:
      transform 480ms var(--ease-out),
      opacity 320ms ease;
  }

  .team-card[data-team-position="active"] {
    z-index: 3;
    opacity: 1;
    filter: none;
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .team-card[data-team-position="preview"] {
    z-index: 1;
    opacity: 0;
    filter: none;
    pointer-events: none;
    transform: translate3d(-50%, 0.65rem, 0) scale(0.97);
  }

  .team-card__portrait {
    bottom: 6.05rem;
    transition-duration: 480ms;
  }

  .team-card__info {
    height: 14.35rem;
    padding: 5.65rem 1.55rem 1.75rem;
  }

  .team-card__profile {
    min-height: 2.55rem;
  }

  .team-carousel__dots {
    gap: 0.1rem;
  }

  .team-carousel__dots button {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    background: transparent;
  }

  .team-carousel__dots button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.55rem;
    height: 0.55rem;
    content: "";
    background: rgba(197, 165, 137, 0.42);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
      background 260ms ease,
      transform 300ms var(--ease-out),
      box-shadow 300ms ease;
  }

  .team-carousel__dots button[aria-current="true"] {
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .team-carousel__dots button[aria-current="true"]::before {
    background: #0b153f;
    box-shadow: 0 0 0.9rem rgba(11, 21, 63, 0.15);
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes art-arrival-mobile {
  from {
    opacity: 0;
    transform: translate3d(4%, 7%, 0) scale(1.045);
  }
  to {
    opacity: 1;
    transform: translate3d(4%, 7%, 0) scale(1.01);
  }
}

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

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