:root {
  --night: #151029;
  --night-2: #21143b;
  --night-3: #0d0920;
  --gold: #d7a967;
  --gold-soft: #f1d9a4;
  --cream: #fff6ee;
  --lilac: #d9c1e4;
  --lilac-2: #c9abd9;
  --lavender-panel: #dfcde6;
  --violet-text: #38264d;
  --muted: rgba(255, 246, 238, 0.78);
  --line-dark: rgba(242, 213, 164, 0.38);
  --line-light: rgba(74, 47, 95, 0.18);
  --font-sans: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --font-display: "Cormorant Garamond", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --font-caps: "Optima", "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --shell: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--night);
  font-family: var(--font-sans);
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

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

.icon-defs,
.sr-only {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  top: -48px;
  left: 18px;
  z-index: 50;
  padding: 10px 16px;
  color: var(--violet-text);
  background: var(--cream);
  border-radius: 999px;
  transition: top 180ms var(--ease);
}

.skip-link:focus {
  top: 18px;
}

.inline-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
}

.inline-icon--sparkle {
  width: 0.78em;
  height: 0.78em;
  fill: currentColor;
  stroke: none;
}

.inline-icon--arrow {
  fill: none;
  width: 1.15em;
  height: 1.15em;
}

.inline-icon--heart {
  fill: none;
  width: 1.05em;
  height: 1.05em;
}

.site-page {
  overflow: hidden;
}

.section-dark {
  position: relative;
  color: var(--cream);
  background:
    radial-gradient(circle at 72% 34%, rgba(107, 75, 148, 0.34), transparent 28%),
    radial-gradient(circle at 25% 16%, rgba(66, 46, 108, 0.34), transparent 30%),
    linear-gradient(115deg, #130d28 0%, #1a1231 46%, #24163e 100%);
}

.section-light {
  color: var(--violet-text);
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.36), transparent 28%),
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #e4d5ea 0%, #d6c2df 100%);
}

.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background-image:
    radial-gradient(circle at 62% 18%, rgba(245, 218, 160, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 71% 24%, rgba(245, 218, 160, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 18%, rgba(245, 218, 160, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 42%, rgba(245, 218, 160, 0.6) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 58%, rgba(245, 218, 160, 0.54) 0 1px, transparent 2px),
    radial-gradient(circle at 37% 72%, rgba(245, 218, 160, 0.44) 0 1px, transparent 2px);
}

.hero-section {
  min-height: 760px;
  border-bottom: 2px solid rgba(247, 231, 255, 0.44);
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(69, 39, 100, 0.26), transparent 36%),
    linear-gradient(90deg, rgba(12, 7, 26, 0.9) 0%, rgba(18, 11, 38, 0.76) 33%, rgba(18, 11, 38, 0.54) 64%, rgba(14, 8, 29, 0.74) 100%),
    linear-gradient(180deg, rgba(10, 6, 22, 0.7) 0%, rgba(10, 6, 22, 0.14) 34%, rgba(10, 6, 22, 0.4) 78%, rgba(10, 6, 22, 0.78) 100%),
    url("assets/hero-cosmic-background.webp") center right / cover no-repeat;
  background-position: center, center, center, center right;
  background-size: auto, auto, auto, cover;
}

.hero-section::after,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 80% 42%, rgba(219, 170, 255, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 28%, rgba(255, 255, 255, 0.03));
}

.hero-section > .star-field {
  display: none;
}

.hero-section__inner {
  position: relative;
  z-index: 2;
  width: min(var(--shell), calc(100% - 52px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
}

.brand {
  display: block;
  width: 112px;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  filter:
    brightness(1.18)
    contrast(1.08)
    drop-shadow(0 2px 10px rgba(7, 2, 16, 0.34));
}

.button,
.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 14px;
  color: #2a1d35;
  background:
    linear-gradient(180deg, rgba(255, 246, 221, 0.18), rgba(105, 61, 35, 0.04)),
    #d8aa69;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(65, 39, 23, 0.16),
    0 10px 18px rgba(13, 5, 28, 0.18);
  font-family: var(--font-caps);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  outline: none;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease);
}

.button::before,
.primary-button::before {
  content: "";
  position: absolute;
  inset: -90%;
  opacity: 0;
  background:
    radial-gradient(circle at 48% 50%, rgba(255, 246, 210, 0.8), transparent 0 13%),
    radial-gradient(circle at 50% 50%, rgba(224, 176, 96, 0.46), transparent 0 30%),
    radial-gradient(circle at 50% 50%, rgba(163, 107, 203, 0.2), transparent 0 48%);
  transform: scale(0.72);
  transition: opacity 260ms var(--ease), transform 520ms var(--ease);
  pointer-events: none;
}

.button::after,
.primary-button::after {
  content: none;
}

.button:hover,
.button:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(65, 39, 23, 0.16),
    0 12px 22px rgba(13, 5, 28, 0.22),
    0 0 0 1px rgba(241, 217, 164, 0.26),
    0 0 36px rgba(224, 176, 96, 0.42),
    0 0 88px rgba(154, 105, 196, 0.18);
}

.button:hover::after,
.button:focus-visible::after,
.primary-button:hover::after,
.primary-button:focus-visible::after {
  content: none;
}

.button:hover::before,
.button:focus-visible::before,
.primary-button:hover::before,
.primary-button:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.button > *,
.primary-button > * {
  position: relative;
  z-index: 1;
}

.button--hero {
  min-height: 38px;
  padding-inline: 17px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(65, 39, 23, 0.16),
    0 12px 26px rgba(13, 5, 28, 0.24);
}

.button--ghost {
  min-height: 36px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gold);
  border-radius: 16px;
  box-shadow: none;
}

.button.is-pressed,
.primary-button.is-pressed {
  animation: pressPulse 420ms var(--ease);
}

@keyframes pressPulse {
  35% {
    transform: scale(0.975);
  }
}

@keyframes mysticFloat {
  from {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }

  to {
    opacity: 0.84;
    transform: translate3d(7px, -9px, 0) rotate(4deg);
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  min-height: 640px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 76px 0 112px;
}

.hero__eyebrow,
.section-tag {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--font-caps);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}

.dot-separator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.hero h1,
.section-heading,
.story__eyebrow,
.contact__intro h2,
.mantra h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

.hero h1 {
  position: relative;
  max-width: 760px;
  margin: 0;
  color: #fdf8ff;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 > span,
.hero h1 .hero-title__line,
.hero h1 .hero-title__accent {
  display: block;
  margin-top: 3px;
}

.hero h1 > span:first-child {
  margin-top: 0;
}

.hero h1 .hero-title__line {
  color: inherit;
}

.hero h1 .hero-title__accent {
  color: #d9c1e9;
}

.hero h1::after {
  content: none;
}

.ornament-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 340px;
  max-width: 100%;
  margin: 28px auto 24px;
  color: var(--gold-soft);
}

.ornament-rule span,
.title-rule,
.mantra__rule span {
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
}

.ornament-rule span {
  flex: 1;
}

.hero__text {
  max-width: 620px;
  margin: 0 auto 32px;
  color: rgba(255, 250, 255, 0.94);
  font-size: 18px;
  line-height: 1.64;
}

.botanical {
  position: absolute;
  z-index: 1;
  width: 170px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.8;
  pointer-events: none;
}

.section-shell {
  width: min(var(--shell), calc(100% - 52px));
  margin: 0 auto;
  padding: 58px 0 62px;
}

.section-heading {
  margin: 0;
  color: var(--violet-text);
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.section-heading--gold {
  color: var(--gold-soft);
}

.title-rule {
  width: 58px;
  margin: 20px auto 36px;
  color: var(--gold);
}

.title-rule--dark {
  margin-bottom: 42px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(22px, 3vw, 36px);
}

.support-card {
  position: relative;
  display: flex;
  min-height: 262px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  text-align: center;
}

.support-card + .support-card::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 28px;
  left: calc(clamp(22px, 3vw, 36px) / -2);
  width: 1px;
  opacity: 0.78;
  background: linear-gradient(180deg, transparent, rgba(81, 52, 99, 0.2) 18%, rgba(215, 169, 103, 0.22) 52%, rgba(81, 52, 99, 0.16) 82%, transparent);
}

.support-card:nth-child(2) {
  padding-top: 14px;
}

.support-card:nth-child(3) {
  padding-top: 0;
}

.support-card:nth-child(4) {
  padding-top: 14px;
}

.support-card__icon {
  width: 102px;
  height: 102px;
  margin: 0 auto 18px;
  color: #a76d2f;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  filter:
    drop-shadow(0 1px 0 rgba(255, 249, 230, 0.36))
    drop-shadow(0 9px 16px rgba(104, 69, 34, 0.12));
}

.support-card__icon .icon-fill {
  fill: rgba(167, 109, 47, 0.1);
  stroke: rgba(167, 109, 47, 0.92);
}

.support-card__icon text {
  fill: currentColor;
  stroke: none;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  text-anchor: middle;
  dominant-baseline: middle;
}

.support-card h3,
.approach-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.support-card h3 {
  min-height: 42px;
  color: #3f2859;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

.support-card p {
  max-width: 260px;
  margin: 13px 0 0;
  color: #342547;
  font-size: 15px;
  line-height: 1.58;
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 620px);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  justify-content: center;
  padding: 66px max(28px, calc((100% - var(--shell)) / 2));
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 7, 25, 0.54) 0%, rgba(15, 8, 32, 0.72) 44%, rgba(12, 7, 25, 0.9) 100%),
    linear-gradient(180deg, rgba(9, 5, 20, 0.38) 0%, rgba(9, 5, 20, 0.42) 52%, rgba(9, 5, 20, 0.78) 100%),
    url("assets/about-cosmic-wallpaper.webp") center center / cover no-repeat;
}

.story::before,
.story::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 217, 164, 0.2), rgba(255, 255, 255, 0.08), transparent);
}

.story::before {
  top: 0;
}

.story::after {
  bottom: 0;
}

.story__portrait {
  position: relative;
  z-index: 2;
  width: min(304px, 100%);
  aspect-ratio: 4 / 5;
  margin: 0;
  justify-self: center;
  overflow: visible;
  isolation: isolate;
}

.story__portrait::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -32px -38px -40px;
  border-radius: 38% 46% 42% 52% / 44% 42% 52% 48%;
  background:
    radial-gradient(ellipse at 44% 42%, rgba(244, 206, 150, 0.2), rgba(108, 66, 134, 0.16) 42%, transparent 70%),
    radial-gradient(ellipse at 62% 86%, rgba(18, 8, 30, 0.64), transparent 58%);
  filter: blur(1px);
  pointer-events: none;
}

.story__portrait::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(248, 224, 178, 0.28);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(20, 8, 34, 0) 58%, rgba(15, 6, 28, 0.18) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 -34px 42px rgba(11, 4, 24, 0.18);
  pointer-events: none;
}

.story__portrait img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
  border: 1px solid rgba(248, 224, 178, 0.28);
  border-radius: 32px;
  box-shadow: 0 28px 54px rgba(4, 1, 14, 0.42);
  transform: translate3d(-1%, 1%, 0) rotate(-1.5deg);
  filter:
    saturate(0.98) contrast(0.98);
}

.story__copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.story__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.22;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.story__copy p:not(.story__eyebrow):not(.story-social__text) {
  margin: 0 0 27px;
  color: rgba(255, 250, 255, 0.9);
  font-size: 16px;
  line-height: 1.78;
}

.mantra {
  position: relative;
  min-height: 170px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.mantra__moon {
  width: 42px;
  margin-bottom: 8px;
  color: var(--gold);
  fill: currentColor;
}

.mantra__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.mantra h2 {
  margin: 0;
  color: #2d2043;
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.2px;
}

.mantra h2 span {
  display: block;
}

.mantra__rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 140px;
  margin: 12px auto 0;
  color: var(--gold);
}

.mantra__rule span {
  flex: 1;
}

.mantra__orb {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(215, 169, 103, 0.34);
  border-radius: 50%;
  opacity: 0.32;
}

.mantra__orb::before,
.mantra__orb::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(215, 169, 103, 0.46);
  border-radius: inherit;
}

.mantra__orb::after {
  inset: 45px;
}

.mantra__orb--left {
  left: -65px;
}

.mantra__orb--right {
  right: -65px;
}

.approach {
  position: relative;
  overflow: hidden;
  padding-bottom: 22px;
  background:
    linear-gradient(90deg, rgba(12, 7, 25, 0.62) 0%, rgba(14, 8, 30, 0.5) 42%, rgba(12, 7, 25, 0.68) 100%),
    linear-gradient(180deg, rgba(10, 5, 22, 0.48) 0%, rgba(10, 5, 22, 0.4) 44%, rgba(10, 5, 22, 0.74) 100%),
    url("assets/approach-cosmic-wallpaper.webp") center center / cover no-repeat;
}

.approach::before,
.approach::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 217, 164, 0.18), rgba(255, 255, 255, 0.08), transparent);
}

.approach::before {
  top: 0;
}

.approach::after {
  bottom: 0;
}

.approach .section-shell {
  position: relative;
  z-index: 2;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3.4vw, 44px);
}

.approach-item {
  position: relative;
  min-height: 208px;
  padding: 0 8px;
  text-align: center;
}

.approach-item + .approach-item {
  border-left: 0;
}

.approach-item + .approach-item::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: calc(clamp(22px, 3.4vw, 44px) / -2);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(241, 217, 164, 0.24) 26%, rgba(255, 255, 255, 0.08) 56%, transparent);
}

.approach-item__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  color: var(--gold-soft);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-item h3 {
  min-height: 42px;
  color: var(--gold-soft);
  font-size: 17px;
  line-height: 1.22;
}

.approach-item p {
  margin: 12px 0 0;
  color: rgba(255, 250, 255, 0.88);
  font-size: 15px;
  line-height: 1.6;
}

.contact {
  position: relative;
  padding: 54px 0 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact .star-field {
  display: none;
}

.contact__card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  width: min(var(--shell), calc(100% - 52px));
  margin: 0 auto;
  padding: 48px 44px 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.contact__card::before,
.contact__card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 221, 185, 0.16), rgba(255, 255, 255, 0.06), transparent);
}

.contact__card::before {
  top: 0;
}

.contact__card::after {
  bottom: 0;
}

.contact__intro {
  padding: 12px 0 0;
}

.section-tag {
  margin-bottom: 13px;
}

.contact__intro h2 {
  max-width: 540px;
  margin: 0;
  color: #fff8ff;
  font-size: 34px;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact__intro p {
  max-width: 490px;
  margin: 22px 0 28px;
  color: rgba(255, 250, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(241, 217, 164, 0.88);
  text-decoration: none;
  outline: none;
  transition: color 180ms var(--ease), transform 180ms var(--ease), background-color 180ms var(--ease), border-color 180ms var(--ease);
}

.social-links__icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.social-links a[data-social-label]::before,
.social-links a[data-social-label]::after {
  position: absolute;
  left: 50%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.social-links a[data-social-label]::before {
  content: attr(data-social-label);
  bottom: calc(100% + 12px);
  min-width: max-content;
  padding: 6px 10px 7px;
  border: 1px solid rgba(241, 217, 164, 0.34);
  border-radius: 999px;
  color: rgba(255, 248, 236, 0.96);
  background: rgba(18, 10, 32, 0.92);
  box-shadow: 0 12px 28px rgba(4, 1, 12, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  transform: translate3d(-50%, 6px, 0);
}

.social-links a[data-social-label]::after {
  content: "";
  bottom: calc(100% + 6px);
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(241, 217, 164, 0.28);
  border-bottom: 1px solid rgba(241, 217, 164, 0.28);
  background: rgba(18, 10, 32, 0.92);
  transform: translate3d(-50%, 6px, 0) rotate(45deg);
}

.social-links a[data-social-label]:hover::before,
.social-links a[data-social-label]:hover::after,
.social-links a[data-social-label]:focus-visible::before,
.social-links a[data-social-label]:focus-visible::after {
  opacity: 1;
}

.social-links a[data-social-label]:hover::before,
.social-links a[data-social-label]:focus-visible::before {
  transform: translate3d(-50%, 0, 0);
}

.social-links a[data-social-label]:hover::after,
.social-links a[data-social-label]:focus-visible::after {
  transform: translate3d(-50%, 0, 0) rotate(45deg);
}

.story-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: -5px 0 24px;
}

.story__copy .story-social__text {
  margin: 0;
  color: rgba(255, 250, 255, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.social-links--story {
  gap: 9px;
}

.social-links--story a {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(241, 217, 164, 0.36);
  border-radius: 50%;
  color: rgba(247, 225, 184, 0.96);
  background: rgba(12, 6, 25, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 8px 18px rgba(5, 2, 15, 0.18);
}

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

.social-links--story .social-links__icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.9;
}

.social-links--story a:hover,
.social-links--story a:focus-visible,
.social-links--story a.is-opening {
  border-color: rgba(241, 217, 164, 0.72);
  background: rgba(255, 246, 238, 0.065);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.055), 0 0 24px rgba(215, 169, 103, 0.18);
}

.social-links--story a.is-opening {
  transform: translateY(-1px) scale(0.96);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.newsletter-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 221, 185, 0.22);
}

.newsletter-form__intro {
  display: grid;
  gap: 8px;
}

.newsletter-form__intro h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.newsletter-form__intro p {
  margin: 0;
  color: rgba(255, 250, 255, 0.72);
  font-size: 14px;
  line-height: 1.58;
}

.booking-form__note,
.form-privacy {
  margin: 0;
  color: rgba(255, 250, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.booking-form label,
.newsletter-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 248, 255, 0.78);
  font-size: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 0;
  border-bottom: 1px solid rgba(234, 215, 245, 0.2);
  border-radius: 0;
  color: var(--cream);
  background: rgba(12, 6, 25, 0.18);
  outline: none;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease);
}

.booking-form textarea {
  min-height: 132px;
  resize: vertical;
}

.newsletter-form input:not([type="checkbox"]) {
  width: 100%;
  padding: 13px 14px;
  border: 0;
  border-bottom: 1px solid rgba(234, 215, 245, 0.2);
  border-radius: 0;
  color: var(--cream);
  background: rgba(12, 6, 25, 0.18);
  outline: none;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.newsletter-form input:not([type="checkbox"]):focus {
  border-color: rgba(236, 205, 149, 0.9);
  box-shadow: inset 0 -1px 0 rgba(236, 205, 149, 0.74);
  background: rgba(12, 6, 25, 0.28);
}

.booking-form input.is-invalid,
.booking-form select.is-invalid,
.booking-form textarea.is-invalid,
.newsletter-form input.is-invalid {
  border-color: rgba(242, 176, 166, 0.92);
  box-shadow: inset 0 -1px 0 rgba(242, 176, 166, 0.72);
}

.field-error {
  min-height: 1.2em;
  color: #f4b2a6;
  font-size: 12px;
  line-height: 1.25;
}

.booking-form option {
  color: #271a37;
}

.newsletter-form__consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  color: rgba(255, 250, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.newsletter-form__consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.newsletter-form__trap {
  display: none !important;
}

.primary-button {
  justify-self: start;
  min-height: 34px;
  padding-inline: 15px;
  border-radius: 14px;
  color: #2a1d35;
  background:
    linear-gradient(180deg, rgba(255, 246, 221, 0.18), rgba(105, 61, 35, 0.04)),
    #d8aa69;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 20px rgba(14, 5, 25, 0.18);
}

.form-response {
  min-height: 1.4em;
  margin: 0;
  color: var(--gold-soft);
  font-size: 14px;
}

.site-footer {
  background: linear-gradient(180deg, #130d28, #0e091f);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--shell), calc(100% - 52px));
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 221, 185, 0.24);
}

.site-footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  color: rgba(255, 246, 238, 0.6);
  font-size: 13px;
}

.social-links--footer {
  flex: 0 0 auto;
}

.social-links--footer a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(241, 217, 164, 0.18);
  border-radius: 50%;
  background: rgba(255, 246, 238, 0.025);
}

.social-links--footer .social-links__icon {
  width: 18px;
  height: 18px;
}

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

  .hero__copy {
    padding-left: 28px;
  }

  .hero h1 {
    font-size: 41px;
  }

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

}

@media (max-width: 980px) {
  .hero-section__inner,
  .section-shell,
  .contact__card,
  .site-footer__inner {
    width: min(100% - 36px, var(--shell));
  }

  .site-header {
    padding-top: 24px;
  }

  .hero {
    grid-template-columns: minmax(0, 700px);
    min-height: 590px;
  }

  .hero__copy {
    padding: 66px 0 96px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: 52px;
    line-height: 1.05;
  }

  .hero__eyebrow {
    font-size: 15px;
  }

  .hero__text {
    max-width: 580px;
    font-size: 16px;
  }

  .support-card {
    grid-column: auto;
    padding-inline: 18px;
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-card:first-child,
  .support-card:nth-child(2),
  .support-card:nth-child(3),
  .support-card:nth-child(4) {
    grid-column: auto;
  }

  .support-card:nth-child(odd) {
    border-left: 0;
  }

  .support-card:nth-child(n + 3) {
    padding-top: 26px;
    border-top: 0;
  }

  .support-card:nth-child(3)::before {
    content: none;
  }

  .support-card:nth-child(n + 3)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(81, 52, 99, 0.16), rgba(215, 169, 103, 0.2), transparent);
  }

}

@media (max-width: 700px) {
  .hero-section {
    min-height: 700px;
    background:
      radial-gradient(circle at 50% 34%, rgba(78, 45, 112, 0.28), transparent 38%),
      linear-gradient(90deg, rgba(12, 7, 26, 0.92) 0%, rgba(18, 11, 38, 0.82) 50%, rgba(18, 11, 38, 0.68) 100%),
      linear-gradient(180deg, rgba(9, 5, 20, 0.72) 0%, rgba(9, 5, 20, 0.2) 42%, rgba(9, 5, 20, 0.78) 100%),
      url("assets/hero-cosmic-background.webp") 58% center / cover no-repeat;
  }

  .hero-section__inner,
  .section-shell,
  .contact__card,
  .site-footer__inner {
    width: min(100% - 28px, var(--shell));
  }

  .site-header {
    padding-top: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 600px;
    align-items: center;
  }

  .hero__copy {
    padding: 58px 0 80px;
    width: 100%;
    min-width: 0;
  }

  .hero h1,
  .hero__text,
  .ornament-rule {
    max-width: 100%;
  }

  .ornament-rule {
    width: min(100%, 280px);
  }

  .support-grid,
  .approach-grid,
  .contact__card,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .support-card,
  .approach-item {
    min-height: auto;
    padding: 24px 20px;
    text-align: center;
    align-items: center;
  }

  .support-card,
  .approach-item + .approach-item {
    border-left: 0;
    border-top: 0;
  }

  .support-card:first-child {
    border-top: 0;
  }

  .support-card + .support-card::before,
  .approach-item + .approach-item::before {
    top: 0;
    left: 14%;
    right: 14%;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 217, 164, 0.22), rgba(255, 255, 255, 0.08), transparent);
  }

  .support-card:nth-child(n + 3)::after {
    content: none;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 18px;
    text-align: center;
  }

  .story__portrait {
    width: min(286px, 78vw);
  }

  .story__portrait::after,
  .story__portrait img {
    transform: translate3d(0, 1%, 0) rotate(-1deg);
  }

  .story__portrait::before {
    inset: -24px -26px -34px;
    width: auto;
    transform: none;
  }

  .story__copy {
    margin: 0 auto;
  }

  .story__eyebrow {
    justify-content: center;
  }

  .mantra__row {
    gap: 18px;
  }

  .contact__card {
    gap: 28px;
    padding: 30px 26px;
  }

  .site-footer__inner {
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 96px;
  }

  .hero-section {
    min-height: 680px;
    background:
      radial-gradient(circle at 50% 31%, rgba(78, 45, 112, 0.32), transparent 38%),
      linear-gradient(90deg, rgba(12, 7, 26, 0.94) 0%, rgba(18, 11, 38, 0.88) 52%, rgba(18, 11, 38, 0.72) 100%),
      linear-gradient(180deg, rgba(9, 5, 20, 0.78) 0%, rgba(9, 5, 20, 0.22) 46%, rgba(9, 5, 20, 0.84) 100%),
      url("assets/hero-cosmic-background.webp") 61% center / cover no-repeat;
  }

  .hero__eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.06em;
  }

  .hero__eyebrow span {
    display: inline-flex;
  }

  .hero__eyebrow .dot-separator {
    display: inline-block;
    margin: 0;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero__text {
    font-size: 15px;
  }

  .primary-button {
    width: auto;
    max-width: 100%;
  }

  .story-social {
    justify-content: center;
    margin-top: -8px;
  }

  .social-links--story a {
    width: 38px;
    height: 38px;
  }

  .button--hero {
    width: auto;
    max-width: 100%;
  }

  .hero {
    min-height: 620px;
  }

  .story__portrait {
    width: min(270px, 78vw);
  }

  .section-heading {
    font-size: 21px;
  }

  .support-card__icon {
    width: 90px;
    height: 90px;
  }

  .story__eyebrow {
    font-size: 21px;
  }

  .mantra {
    min-height: 150px;
  }

  .mantra h2 {
    max-width: calc(100vw - 28px);
    font-size: 19px;
    letter-spacing: 1px;
  }

  .mantra__row > .inline-icon {
    display: none;
  }

  .contact__card {
    padding: 24px 20px;
  }

  .contact__intro h2 {
    font-size: 26px;
  }

  .site-footer p {
    gap: 10px;
    font-size: 12px;
  }
}
