@import url('https://fonts.googleapis.com/css2?family=Forum&family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
   --page-bg: #04070d;
   --night: #070b12;
   --night-soft: #0d131d;
   --panel: #111b28;
   --paper: #f3eee5;
   --muted: #c4c6ca;
   --dim: #84909f;
   --gold: #d2a35e;
   --gold-bright: #f0c87c;
   --cyan: #6bb6c6;
   --line: rgba(219, 220, 219, .18);
   --line-gold: rgba(210, 163, 94, .45);
   --forum: 'Forum', Georgia, serif;
   --mulish: 'Mulish', Arial, sans-serif;
   --ease: cubic-bezier(.2, .7, .2, 1)
}

* {
   box-sizing: border-box
}

html {
   scroll-behavior: smooth
}

body {
   margin: 0;
   background: var(--page-bg);
   color: var(--muted);
   font: 400 16px/1.6 var(--mulish);
   overflow-x: hidden
}

body:before {
   content: '';
   position: fixed;
   inset: 0;
   z-index: -2;
   pointer-events: none;
   background: radial-gradient(circle at 24% 4%, rgba(45, 86, 118, .2), transparent 27%), radial-gradient(circle at 82% 42%, rgba(106, 73, 44, .14), transparent 31%), #070b12
}

a {
   color: inherit;
   text-decoration: none
}

img {
   max-width: 100%;
   display: block
}

button,
input,
select {
   font: inherit
}

button {
   cursor: pointer
}

.skip-link {
   position: fixed;
   left: 18px;
   top: -50px;
   z-index: 100;
   background: var(--paper);
   color: var(--night);
   padding: 10px 14px
}

.skip-link:focus {
   top: 16px
}

.ambient-glow {
   position: fixed;
   width: 45vw;
   height: 45vw;
   border-radius: 50%;
   filter: blur(30px);
   opacity: .12;
   pointer-events: none;
   z-index: -1
}

.ambient-glow-one {
   background: #2c819d;
   left: -25vw;
   top: 30vh
}

.ambient-glow-two {
   background: #bd7a38;
   right: -20vw;
   top: 65vh
}

.site-header {
   height: 92px;
   position: fixed;
   z-index: 40;
   inset: 0 0 auto;
   display: flex;
   align-items: center;
   gap: 30px;
   padding: 0 clamp(24px, 5vw, 74px);
   background: rgba(7, 11, 18, .82);
   border-bottom: 1px solid var(--line);
   backdrop-filter: blur(6px);
   transition: height .35s var(--ease), background .35s ease, box-shadow .35s ease
}

.site-header.scrolled {
   height: 76px;
   background: rgba(7, 11, 18, .96);
   box-shadow: 0 18px 50px rgba(0, 0, 0, .22)
}

.brand {
   display: flex;
   align-items: center;
   gap: 11px;
   min-width: 215px
}

.brand-seal {
   width: 48px;
   height: 48px;
   display: block;
   overflow: hidden;
   border-radius: 50%;
   border: 1px solid var(--gold);
   box-shadow: 0 0 24px rgba(210, 163, 94, .23);
   background: #05080c
}

.brand-seal img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center 15%;
   transform: scale(1.72)
}

.brand-wordmark {
   color: var(--paper);
   font: 20px/1 var(--forum);
   letter-spacing: .16em
}

.brand-wordmark>span {
   color: var(--gold)
}

.brand-wordmark small {
   display: block;
   margin-top: 5px;
   color: var(--gold);
   font: 7px/1 var(--mulish);
   letter-spacing: .2em;
   white-space: nowrap
}

.desktop-nav {
   display: flex;
   align-items: center;
   gap: clamp(16px, 2vw, 34px);
   margin: 0 auto
}

.desktop-nav a {
   position: relative;
   padding: 9px 0;
   color: #e8e5dd;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: .14em;
   text-transform: uppercase;
   white-space: nowrap;
   transition: color .25s ease
}

.desktop-nav a:after {
   content: '✦';
   position: absolute;
   left: 50%;
   bottom: -8px;
   color: var(--gold);
   font-size: 8px;
   opacity: 0;
   transform: translate(-50%, 8px);
   transition: opacity .25s ease, transform .25s ease
}

.desktop-nav a:hover,
.desktop-nav a.active {
   color: var(--gold-bright)
}

.desktop-nav a.active:after,
.desktop-nav a:hover:after {
   opacity: 1;
   transform: translate(-50%, 0)
}

.header-location {
   display: flex;
   flex-direction: column;
   align-items: flex-end;
   min-width: 210px;
   color: var(--dim);
   font-size: 9px;
   line-height: 1.4;
   text-align: right;
   letter-spacing: .12em;
   text-transform: uppercase
}

.header-location strong {
   color: var(--gold);
   font-size: 9px;
   font-weight: 500;
   letter-spacing: .04em;
   white-space: nowrap
}

.header-actions {
   display: flex;
   align-items: center;
   gap: 14px
}

.round-action {
   width: 45px;
   height: 45px;
   display: grid;
   place-items: center;
   border: 1px solid var(--line);
   border-radius: 50%;
   background: rgba(255, 255, 255, .015);
   color: var(--paper);
   transition: border-color .25s ease, background .25s ease, transform .25s ease
}

.round-action:hover {
   border-color: var(--gold);
   background: rgba(210, 163, 94, .1);
   transform: translateY(-2px)
}

.search-icon {
   width: 15px;
   height: 15px;
   border: 1px solid var(--paper);
   border-radius: 50%;
   position: relative
}

.search-icon:after {
   content: '';
   position: absolute;
   width: 7px;
   height: 1px;
   right: -5px;
   bottom: -3px;
   background: var(--paper);
   transform: rotate(45deg)
}

.header-cta,
.button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 14px;
   border: 1px solid var(--gold);
   padding: 13px 18px;
   color: var(--gold-bright);
   font-size: 11px;
   font-weight: 700;
   letter-spacing: .12em;
   text-transform: uppercase;
   transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), box-shadow .3s ease
}

.header-cta:hover,
.button-primary {
   background: var(--gold);
   color: var(--night);
   box-shadow: 0 12px 36px rgba(210, 163, 94, .22);
   transform: translateY(-2px)
}

.header-cta span,
.button span {
   font-size: 12px;
   line-height: 0
}

.menu-toggle {
   display: none
}

.menu-icon {
   display: flex;
   flex-direction: column;
   gap: 4px
}

.menu-icon i {
   width: 18px;
   height: 1px;
   display: block;
   background: var(--paper);
   transition: transform .3s ease, opacity .3s ease
}

.mobile-nav {
   display: none
}

.search-panel {
   position: fixed;
   z-index: 39;
   inset: 92px 0 auto;
   display: flex;
   justify-content: center;
   padding: 55px 24px 70px;
   background: rgba(9, 14, 23, .98);
   border-bottom: 1px solid var(--line-gold);
   transform: translateY(-120%);
   transition: transform .4s var(--ease)
}

.search-panel.is-open {
   transform: none
}

.search-panel label {
   width: min(690px, 100%);
   color: var(--gold);
   font: 42px var(--forum);
   text-transform: uppercase
}

.search-panel input {
   display: block;
   width: 100%;
   margin-top: 20px;
   border: 0;
   border-bottom: 1px solid var(--gold);
   background: transparent;
   color: var(--paper);
   padding: 12px 0;
   outline: 0
}

.search-close {
   position: absolute;
   right: 44px;
   top: 24px;
   border: 0;
   background: none;
   color: var(--paper);
   font-size: 38px;
   font-weight: 200
}

.hero-sky,
.hero-section {
   position: relative;
   overflow: hidden
}

.star-field {
   position: absolute;
   inset: 0;
   pointer-events: none;
   opacity: .65;
   background-image: radial-gradient(circle at 8% 18%, #fff 0 1px, transparent 1.5px), radial-gradient(circle at 18% 72%, #fff 0 1.3px, transparent 1.8px), radial-gradient(circle at 31% 25%, #fff 0 1px, transparent 1.5px), radial-gradient(circle at 44% 64%, #fff 0 1.6px, transparent 2px), radial-gradient(circle at 57% 17%, #fff 0 1px, transparent 1.5px), radial-gradient(circle at 69% 48%, #fff 0 1.4px, transparent 1.8px), radial-gradient(circle at 84% 21%, #fff 0 1.3px, transparent 1.8px), radial-gradient(circle at 94% 74%, #fff 0 1px, transparent 1.5px);
   background-size: 300px 260px, 430px 400px, 560px 480px, 380px 330px, 640px 540px, 500px 450px, 720px 600px, 460px 390px;
   animation: star-drift 35s linear infinite
}

.star-field-b {
   opacity: .27;
   transform: scale(1.3);
   animation-duration: 54s
}

@keyframes star-drift {
   to {
      background-position: 40px 22px, -80px 20px, 50px -40px, -45px 30px, 30px -30px, -60px 40px, 70px -20px, -30px 50px
   }
}

.hero-section {
   min-height: 820px;
   padding: 92px clamp(24px, 5vw, 74px) 36px;
   background: linear-gradient(125deg, #060b13 0%, #09111d 46%, #0a0d14 100%);
   border-bottom: 1px solid var(--line)
}

.hero-grid {
   position: relative;
   z-index: 1;
   width: min(1320px, 100%);
   min-height: 690px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1.04fr .96fr;
   align-items: center;
   gap: clamp(30px, 6vw, 100px)
}

.hero-copy {
   max-width: 700px
}

.eyebrow {
   margin: 0 0 22px;
   color: var(--gold);
   font-size: 11px;
   font-weight: 700;
   letter-spacing: .2em;
   text-transform: uppercase
}

.eyebrow span {
   display: inline-block;
   margin-right: 10px;
   color: var(--cyan);
   font: 12px var(--forum);
   letter-spacing: .08em
}

.hero-copy h1,
.section-heading h2,
.how-copy h2,
.ethics-copy h2,
.booking-copy h2 {
   margin: 0;
   color: var(--paper);
   font: clamp(54px, 6vw, 88px)/.97 var(--forum);
   font-weight: 400;
   letter-spacing: -.02em;
   text-transform: uppercase
}

.hero-copy h1 em,
.section-heading h2 em,
.how-copy h2 em,
.ethics-copy h2 em {
   color: var(--gold);
   font-style: normal
}

.hero-lede {
   max-width: 585px;
   margin: 35px 0 32px;
   color: #c4c8cd;
   font-size: 18px;
   line-height: 1.72
}

.hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px
}

.button-ghost {
   border-color: var(--line);
   color: var(--paper);
   background: transparent
}

.button-ghost:hover {
   border-color: var(--gold);
   background: rgba(210, 163, 94, .09);
   color: var(--gold-bright);
   transform: translateY(-2px)
}

.mode-row {
   display: flex;
   gap: 12px;
   margin-top: 30px;
   color: var(--dim);
   font-size: 11px;
   letter-spacing: .18em;
   text-transform: uppercase
}

.mode-row i {
   color: var(--gold);
   font-style: normal
}

.hero-visual {
   position: relative;
   justify-self: end;
   width: min(480px, 100%);
   height: 560px;
   display: grid;
   place-items: center
}

.hero-logo-card {
   position: relative;
   z-index: 2;
   width: min(410px, 82vw);
   aspect-ratio: 1;
   border: 1px solid var(--gold);
   background: #05080d;
   box-shadow: 0 30px 100px rgba(0, 0, 0, .55), 0 0 0 12px rgba(210, 163, 94, .04);
   overflow: hidden;
   transform: rotate(2deg);
   animation: logo-float 7s var(--ease) infinite
}

.hero-logo-card:before {
   content: '';
   position: absolute;
   inset: 14px;
   border: 1px solid rgba(210, 163, 94, .4);
   z-index: 2;
   pointer-events: none
}

.hero-logo-card:after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, transparent 55%, rgba(4, 6, 10, .72) 100%);
   z-index: 1
}

.hero-logo-card img {
   width: 100%;
   height: 100%;
   object-fit: cover
}

.logo-card-kicker,
.logo-card-caption {
   position: absolute;
   z-index: 3;
   left: 28px;
   right: 28px;
   color: var(--gold);
   font-size: 9px;
   letter-spacing: .24em;
   text-transform: uppercase
}

.logo-card-kicker {
   top: 25px
}

.logo-card-caption {
   bottom: 22px;
   text-align: center;
   color: var(--paper)
}

@keyframes logo-float {

   0%,
   100% {
      transform: rotate(2deg) translate3d(0, 0, 0)
   }

   50% {
      transform: rotate(-1deg) translate3d(0, -13px, 0)
   }
}

.hero-orbit {
   position: absolute;
   border: 1px solid rgba(107, 182, 198, .35);
   border-radius: 50%;
   width: 520px;
   height: 210px;
   transform: rotate(-28deg);
   animation: orbit-breathe 8s ease-in-out infinite
}

.orbit-one {
   left: -18px;
   top: 160px
}

.orbit-two {
   width: 570px;
   height: 320px;
   transform: rotate(35deg);
   border-color: rgba(210, 163, 94, .26);
   animation-delay: -3s
}

@keyframes orbit-breathe {

   0%,
   100% {
      opacity: .46;
      transform: rotate(-28deg) scale(1)
   }

   50% {
      opacity: 1;
      transform: rotate(-23deg) scale(1.03)
   }
}

.hero-spark {
   position: absolute;
   color: var(--gold-bright);
   font-size: 20px;
   animation: spark-pulse 3.4s ease-in-out infinite
}

.spark-one {
   top: 14%;
   right: 5%
}

.spark-two {
   bottom: 19%;
   left: 4%;
   color: var(--cyan);
   animation-delay: -1.1s
}

.spark-three {
   top: 29%;
   left: 5%;
   font-size: 12px;
   animation-delay: -2.2s
}

@keyframes spark-pulse {

   0%,
   100% {
      opacity: .22;
      transform: scale(.75) rotate(0)
   }

   50% {
      opacity: 1;
      transform: scale(1.15) rotate(45deg)
   }
}

.hero-scroll-cue {
   position: absolute;
   z-index: 2;
   bottom: 26px;
   left: clamp(24px, 5vw, 74px);
   display: flex;
   align-items: center;
   gap: 13px;
   color: var(--dim);
   font-size: 10px;
   letter-spacing: .18em;
   text-transform: uppercase
}

.hero-scroll-cue span {
   width: 30px;
   height: 1px;
   background: var(--gold)
}

.section-dark {
   background: linear-gradient(180deg, #0b111a, #0c141e)
}

.trust-section,
.services-section,
.pricing-section,
.practitioners-section,
.products-section,
.stories-section {
   padding: 60px clamp(24px, 3vw, 110px)
}

.section-heading {
   width: min(660px, 100%);
   margin-bottom: 68px
}

.section-heading-wide {
   width: min(780px, 100%)
}

.section-heading h2 {
   font-size: clamp(47px, 5.3vw, 73px);
   line-height: 1
}

.section-intro {
   max-width: 620px;
   margin: 28px 0 0;
   color: #aeb6c0;
   font-size: 17px;
   line-height: 1.75
}

.trust-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 18px;
   max-width: 1350px;
   margin: auto
}

.trust-card,
.price-card,
.practitioner-card,
.report-card {
   position: relative;
   border: 1px solid var(--line);
   background: linear-gradient(145deg, rgba(26, 38, 52, .86), rgba(11, 17, 27, .82));
   transition: transform .45s var(--ease), border-color .35s ease, background .35s ease, box-shadow .35s ease
}

.motion-card:hover {
   border-color: var(--line-gold);
   background: linear-gradient(145deg, rgba(37, 51, 66, .92), rgba(13, 19, 28, .95));
   box-shadow: 0 22px 70px rgba(0, 0, 0, .25)
}

.trust-card {
   min-height: 270px;
   padding: 30px 28px
}

.card-number {
   position: absolute;
   top: 18px;
   right: 22px;
   color: var(--dim);
   font: 12px var(--forum)
}

.trust-icon {
   display: grid;
   place-items: center;
   width: 47px;
   height: 47px;
   border: 1px solid var(--line-gold);
   border-radius: 50%;
   margin-bottom: 28px;
   color: var(--gold);
   font: 26px var(--forum)
}

.trust-card h3,
.practitioner-card h3,
.report-card h3 {
   margin: 0;
   color: var(--paper);
   font: 28px/1.1 var(--forum);
   text-transform: uppercase
}

.trust-card p,
.practitioner-card p,
.report-card p {
   margin: 18px 0 0;
   color: #aeb6c0;
   font-size: 14px;
   line-height: 1.7
}

.report-card>span {
   color: var(--gold);
   font: 19px var(--forum)
}

.report-card>a {
   align-self: flex-end;
   margin-top: 18px;
   color: var(--gold);
   font-size: 24px;
   transition: transform .3s ease, color .3s ease
}

.report-card:hover>a {
   color: var(--paper);
   transform: translate(4px, -4px)
}

.how-section {
   display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: center;
   gap: clamp(60px, 10vw, 150px);
   padding: 145px clamp(24px, 9vw, 145px);
   border-top: 1px solid var(--line);
   border-bottom: 1px solid var(--line)
}

.how-visual {
   position: relative;
   width: min(470px, 100%);
   aspect-ratio: 1;
   display: grid;
   place-items: center;
   justify-self: center
}

.how-ring {
   position: absolute;
   border: 1px solid var(--line-gold);
   border-radius: 50%;
   animation: rotate-ring 18s linear infinite
}

.ring-a {
   inset: 7%;
   border-left-color: transparent;
   border-right-color: transparent
}

.ring-b {
   inset: 22%;
   border-color: rgba(107, 182, 198, .3);
   animation-direction: reverse;
   animation-duration: 13s
}

@keyframes rotate-ring {
   to {
      transform: rotate(360deg)
   }
}

.how-mark {
   position: relative;
   z-index: 1;
   color: var(--gold);
   font-size: 80px;
   animation: spark-pulse 4s ease-in-out infinite
}

.how-visual>span {
   position: absolute;
   bottom: 24%;
   right: 3%;
   color: var(--paper);
   font: 13px/1.1 var(--forum);
   letter-spacing: .14em;
   text-align: center
}

.how-copy {
   max-width: 650px
}

.how-copy>p:not(.eyebrow) {
   margin: 31px 0 35px;
   color: #aeb6c0;
   line-height: 1.75
}

.how-copy ol {
   list-style: none;
   margin: 0;
   padding: 0;
   border-top: 1px solid var(--line)
}

.how-copy li {
   display: grid;
   grid-template-columns: 30px 1fr;
   gap: 14px;
   padding: 22px 0;
   border-bottom: 1px solid var(--line)
}

.how-copy li:before {
   content: counter(list-item, decimal-leading-zero);
   color: var(--gold);
   font: 18px var(--forum)
}

.how-copy li b {
   color: var(--paper);
   font-size: 15px
}

.how-copy li span {
   grid-column: 2;
   color: var(--dim);
   font-size: 13px;
   line-height: 1.65
}

.pricing-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
   max-width: 1250px;
   margin: auto
}

.price-card {
   min-height: 490px;
   padding: 36px 32px;
   display: flex;
   flex-direction: column
}

.price-card.featured {
   border-color: var(--gold);
   background: linear-gradient(145deg, rgba(77, 59, 42, .72), rgba(17, 25, 35, .96));
   transform: translateY(-14px)
}

.price-badge {
   position: absolute;
   right: 21px;
   top: 20px;
   padding: 5px 8px;
   background: var(--gold);
   color: var(--night);
   font-size: 9px;
   letter-spacing: .1em;
   text-transform: uppercase
}

.price-kicker {
   color: var(--gold);
   font: 24px var(--forum);
   text-transform: uppercase
}

.price-card strong {
   margin-top: 29px;
   color: var(--paper);
   font: 46px/1 var(--forum)
}

.price-card strong small {
   font: 14px var(--mulish);
   color: var(--dim)
}

.price-card>p {
   margin: 13px 0 28px;
   color: var(--cyan);
   font-size: 12px;
   letter-spacing: .04em
}

.price-card ul {
   margin: 0 0 30px;
   padding: 0;
   list-style: none;
   border-top: 1px solid var(--line)
}

.price-card li {
   padding: 12px 0;
   border-bottom: 1px solid var(--line);
   color: #b9c0c8;
   font-size: 13px
}

.price-card li:before {
   content: '✦';
   margin-right: 9px;
   color: var(--gold);
   font-size: 10px
}

.price-card .button {
   margin-top: auto;
   align-self: flex-start
}

.pricing-note {
   max-width: 1250px;
   margin: 28px auto 0;
   color: var(--dim);
   font-size: 12px
}

.practitioner-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 18px;
   max-width: 1350px;
   margin: auto;
}

.practitioner-card {
   display: grid;
   grid-template-columns: 190px 1fr;
   gap: 24px;
   align-items: stretch;
   padding: 18px;
   min-height: 260px;
}

.practitioner-avatar {
   width: 190px;
   height: 100%;
   min-height: 220px;
   margin: 0;
   border: 1px solid var(--line);
   overflow: hidden;
   position: relative;
}

.practitioner-avatar img {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
   object-position: center top;
   transition: transform .5s ease;
}

.practitioner-card:hover .practitioner-avatar img {
   transform: scale(1.05);
}

.practitioner-info {
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 8px 5px;
}

.practitioner-info h3 {
   margin: 0 0 6px;
   font-size: 27px;
   line-height: 1.15;
}

.practitioner-designation {
   color: var(--cyan);
   font-size: 13px;
   text-transform: uppercase;
   letter-spacing: .08em;
   margin-bottom: 18px;
}

.practitioner-meta {
   display: grid;
   gap: 12px;
}

.practitioner-meta div {
   border-top: 1px solid var(--line);
   padding-top: 10px;
}

.practitioner-meta span {
   display: block;
   color: rgba(255, 255, 255, .48);
   font-size: 10px;
   text-transform: uppercase;
   letter-spacing: .12em;
   margin-bottom: 4px;
}

.practitioner-meta strong {
   display: block;
   color: var(--paper);
   font-size: 14px;
   font-weight: 400;
   line-height: 1.5;
}

@media (max-width:1100px) {
   .practitioner-grid {
      grid-template-columns: 1fr;
   }

   .practitioner-card {
      grid-template-columns: 180px 1fr;
   }
}

@media (max-width:600px) {
   .practitioner-grid {
      gap: 12px;
   }

   .practitioner-card {
      grid-template-columns: 115px 1fr;
      gap: 15px;
      min-height: 190px;
      padding: 12px;
   }

   .practitioner-avatar {
      width: 115px;
      min-height: 180px;
   }

   .practitioner-info {
      padding: 2px 0;
   }

   .practitioner-info h3 {
      font-size: 20px;
   }

   .practitioner-designation {
      font-size: 10px;
      margin-bottom: 10px;
   }

   .practitioner-meta {
      gap: 7px;
   }

   .practitioner-meta div {
      padding-top: 7px;
   }

   .practitioner-meta span {
      font-size: 8px;
      margin-bottom: 2px;
   }

   .practitioner-meta strong {
      font-size: 11px;
      line-height: 1.4;
   }
}

.planet-section {
   position: relative;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: clamp(50px, 8vw, 130px);
   align-items: center;
   min-height: 710px;
   padding: 130px clamp(24px, 9vw, 145px);
   overflow: hidden;
   background: radial-gradient(circle at 82% 38%, rgba(66, 122, 144, .2), transparent 22%), linear-gradient(135deg, #08131d, #090c14 72%);
   border-top: 1px solid var(--line);
   border-bottom: 1px solid var(--line)
}

.ethics-copy,
.ethics-list {
   position: relative;
   z-index: 1
}

.ethics-copy {
   max-width: 680px
}

.ethics-copy h2 {
   font-size: clamp(46px, 5.2vw, 73px)
}

.ethics-copy>p:not(.eyebrow) {
   max-width: 570px;
   margin: 31px 0 34px;
   color: #b2bac3;
   font-size: 17px
}

.ethics-list {
   border-top: 1px solid var(--line)
}

.ethics-list article {
   display: grid;
   grid-template-columns: 42px 1fr;
   gap: 18px;
   padding: 22px 0;
   border-bottom: 1px solid var(--line)
}

.ethics-list article>span {
   color: var(--gold);
   font: 20px var(--forum)
}

.ethics-list h3 {
   margin: 0;
   color: var(--paper);
   font: 25px var(--forum);
   text-transform: uppercase
}

.ethics-list p {
   margin: 7px 0 0;
   color: var(--dim);
   font-size: 13px;
   line-height: 1.65
}

.report-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 16px;
   max-width: 1350px;
   margin: auto
}

.report-card {
   min-height: 350px;
   padding: 28px;
   display: flex;
   flex-direction: column
}

.report-card h3 {
   margin: 25px 0 0;
   font-size: 24px
}

.report-card p {
   margin: 15px 0 25px
}

.report-card strong {
   margin-top: auto;
   color: var(--gold-bright);
   font: 24px var(--forum)
}

.report-card>a {
   font-size: 11px;
   letter-spacing: .1em;
   text-transform: uppercase
}

.report-card>a span {
   font-size: 17px;
   margin-left: 7px
}

.stories-section {
   display: grid;
   grid-template-columns: .7fr 1.3fr;
   align-items: center;
   gap: 70px;
   min-height: 560px;
   border-top: 1px solid var(--line)
}

.story-message {
   min-height: 245px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 38px;
   border: 1px solid var(--line-gold);
   background: linear-gradient(145deg, rgba(36, 50, 66, .84), rgba(10, 15, 24, .9));
   text-align: center
}

.story-message>span {
   color: var(--gold);
   font-size: 28px
}

.story-message p {
   max-width: 600px;
   margin: 24px auto 10px;
   color: var(--paper);
   font: 28px/1.35 var(--forum)
}

.story-message small {
   color: var(--dim);
   font-size: 11px;
   text-transform: uppercase;
   letter-spacing: .12em
}

.booking-section {
   position: relative;
   display: grid;
   place-items: center;
   min-height: 520px;
   /* padding: clamp(100px, 12vw, 160px) clamp(24px, 8vw, 60px); */
   background: #05070c;
   border-top: 1px solid var(--line)
}

.booking-moon {
   position: absolute;
   inset: 0;
   background: url(assets/h3-bcgr-img-1.jpg) center right/cover no-repeat;
   filter: grayscale(1) brightness(.9) contrast(1.08)
}

.booking-veil {
   position: absolute;
   inset: 0;
   background: radial-gradient(ellipse 78% 62% at 48% 46%, rgba(5, 7, 12, .86), rgba(5, 7, 12, .55) 58%, rgba(5, 7, 12, .1) 80%), linear-gradient(180deg, rgba(5, 7, 12, .6), rgba(5, 7, 12, 0) 26%, rgba(5, 7, 12, 0) 68%, rgba(5, 7, 12, .85))
}

.booking-copy {
   position: relative;
   z-index: 2;
   max-width: 920px;
   text-align: center
}

.booking-copy .eyebrow {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   margin-bottom: 20px;
   font-size: 12px;
   letter-spacing: .22em
}

.booking-copy .eyebrow span {
   margin: 0
}

.booking-copy h2 {
   max-width: 20ch;
   margin: 0 auto;
   color: var(--paper);
   font: 400 clamp(36px, 4.6vw, 62px)/1.16 var(--forum);
   letter-spacing: -.005em;
   text-transform: none;
   text-wrap: balance;
   text-shadow: 0 2px 30px rgba(0, 0, 0, .55)
}

.booking-lede {
   max-width: 620px;
   margin: 26px auto 0;
   color: #b6bdc6;
   font-size: 17px;
   line-height: 1.75
}

.booking-cta {
   margin-top: 40px;
   padding: 18px 34px;
   border: 0;
   font-size: 12px;
   letter-spacing: .16em;
   transform: none
}

.booking-cta:hover {
   transform: translateY(-2px);
   box-shadow: 0 16px 44px rgba(210, 163, 94, .32)
}

.back-top {
   position: fixed;
   z-index: 35;
   right: 28px;
   bottom: 25px;
   width: 57px;
   height: 57px;
   border: 1px solid var(--gold);
   background: var(--gold);
   color: var(--night);
   clip-path: polygon(50% 0, 61% 15%, 81% 9%, 80% 30%, 100% 42%, 83% 54%, 89% 77%, 66% 75%, 50% 100%, 35% 78%, 11% 86%, 17% 62%, 0 50%, 18% 37%, 11% 14%, 35% 20%);
   font-size: 10px;
   font-weight: 700;
   opacity: 0;
   transform: scale(.7);
   transition: opacity .3s ease, transform .3s ease
}

.back-top.is-visible {
   opacity: 1;
   transform: scale(1)
}

.toast {
   position: fixed;
   z-index: 60;
   left: 50%;
   bottom: 28px;
   padding: 13px 20px;
   background: var(--paper);
   color: var(--night);
   font-size: 12px;
   opacity: 0;
   pointer-events: none;
   transform: translate(-50%, 20px);
   transition: opacity .25s ease, transform .25s ease
}

.toast.is-visible {
   opacity: 1;
   transform: translate(-50%, 0)
}

.motion-ready .reveal {
   opacity: 0;
   transform: translateY(30px)
}

.motion-ready .reveal-left {
   transform: translateX(-35px)
}

.motion-ready .reveal-right {
   transform: translateX(35px)
}

.motion-ready .reveal.is-visible {
   opacity: 1;
   transform: none;
   transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.motion-ready .trust-card:nth-child(2),
.motion-ready .price-card:nth-child(2),
.motion-ready .report-card:nth-child(2) {
   transition-delay: .08s
}

.motion-ready .trust-card:nth-child(3),
.motion-ready .price-card:nth-child(3),
.motion-ready .report-card:nth-child(3) {
   transition-delay: .16s
}

.motion-ready .trust-card:nth-child(4),
.motion-ready .report-card:nth-child(4) {
   transition-delay: .24s
}

@media (max-width:1280px) {
   .header-location {
      display: none
   }

   .brand {
      min-width: 190px
   }

   .desktop-nav {
      gap: 20px
   }

   .practitioner-grid,
   .report-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .trust-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .how-section,
   .planet-section {
      gap: 60px
   }
}

@media (max-width:900px) {
   .site-header {
      height: 78px;
      padding: 0 20px
   }

   .site-header.scrolled {
      height: 70px
   }

   .brand {
      min-width: 0
   }

   .brand-seal {
      width: 40px;
      height: 40px
   }

   .brand-wordmark {
      font-size: 17px
   }

   .brand-wordmark small {
      display: none
   }

   .desktop-nav,
   .header-cta,
   .search-toggle {
      display: none
   }

   .header-actions {
      margin-left: auto
   }

   .menu-toggle {
      display: grid
   }

   .mobile-nav {
      display: flex;
      position: absolute;
      left: 0;
      right: 0;
      top: 78px;
      flex-direction: column;
      padding: 16px 20px 22px;
      background: rgba(7, 11, 18, .98);
      border-bottom: 1px solid var(--line-gold);
      transform: translateY(-120%);
      transition: transform .4s var(--ease)
   }

   .mobile-nav.is-open {
      transform: none
   }

   .mobile-nav a {
      padding: 12px 5px;
      border-bottom: 1px solid var(--line);
      color: var(--paper);
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase
   }

   .mobile-cities {
      padding: 20px 5px 0;
      color: var(--gold);
      font-size: 10px;
      line-height: 1.6;
      letter-spacing: .1em;
      text-transform: uppercase
   }

   .search-panel {
      inset: 78px 0 auto
   }

   .hero-section {
      min-height: auto;
      padding-top: 0px;
      padding: 0 !important;
   }

   .hero-grid {
      min-height: 650px;
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 70px 0 50px
   }

   .hero-copy {
      max-width: 680px
   }

   .hero-copy h1 {
      font-size: clamp(54px, 10vw, 78px)
   }

   .hero-visual {
      justify-self: center;
      height: 440px
   }

   .hero-logo-card {
      width: min(370px, 78vw)
   }

   .hero-orbit {
      width: 430px
   }

   .hero-scroll-cue {
      display: none
   }

   .trust-section,
   .services-section,
   .pricing-section,
   .practitioners-section,
   .products-section,
   .stories-section {
      padding: 40px 22px
   }

   .section-heading {
      margin-bottom: 0px
   }

   .section-heading h2,
   .how-copy h2,
   .ethics-copy h2 {
      font-size: clamp(45px, 8.5vw, 65px)
   }

   .how-section,
   .planet-section,
   .stories-section {
      grid-template-columns: 1fr;
      padding: 40px 22px;
      gap: 25px
   }

   .booking-section {
      min-height: 430px;
      padding: 100px 22px
   }

   .how-visual {
      width: min(380px, 100%)
   }

   .pricing-grid {
      grid-template-columns: 1fr;
      max-width: 600px
   }

   .price-card.featured {
      transform: none
   }

   .ethics-section {
      min-height: auto
   }

   .ethics-copy {
      max-width: 700px
   }
}

@media (max-width:600px) {
   .hero-grid {
      padding-top: 55px
   }

   .hero-copy h1 {
      font-size: 46px
   }

   .hero-lede {
      font-size: 15px;
      margin-top: 25px
   }

   .hero-visual {
      height: 350px
   }

   .hero-logo-card {
      width: 280px
   }

   .hero-orbit {
      width: 350px;
      height: 170px
   }

   .orbit-one {
      top: 90px
   }

   .trust-grid,
   .practitioner-grid,
   .report-grid {
      grid-template-columns: 1fr
   }

   .trust-card {
      min-height: 0
   }

   .how-section {
      padding-top: 70px
   }

   .how-visual {
      width: 310px
   }

   .how-mark {
      font-size: 65px
   }

   .how-visual>span {
      bottom: 17%;
      right: 0
   }

   .price-card {
      min-height: 0
   }

   .practitioner-avatar {
      height: 200px
   }

   .story-message p {
      font-size: 24px
   }

   .booking-section {
      min-height: 380px;
      padding: 84px 20px
   }

   .booking-lede {
      font-size: 15px;
      margin-top: 22px
   }

   .booking-cta {
      margin-top: 32px;
      padding: 16px 24px
   }

   .back-top {
      right: 15px;
      bottom: 15px
   }
}

@media (prefers-reduced-motion:reduce) {

   *,
   *:before,
   *:after {
      scroll-behavior: auto !important;
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important
   }

   .motion-ready .reveal {
      opacity: 1;
      transform: none
   }
}

.site-header {
   background: transparent;
   border-bottom-color: transparent;
   backdrop-filter: blur(0);
   box-shadow: none
}

.site-header.scrolled {
   background: rgba(7, 11, 18, .96);
   border-bottom-color: var(--line);
   backdrop-filter: blur(6px);
   box-shadow: 0 18px 50px rgba(0, 0, 0, .22)
}

.hero-logo-card img,
.hero-logo-card video {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover
}

.nav-dropdown,
.city-dropdown {
   position: relative
}

.nav-dropdown-toggle,
.city-toggle {
   display: flex;
   align-items: center;
   gap: 8px;
   border: 0;
   background: transparent;
   color: var(--paper);
   cursor: pointer
}

.nav-dropdown-toggle {
   padding: 9px 0;
   font: 700 12px/1 var(--mulish);
   letter-spacing: .14em;
   text-transform: uppercase;
   white-space: nowrap;
   transition: color .25s ease
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
   color: var(--gold-bright)
}

.nav-caret,
.city-caret {
   color: var(--gold);
   font-size: 13px;
   line-height: 1;
   transition: transform .25s ease
}

.nav-dropdown.is-open .nav-caret,
.city-dropdown.is-open .city-caret {
   transform: rotate(180deg)
}

.nav-dropdown-menu,
.city-menu {
   position: absolute;
   z-index: 60;
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transform: translateY(8px);
   transition: opacity .22s ease, visibility .22s ease, transform .22s ease
}

.nav-dropdown-menu {
   top: calc(100% + 17px);
   left: -18px;
   width: 232px;
   padding: 10px 0;
   background: #21150c;
   border: 1px solid rgba(210, 163, 94, .44);
   box-shadow: 0 24px 55px rgba(0, 0, 0, .38)
}

.nav-dropdown-menu:before {
   content: '';
   position: absolute;
   left: 22px;
   top: -6px;
   width: 10px;
   height: 10px;
   background: #21150c;
   border-top: 1px solid rgba(210, 163, 94, .44);
   border-left: 1px solid rgba(210, 163, 94, .44);
   transform: rotate(45deg)
}

.nav-dropdown-menu a {
   display: block;
   padding: 9px 16px;
   color: #d0aa6d;
   font-size: 12px;
   line-height: 1.35;
   letter-spacing: 0;
   text-transform: none;
   transition: background .2s ease, color .2s ease
}

.nav-dropdown-menu a:after {
   display: none
}

.nav-dropdown-menu a:hover {
   background: rgba(210, 163, 94, .12);
   color: var(--paper)
}

.nav-dropdown-menu a.menu-divider {
   margin-top: 8px;
   border-top: 1px solid rgba(210, 163, 94, .24);
   color: #a5927a
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.city-dropdown:hover .city-menu,
.city-dropdown:focus-within .city-menu,
.city-dropdown.is-open .city-menu {
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
   transform: none
}

.header-location .city-toggle {
   padding: 0;
   color: var(--gold);
   font: 500 9px/1.4 var(--mulish);
   letter-spacing: .04em;
   text-transform: uppercase
}

.header-location .city-toggle strong {
   color: var(--gold);
   font-size: 9px;
   font-weight: 500;
   letter-spacing: .04em;
   white-space: nowrap
}

.header-location .city-caret {
   font-size: 11px
}

.city-menu {
   top: calc(100% + 14px);
   right: 0;
   min-width: 175px;
   padding: 8px 0;
   background: rgba(7, 11, 18, .98);
   border: 1px solid var(--line-gold);
   box-shadow: 0 20px 45px rgba(0, 0, 0, .34)
}

.city-menu a {
   display: block;
   padding: 9px 14px;
   color: var(--gold);
   font-size: 10px;
   letter-spacing: .12em;
   text-transform: uppercase;
   white-space: nowrap;
   transition: background .2s ease, color .2s ease
}

.city-menu a:hover {
   background: rgba(210, 163, 94, .12);
   color: var(--paper)
}

.hero-visual {
   width: min(560px, 100%);
   height: 560px
}

.hero-video-card {
   width: 100%;
   height: 100%;
   aspect-ratio: auto;
   transform: none;
   animation: none
}

.hero-video-card video {
   position: absolute;
   inset: 0
}

.mobile-location,
.mobile-services-menu {
   display: none
}

@media (max-width:900px) {
   .hero-visual {
      height: 440px
   }

   .mobile-nav-dropdown {
      border-bottom: 1px solid var(--line)
   }

   .mobile-nav .nav-dropdown-toggle {
      width: 100%;
      justify-content: space-between;
      padding: 12px 5px;
      color: var(--paper)
   }

   .mobile-nav-dropdown.is-open .nav-caret {
      transform: rotate(180deg)
   }

   .mobile-services-menu {
      display: none;
      padding: 4px 0 8px
   }

   .mobile-nav-dropdown.is-open .mobile-services-menu {
      display: block
   }

   .mobile-services-menu a {
      display: block;
      padding: 9px 5px;
      border-bottom: 0;
      color: #d0aa6d;
      font-size: 12px;
      letter-spacing: 0;
      text-transform: none
   }

   .mobile-services-menu a.menu-divider {
      margin-top: 5px;
      padding-top: 13px;
      border-top: 1px solid var(--line-gold)
   }

   .mobile-location {
      display: block;
      padding: 18px 5px 0;
      color: var(--dim);
      font-size: 9px;
      line-height: 1.4;
      letter-spacing: .12em;
      text-transform: uppercase
   }

   .mobile-location .city-dropdown {
      margin-top: 7px
   }

   .mobile-location .city-toggle {
      padding: 0;
      color: var(--gold);
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase
   }

   .mobile-location .city-menu {
      position: static;
      min-width: 0;
      margin-top: 8px;
      box-shadow: none
   }
}

@media (max-width:600px) {
   .hero-visual {
      height: 350px
   }
}

.hero-section {
   isolation: isolate;
   background: #060b13
}

.hero-background-video {
   position: absolute;
   z-index: 0;
   inset: 0;
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
   object-position: center center;
   opacity: .72;
   filter: saturate(.82) contrast(1.08)
}

.hero-video-overlay {
   position: absolute;
   z-index: 1;
   inset: 0;
   pointer-events: none;
   background: linear-gradient(90deg, rgba(6, 11, 19, .96) 0%, rgba(6, 11, 19, .78) 42%, rgba(6, 11, 19, .42) 100%), linear-gradient(180deg, rgba(5, 9, 16, .42), rgba(5, 9, 16, .68))
}

.hero-section .star-field {
   z-index: 2
}

.hero-grid {
   z-index: 3;
   grid-template-columns: minmax(0, 760px);
   justify-content: start
}

.hero-scroll-cue {
   z-index: 3
}

.header-location {
   min-width: 210px;
   align-items: flex-end
}

.header-location .city-toggle {
   padding: 6px 0;
   color: var(--paper);
   font: 600 11px/1.2 var(--mulish);
   letter-spacing: .16em;
   text-transform: uppercase
}

.header-location .location-label {
   color: var(--paper);
   font-size: 11px;
   letter-spacing: .16em
}

.header-location .city-caret {
   font-size: 12px
}

.mobile-location .city-toggle {
   padding: 9px 5px;
   color: var(--paper);
   font-size: 11px;
   letter-spacing: .14em
}

.mobile-location .location-label {
   font-size: 11px;
   letter-spacing: .14em
}

.mobile-location .city-menu {
   margin-top: 8px
}

@media (max-width:1280px) {
   .header-location {
      display: flex;
      min-width: 170px
   }
}

@media (max-width:900px) {
   .header-location {
      display: none
   }

   .hero-grid {
      grid-template-columns: 1fr
   }
}

.hero-background-video {
   opacity: .98;
   filter: saturate(1.08) contrast(1.08) brightness(1.42)
}

.hero-video-overlay {
   background: linear-gradient(90deg, rgba(6, 11, 19, .78) 0%, rgba(6, 11, 19, .38) 45%, rgba(6, 11, 19, .12) 100%), linear-gradient(180deg, rgba(5, 9, 16, .16), rgba(5, 9, 16, .34))
}

.city-menu {
   min-width: 238px;
   padding: 11px 0;
   background: linear-gradient(145deg, rgba(17, 25, 37, .98), rgba(7, 11, 18, .99));
   border: 1px solid rgba(240, 200, 124, .62);
   box-shadow: 0 24px 60px rgba(0, 0, 0, .58), 0 0 0 1px rgba(107, 182, 198, .08);
   backdrop-filter: blur(18px)
}

.city-menu a {
   padding: 14px 21px;
   color: var(--gold-bright);
   font-size: 13px;
   font-weight: 700;
   letter-spacing: .15em;
   line-height: 1.25;
   text-shadow: 0 0 16px rgba(240, 200, 124, .16);
   transition: background .2s ease, color .2s ease, padding-left .2s ease
}

.city-menu a:hover,
.city-menu a:focus-visible {
   padding-left: 26px;
   background: linear-gradient(90deg, rgba(210, 163, 94, .2), rgba(107, 182, 198, .08));
   color: #fff;
   outline: 0
}

@media (max-width:900px) {
   .mobile-location .city-menu {
      width: 100%;
      padding: 8px 0
   }

   .mobile-location .city-menu a {
      padding: 12px 16px;
      font-size: 12px
   }
}

.city-menu {
   width: max-content;
   min-width: 0;
   padding: 8px 4px
}

.city-menu a {
   width: max-content;
   margin-inline: auto;
   padding: 14px 0;
   text-align: center
}

.city-menu a:hover,
.city-menu a:focus-visible {
   padding-left: 0
}

@media (max-width:900px) {
   .mobile-location .city-menu {
      width: max-content;
      min-width: 0;
      padding: 8px 4px;
      margin-inline: auto
   }

   .mobile-location .city-menu a {
      padding: 12px 0
   }
}

.nav-dropdown:after,
.city-dropdown:after {
   content: '';
   position: absolute;
   z-index: 59;
   top: 100%;
   left: -14px;
   right: -14px;
   height: 18px
}

.nav-dropdown-menu {
   top: calc(100% + 8px)
}

.city-menu {
   top: calc(100% + 8px)
}

@media (max-width:900px) {

   .nav-dropdown:after,
   .city-dropdown:after {
      display: none
   }
}

.practitioner-avatar img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   max-width: none;
   object-fit: cover;
   object-position: center 22%;
   display: block;
   filter: saturate(.9) contrast(1.04)
}

.practitioner-avatar:before,
.practitioner-avatar:after {
   z-index: 1
}

.motion-card {
   will-change: transform;
   transform-style: preserve-3d
}

.motion-card:after {
   content: '';
   position: absolute;
   inset: 0;
   z-index: 1;
   pointer-events: none;
   opacity: 0;
   background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(240, 200, 124, .13), transparent 34%);
   transition: opacity .35s ease
}

.motion-card:hover:after {
   opacity: 1
}

.motion-card>* {
   position: relative;
   z-index: 2
}

.header-cta,
.button,
.round-action,
.nav-dropdown-toggle,
.city-toggle {
   will-change: transform
}

@media (prefers-reduced-motion:no-preference) {
   @keyframes hero-video-drift {

      0%,
      100% {
         transform: scale(1.04) translate3d(0, 0, 0)
      }

      50% {
         transform: scale(1.1) translate3d(-1.2%, .8%, 0)
      }
   }

   @keyframes hero-overlay-breathe {

      0%,
      100% {
         opacity: .84
      }

      50% {
         opacity: .65
      }
   }

   @keyframes hero-rise {
      from {
         opacity: 0;
         transform: translateY(24px)
      }

      to {
         opacity: 1;
         transform: none
      }
   }

   @keyframes hero-line-scan {
      from {
         transform: translateX(-105%)
      }

      to {
         transform: translateX(105%)
      }
   }

   .hero-background-video {
      animation: hero-video-drift 18s var(--ease) infinite alternate
   }

   .hero-video-overlay {
      animation: hero-overlay-breathe 9s ease-in-out infinite
   }

   .hero-section:after {
      content: '';
      position: absolute;
      z-index: 2;
      top: 0;
      left: 0;
      width: 34%;
      height: 1px;
      pointer-events: none;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      animation: hero-line-scan 6s ease-in-out infinite
   }

   .motion-ready .hero-copy .eyebrow,
   .motion-ready .hero-copy h1,
   .motion-ready .hero-copy .hero-lede,
   .motion-ready .hero-copy .hero-actions,
   .motion-ready .hero-copy .mode-row {
      opacity: 0;
      transform: translateY(24px)
   }

   .motion-ready .hero-copy.is-visible .eyebrow {
      animation: hero-rise .7s var(--ease) .08s forwards
   }

   .motion-ready .hero-copy.is-visible h1 {
      animation: hero-rise .8s var(--ease) .18s forwards
   }

   .motion-ready .hero-copy.is-visible .hero-lede {
      animation: hero-rise .7s var(--ease) .3s forwards
   }

   .motion-ready .hero-copy.is-visible .hero-actions {
      animation: hero-rise .7s var(--ease) .4s forwards
   }

   .motion-ready .hero-copy.is-visible .mode-row {
      animation: hero-rise .7s var(--ease) .5s forwards
   }
}

.hero-grid {
   grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
   gap: clamp(36px, 6vw, 88px)
}

.hero-feature {
   position: relative;
   min-height: 560px;
   display: grid;
   place-items: center;
   perspective: 1200px
}

.feature-panel {
   position: relative;
   z-index: 3;
   width: min(390px, 100%);
   padding: 15px;
   border: 1px solid rgba(240, 200, 124, .72);
   background: linear-gradient(145deg, rgba(12, 20, 32, .78), rgba(8, 11, 20, .88));
   box-shadow: 0 30px 90px rgba(0, 0, 0, .52), 0 0 0 12px rgba(210, 163, 94, .06);
   transform: rotate(3deg);
   transition: transform .6s var(--ease), box-shadow .6s ease
}

.feature-panel:before {
   content: '';
   position: absolute;
   inset: 7px;
   border: 1px solid rgba(107, 182, 198, .4);
   pointer-events: none
}

.feature-panel:after {
   content: '';
   position: absolute;
   z-index: 1;
   inset: 0;
   pointer-events: none;
   background: linear-gradient(180deg, transparent 44%, rgba(6, 9, 16, .94) 100%)
}

.feature-panel:hover {
   transform: rotate(0deg) translateY(-10px) scale(1.015);
   box-shadow: 0 40px 110px rgba(0, 0, 0, .62), 0 0 0 12px rgba(210, 163, 94, .1)
}

.feature-panel:hover {
   animation: none
}

.feature-meta {
   position: relative;
   z-index: 4;
   display: flex;
   justify-content: space-between;
   padding: 8px 10px 13px;
   color: var(--gold-bright);
   font-size: 9px;
   font-weight: 700;
   letter-spacing: .2em;
   text-transform: uppercase
}

.feature-meta span:last-child {
   font-size: 16px;
   line-height: .6
}

.feature-art {
   position: relative;
   z-index: 2;
   aspect-ratio: 4/5;
   overflow: hidden;
   border: 1px solid rgba(210, 163, 94, .42);
   background: radial-gradient(circle at 50% 50%, rgba(52, 92, 120, .32), rgba(4, 7, 13, .94) 70%)
}

.feature-art:before {
   content: '';
   position: absolute;
   z-index: 2;
   inset: 10px;
   border: 1px solid rgba(240, 200, 124, .26);
   pointer-events: none
}

.feature-art img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   transform: scale(1.1);
   filter: saturate(1.08) contrast(1.05)
}

.feature-copy {
   position: absolute;
   z-index: 4;
   left: 34px;
   right: 34px;
   bottom: 80px;
   color: var(--paper);
   text-transform: uppercase
}

.feature-copy>span {
   display: block;
   margin-bottom: 10px;
   color: var(--cyan);
   font-size: 9px;
   font-weight: 700;
   letter-spacing: .2em
}

.feature-copy strong {
   display: block;
   font: 36px/.95 var(--forum);
   font-weight: 400;
   letter-spacing: .02em
}

.feature-copy em {
   color: var(--gold-bright);
   font-style: normal
}

.feature-link {
   position: relative;
   z-index: 4;
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin: 14px 10px 3px;
   padding-top: 12px;
   border-top: 1px solid rgba(219, 220, 219, .2);
   color: var(--paper);
   font-size: 10px;
   font-weight: 700;
   letter-spacing: .14em;
   text-transform: uppercase
}

.feature-link span {
   color: var(--gold-bright);
   font-size: 18px;
   transition: transform .3s ease
}

.feature-link:hover span {
   transform: translate(4px, -4px)
}

.feature-orbit {
   position: absolute;
   border: 1px solid rgba(107, 182, 198, .36);
   border-radius: 50%;
   pointer-events: none
}

.feature-orbit-one {
   width: 490px;
   height: 230px;
   transform: rotate(-28deg)
}

.feature-orbit-two {
   width: 530px;
   height: 330px;
   border-color: rgba(210, 163, 94, .28);
   transform: rotate(34deg)
}

.feature-particle {
   position: absolute;
   z-index: 4;
   color: var(--gold-bright);
   font-size: 18px;
   pointer-events: none
}

.particle-one {
   top: 17%;
   right: 5%
}

.particle-two {
   bottom: 18%;
   left: 4%;
   color: var(--cyan);
   font-size: 24px
}

.particle-three {
   top: 31%;
   left: 7%;
   font-size: 13px
}

@media (prefers-reduced-motion:no-preference) {
   @keyframes feature-float {

      0%,
      100% {
         transform: rotate(3deg) translate3d(0, 0, 0)
      }

      50% {
         transform: rotate(1deg) translate3d(0, -12px, 0)
      }
   }

   @keyframes feature-orbit-breathe {

      0%,
      100% {
         opacity: .38;
         transform: rotate(-28deg) scale(1)
      }

      50% {
         opacity: .9;
         transform: rotate(-23deg) scale(1.04)
      }
   }

   .feature-panel {
      animation: feature-float 8s var(--ease) infinite
   }

   .feature-orbit-one {
      animation: feature-orbit-breathe 9s ease-in-out infinite
   }

   .feature-orbit-two {
      animation: feature-orbit-breathe 11s ease-in-out -3s infinite reverse
   }
}

@media (max-width:900px) {
   .hero-grid {
      grid-template-columns: 1fr;
      gap: 20px
   }

   .hero-feature {
      min-height: 470px
   }

   .feature-panel {
      width: min(350px, 88vw)
   }
}

@media (max-width:600px) {
   .hero-feature {
      min-height: 390px
   }

   .feature-panel {
      width: 280px
   }

   .feature-copy strong {
      font-size: 30px
   }

   .feature-orbit-one {
      width: 360px;
      height: 180px
   }

   .feature-orbit-two {
      width: 390px;
      height: 240px
   }
}

.hero-grid {
   grid-template-columns: minmax(0, 760px);
   gap: clamp(30px, 6vw, 100px)
}

.hero-grid {
   justify-content: center
}

.hero-copy {
   max-width: 820px;
   margin: 0 auto;
   text-align: center
}

.hero-copy h1,
.hero-copy .eyebrow,
.hero-copy .hero-lede {
   text-align: center
}

.hero-copy .hero-lede {
   margin-left: auto;
   margin-right: auto
}

.hero-copy .hero-actions,
.hero-copy .mode-row {
   justify-content: center
}

.services-section {
   padding: 132px clamp(24px, 7vw, 110px);
   background: radial-gradient(circle at 50% 0%, rgba(61, 49, 89, .28), transparent 34%), linear-gradient(180deg, #0b0c1a, #101222 62%, #0b111a)
}

@media (max-width:600px) {
   .services-section {
      padding: 92px 22px
   }
}

.products-section {
   padding: 88px clamp(24px, 5vw, 74px);
   background: radial-gradient(circle at 50% 0%, rgba(76, 54, 120, .28), transparent 38%), #12102d;
   border-top: 1px solid rgba(154, 139, 196, .22);
   border-bottom: 1px solid rgba(154, 139, 196, .2)
}

.products-heading {
   width: min(720px, 100%);
   margin: 0 auto 34px;
   text-align: center
}

.products-heading .eyebrow {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   margin-bottom: 12px;
   color: var(--gold-bright)
}

.products-heading .eyebrow span {
   margin: 0
}

.products-heading .eyebrow b {
   font-size: 15px;
   font-weight: 400
}

.products-heading h2 {
   margin: 0;
   color: var(--paper);
   font: clamp(38px, 4vw, 56px)/1 var(--forum);
   font-weight: 400;
   text-transform: uppercase
}

.products-heading h2 em {
   color: var(--gold);
   font-style: normal
}

.products-heading>p:last-child {
   max-width: 560px;
   margin: 16px auto 0;
   color: #bdb7cf;
   font-size: 14px;
   line-height: 1.65
}

.products-rule {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 140px;
   margin: 18px auto 0
}

.products-rule:before,
.products-rule:after {
   content: '';
   width: 54px;
   height: 1px;
   background: var(--line-gold)
}

.products-rule i {
   width: 7px;
   height: 7px;
   border: 1px solid var(--gold);
   border-radius: 50%;
   box-shadow: 0 0 14px rgba(210, 163, 94, .65)
}

.product-grid {
   display: grid;
   grid-template-columns: repeat(6, minmax(0, 1fr));
   gap: 12px;
   width: min(1220px, 100%);
   margin: 0 auto
}

.product-card {
   position: relative;
   overflow: hidden;
   border: 1px solid rgba(171, 157, 204, .34);
   background: linear-gradient(180deg, #272442, #19172f);
   transition: transform .45s var(--ease), border-color .35s ease, box-shadow .35s ease
}

.product-card:hover {
   border-color: var(--gold);
   box-shadow: 0 22px 55px rgba(0, 0, 0, .34);
   transform: translateY(-8px)
}

.product-image {
   height: 132px;
   overflow: hidden;
   background: #0c0b1c
}

.product-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform .55s var(--ease), filter .45s ease
}

.product-card:hover .product-image img {
   transform: scale(1.08);
   filter: saturate(1.12) contrast(1.05)
}

.product-body {
   display: flex;
   min-height: 145px;
   flex-direction: column;
   padding: 14px 12px 12px;
   text-align: center
}

.product-body h3 {
   margin: 0;
   color: #f2edf3;
   font: 14px/1.1 var(--forum);
   text-transform: uppercase
}

.product-body strong {
   margin-top: 10px;
   color: var(--gold-bright);
   font: 15px var(--forum)
}

.product-add {
   margin-top: auto;
   padding: 7px 5px;
   border: 1px solid var(--gold);
   background: transparent;
   color: var(--gold-bright);
   font-size: 8px;
   font-weight: 700;
   letter-spacing: .11em;
   text-transform: uppercase;
   transition: background .25s ease, color .25s ease, transform .25s ease
}

.product-add:hover {
   background: var(--gold);
   color: var(--night);
   transform: translateY(-2px)
}

@media (max-width:1100px) {
   .product-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 760px
   }
}

@media (max-width:700px) {
   .product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr))
   }
}

@media (max-width:480px) {
   .products-section {
      padding: 72px 18px
   }

   .product-grid {
      grid-template-columns: 1fr;
      max-width: 300px
   }

   .product-image {
      height: 180px
   }
}

.header-cta {
   min-width: 174px;
   min-height: 64px;
   padding: 11px 17px;
   justify-content: space-between;
   text-align: left;
   line-height: 1.3;
   background: rgba(7, 11, 18, .18)
}

.header-cta .header-cta-label {
   font-size: 11px;
   line-height: 1.35;
   letter-spacing: .14em;
   padding: 3px 8px;
}

.header-cta .header-cta-arrow {
   font-size: 17px;
   line-height: 1;
   transition: transform .3s ease;
   padding: 3px 8px 0 0;
}

.header-cta:hover .header-cta-arrow {
   transform: translate(3px, -3px)
}

.products-section {
   position: relative;
   isolation: isolate;
   overflow: hidden;
   padding: clamp(90px, 3vw, 60px) clamp(20px, 3vw, 48px) 50px;
   background: radial-gradient(circle at 50% 8%, rgba(135, 194, 210, .2), transparent 26%), linear-gradient(180deg, rgba(5, 22, 33, .56), rgba(8, 31, 38, .88)), url('assets/h3-bcgr-img-1.jpg') center/cover;
   border-top: 1px solid rgba(170, 214, 224, .2);
   border-bottom: 1px solid rgba(170, 214, 224, .25)
}

.products-section:before {
   content: '';
   position: absolute;
   z-index: -1;
   inset: 0;
   background: linear-gradient(90deg, rgba(2, 12, 18, .76), transparent 28%, transparent 72%, rgba(2, 12, 18, .76));
   pointer-events: none
}

.products-section:after {
   content: '';
   position: absolute;
   z-index: -1;
   inset: 0;
   opacity: .52;
   pointer-events: none;
   background-image: radial-gradient(circle at 8% 24%, rgba(232, 250, 255, .9) 0 1px, transparent 1.6px), radial-gradient(circle at 22% 72%, rgba(240, 200, 124, .8) 0 1px, transparent 1.7px), radial-gradient(circle at 47% 18%, rgba(232, 250, 255, .76) 0 1px, transparent 1.5px), radial-gradient(circle at 75% 65%, rgba(232, 250, 255, .82) 0 1px, transparent 1.6px), radial-gradient(circle at 92% 28%, rgba(240, 200, 124, .76) 0 1px, transparent 1.6px);
   background-size: 290px 260px, 380px 330px, 460px 390px, 520px 430px, 610px 500px
}

.products-heading {
   position: relative;
   z-index: 1;
   width: min(900px, 100%);
   margin: 0 auto 52px;
   text-align: center
}

.products-heading h2 {
   margin: 0;
   color: #f7f2e9;
   font: clamp(48px, 6vw, 82px)/.96 var(--forum);
   font-weight: 400;
   letter-spacing: .015em;
   text-transform: none;
   text-shadow: 0 5px 24px rgba(0, 0, 0, .34)
}

.product-grid {
   position: relative;
   z-index: 1;
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 28px;
   width: min(1240px, 100%);
   margin: 0 auto
}

.product-card {
   position: relative;
   overflow: hidden;
   border: 2px solid rgba(181, 215, 220, .52);
   background: rgba(6, 17, 23, .62);
   box-shadow: 0 20px 55px rgba(0, 0, 0, .28);
   transition: transform .45s var(--ease), border-color .35s ease, box-shadow .35s ease
}

.product-card:hover {
   border-color: var(--gold-bright);
   box-shadow: 0 28px 70px rgba(0, 0, 0, .46);
   transform: translateY(-9px)
}

.product-image {
   position: relative;
   height: clamp(280px, 30vw, 370px);
   overflow: hidden;
   border-bottom: 1px solid rgba(181, 215, 220, .38);
   background: linear-gradient(145deg, #102b35, #07131a)
}

.product-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   filter: saturate(.84) contrast(1.06);
   transition: transform .65s var(--ease), filter .45s ease
}

.product-card:hover .product-image img {
   transform: scale(1.06);
   filter: saturate(1.04) contrast(1.08)
}

.product-card:nth-child(2) .product-image img {
   object-position: center 52%
}

.product-card:nth-child(3) .product-image img {
   object-position: center 42%
}

.product-badge {
   position: absolute;
   z-index: 2;
   top: 14px;
   right: 14px;
   padding: 6px 12px;
   border-radius: 999px;
   background: #c99be7;
   color: #261a32;
   font-size: 10px;
   font-weight: 800;
   letter-spacing: .08em;
   text-transform: uppercase;
   box-shadow: 0 8px 20px rgba(0, 0, 0, .24)
}

.product-body {
   display: flex;
   min-height: 112px;
   flex-direction: column;
   align-items: center;
   padding: 18px 12px 21px;
   text-align: center;
   background: rgba(5, 13, 18, .34)
}

.product-body h3 {
   margin: 0;
   color: #f3eee5;
   font: clamp(20px, 1.8vw, 27px)/1.05 var(--forum);
   font-weight: 400;
   letter-spacing: .015em;
   text-transform: none
}

.product-body strong {
   display: block;
   margin-top: 12px;
   color: #f5f0e7;
   font: 16px/1 var(--forum);
   font-weight: 400;
   letter-spacing: .02em
}

.product-body del {
   margin-right: 7px;
   color: rgba(220, 231, 229, .55);
   font-size: 12px
}

.product-add {
   display: none
}

@media (max-width:1050px) {
   .product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 760px
   }

   .product-image {
      height: 340px
   }
}

@media (max-width:600px) {
   .products-section {
      padding: 85px 18px 40px
   }

   .products-heading {
      margin-bottom: 0px
   }

   .products-heading h2 {
      font-size: 48px
   }

   .product-grid {
      grid-template-columns: 1fr;
      max-width: 360px;
      gap: 22px
   }

   .product-image {
      height: 360px
   }
}

.tarot-reading-section {
   position: relative;
   isolation: isolate;
   overflow: hidden;
   min-height: 630px;
   padding: clamp(76px, 9vw, 60px) clamp(24px, 7vw, 110px);
   background: radial-gradient(circle at 82% 42%, rgba(185, 126, 199, .16), transparent 27%), linear-gradient(135deg, #f1e9f4, #e7dced 70%, #ded0e7);
   border-top: 1px solid rgba(87, 48, 106, .16);
   border-bottom: 1px solid rgba(87, 48, 106, .18);
   color: #4d315a
}

.tarot-reading-section:before {
   content: '';
   position: absolute;
   z-index: -1;
   inset: 0;
   opacity: .28;
   pointer-events: none;
   background-image: radial-gradient(circle at 9% 20%, rgba(99, 49, 111, .18) 0 1px, transparent 1.7px), radial-gradient(circle at 66% 12%, rgba(99, 49, 111, .16) 0 1px, transparent 1.6px), radial-gradient(circle at 87% 77%, rgba(99, 49, 111, .14) 0 1px, transparent 1.5px);
   background-size: 310px 280px, 420px 360px, 520px 460px
}

.tarot-reading-inner {
   display: grid;
   grid-template-columns: minmax(280px, .76fr) minmax(430px, 1.24fr);
   align-items: center;
   gap: clamp(45px, 8vw, 60px);
   width: min(1160px, 100%);
   margin: 0 auto
}

.tarot-reading-copy {
   position: relative;
   z-index: 2;
   max-width: 360px
}

.tarot-reading-kicker {
   margin: 0;
   color: #673171;
   font: italic 32px/1 'Brush Script MT', 'Segoe Script', cursive;
   letter-spacing: .01em
}

.tarot-reading-copy h2 {
   margin: 18px 0 13px;
   color: #4e2b59;
   font: 700 18px/1.25 var(--mulish);
   letter-spacing: .01em
}

.tarot-reading-copy>p:not(.tarot-reading-kicker) {
   margin: 0;
   color: #5e4c66;
   font-size: 11px;
   line-height: 1.55
}

.tarot-reading-emblem {
   display: grid;
   position: relative;
   width: 100px;
   height: 116px;
   place-items: center;
   margin: 25px 0 20px;
   color: #241a28
}

.tarot-reading-emblem:before,
.tarot-reading-emblem:after {
   content: '❧';
   position: absolute;
   top: 18px;
   color: #241a28;
   font-size: 29px;
   transform: rotate(-28deg)
}

.tarot-reading-emblem:before {
   left: 11px
}

.tarot-reading-emblem:after {
   right: 11px;
   transform: scaleX(-1) rotate(-28deg)
}

.tarot-reading-emblem span {
   position: absolute;
   top: 4px;
   font-size: 27px
}

.tarot-reading-emblem b {
   position: absolute;
   bottom: 12px;
   font-size: 30px;
   font-weight: 400
}

.tarot-reading-emblem i {
   position: absolute;
   bottom: 27px;
   font-size: 48px;
   font-style: normal;
   transform: scaleX(.7)
}

.tarot-reading-button {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   padding: 9px 18px;
   border: 0;
   border-radius: 999px;
   background: #9746ab;
   color: #fff5ff;
   font-size: 10px;
   font-weight: 700;
   letter-spacing: .08em;
   text-transform: lowercase;
   box-shadow: 0 9px 20px rgba(109, 43, 126, .2);
   transition: background .25s ease, transform .25s ease, box-shadow .25s ease
}

.tarot-reading-button:hover {
   background: #7c348f;
   box-shadow: 0 13px 25px rgba(109, 43, 126, .3);
   transform: translateY(-2px)
}

.tarot-reading-button span {
   font-size: 15px;
   line-height: 0
}

.tarot-reading-art {
   position: relative;
   min-height: 510px
}

.tarot-art-card {
   position: absolute;
   overflow: hidden;
   border: 1px solid rgba(56, 30, 64, .52);
   border-radius: 10px;
   background: #2d2031;
   box-shadow: 0 25px 55px rgba(75, 42, 83, .23)
}

.tarot-art-card img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover
}

.tarot-art-card-back {
   top: 4px;
   right: 37%;
   width: 190px;
   height: 296px;
   transform: rotate(-1.8deg)
}

.tarot-art-card-back img {
   object-position: center;
   filter: grayscale(.92) contrast(1.1)
}

.tarot-art-card-front {
   top: 82px;
   right: 5%;
   width: 255px;
   height: 330px;
   transform: rotate(1.2deg)
}

.tarot-art-card-front:after {
   content: '';
   position: absolute;
   inset: 0;
   pointer-events: none;
   background: linear-gradient(145deg, rgba(91, 32, 112, .16), rgba(154, 56, 170, .08) 56%, rgba(51, 20, 62, .2))
}

.tarot-art-card-front img {
   filter: saturate(1.25) contrast(1.04);
   object-position: center
}

.tarot-reading-note {
   position: absolute;
   right: 0;
   bottom: 23px;
   width: min(330px, 52%);
   margin: 0;
   color: #604e68;
   font-size: 9px;
   line-height: 1.55
}

@media (max-width:900px) {
   .tarot-reading-inner {
      grid-template-columns: 1fr;
      gap: 25px;
      max-width: 650px
   }

   .tarot-reading-copy {
      max-width: 520px
   }

   .tarot-reading-art {
      min-height: 500px
   }

   .tarot-reading-note {
      right: 2%;
      bottom: 0
   }
}

@media (max-width:600px) {
   .tarot-reading-section {
      padding: 76px 22px 82px
   }

   .tarot-reading-kicker {
      font-size: 30px
   }

   .tarot-reading-art {
      min-height: 420px
   }

   .tarot-art-card-back {
      right: 36%;
      width: 145px;
      height: 230px
   }

   .tarot-art-card-front {
      right: 0;
      width: 196px;
      height: 260px;
      top: 62px
   }

   .tarot-reading-note {
      right: 0;
      bottom: -3px;
      width: 54%;
      font-size: 8px
   }

   .tarot-reading-emblem {
      margin: 20px 0 16px
   }
}

.reviews-section {
   position: relative;
   isolation: isolate;
   display: grid;
   place-items: center;
   min-height: 590px;
   overflow: hidden;
   /* padding: 92px clamp(22px, 6vw, 86px) 78px; */
   background: radial-gradient(circle at 50% 48%, rgba(91, 47, 37, .18), transparent 38%), #141212;
   border-top: 1px solid rgba(215, 175, 142, .24);
   border-bottom: 1px solid rgba(215, 175, 142, .18)
}

.reviews-section:before {
   content: '';
   position: absolute;
   z-index: -1;
   inset: 0;
   pointer-events: none;
   background: radial-gradient(circle at 50% 47%, transparent 0 180px, rgba(219, 142, 95, .035) 320px, transparent 520px)
}

.review-star-field {
   position: absolute;
   z-index: -1;
   inset: 0;
   opacity: .62;
   pointer-events: none;
   background-image: radial-gradient(circle at 3% 17%, #c8a899 0 1px, transparent 1.5px), radial-gradient(circle at 18% 73%, #c8a899 0 1px, transparent 1.5px), radial-gradient(circle at 25% 21%, #c8a899 0 1px, transparent 1.5px), radial-gradient(circle at 44% 14%, #c8a899 0 1px, transparent 1.6px), radial-gradient(circle at 67% 78%, #c8a899 0 1px, transparent 1.5px), radial-gradient(circle at 82% 21%, #c8a899 0 1px, transparent 1.5px), radial-gradient(circle at 96% 38%, #c8a899 0 1px, transparent 1.6px);
   background-size: 360px 290px, 470px 360px, 560px 440px, 630px 500px, 520px 410px, 710px 560px, 430px 350px;
   animation: review-stars 38s linear infinite
}

@keyframes review-stars {
   to {
      background-position: 38px 18px, -60px 28px, 42px -34px, -48px 32px, 56px -24px, -70px 35px, 30px -18px
   }
}

.reviews-title {
   position: absolute;
   width: 1px;
   height: 1px;
   margin: -1px;
   padding: 0;
   overflow: hidden;
   clip: rect(0 0 0 0);
   white-space: nowrap;
   border: 0
}

.reviews-carousel {
   position: relative;
   z-index: 1;
   display: grid;
   grid-template-columns: 92px minmax(0, 1fr) 92px;
   align-items: center;
   width: min(1220px, 100%);
   min-height: 405px
}

.reviews-track {
   position: relative;
   display: grid;
   min-height: 405px;
   place-items: center
}

.review-slide {
   grid-area: 1/1;
   display: flex;
   flex-direction: column;
   align-items: center;
   width: min(700px, 100%);
   text-align: center;
   opacity: 0;
   pointer-events: none;
   transform: translateX(30px) scale(.985);
   transition: opacity .55s var(--ease), transform .55s var(--ease)
}

.review-slide.is-active {
   opacity: 1;
   pointer-events: auto;
   transform: none
}

.review-avatar {
   width: 78px;
   height: 78px;
   object-fit: cover;
   border: 1px solid rgba(215, 175, 142, .78);
   border-radius: 50%;
   box-shadow: 0 0 0 7px rgba(215, 175, 142, .07), 0 15px 30px rgba(0, 0, 0, .28)
}

.review-slide blockquote {
   margin: 34px auto 0;
   color: #d99368;
   font: clamp(30px, 3.3vw, 49px)/1.24 var(--forum);
   font-weight: 400;
   letter-spacing: .01em
}

.review-author {
   margin: 29px 0 0;
   color: #ebe3dd;
   font-size: 15px;
   line-height: 1.4;
   letter-spacing: .02em
}

.review-arrow {
   display: grid;
   place-items: center;
   width: 70px;
   height: 70px;
   border: 0;
   background: transparent;
   color: #f4eee9;
   font: 52px/1 var(--forum);
   font-weight: 300;
   transition: color .25s ease, transform .25s ease
}

.review-arrow:hover,
.review-arrow:focus-visible {
   color: #e5a778;
   outline: 0;
   transform: scale(1.08)
}

.review-arrow span {
   display: block;
   transform: translateY(-3px)
}

.review-dots {
   position: absolute;
   z-index: 2;
   bottom: 31px;
   left: 50%;
   display: flex;
   gap: 9px;
   transform: translateX(-50%)
}

.review-dot {
   width: 8px;
   height: 8px;
   padding: 0;
   border: 1px solid rgba(231, 188, 160, .76);
   border-radius: 50%;
   background: transparent;
   transition: background .25s ease, transform .25s ease, box-shadow .25s ease
}

.review-dot:hover,
.review-dot:focus-visible {
   outline: 0;
   transform: scale(1.2)
}

.review-dot.is-active {
   background: #e39a6e;
   box-shadow: 0 0 13px rgba(227, 154, 110, .58);
   transform: scale(1.2)
}

@media (max-width:900px) {
   .reviews-section {
      min-height: 540px;
      padding: 78px 18px 72px
   }

   .reviews-carousel {
      grid-template-columns: 50px minmax(0, 1fr) 50px;
      min-height: 390px
   }

   .reviews-track {
      min-height: 390px
   }

   .review-arrow {
      width: 48px;
      height: 56px;
      font-size: 42px
   }

   .review-slide blockquote {
      font-size: clamp(28px, 5vw, 42px)
   }
}

@media (max-width:600px) {
   .reviews-section {
      min-height: 450px;
      padding: 0px 12px 0px
   }

   .reviews-carousel {
      grid-template-columns: 31px minmax(0, 1fr) 31px;
      min-height: 435px
   }

   .reviews-track {
      min-height: 435px
   }

   .review-avatar {
      width: 68px;
      height: 68px
   }

   .review-slide blockquote {
      margin-top: 26px;
      font-size: 29px;
      line-height: 1.2
   }

   .review-author {
      margin-top: 22px;
      font-size: 13px
   }

   .review-arrow {
      width: 31px;
      height: 50px;
      font-size: 34px
   }

   .review-dots {
      bottom: 26px
   }
}

.card-pick-section {
   position: relative;
   isolation: isolate;
   min-height: 730px;
   overflow: hidden;
   padding: 60px 0 0;
   background: #000;
   color: #c68d70;
   border-top: 1px solid rgba(214, 165, 137, .2);
   border-bottom: 1px solid rgba(214, 165, 137, .18)
}

.card-pick-stars {
   position: absolute;
   z-index: -1;
   inset: 0;
   opacity: .72;
   pointer-events: none;
   background-image: radial-gradient(circle at 2% 3%, #f8f5f2 0 1.3px, transparent 1.8px), radial-gradient(circle at 12% 19%, #f8f5f2 0 1px, transparent 1.5px), radial-gradient(circle at 23% 8%, #86827d 0 1px, transparent 1.5px), radial-gradient(circle at 36% 22%, #f8f5f2 0 1.2px, transparent 1.7px), radial-gradient(circle at 54% 11%, #8d8985 0 1px, transparent 1.5px), radial-gradient(circle at 67% 25%, #f8f5f2 0 1px, transparent 1.5px), radial-gradient(circle at 82% 7%, #f8f5f2 0 1.2px, transparent 1.7px), radial-gradient(circle at 97% 20%, #8d8985 0 1px, transparent 1.5px);
   background-size: 410px 300px, 520px 390px, 610px 470px, 720px 530px, 460px 360px, 650px 500px, 790px 570px, 560px 420px;
   animation: card-stars-drift 36s linear infinite
}

@keyframes card-stars-drift {
   to {
      background-position: 35px 18px, -52px 26px, 45px -32px, -38px 28px, 30px -25px, -45px 34px, 60px -20px, -25px 42px
   }
}

.card-pick-copy {
   position: relative;
   z-index: 2;
   width: min(1060px, calc(100% - 44px));
   margin: 0 auto;
   text-align: center
}

.card-pick-copy h1 {
   max-width: 980px;
   margin: 0 auto;
   color: #c99072;
   font: clamp(42px, 5.25vw, 72px)/1.08 var(--forum);
   font-weight: 400;
   letter-spacing: .015em;
   text-transform: uppercase
}

.card-pick-copy p {
   margin: 10px 0 0;
   color: #c8c4c0;
   font-size: 17px;
   line-height: 1.5
}

.card-fan {
   position: relative;
   width: 100%;
   height: 445px;
   margin: 30px auto 0;
   perspective: 1600px
}

.pick-card {
   position: absolute;
   top: 0;
   display: block;
   width: 245px;
   height: 404px;
   transform: rotate(var(--card-rotation));
   transform-style: preserve-3d;
   transition: transform .62s var(--ease);
   transition-delay: 0s;
   will-change: transform;
   cursor: pointer
}

.pick-face {
   position: absolute;
   inset: 0;
   overflow: hidden;
   border: 2px solid #eee9e3;
   border-radius: 16px 16px 0 0;
   background: #f4eee8;
   box-shadow: 0 13px 30px rgba(0, 0, 0, .28);
   backface-visibility: hidden;
   -webkit-backface-visibility: hidden;
   transition: box-shadow .4s ease;
   transition-delay: 0s
}

.pick-face-front {
   transform: rotateY(180deg)
}

.pick-card img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center top
}

.pick-face-front img {
   object-position: center center
}

.pick-card:hover,
.pick-card:focus-visible,
.pick-card.is-turned {
   z-index: 20;
   outline: 0;
   transform: translateY(-34px) translateZ(90px) rotateY(180deg)
}

.pick-card:hover .pick-face,
.pick-card:focus-visible .pick-face,
.pick-card.is-turned .pick-face {
   box-shadow: 0 34px 60px rgba(0, 0, 0, .6)
}

.pick-card:hover,
.pick-card:hover .pick-face {
   transition-delay: 1s
}

.pick-card:focus-visible,
.pick-card:focus-visible .pick-face,
.pick-card.is-turned,
.pick-card.is-turned .pick-face {
   transition-delay: 0s
}

.pick-card:nth-child(1) {
   left: calc(50% - 570px);
   z-index: 1;
   --card-rotation: -.6deg
}

.pick-card:nth-child(2) {
   left: calc(50% - 430px);
   z-index: 2;
   --card-rotation: -.2deg
}

.pick-card:nth-child(3) {
   left: calc(50% - 290px);
   z-index: 3;
   --card-rotation: .2deg
}

.pick-card:nth-child(4) {
   left: calc(50% - 150px);
   z-index: 4;
   --card-rotation: -.2deg
}

.pick-card:nth-child(5) {
   left: calc(50% - 10px);
   z-index: 5;
   --card-rotation: .25deg
}

.pick-card:nth-child(6) {
   left: calc(50% + 130px);
   z-index: 6;
   --card-rotation: .4deg
}

.pick-card:nth-child(7) {
   left: calc(50% + 270px);
   z-index: 7;
   --card-rotation: .15deg
}

@media (max-width:1100px) {
   .card-pick-section {
      min-height: 690px;
      padding-top: 100px
   }

   .card-pick-copy h1 {
      font-size: clamp(40px, 5.5vw, 62px)
   }

   .card-fan {
      margin-top: 63px
   }

   .pick-card {
      width: 210px;
      height: 347px
   }

   .pick-card:nth-child(1) {
      left: calc(50% - 490px)
   }

   .pick-card:nth-child(2) {
      left: calc(50% - 370px)
   }

   .pick-card:nth-child(3) {
      left: calc(50% - 250px)
   }

   .pick-card:nth-child(4) {
      left: calc(50% - 130px)
   }

   .pick-card:nth-child(5) {
      left: calc(50% - 10px)
   }

   .pick-card:nth-child(6) {
      left: calc(50% + 110px)
   }

   .pick-card:nth-child(7) {
      left: calc(50% + 230px)
   }
}

@media (max-width:600px) {
   .card-pick-section {
      min-height: 650px;
      padding-top: 80px
   }

   .card-pick-copy {
      width: calc(100% - 30px)
   }

   .card-pick-copy h1 {
      font-size: 36px;
      line-height: 1.08
   }

   .card-pick-copy p {
      margin-top: 22px;
      font-size: 14px
   }

   .card-fan {
      height: 340px;
      margin-top: 52px
   }

   .pick-card {
      width: 170px;
      height: 281px
   }

   .pick-card:nth-child(1) {
      left: calc(50% - 330px)
   }

   .pick-card:nth-child(2) {
      left: calc(50% - 250px)
   }

   .pick-card:nth-child(3) {
      left: calc(50% - 170px)
   }

   .pick-card:nth-child(4) {
      left: calc(50% - 90px)
   }

   .pick-card:nth-child(5) {
      left: calc(50% - 10px)
   }

   .pick-card:nth-child(6) {
      left: calc(50% + 70px)
   }

   .pick-card:nth-child(7) {
      left: calc(50% + 150px)
   }
}

.pricing-section {
   position: relative
}

.pricing-section:before {
   content: '';
   position: absolute;
   top: 0;
   left: 50%;
   width: min(1250px, 86vw);
   height: 1px;
   transform: translateX(-50%);
   background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
   opacity: .75
}

.pricing-grid {
   gap: clamp(16px, 1.9vw, 26px);
   align-items: stretch;
   padding: 40px 0 26px
}

.price-card {
   min-height: 0;
   padding: 46px 34px 40px;
   overflow: visible;
   background: linear-gradient(160deg, rgba(24, 35, 49, .9), rgba(9, 14, 22, .94))
}

.price-card:hover {
   border-color: var(--line-gold);
   box-shadow: 0 26px 70px rgba(0, 0, 0, .4)
}

.price-card.featured {
   margin-block: -22px;
   padding: 66px 36px 46px;
   border-color: var(--gold);
   background: linear-gradient(168deg, rgba(78, 58, 35, .5), rgba(13, 20, 30, .97) 62%);
   box-shadow: 0 34px 90px rgba(0, 0, 0, .45), 0 16px 60px rgba(210, 163, 94, .1)
}

.price-card.featured:hover {
   box-shadow: 0 42px 104px rgba(0, 0, 0, .5), 0 22px 74px rgba(210, 163, 94, .18)
}

.price-card.featured:before {
   content: '';
   position: absolute;
   inset: 11px;
   z-index: 1;
   border: 1px solid rgba(210, 163, 94, .2);
   pointer-events: none
}

.price-card .price-badge {
   position: absolute;
   left: 50%;
   top: 0;
   z-index: 4;
   transform: translate(-50%, -50%);
   padding: 8px 18px;
   border-radius: 999px;
   background: linear-gradient(180deg, var(--gold-bright), var(--gold));
   color: #1c1206;
   font: 700 9.5px/1 var(--mulish);
   letter-spacing: .2em;
   text-transform: uppercase;
   white-space: nowrap;
   box-shadow: 0 12px 30px rgba(210, 163, 94, .34)
}

.price-card .price-kicker {
   display: block;
   min-height: 2.1em;
   color: var(--gold);
   font: 400 clamp(21px, 1.5vw, 24px)/1.05 var(--forum);
   letter-spacing: .05em;
   text-transform: uppercase
}

.price-figure {
   display: flex;
   align-items: flex-end;
   flex-wrap: wrap;
   gap: 4px 11px;
   min-height: 56px;
   margin-top: 24px;
   color: var(--paper);
   font-family: var(--forum)
}

.price-currency {
   color: var(--gold);
   font-size: clamp(19px, 1.5vw, 23px);
   letter-spacing: .03em
}

.price-value {
   font-size: clamp(46px, 4.1vw, 60px);
   line-height: .9
}

.price-value-text {
   font-size: clamp(36px, 3vw, 45px)
}

.price-figure small {
   color: var(--dim);
   font: 400 11px/1 var(--mulish);
   letter-spacing: .16em;
   text-transform: uppercase
}

.price-card .price-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin: 22px 0 0;
   padding: 0;
   border: 0;
   list-style: none
}

.price-card .price-meta li {
   padding: 6px 13px;
   border: 1px solid var(--line);
   border-radius: 999px;
   background: rgba(107, 182, 198, .05);
   color: var(--cyan);
   font: 600 10px/1.3 var(--mulish);
   letter-spacing: .13em;
   text-transform: uppercase
}

.price-card .price-meta li:before {
   content: none
}

.price-card.featured .price-meta li {
   border-color: rgba(210, 163, 94, .32);
   background: rgba(210, 163, 94, .08);
   color: var(--gold-bright)
}

.price-card .price-features {
   flex: 1;
   margin: 30px 0 32px;
   padding: 29px 0 0;
   border-top: 1px solid var(--line);
   list-style: none
}

.price-card .price-features li {
   display: flex;
   gap: 13px;
   align-items: flex-start;
   padding: 0 0 16px;
   border: 0;
   color: #bcc3cb;
   font-size: 13.5px;
   line-height: 1.55
}

.price-card .price-features li:last-child {
   padding-bottom: 0
}

.price-card .price-features li:before {
   content: '';
   flex: 0 0 6px;
   height: 6px;
   margin: 7px 0 0;
   background: var(--gold);
   transform: rotate(45deg);
   opacity: .9
}

.price-card.featured .price-features li {
   color: #d6d4cc
}

.price-card .price-cta {
   margin-top: auto;
   align-self: stretch;
   justify-content: space-between;
   width: 100%;
   padding: 16px 20px;
   letter-spacing: .15em
}

.pricing-note {
   display: flex;
   align-items: center;
   gap: 16px;
   max-width: 1250px;
   margin: 60px auto 0;
   color: var(--dim);
   font-size: 12px;
   letter-spacing: .03em;
   text-align: center
}

.pricing-note:before,
.pricing-note:after {
   content: '';
   flex: 1;
   height: 1px;
   background: linear-gradient(90deg, transparent, var(--line))
}

.pricing-note:after {
   background: linear-gradient(270deg, transparent, var(--line))
}

@media (max-width:1200px) {
   .price-card {
      padding: 42px 28px 36px
   }

   .price-card.featured {
      margin-block: -18px;
      padding: 60px 30px 42px
   }

   .price-card .price-meta li {
      padding: 5px 11px;
      font-size: 9.5px;
      letter-spacing: .1em
   }

   .price-card .price-features li {
      font-size: 13px
   }
}

@media (max-width:1080px) {
   .pricing-grid {
      grid-template-columns: 1fr;
      max-width: 560px;
      padding: 26px 0 0
   }

   .price-card {
      padding: 44px 32px 38px
   }

   .price-card.featured {
      margin-block: 0;
      padding: 56px 32px 42px
   }

   .price-card .price-meta li {
      padding: 6px 13px;
      font-size: 10px;
      letter-spacing: .13em
   }

   .price-card .price-features li {
      font-size: 13.5px
   }

   .pricing-note {
      margin-top: 46px
   }
}

@media (max-width:600px) {
   .price-card {
      padding: 38px 24px 32px
   }

   .price-card.featured {
      padding: 50px 24px 36px
   }

   .pricing-note {
      flex-direction: column;
      gap: 12px
   }

   .pricing-note:before,
   .pricing-note:after {
      display: none
   }
}

.cosmos {
   position: fixed;
   inset: 0;
   z-index: -1;
   overflow: hidden;
   pointer-events: none;
   contain: strict
}

.cosmos i {
   position: absolute;
   display: block
}

.cosmos-band {
   left: -25%;
   right: -25%;
   top: 4%;
   height: 58%;
   transform: rotate(-13deg);
   background: linear-gradient(90deg, transparent, rgba(146, 178, 214, .06) 26%, rgba(196, 166, 214, .09) 52%, rgba(146, 178, 214, .05) 74%, transparent);
   filter: blur(30px)
}

.cosmos-nebula {
   inset: -12%;
   background: radial-gradient(46% 34% at 16% 12%, rgba(46, 92, 128, .22), transparent 70%), radial-gradient(42% 32% at 86% 26%, rgba(124, 82, 44, .18), transparent 72%), radial-gradient(50% 38% at 48% 82%, rgba(64, 74, 128, .16), transparent 74%);
   animation: cosmos-breathe 34s ease-in-out infinite
}

.cosmos-stars {
   background-repeat: repeat
}

.cosmos-stars-2,
.cosmos-stars-3 {
   will-change: transform
}

.cosmos-stars-1 {
   background-image: radial-gradient(1.0px 1.0px at 169px 81px, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)), radial-gradient(0.8px 0.8px at 191px 302px, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 48px 226px, rgba(150, 204, 218, 0.38), rgba(150, 204, 218, 0)), radial-gradient(0.8px 0.8px at 34px 293px, rgba(255, 255, 255, 0.37), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 299px 303px, rgba(255, 255, 255, 0.61), rgba(255, 255, 255, 0)), radial-gradient(0.9px 0.9px at 289px 72px, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 296px 161px, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0)), radial-gradient(1.1px 1.1px at 301px 296px, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 292px 34px, rgba(150, 204, 218, 0.46), rgba(150, 204, 218, 0)), radial-gradient(1.0px 1.0px at 164px 242px, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0)), radial-gradient(1.1px 1.1px at 131px 96px, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)), radial-gradient(1.2px 1.2px at 272px 257px, rgba(255, 255, 255, 0.53), rgba(255, 255, 255, 0)), radial-gradient(0.8px 0.8px at 315px 41px, rgba(255, 255, 255, 0.43), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 81px 254px, rgba(255, 255, 255, 0.61), rgba(255, 255, 255, 0)), radial-gradient(1.1px 1.1px at 289px 297px, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 183px 308px, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 51px 142px, rgba(255, 255, 255, 0.51), rgba(255, 255, 255, 0)), radial-gradient(1.2px 1.2px at 162px 299px, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)), radial-gradient(0.8px 0.8px at 201px 181px, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 316px 63px, rgba(255, 255, 255, 0.37), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 70px 130px, rgba(150, 204, 218, 0.59), rgba(150, 204, 218, 0)), radial-gradient(1.0px 1.0px at 45px 89px, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)), radial-gradient(0.9px 0.9px at 224px 285px, rgba(255, 255, 255, 0.43), rgba(255, 255, 255, 0)), radial-gradient(0.9px 0.9px at 198px 122px, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 123px 10px, rgba(255, 255, 255, 0.49), rgba(255, 255, 255, 0)), radial-gradient(0.9px 0.9px at 148px 6px, rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0)), radial-gradient(1.2px 1.2px at 68px 267px, rgba(255, 255, 255, 0.51), rgba(255, 255, 255, 0)), radial-gradient(1.0px 1.0px at 237px 290px, rgba(255, 255, 255, 0.43), rgba(255, 255, 255, 0)), radial-gradient(0.8px 0.8px at 250px 209px, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)), radial-gradient(0.8px 0.8px at 229px 87px, rgba(255, 255, 255, 0.49), rgba(255, 255, 255, 0));
   background-size: 320px 320px;
   inset: 0;
   opacity: .72;
   animation: cosmos-glimmer-a 13s ease-in-out infinite
}

.cosmos-stars-2 {
   background-image: radial-gradient(1.6px 1.6px at 350px 26px, rgba(240, 200, 124, 0.61), rgba(240, 200, 124, 0)), radial-gradient(1.3px 1.3px at 106px 205px, rgba(240, 200, 124, 0.61), rgba(240, 200, 124, 0)), radial-gradient(1.3px 1.3px at 79px 308px, rgba(255, 255, 255, 0.51), rgba(255, 255, 255, 0)), radial-gradient(1.6px 1.6px at 141px 59px, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0)), radial-gradient(1.2px 1.2px at 295px 320px, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0)), radial-gradient(1.4px 1.4px at 62px 281px, rgba(255, 255, 255, 0.73), rgba(255, 255, 255, 0)), radial-gradient(1.1px 1.1px at 54px 216px, rgba(255, 255, 255, 0.63), rgba(255, 255, 255, 0)), radial-gradient(1.5px 1.5px at 206px 229px, rgba(240, 200, 124, 0.53), rgba(240, 200, 124, 0)), radial-gradient(1.7px 1.7px at 85px 330px, rgba(240, 200, 124, 0.5), rgba(240, 200, 124, 0)), radial-gradient(1.6px 1.6px at 299px 59px, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)), radial-gradient(1.4px 1.4px at 72px 324px, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)), radial-gradient(1.6px 1.6px at 7px 236px, rgba(240, 200, 124, 0.63), rgba(240, 200, 124, 0));
   background-size: 360px 360px;
   inset: -380px;
   opacity: .62;
   animation: cosmos-drift-b 210s linear infinite, cosmos-glimmer-b 9s ease-in-out infinite
}

.cosmos-stars-3 {
   background-image: radial-gradient(1.7px 1.7px at 10px 244px, rgba(150, 204, 218, 0.7), rgba(150, 204, 218, 0)), radial-gradient(2.3px 2.3px at 26px 75px, rgba(150, 204, 218, 0.75), rgba(150, 204, 218, 0)), radial-gradient(2.3px 2.3px at 75px 79px, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)), radial-gradient(2.0px 2.0px at 73px 122px, rgba(240, 200, 124, 0.72), rgba(240, 200, 124, 0)), radial-gradient(1.7px 1.7px at 108px 307px, rgba(240, 200, 124, 0.56), rgba(240, 200, 124, 0));
   background-size: 320px 320px;
   inset: -340px;
   opacity: .8;
   animation: cosmos-drift-c 160s linear infinite, cosmos-glimmer-a 7s ease-in-out infinite reverse
}

@keyframes cosmos-drift-b {
   to {
      transform: translate3d(360px, -360px, 0)
   }
}

@keyframes cosmos-drift-c {
   to {
      transform: translate3d(-320px, -320px, 0)
   }
}

@keyframes cosmos-glimmer-a {

   0%,
   100% {
      opacity: .72
   }

   50% {
      opacity: .4
   }
}

@keyframes cosmos-glimmer-b {

   0%,
   100% {
      opacity: .5
   }

   50% {
      opacity: .86
   }
}

@keyframes cosmos-breathe {

   0%,
   100% {
      opacity: .85;
      transform: scale(1)
   }

   50% {
      opacity: 1;
      transform: scale(1.06)
   }
}

@media (prefers-reduced-motion:reduce) {
   .cosmos i {
      animation: none
   }
}

body {
   background: var(--page-bg)
}

body:before {
   background: radial-gradient(circle at 22% 6%, rgba(45, 86, 118, .2), transparent 30%), radial-gradient(circle at 84% 44%, rgba(112, 76, 44, .15), transparent 32%), var(--page-bg)
}

.section-dark {
   background: linear-gradient(180deg, rgba(8, 13, 21, .56), rgba(10, 16, 25, .73))
}

.planet-section {
   background: radial-gradient(circle at 82% 38%, rgba(66, 122, 144, .2), transparent 24%), linear-gradient(135deg, rgba(7, 17, 26, .6), rgba(8, 11, 18, .78) 72%)
}

.booking-section {
   background: linear-gradient(135deg, rgba(8, 17, 25, .6), rgba(7, 9, 15, .8))
}

.reviews-section {
   background: radial-gradient(circle at 50% 48%, rgba(91, 47, 37, .22), transparent 40%), rgba(16, 14, 15, .68)
}

.card-pick-section {
   background: rgba(0, 0, 0, .6)
}

/* =========================================================
   SMOOTH SERVICES MARQUEE
========================================================= */

.marquee-band {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;

    background: #c0c3c7;

    border-top: 1px solid rgba(7, 11, 18, .18);
    border-bottom: 1px solid rgba(7, 11, 18, .18);
}


/* Moving wrapper */

.marquee-track {
    display: flex;

    width: max-content;

    transform: translate3d(0, 0, 0);

    animation: marquee-run 32s linear infinite;

    will-change: transform;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


/* Pause only when user intentionally hovers */

.marquee-band:hover .marquee-track {
    animation-play-state: paused;
}


/* Each repeated group */

.marquee-list {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 50px;

    height: 100px;

    margin: 0;
    padding: 0 25px;

    list-style: none;
}


/* Individual service */

.marquee-list li {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 50px;

    white-space: nowrap;
}


/* Service link */

.marquee-list li a {
    display: inline-flex;
    align-items: center;

    color: var(--night);

    font: 400 clamp(21px, 2.2vw, 28px)/1 var(--forum);

    letter-spacing: .01em;

    white-space: nowrap;

    transition:
        color .25s ease,
        transform .25s ease;
}


.marquee-list li a:hover {
    color: #8a6520;

    transform: translateY(-2px);
}


/* Star separator */

.marquee-list li::after {
    content: '\2726';

    flex: 0 0 auto;

    color: #8a6520;

    font-size: 13px;
    line-height: 1;
}


/* Perfect loop:
   There are exactly 2 identical groups,
   so move precisely one full group.
*/

@keyframes marquee-run {

    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 600px) {

    .marquee-track {
        animation-duration: 25s;
    }


    .marquee-list {
        height: 74px;

        gap: 32px;

        padding: 0 16px;
    }


    .marquee-list li {
        gap: 32px;
    }


    .marquee-list li a {
        font-size: 20px;
    }


    .marquee-list li::after {
        font-size: 11px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .marquee-track {
        animation: none;
    }

}

.section-dark,
.services-section,
.pricing-section,
.practitioners-section,
.products-section,
.planet-section,
.ethics-section,
.card-pick-section,
.tarot-reading-section,
.reviews-section,
.stories-section,
.how-section,
.booking-section {
   background: transparent
}

.products-section:before,
.reviews-section:before {
   display: none
}

.site-footer {
   padding: clamp(60px, 4vw, 90px) clamp(24px, 3vw, 74px) 25px;
   border-top: 1px solid var(--line)
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.5fr .9fr .8fr .8fr;
   gap: clamp(40px, 5vw, 80px);
   max-width: 1350px;
   margin: auto
}

.footer-mark {
   display: flex;
   align-items: center;
   gap: 11px;
   margin-bottom: 26px
}

.footer-mark .brand-seal {
   width: 43px;
   height: 43px
}

.footer-mark .brand-wordmark {
   font-size: 18px
}

.footer-brand p {
   max-width: 310px;
   margin: 0;
   color: #9aa3ae;
   font-size: 14px;
   line-height: 1.85
}

.footer-col h2 {
   margin: 0 0 35px;
   color: var(--paper);
   font: 700 12px/1 var(--mulish);
   letter-spacing: .18em;
   text-transform: uppercase
}

.footer-col a {
   display: block;
   margin-bottom: 17px;
   color: #a8b0ba;
   font-size: 15px;
   line-height: 1.3;
   transition: color .25s var(--ease)
}

.footer-col a:last-child {
   margin-bottom: 0
}

.footer-col a:hover {
   color: var(--gold-bright)
}

.footer-bottom {
   max-width: 1350px;
   margin: clamp(40px, 4vw, 58px) auto 0;
   padding-top: 26px;
   border-top: 1px solid var(--line);
   text-align: center
}

.footer-bottom p {
   margin: 0;
   color: #8b939e;
   font-size: 13px
}

@media (max-width:1100px) {
   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 48px
   }

   .footer-brand {
      grid-column: 1 / -1
   }
}

@media (max-width:600px) {
   .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px
   }

   .footer-brand {
      grid-column: auto
   }

   .footer-col a {
      margin-bottom: 18px
   }
}

.services-section {
   padding: clamp(60px, 4vw, 60px) clamp(24px, 2vw, 24px)
}

.services-intro {
   width: min(760px, 100%);
   margin: 0 auto clamp(48px, 5vw, 68px);
   text-align: center
}

.services-intro .eyebrow {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   margin-bottom: 18px
}

.services-intro .eyebrow span {
   margin: 0
}

.services-intro h2 {
   margin: 0;
   color: var(--paper);
   font: 400 clamp(38px, 4.4vw, 58px)/1.14 var(--forum);
   font-variant-caps: small-caps;
   letter-spacing: .015em;
   text-transform: none;
   text-wrap: balance
}

.services-intro h2 em {
   font-style: normal;
   background: linear-gradient(100deg, #8fd3e0, #f0c87c);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent
}
.services-intro-one p {
   margin: 0;
   color: var(--paper);
   font: 400 clamp(25px, 2.5vw, 35px)/1.14 var(--forum);
   font-variant-caps: small-caps;
   letter-spacing: .015em;
   text-transform: none;
   text-wrap: balance
}

.services-intro-one p em {
   font-style: normal;
   background: linear-gradient(100deg, #8fd3e0, #f0c87c);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent
}

.services-intro .section-intro {
   max-width: 600px;
   margin: 20px auto 0;
   color: #9ea6b1;
   font: italic 400 15px/1.7 var(--forum)
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 24px;
   max-width: 1180px;
   margin: auto
}

.service-card {
   display: flex;
   flex-direction: column;
   min-height: 0;
   padding: 0;
   overflow: hidden;
   border: 1px dashed rgba(255, 255, 255, .22);
   border-radius: 0;
   background: rgba(255, 255, 255, .022);
   transition: border-color .4s var(--ease), background .4s var(--ease), transform .45s var(--ease)
}

.service-card:hover {
   transform: translateY(-5px);
   border-color: var(--line-gold);
   background: rgba(255, 255, 255, .045)
}

.service-media {
   aspect-ratio: 16/11;
   overflow: hidden;
   background: #0d1017
}

.service-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .7s var(--ease)
}

.service-card:hover .service-media img {
   transform: scale(1.06)
}

.service-body {
   display: flex;
   flex: 1;
   flex-direction: column;
   padding: 24px 24px 26px
}

.service-card h3 {
   margin: 0;
   color: var(--paper);
   font: 400 23px/1.25 var(--forum);
   letter-spacing: .02em;
   text-transform: none
}

.service-card p {
   margin: 13px 0 0;
   color: #9ea6b1;
   font-size: 14px;
   line-height: 1.7
}

.service-cta {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   align-self: flex-start;
   margin-top: 22px;
   padding: 0;
   border: 0;
   border-radius: 0;
   color: #c6ccd4;
   font: 400 14.5px/1 var(--mulish);
   letter-spacing: 0;
   text-transform: none;
   transition: color .3s var(--ease)
}

.service-cta span {
   transition: transform .3s var(--ease)
}

.service-cta:hover {
   color: var(--gold-bright);
   background: none
}

.service-cta:hover span {
   transform: translateX(5px)
}

.sr-only {
   position: absolute;
   width: 1px;
   height: 1px;
   margin: -1px;
   padding: 0;
   overflow: hidden;
   clip: rect(0 0 0 0);
   white-space: nowrap;
   border: 0
}

.motion-ready .service-card:nth-child(3n+2) {
   transition-delay: .08s
}

.motion-ready .service-card:nth-child(3n+3) {
   transition-delay: .16s
}

@media (max-width:1000px) {
   .services-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 760px
   }

   .motion-ready .service-card:nth-child(3n+2),
   .motion-ready .service-card:nth-child(3n+3) {
      transition-delay: 0s
   }
}

@media (max-width:640px) {
   .services-grid {
      grid-template-columns: 1fr;
      max-width: 420px
   }

   .service-body {
      padding: 22px 20px 24px
   }
}

@media (prefers-reduced-motion:reduce) {

   .pick-card,
   .pick-card:hover,
   .pick-card:focus-visible,
   .pick-card.is-turned {
      transform: none;
      transition: none
   }

   .pick-face-front {
      transform: none;
      opacity: 0;
      transition: opacity .2s linear
   }

   .pick-card:hover .pick-face-front,
   .pick-card:focus-visible .pick-face-front,
   .pick-card.is-turned .pick-face-front {
      opacity: 1
   }
}

.card-fan .pick-card:hover,
.card-fan .pick-card:focus-visible,
.card-fan .pick-card.is-turned {
   z-index: 30
}

.brand-wordmark {
   display: inline-flex;
   align-items: flex-start;
   gap: 3px;
   line-height: 1
}

.brand-wordmark:after {
   content: '\2726' / '';
   color: var(--gold);
   font-size: 9px;
   line-height: 1
}

.desktop-nav {
   gap: clamp(13px, 1.8vw, 29px)
}

.desktop-nav>a,
.desktop-nav .nav-dropdown-toggle {
   display: inline-flex;
   align-items: center;
   gap: 9px
}

.desktop-nav>a:before,
.desktop-nav .nav-dropdown-toggle:before {
   content: '\2726' / '';
   flex: none;
   color: var(--gold);
   font-size: 9px;
   line-height: 1
}

.desktop-nav a:after {
   display: none
}

.desktop-nav>a.active {
   color: var(--paper);
   text-decoration: underline;
   text-decoration-thickness: 1px;
   text-underline-offset: 7px
}

.desktop-nav>a:hover {
   color: var(--gold-bright)
}

.header-location {
   flex-direction: row;
   align-items: center;
   min-width: 0
}

.header-location .city-toggle {
   width: 45px;
   height: 45px;
   display: grid;
   place-items: center;
   padding: 0;
   color: var(--paper);
   border: 1px solid var(--line);
   border-radius: 50%;
   background: rgba(255, 255, 255, .03);
   transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease), color .3s var(--ease)
}

.header-location .city-toggle:hover,
.city-dropdown.is-open .city-toggle {
   color: var(--gold-bright);
   border-color: var(--gold);
   background: rgba(210, 163, 94, .1);
   transform: translateY(-2px)
}

.header-location .city-caret {
   display: none
}

.header-location .city-menu {
   top: calc(100% + 12px);
   right: 0
}

.header-cta {
   min-height: 0;
   min-width: 0;
   padding: 14px 20px;
   gap: 12px;
   justify-content: center;
   line-height: 1;
   white-space: nowrap
}

.header-cta-label {
   font: inherit
}

.header-actions {
   gap: 12px
}

@media (max-width:1280px) {
   .header-location {
      display: none
   }

   .site-header {
      gap: 20px;
      padding: 0 28px
   }

   .desktop-nav {
      gap: 15px
   }

   .header-cta {
      padding: 13px 16px
   }
}

.cta-brief {
   display: none
}

@media (max-width:1080px) {
   .cta-full {
      display: none
   }

   .cta-brief {
      display: inline
   }

   .site-header {
      gap: 16px;
      padding: 0 22px
   }

   .desktop-nav {
      gap: 11px
   }

   .desktop-nav>a,
   .desktop-nav .nav-dropdown-toggle {
      gap: 6px
   }
}

.inner-page {
   background: #07172a;
   color: #eee7dc;
}

.inner-page .site-header {
   background: rgba(5, 18, 34, .94);
}

.page-hero {
   min-height: 620px;
   padding: 160px 6% 80px;
   display: grid;
   grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
   align-items: center;
   gap: 70px;
   position: relative;
   overflow: hidden;
}

.page-hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at 72% 25%, rgba(197, 143, 89, .18), transparent 32%), linear-gradient(135deg, #07172a 0%, #102d49 55%, #07172a 100%);
   z-index: -2;
}

.page-hero-image {
   min-height: 430px;
   border: 1px solid rgba(220, 177, 124, .35);
   padding: 14px;
   transform: rotate(-2deg);
}

.page-hero-image img {
   width: 100%;
   height: 430px;
   object-fit: cover;
   display: block;
   filter: saturate(.8) contrast(1.08);
}

.page-hero-copy h1 {
   font-family: Forum, serif;
   font-size: 68px;
   line-height: .98;
   font-weight: 400;
   margin: 18px 0 24px;
   color: #fff8ed;
}

.page-hero-copy>p:not(.eyebrow) {
   font-size: 18px;
   line-height: 1.8;
   max-width: 680px;
   color: #c8ced5;
   margin-bottom: 32px;
}

.article-section {
   background: #f4efe6;
   color: #1d2937;
   padding: 90px 6%;
   display: grid;
   grid-template-columns: minmax(0, 820px) minmax(280px, 360px);
   justify-content: center;
   align-items: start;
   gap: 80px;
}

.article-content h2 {
   font-family: Forum, serif;
   font-size: 46px;
   line-height: 1.1;
   font-weight: 400;
   color: #102d49;
   margin: 65px 0 20px;
}

.article-content h3 {
   font-family: Forum, serif;
   font-size: 29px;
   line-height: 1.2;
   color: #80552f;
   margin: 35px 0 12px;
}

.article-content p,
.article-content li {
   font-size: 17px;
   line-height: 1.85;
   color: #3f4a55;
}

.article-content p {
   margin: 0 0 20px;
}

.article-content ul,
.article-content ol {
   padding-left: 24px;
   margin: 16px 0 30px;
}

.article-content table {
   width: 100%;
   border-collapse: collapse;
   display: block;
   overflow-x: auto;
   margin: 32px 0;
   background: #fff;
}

.article-content th,
.article-content td {
   min-width: 180px;
   padding: 16px;
   border: 1px solid #d8cdbc;
   text-align: left;
   vertical-align: top;
}

.article-content th {
   color: #102d49;
   background: #e9dfd0;
}

.article-aside {
   position: sticky;
   top: 60px;
}

.aside-card {
   padding: 36px;
   background: #102d49;
   color: #fff;
   border: 1px solid rgba(220, 177, 124, .4);
   box-shadow: 16px 16px 0 #d4b184;
}

.aside-card h2 {
   font-family: Forum, serif;
   font-weight: 400;
   font-size: 36px;
   line-height: 1.1;
   margin: 15px 0;
}

.aside-card p:not(.eyebrow) {
   color: #cdd6df;
   line-height: 1.7;
   margin-bottom: 25px;
}

.inner-cta {
   padding: 90px 6%;
   text-align: center;
   background: linear-gradient(135deg, #102d49, #07172a);
}

.inner-cta h2 {
   font: 400 54px/1.05 Forum, serif;
   margin: 18px auto;
   color: #fff8ed;
}

.inner-cta>p:not(.eyebrow) {
   max-width: 680px;
   margin: 0 auto 28px;
   color: #c8ced5;
   line-height: 1.8;
}

.page-form-section {
   padding: 85px 6%;
   background: #0c2239;
}

.page-form-wrap {
   max-width: 900px;
   margin: auto;
}

.page-form-wrap h2 {
   font: 400 52px/1.1 Forum, serif;
   margin: 16px 0 30px;
}

.contact-form {
   display: grid;
   gap: 20px;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.contact-form label {
   display: grid;
   gap: 9px;
   font-size: 14px;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: #d7c8b6;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   width: 100%;
   padding: 15px 16px;
   border: 1px solid rgba(220, 177, 124, .45);
   background: #07172a;
   color: #fff;
   font: 16px Mulish, sans-serif;
   outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
   border-color: #dcb17c;
}

.contact-form textarea {
   resize: vertical;
}

.contact-form .button {
   justify-self: start;
   border: 0;
   cursor: pointer;
}

@media (max-width:900px) {
   .inner-page .site-header {
      padding-left: 20px;
      padding-right: 20px;
   }

   .page-hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 125px 20px 50px;
      gap: 35px;
   }

   .page-hero-image {
      min-height: 280px;
      order: 2;
   }

   .page-hero-image img {
      height: 280px;
   }

   .page-hero-copy h1 {
      font-size: 48px;
   }

   .article-section {
      grid-template-columns: 1fr;
      padding: 55px 20px;
      gap: 45px;
   }

   .article-content h2 {
      font-size: 37px;
      margin-top: 20px;
   }

   .article-content h3 {
      font-size: 26px;
   }

   .article-content p,
   .article-content li {
      font-size: 16px;
   }

   .article-aside {
      position: static;
   }

   .aside-card {
      box-shadow: 8px 8px 0 #d4b184;
   }

   .inner-cta,
   .page-form-section {
      padding: 60px 20px;
   }

   .inner-cta h2,
   .page-form-wrap h2 {
      font-size: 42px;
   }

   .form-row {
      grid-template-columns: 1fr;
   }
}

@media (max-width:520px) {
   .page-hero-copy h1 {
      font-size: 40px;
   }

   .page-hero-copy>p:not(.eyebrow) {
      font-size: 16px;
   }

   .page-hero-image,
   .page-hero-image img {
      height: 230px;
      min-height: 230px;
   }

   .article-content h2 {
      font-size: 33px;
   }

   .inner-cta h2,
   .page-form-wrap h2 {
      font-size: 36px;
   }
}

.nav-caret {
   font-size: 14px;
   transition: transform 0.3s ease;
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-caret {
   transform: rotate(180deg);
}


/* =========================================================
   BOOK NOW PAGE
   Conflict-free styles
   Prefix: bn-
========================================================= */


/* =========================================================
   01. PERSONALISED ASTROLOGY GUIDANCE
========================================================= */

.bn-guidance {
   position: relative;
   overflow: hidden;
   min-height: 720px;
   padding: 160px clamp(24px, 6vw, 90px) 90px;
   border-bottom: 1px solid var(--line);
   background:
      radial-gradient(circle at 82% 24%, rgba(107, 182, 198, .14), transparent 27%),
      radial-gradient(circle at 17% 78%, rgba(210, 163, 94, .12), transparent 30%),
      rgba(5, 10, 18, .72);
}


.bn-guidance:before {
   content: '';
   position: absolute;
   width: 620px;
   height: 620px;
   right: -320px;
   top: -300px;
   border: 1px solid rgba(210, 163, 94, .15);
   border-radius: 50%;
   pointer-events: none;
}


.bn-guidance:after {
   content: '';
   position: absolute;
   width: 430px;
   height: 430px;
   left: -250px;
   bottom: -260px;
   border: 1px solid rgba(107, 182, 198, .13);
   border-radius: 50%;
   pointer-events: none;
}


.bn-guidance-grid {
   position: relative;
   z-index: 2;
   width: min(1320px, 100%);
   margin: auto;
   display: grid;
   grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
   align-items: center;
   gap: clamp(45px, 7vw, 100px);
}


.bn-guidance-copy {
   max-width: 760px;
}


.bn-kicker {
   display: flex;
   align-items: center;
   gap: 12px;
   margin: 0 0 22px;
   color: var(--gold);
   font-size: 11px;
   font-weight: 700;
   letter-spacing: .2em;
   text-transform: uppercase;
}


.bn-kicker:before {
   content: '';
   width: 34px;
   height: 1px;
   background: var(--cyan);
}


.bn-guidance-copy h1 {
   margin: 0;
   max-width: 760px;
   color: var(--paper);
   font: 400 clamp(54px, 6vw, 84px)/.98 var(--forum);
   letter-spacing: -.015em;
}


.bn-guidance-copy h1 em {
   display: block;
   color: var(--gold);
   font-style: normal;
}


.bn-guidance-copy > p {
   max-width: 640px;
   margin: 30px 0 0;
   color: #b9c0c8;
   font-size: 17px;
   line-height: 1.78;
}


.bn-guidance-actions {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 34px;
}


.bn-guidance-link {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 13px 3px;
   color: #c1c6cc;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: .1em;
   text-transform: uppercase;
   transition: color .3s var(--ease);
}


.bn-guidance-link i {
   color: var(--gold);
   transition: transform .3s var(--ease);
}


.bn-guidance-link:hover {
   color: var(--gold-bright);
}


.bn-guidance-link:hover i {
   transform: translateX(5px);
}


.bn-guidance-points {
   display: flex;
   flex-wrap: wrap;
   gap: 23px;
   margin-top: 38px;
   padding-top: 24px;
   border-top: 1px solid var(--line);
}


.bn-guidance-point {
   display: flex;
   align-items: center;
   gap: 8px;
   color: var(--dim);
   font-size: 11px;
}


.bn-guidance-point i {
   color: var(--gold);
   font-size: 14px;
}



/* =========================================================
   GUIDANCE CARD
========================================================= */

.bn-guidance-card {
   position: relative;
   max-width: 440px;
   margin-left: auto;
   padding: 38px;
   overflow: hidden;
   border: 1px solid var(--line-gold);
   background:
      linear-gradient(
         145deg,
         rgba(24, 37, 53, .9),
         rgba(8, 13, 21, .88)
      );
   box-shadow: 0 30px 80px rgba(0, 0, 0, .36);
}


.bn-guidance-card:before {
   content: '';
   position: absolute;
   inset: 10px;
   border: 1px solid rgba(210, 163, 94, .1);
   pointer-events: none;
}


.bn-guidance-card-head {
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 25px;
}


.bn-guidance-card-head > span {
   color: var(--gold);
   font-size: 9px;
   font-weight: 700;
   letter-spacing: .2em;
   text-transform: uppercase;
}


.bn-guidance-symbol {
   width: 58px;
   height: 58px;
   display: grid;
   place-items: center;
   border: 1px solid var(--line-gold);
   border-radius: 50%;
   color: var(--gold-bright);
   font-size: 21px;
}


.bn-guidance-card h2 {
   position: relative;
   z-index: 2;
   margin: 0;
   color: var(--paper);
   font: 400 34px/1.12 var(--forum);
}


.bn-guidance-card > p {
   position: relative;
   z-index: 2;
   margin: 16px 0 0;
   color: #9da7b2;
   font-size: 13px;
   line-height: 1.7;
}


.bn-guidance-line {
   position: relative;
   z-index: 2;
   height: 1px;
   margin: 27px 0;
   background: var(--line);
}


.bn-guidance-step {
   position: relative;
   z-index: 2;
   display: grid;
   grid-template-columns: 34px 1fr;
   gap: 14px;
   margin-top: 20px;
}


.bn-guidance-step > span {
   width: 34px;
   height: 34px;
   display: grid;
   place-items: center;
   border: 1px solid rgba(210, 163, 94, .3);
   border-radius: 50%;
   color: var(--gold);
   font: 12px var(--forum);
}


.bn-guidance-step strong {
   display: block;
   color: var(--paper);
   font-size: 13px;
   font-weight: 600;
}


.bn-guidance-step small {
   display: block;
   margin-top: 3px;
   color: var(--dim);
   font-size: 10px;
   line-height: 1.5;
}



/* =========================================================
   02. CHOOSE YOUR READING
========================================================= */

.bn-reading-section {
   position: relative;
   padding: 110px clamp(24px, 7vw, 110px);
   border-bottom: 1px solid var(--line);
}


.bn-section-head {
   width: min(760px, 100%);
   margin: 0 auto 60px;
   text-align: center;
}


.bn-section-head .bn-kicker {
   justify-content: center;
}


.bn-section-head h2 {
   margin: 0;
   color: var(--paper);
   font: 400 clamp(42px, 5vw, 66px)/1 var(--forum);
}


.bn-section-head > p {
   max-width: 620px;
   margin: 22px auto 0;
   color: #aeb6c0;
   font-size: 15px;
   line-height: 1.75;
}


.bn-reading-grid {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 18px;
   width: min(1320px, 100%);
   margin: auto;
}


.bn-reading-card {
   position: relative;
   min-height: 390px;
   padding: 30px 27px 27px;
   display: flex;
   flex-direction: column;
   overflow: hidden;
   border: 1px solid var(--line);
   background:
      linear-gradient(
         145deg,
         rgba(20, 31, 45, .82),
         rgba(8, 13, 21, .8)
      );
   transition:
      transform .4s var(--ease),
      border-color .35s ease,
      box-shadow .35s ease;
}


.bn-reading-card:hover {
   transform: translateY(-8px);
   border-color: var(--line-gold);
   box-shadow: 0 25px 70px rgba(0, 0, 0, .32);
}


.bn-reading-card-featured {
   border-color: var(--gold);
   background:
      linear-gradient(
         145deg,
         rgba(70, 52, 34, .62),
         rgba(12, 19, 29, .94)
      );
}


.bn-reading-badge {
   position: absolute;
   top: 20px;
   right: 20px;
   padding: 6px 11px;
   border-radius: 999px;
   background: var(--gold);
   color: var(--night);
   font-size: 8px;
   font-weight: 800;
   letter-spacing: .12em;
   text-transform: uppercase;
}


.bn-reading-top {
   display: flex;
   flex-direction: column;
   gap: 24px;
   margin-bottom: 29px;
}


.bn-reading-number {
   color: var(--dim);
   font: 13px var(--forum);
}


.bn-reading-icon {
   width: 54px;
   height: 54px;
   display: grid;
   place-items: center;
   border: 1px solid var(--line-gold);
   border-radius: 50%;
   color: var(--gold);
   font-size: 20px;
}


.bn-reading-card h3 {
   margin: 0;
   color: var(--paper);
   font: 400 27px/1.08 var(--forum);
}


.bn-reading-card > p {
   margin: 15px 0 0;
   color: #9da6b0;
   font-size: 13px;
   line-height: 1.7;
}


.bn-reading-bottom {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 15px;
   margin-top: auto;
   padding-top: 22px;
   border-top: 1px solid var(--line);
}


.bn-reading-bottom > span {
   display: flex;
   align-items: center;
   gap: 7px;
   color: var(--dim);
   font-size: 10px;
}


.bn-reading-bottom > span i {
   color: var(--gold);
}


.bn-reading-bottom a {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   color: var(--gold-bright);
   font-size: 10px;
   font-weight: 700;
   letter-spacing: .08em;
   text-transform: uppercase;
}


.bn-reading-bottom a i {
   transition: transform .3s var(--ease);
}


.bn-reading-bottom a:hover i {
   transform: translate(3px, -3px);
}



/* =========================================================
   03. BOOK YOUR CONSULTATION
========================================================= */

.bn-form-section {
   position: relative;
   padding: 110px clamp(24px, 7vw, 110px);
   border-bottom: 1px solid var(--line);
}


.bn-form-head {
   width: min(750px, 100%);
   margin-bottom: 45px;
}


.bn-form-head h2 {
   margin: 0;
   color: var(--paper);
   font: 400 clamp(42px, 5vw, 65px)/1.04 var(--forum);
}


.bn-form-head > p {
   max-width: 620px;
   margin: 20px 0 0;
   color: #aeb6c0;
   font-size: 15px;
   line-height: 1.75;
}


.bn-form-box {
   width: min(1050px, 100%);
   padding: 45px;
   border: 1px solid var(--line);
   background:
      linear-gradient(
         145deg,
         rgba(18, 29, 42, .72),
         rgba(7, 12, 20, .78)
      );
   box-shadow: 0 25px 75px rgba(0, 0, 0, .24);
}


.bn-form-block {
   margin-bottom: 40px;
   padding-bottom: 40px;
   border-bottom: 1px solid var(--line);
}


.bn-form-block:last-child {
   margin-bottom: 0;
   padding-bottom: 0;
   border-bottom: 0;
}


.bn-form-block-head {
   display: flex;
   gap: 15px;
   margin-bottom: 25px;
}


.bn-form-block-head > span {
   width: 37px;
   height: 37px;
   min-width: 37px;
   display: grid;
   place-items: center;
   border: 1px solid var(--gold);
   border-radius: 50%;
   color: var(--gold);
   font: 13px var(--forum);
}


.bn-form-block-head h3 {
   margin: 0;
   color: var(--paper);
   font: 400 24px/1.15 var(--forum);
}


.bn-form-block-head p {
   margin: 4px 0 0;
   color: var(--dim);
   font-size: 11px;
}



/* =========================================================
   CONSULTATION SELECT
========================================================= */

.bn-service-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 14px;
}


.bn-service-option {
   cursor: pointer;
}


.bn-service-option > input {
   position: absolute;
   opacity: 0;
   pointer-events: none;
}


.bn-service-option-content {
   min-height: 88px;
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 16px;
   border: 1px solid var(--line);
   background: rgba(255, 255, 255, .018);
   transition:
      border-color .3s ease,
      background .3s ease,
      transform .3s var(--ease);
}


.bn-service-option:hover .bn-service-option-content {
   border-color: var(--line-gold);
   background: rgba(210, 163, 94, .035);
}


.bn-service-option-icon {
   width: 43px;
   height: 43px;
   min-width: 43px;
   display: grid;
   place-items: center;
   border: 1px solid var(--line-gold);
   border-radius: 50%;
   color: var(--gold);
}


.bn-service-option-text {
   flex: 1;
}


.bn-service-option-text strong {
   display: block;
   color: var(--paper);
   font-size: 12px;
}


.bn-service-option-text small {
   display: block;
   margin-top: 3px;
   color: var(--dim);
   font-size: 9px;
}


.bn-radio {
   position: relative;
   width: 18px;
   height: 18px;
   min-width: 18px;
   border: 1px solid #778392;
   border-radius: 50%;
}


.bn-service-option > input:checked + .bn-service-option-content {
   border-color: var(--gold);
   background: rgba(210, 163, 94, .08);
}


.bn-service-option > input:checked + .bn-service-option-content .bn-radio {
   border-color: var(--gold);
}


.bn-service-option > input:checked + .bn-service-option-content .bn-radio:after {
   content: '';
   position: absolute;
   inset: 4px;
   border-radius: 50%;
   background: var(--gold);
}



/* =========================================================
   FORM GRID + INPUTS
========================================================= */

.bn-field-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 20px;
}


.bn-field-grid-three {
   grid-template-columns: repeat(3, minmax(0, 1fr));
}


.bn-field label {
   display: block;
   margin-bottom: 8px;
   color: #d7c8b6;
   font-size: 10px;
   font-weight: 700;
   letter-spacing: .08em;
   text-transform: uppercase;
}


.bn-input-wrap {
   position: relative;
}


.bn-input-wrap > i {
   position: absolute;
   z-index: 2;
   left: 16px;
   top: 50%;
   transform: translateY(-50%);
   color: var(--gold);
   font-size: 14px;
   pointer-events: none;
}


.bn-input,
.bn-select,
.bn-textarea {
   width: 100%;
   min-height: 54px;
   border: 1px solid var(--line);
   border-radius: 0;
   outline: 0;
   background: rgba(5, 12, 22, .62);
   color: var(--paper);
   padding: 14px 16px;
   font: 400 13px var(--mulish);
   transition:
      border-color .25s ease,
      background .25s ease;
}


.bn-input-wrap .bn-input,
.bn-input-wrap .bn-select {
   padding-left: 45px;
}


.bn-input:focus,
.bn-select:focus,
.bn-textarea:focus {
   border-color: var(--gold);
   background: rgba(8, 16, 27, .9);
}


.bn-input::placeholder,
.bn-textarea::placeholder {
   color: #697483;
}


.bn-select {
   appearance: auto;
}


.bn-textarea {
   min-height: 150px;
   resize: vertical;
}


.bn-form-note {
   display: flex;
   align-items: flex-start;
   gap: 9px;
   margin-top: 16px;
   padding: 13px 15px;
   border: 1px solid rgba(107, 182, 198, .18);
   background: rgba(107, 182, 198, .05);
   color: #8e9aa7;
   font-size: 10px;
   line-height: 1.6;
}


.bn-form-note i {
   color: var(--cyan);
}


.bn-consent {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   margin-top: 20px;
   color: var(--dim);
   font-size: 10px;
   line-height: 1.6;
   cursor: pointer;
}


.bn-consent input {
   margin-top: 4px;
   accent-color: var(--gold);
}


.bn-submit {
   width: 100%;
   min-height: 58px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   margin-top: 23px;
   padding: 0 20px 0 23px;
   border: 1px solid var(--gold);
   background: var(--gold);
   color: var(--night);
   font-size: 11px;
   font-weight: 800;
   letter-spacing: .12em;
   text-transform: uppercase;
   transition:
      background .3s var(--ease),
      color .3s var(--ease),
      transform .3s var(--ease),
      box-shadow .3s ease;
}


.bn-submit i {
   width: 35px;
   height: 35px;
   display: grid;
   place-items: center;
   border: 1px solid rgba(7, 11, 18, .18);
   border-radius: 50%;
   transition: transform .3s var(--ease);
}


.bn-submit:hover {
   background: var(--gold-bright);
   transform: translateY(-2px);
   box-shadow: 0 15px 40px rgba(210, 163, 94, .2);
}


.bn-submit:hover i {
   transform: rotate(45deg);
}



/* =========================================================
   04. SIMPLE PROCESS
========================================================= */

.bn-process-section {
   position: relative;
   padding: 110px clamp(24px, 7vw, 110px);
}


.bn-process-head {
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr);
   align-items: end;
   gap: 50px;
   width: min(1320px, 100%);
   margin: 0 auto 55px;
}


.bn-process-head h2 {
   max-width: 720px;
   margin: 0;
   color: var(--paper);
   font: 400 clamp(42px, 5vw, 65px)/1.03 var(--forum);
}


.bn-process-head > p {
   max-width: 470px;
   margin: 0 0 4px auto;
   color: #aeb6c0;
   font-size: 14px;
   line-height: 1.75;
}


.bn-process-grid {
   display: grid;
   grid-template-columns:
      minmax(0, 1fr)
      50px
      minmax(0, 1fr)
      50px
      minmax(0, 1fr)
      50px
      minmax(0, 1fr);
   align-items: center;
   width: min(1320px, 100%);
   margin: auto;
}


.bn-process-card {
   min-height: 270px;
   padding: 28px;
   border: 1px solid var(--line);
   background:
      linear-gradient(
         145deg,
         rgba(19, 30, 43, .76),
         rgba(8, 13, 21, .78)
      );
   transition:
      transform .4s var(--ease),
      border-color .35s ease,
      box-shadow .35s ease;
}


.bn-process-card:hover {
   transform: translateY(-7px);
   border-color: var(--line-gold);
   box-shadow: 0 24px 65px rgba(0, 0, 0, .28);
}


.bn-process-card-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 58px;
}


.bn-process-card-top > span {
   color: var(--gold);
   font: 13px var(--forum);
}


.bn-process-card-top i {
   color: var(--gold);
   font-size: 25px;
}


.bn-process-card h3 {
   margin: 0;
   color: var(--paper);
   font: 400 25px/1.08 var(--forum);
}


.bn-process-card > p {
   margin: 13px 0 0;
   color: #9ca6b1;
   font-size: 12px;
   line-height: 1.7;
}


.bn-process-arrow {
   display: grid;
   place-items: center;
   color: var(--gold);
   opacity: .55;
}



/* =========================================================
   HOVER / MOTION
========================================================= */

@media (prefers-reduced-motion: no-preference) {

   .bn-reading-card,
   .bn-process-card,
   .bn-guidance-card {
      will-change: transform;
   }

}


/* =========================================================
   RESPONSIVE - 1200
========================================================= */

@media (max-width: 1200px) {

   .bn-reading-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }


   .bn-process-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
   }


   .bn-process-arrow {
      display: none;
   }

}


/* =========================================================
   RESPONSIVE - 900
========================================================= */

@media (max-width: 900px) {

   .bn-guidance {
      min-height: 0;
      padding: 125px 22px 75px;
   }


   .bn-guidance-grid {
      grid-template-columns: 1fr;
      gap: 45px;
   }


   .bn-guidance-card {
      max-width: 100%;
      margin: 0;
   }


   .bn-reading-section,
   .bn-form-section,
   .bn-process-section {
      padding: 80px 22px;
   }


   .bn-process-head {
      grid-template-columns: 1fr;
      gap: 20px;
   }


   .bn-process-head > p {
      margin: 0;
   }


   .bn-field-grid-three {
      grid-template-columns: 1fr 1fr;
   }

}


/* =========================================================
   RESPONSIVE - 650
========================================================= */

@media (max-width: 650px) {

   .bn-guidance {
      padding: 110px 18px 60px;
   }


   .bn-guidance-copy h1 {
      font-size: 46px;
   }


   .bn-guidance-copy > p {
      font-size: 15px;
   }


   .bn-guidance-actions {
      align-items: stretch;
      flex-direction: column;
   }


   .bn-guidance-link {
      justify-content: center;
   }


   .bn-guidance-points {
      flex-direction: column;
      gap: 12px;
   }


   .bn-guidance-card {
      padding: 27px 22px;
   }


   .bn-guidance-card h2 {
      font-size: 29px;
   }


   .bn-reading-section,
   .bn-form-section,
   .bn-process-section {
      padding: 65px 18px;
   }


   .bn-section-head {
      margin-bottom: 40px;
   }


   .bn-section-head h2,
   .bn-form-head h2,
   .bn-process-head h2 {
      font-size: 39px;
   }


   .bn-reading-grid {
      grid-template-columns: 1fr;
   }


   .bn-reading-card {
      min-height: 340px;
   }


   .bn-form-box {
      padding: 27px 18px;
   }


   .bn-service-grid,
   .bn-field-grid,
   .bn-field-grid-three {
      grid-template-columns: 1fr;
   }


   .bn-form-block {
      margin-bottom: 32px;
      padding-bottom: 32px;
   }


   .bn-process-grid {
      grid-template-columns: 1fr;
   }


   .bn-process-card {
      min-height: 0;
   }


   .bn-process-card-top {
      margin-bottom: 38px;
   }

}


/* =========================================================
   RESPONSIVE - 420
========================================================= */

@media (max-width: 420px) {

   .bn-guidance-copy h1 {
      font-size: 40px;
   }


   .bn-guidance-card {
      padding: 24px 18px;
   }


   .bn-section-head h2,
   .bn-form-head h2,
   .bn-process-head h2 {
      font-size: 35px;
   }


   .bn-reading-card {
      padding: 24px 21px;
   }


   .bn-form-box {
      padding: 24px 14px;
   }


   .bn-service-option-content {
      padding: 13px;
   }

}


/* =========================================================
   ASTRO SPIRIT PRICING PAGE
   Prefix: asp-price-
   Existing global CSS remains untouched
========================================================= */


/* =========================================================
   01. SHARED
========================================================= */

.asp-price-page {
   position: relative;
   overflow: hidden;
}


.asp-price-container {
   width: min(1360px, calc(100% - 48px));
   margin: 0 auto;
}


.asp-price-kicker {
   display: flex;
   align-items: center;
   gap: 11px;
   margin: 0 0 18px;
   color: var(--gold, #d2a35e);
   font-size: 11px;
   font-weight: 700;
   letter-spacing: .19em;
   text-transform: uppercase;
}


.asp-price-kicker > span {
   color: var(--cyan, #6bb6c6);
   font-family: var(--forum, Georgia, serif);
   font-size: 13px;
   font-weight: 400;
}


.asp-price-main-btn,
.asp-price-outline-btn {
   min-height: 52px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 13px;
   padding: 0 22px;
   border: 1px solid var(--gold, #d2a35e);
   color: var(--night, #070b12);
   background: var(--gold, #d2a35e);
   font-size: 10px;
   font-weight: 800;
   letter-spacing: .13em;
   text-transform: uppercase;
   transition:
      background .3s ease,
      color .3s ease,
      transform .3s ease,
      box-shadow .3s ease;
}


.asp-price-main-btn:hover {
   color: var(--night, #070b12);
   background: var(--gold-bright, #f0c87c);
   transform: translateY(-2px);
   box-shadow: 0 16px 40px rgba(210, 163, 94, .18);
}


.asp-price-outline-btn {
   color: var(--gold-bright, #f0c87c);
   background: transparent;
}


.asp-price-outline-btn:hover {
   color: var(--night, #070b12);
   background: var(--gold, #d2a35e);
   transform: translateY(-2px);
}


.asp-price-main-btn i,
.asp-price-outline-btn i {
   transition: transform .3s ease;
}


.asp-price-main-btn:hover i,
.asp-price-outline-btn:hover i {
   transform: translate(3px, -3px);
}



/* =========================================================
   02. HERO
========================================================= */

.asp-price-hero {
   position: relative;
   min-height: 650px;
   padding: 170px 0 95px;
   overflow: hidden;
   border-bottom: 1px solid var(--line, rgba(219, 220, 219, .18));
}


.asp-price-hero-glow {
   position: absolute;
   border-radius: 50%;
   pointer-events: none;
   filter: blur(10px);
}


.asp-price-hero-glow-one {
   width: 560px;
   height: 560px;
   right: -220px;
   top: -230px;
   border: 1px solid rgba(210, 163, 94, .14);
   box-shadow: inset 0 0 100px rgba(210, 163, 94, .025);
}


.asp-price-hero-glow-two {
   width: 380px;
   height: 380px;
   left: -210px;
   bottom: -240px;
   border: 1px solid rgba(107, 182, 198, .14);
}


.asp-price-hero-inner {
   position: relative;
   z-index: 2;
   display: grid;
   grid-template-columns: minmax(0, 1.15fr) minmax(330px, .7fr);
   align-items: center;
   gap: clamp(50px, 8vw, 60px);
}


.asp-price-hero-copy {
   max-width: 780px;
}


.asp-price-hero-copy h1 {
   margin: 0;
   color: var(--paper, #f3eee5);
   font: 400 clamp(58px, 6.4vw, 92px)/.95 var(--forum, Georgia, serif);
   letter-spacing: -.02em;
   text-transform: uppercase;
}


.asp-price-hero-copy h1 em {
   display: block;
   color: var(--gold, #d2a35e);
   font-style: normal;
}


.asp-price-hero-lede {
   max-width: 650px;
   margin: 30px 0 0;
   color: #adb6c0;
   font-size: 17px;
   line-height: 1.8;
}


.asp-price-hero-links {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 24px;
   margin-top: 35px;
}


.asp-price-text-link {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   color: #aeb7c1;
   font-size: 10px;
   font-weight: 700;
   letter-spacing: .12em;
   text-transform: uppercase;
}


.asp-price-text-link i {
   color: var(--gold, #d2a35e);
   transition: transform .3s ease;
}


.asp-price-text-link:hover {
   color: var(--gold-bright, #f0c87c);
}


.asp-price-text-link:hover i {
   transform: translateX(5px);
}



/* Hero price panel */

.asp-price-hero-panel {
   padding: 34px;
   border: 1px solid var(--line-gold, rgba(210, 163, 94, .45));
   background:
      linear-gradient(
         145deg,
         rgba(18, 29, 42, .88),
         rgba(7, 12, 19, .9)
      );
   box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}


.asp-price-hero-panel-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-bottom: 22px;
   border-bottom: 1px solid var(--line, rgba(219, 220, 219, .18));
   color: var(--gold, #d2a35e);
   font-size: 9px;
   font-weight: 700;
   letter-spacing: .18em;
   text-transform: uppercase;
}


.asp-price-hero-panel-top i {
   font-size: 21px;
}


.asp-price-mini-plan {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   padding: 22px 0;
   border-bottom: 1px solid var(--line, rgba(219, 220, 219, .18));
}


.asp-price-mini-plan:last-child {
   border-bottom: 0;
}


.asp-price-mini-plan small {
   display: block;
   color: #8995a3;
   font-size: 9px;
   letter-spacing: .1em;
   text-transform: uppercase;
}


.asp-price-mini-plan strong {
   display: block;
   margin-top: 5px;
   color: var(--paper, #f3eee5);
   font: 400 25px/1 var(--forum, Georgia, serif);
}


.asp-price-mini-plan > span {
   padding: 6px 10px;
   border: 1px solid var(--line, rgba(219, 220, 219, .18));
   border-radius: 999px;
   color: var(--cyan, #6bb6c6);
   font-size: 9px;
}


.asp-price-mini-plan-featured {
   position: relative;
}


.asp-price-mini-plan-featured:before {
   content: '';
   position: absolute;
   left: -34px;
   top: 0;
   bottom: 0;
   width: 2px;
   background: var(--gold, #d2a35e);
}



/* =========================================================
   03. PLAN SECTIONS
========================================================= */

.asp-price-service-section {
   position: relative;
   padding: 60px 0;
   border-bottom: 1px solid var(--line, rgba(219, 220, 219, .18));
}


.asp-price-service-highlight {
   background:
      radial-gradient(
         circle at 50% 0%,
         rgba(210, 163, 94, .07),
         transparent 33%
      );
}


.asp-price-highlight-label {
   width: fit-content;
   margin-bottom: 27px;
   padding: 7px 13px;
   border: 1px solid var(--gold, #d2a35e);
   color: var(--gold-bright, #f0c87c);
   font-size: 9px;
   font-weight: 800;
   letter-spacing: .15em;
   text-transform: uppercase;
}


.asp-price-section-head {
   display: grid;
   grid-template-columns: minmax(0, 1fr) auto;
   align-items: end;
   gap: 60px;
}


.asp-price-section-head h2 {
   max-width: 800px;
   margin: 0;
   color: var(--paper, #f3eee5);
   font: 400 clamp(44px, 5vw, 70px)/1 var(--forum, Georgia, serif);
   text-transform: uppercase;
}


.asp-price-section-head h2 em {
   color: var(--gold, #d2a35e);
   font-style: normal;
}


.asp-price-section-price {
   min-width: 260px;
   padding: 0 0 5px 28px;
   border-left: 1px solid var(--line-gold, rgba(210, 163, 94, .45));
}


.asp-price-section-price > span {
   color: var(--dim, #84909f);
   font-size: 9px;
   font-weight: 700;
   letter-spacing: .14em;
   text-transform: uppercase;
}


.asp-price-section-price > strong {
   display: flex;
   align-items: flex-start;
   gap: 7px;
   margin-top: 5px;
   color: var(--paper, #f3eee5);
   font: 400 52px/1 var(--forum, Georgia, serif);
}


.asp-price-section-price > strong small {
   margin-top: 7px;
   color: var(--gold, #d2a35e);
   font-size: 18px;
}


.asp-price-section-price > div {
   display: flex;
   flex-wrap: wrap;
   gap: 7px;
   margin-top: 13px;
}


.asp-price-section-price > div span {
   padding: 5px 9px;
   border: 1px solid var(--line, rgba(219, 220, 219, .18));
   border-radius: 999px;
   color: var(--cyan, #6bb6c6);
   font-size: 9px;
}


.asp-price-section-intro {
   max-width: 770px;
   margin: 31px 0 55px;
   color: #a7b0ba;
   font-size: 16px;
   line-height: 1.8;
}



/* =========================================================
   04. SERVICE DETAIL CARDS
========================================================= */

.asp-price-detail-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 18px;
}


.asp-price-detail-grid-three {
   grid-template-columns: repeat(3, minmax(0, 1fr));
}


.asp-price-detail-card {
   min-height: 320px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   border: 1px solid var(--line, rgba(219, 220, 219, .18));
   background:
      linear-gradient(
         145deg,
         rgba(19, 31, 44, .68),
         rgba(7, 12, 20, .75)
      );
   transition:
      transform .4s ease,
      border-color .35s ease,
      box-shadow .35s ease;
}


.asp-price-detail-card:hover {
   transform: translateY(-7px);
   border-color: var(--line-gold, rgba(210, 163, 94, .45));
   box-shadow: 0 25px 65px rgba(0, 0, 0, .28);
}


.asp-price-detail-card-large {
   min-height: 410px;
}


.asp-price-detail-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 35px;
}


.asp-price-detail-top > span {
   color: var(--dim, #84909f);
   font: 13px var(--forum, Georgia, serif);
}


.asp-price-detail-icon {
   width: 48px;
   height: 48px;
   display: grid;
   place-items: center;
   border: 1px solid var(--line-gold, rgba(210, 163, 94, .45));
   border-radius: 50%;
   color: var(--gold, #d2a35e);
   font-size: 19px;
}


.asp-price-detail-card h3 {
   margin: 0;
   color: var(--paper, #f3eee5);
   font: 400 28px/1.1 var(--forum, Georgia, serif);
}


.asp-price-detail-card > p {
   margin: 15px 0 0;
   color: #9da7b1;
   font-size: 13px;
   line-height: 1.75;
}


.asp-price-detail-note {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-top: auto;
   padding-top: 22px;
   border-top: 1px solid var(--line, rgba(219, 220, 219, .18));
   color: #8e99a5;
   font-size: 10px;
}


.asp-price-detail-note i {
   color: var(--gold, #d2a35e);
}


.asp-price-detail-list {
   margin: 23px 0 0;
   padding: 20px 0 0;
   list-style: none;
   border-top: 1px solid var(--line, rgba(219, 220, 219, .18));
}


.asp-price-detail-list li {
   position: relative;
   padding: 0 0 12px 19px;
   color: #a3adb7;
   font-size: 12px;
   line-height: 1.55;
}


.asp-price-detail-list li:last-child {
   padding-bottom: 0;
}


.asp-price-detail-list li:before {
   content: '';
   position: absolute;
   left: 1px;
   top: 7px;
   width: 6px;
   height: 6px;
   background: var(--gold, #d2a35e);
   transform: rotate(45deg);
}



/* =========================================================
   05. PLAN CTA
========================================================= */

.asp-price-section-cta {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 30px;
   margin-top: 38px;
   padding: 25px 28px;
   border: 1px solid var(--line, rgba(219, 220, 219, .18));
   background: rgba(255, 255, 255, .018);
}


.asp-price-section-cta-featured {
   border-color: var(--line-gold, rgba(210, 163, 94, .45));
   background: rgba(210, 163, 94, .045);
}


.asp-price-section-cta > div span {
   display: block;
   color: var(--dim, #84909f);
   font-size: 9px;
   letter-spacing: .14em;
   text-transform: uppercase;
}


.asp-price-section-cta > div strong {
   display: block;
   margin-top: 4px;
   color: var(--paper, #f3eee5);
   font: 400 23px var(--forum, Georgia, serif);
}



/* =========================================================
   06. INVESTIGATION
========================================================= */

.asp-price-investigation-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 20px;
}


.asp-price-investigation-card {
   position: relative;
   min-height: 350px;
   display: grid;
   grid-template-columns: 38px 58px 1fr;
   align-items: start;
   gap: 20px;
   padding: 32px;
   border: 1px solid var(--line, rgba(219, 220, 219, .18));
   background:
      linear-gradient(
         145deg,
         rgba(18, 29, 42, .73),
         rgba(7, 12, 19, .8)
      );
}


.asp-price-investigation-number {
   color: var(--dim, #84909f);
   font: 13px var(--forum, Georgia, serif);
}


.asp-price-investigation-icon {
   width: 54px;
   height: 54px;
   display: grid;
   place-items: center;
   border: 1px solid var(--line-gold, rgba(210, 163, 94, .45));
   border-radius: 50%;
   color: var(--gold, #d2a35e);
   font-size: 20px;
}


.asp-price-investigation-card h3 {
   margin: 0;
   color: var(--paper, #f3eee5);
   font: 400 30px/1.1 var(--forum, Georgia, serif);
}


.asp-price-investigation-card p {
   margin: 15px 0 0;
   color: #9fa9b3;
   font-size: 13px;
   line-height: 1.75;
}


.asp-price-investigation-card .asp-price-detail-list {
   margin-top: 24px;
}


.asp-price-investigation-note {
   display: flex;
   align-items: flex-start;
   gap: 15px;
   max-width: 760px;
   margin-top: 26px;
   padding: 18px 20px;
   border: 1px solid rgba(107, 182, 198, .18);
   background: rgba(107, 182, 198, .04);
}


.asp-price-investigation-note > i {
   margin-top: 3px;
   color: var(--cyan, #6bb6c6);
}


.asp-price-investigation-note strong {
   color: var(--paper, #f3eee5);
   font-size: 12px;
}


.asp-price-investigation-note p {
   margin: 4px 0 0;
   color: var(--dim, #84909f);
   font-size: 11px;
   line-height: 1.6;
}



/* =========================================================
   07. PRICING SUMMARY
========================================================= */

.asp-price-summary-section {
   padding: 60px 0;
}


.asp-price-summary-head {
   width: min(780px, 100%);
   margin: 0 auto 60px;
   text-align: center;
}


.asp-price-summary-head .asp-price-kicker {
   justify-content: center;
}


.asp-price-summary-head h2 {
   margin: 0;
   color: var(--paper, #f3eee5);
   font: 400 clamp(44px, 5vw, 68px)/1 var(--forum, Georgia, serif);
   text-transform: uppercase;
}


.asp-price-summary-head h2 em {
   color: var(--gold, #d2a35e);
   font-style: normal;
}


.asp-price-summary-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 20px;
   align-items: stretch;
}


.asp-price-summary-card {
   position: relative;
   min-height: 430px;
   padding: 35px 30px;
   display: flex;
   flex-direction: column;
   border: 1px solid var(--line, rgba(219, 220, 219, .18));
   background:
      linear-gradient(
         155deg,
         rgba(20, 32, 45, .72),
         rgba(7, 12, 19, .8)
      );
}


.asp-price-summary-featured {
   border-color: var(--gold, #d2a35e);
   background:
      linear-gradient(
         155deg,
         rgba(76, 56, 33, .4),
         rgba(9, 16, 24, .88)
      );
   transform: translateY(-12px);
}


.asp-price-summary-popular {
   position: absolute;
   top: 0;
   left: 50%;
   transform: translate(-50%, -50%);
   padding: 7px 15px;
   border-radius: 999px;
   color: var(--night, #070b12);
   background: var(--gold, #d2a35e);
   font-size: 8px;
   font-weight: 800;
   letter-spacing: .14em;
   text-transform: uppercase;
   white-space: nowrap;
}


.asp-price-summary-label {
   color: var(--gold, #d2a35e);
   font: 400 23px var(--forum, Georgia, serif);
}


.asp-price-summary-value {
   display: flex;
   align-items: flex-start;
   gap: 7px;
   margin-top: 28px;
}


.asp-price-summary-value small {
   margin-top: 10px;
   color: var(--gold, #d2a35e);
   font: 400 18px var(--forum, Georgia, serif);
}


.asp-price-summary-value strong {
   color: var(--paper, #f3eee5);
   font: 400 55px/.9 var(--forum, Georgia, serif);
}


.asp-price-summary-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 23px;
}


.asp-price-summary-meta span {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 6px 10px;
   border: 1px solid var(--line, rgba(219, 220, 219, .18));
   border-radius: 999px;
   color: var(--cyan, #6bb6c6);
   font-size: 9px;
}


.asp-price-summary-card > p {
   margin: 30px 0 0;
   padding-top: 25px;
   border-top: 1px solid var(--line, rgba(219, 220, 219, .18));
   color: #9da7b1;
   font-size: 13px;
   line-height: 1.7;
}


.asp-price-summary-card > a {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-top: auto;
   padding-top: 25px;
   color: var(--gold-bright, #f0c87c);
   font-size: 10px;
   font-weight: 800;
   letter-spacing: .13em;
   text-transform: uppercase;
}


.asp-price-summary-card > a i {
   font-size: 16px;
   transition: transform .3s ease;
}


.asp-price-summary-card > a:hover i {
   transform: translate(3px, -3px);
}


.asp-price-final-note {
   display: grid;
   grid-template-columns: 1fr auto 1fr;
   align-items: center;
   gap: 20px;
   margin-top: 55px;
   color: var(--dim, #84909f);
   text-align: center;
}


.asp-price-final-note > span {
   height: 1px;
   background:
      linear-gradient(
         90deg,
         transparent,
         var(--line, rgba(219, 220, 219, .18))
      );
}


.asp-price-final-note > span:last-child {
   background:
      linear-gradient(
         270deg,
         transparent,
         var(--line, rgba(219, 220, 219, .18))
      );
}


.asp-price-final-note p {
   max-width: 680px;
   margin: 0;
   font-size: 11px;
}



/* =========================================================
   08. RESPONSIVE - 1100PX
========================================================= */

@media (max-width: 1100px) {

   .asp-price-hero-inner {
      grid-template-columns: 1fr;
   }


   .asp-price-hero-panel {
      max-width: 650px;
   }


   .asp-price-section-head {
      grid-template-columns: 1fr;
      gap: 28px;
   }


   .asp-price-section-price {
      width: fit-content;
   }


   .asp-price-detail-grid,
   .asp-price-detail-grid-three {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }


   .asp-price-summary-grid {
      grid-template-columns: 1fr;
      max-width: 650px;
      margin: auto;
   }


   .asp-price-summary-featured {
      transform: none;
   }

}



/* =========================================================
   09. RESPONSIVE - 800PX
========================================================= */

@media (max-width: 800px) {

   .asp-price-container {
      width: min(100% - 40px, 1360px);
   }


   .asp-price-hero {
      min-height: 0;
      padding: 130px 0 75px;
   }


   .asp-price-service-section,
   .asp-price-summary-section {
      padding: 80px 0;
   }


   .asp-price-investigation-grid {
      grid-template-columns: 1fr;
   }


   .asp-price-section-cta {
      align-items: flex-start;
      flex-direction: column;
   }

}



/* =========================================================
   10. RESPONSIVE - 600PX
========================================================= */

@media (max-width: 600px) {

   .asp-price-container {
      width: calc(100% - 34px);
   }


   .asp-price-hero {
      padding: 115px 0 60px;
   }


   .asp-price-hero-copy h1 {
      font-size: 48px;
   }


   .asp-price-hero-lede {
      font-size: 15px;
   }


   .asp-price-hero-links {
      align-items: stretch;
      flex-direction: column;
   }


   .asp-price-text-link {
      justify-content: center;
   }


   .asp-price-hero-panel {
      padding: 25px 20px;
   }


   .asp-price-mini-plan-featured:before {
      left: -20px;
   }


   .asp-price-service-section,
   .asp-price-summary-section {
      padding: 65px 0;
   }


   .asp-price-section-head h2,
   .asp-price-summary-head h2 {
      font-size: 39px;
   }


   .asp-price-section-price {
      padding-left: 20px;
   }


   .asp-price-detail-grid,
   .asp-price-detail-grid-three {
      grid-template-columns: 1fr;
   }


   .asp-price-detail-card,
   .asp-price-detail-card-large {
      min-height: 0;
   }


   .asp-price-investigation-card {
      min-height: 0;
      grid-template-columns: 34px 1fr;
      padding: 25px 20px;
   }


   .asp-price-investigation-icon {
      grid-column: 2;
      grid-row: 1;
   }


   .asp-price-investigation-card > div:last-child {
      grid-column: 1 / -1;
   }


   .asp-price-section-cta {
      padding: 21px 18px;
   }


   .asp-price-main-btn,
   .asp-price-outline-btn {
      width: 100%;
   }


   .asp-price-final-note {
      display: block;
   }


   .asp-price-final-note > span {
      display: none;
   }

}



/* =========================================================
   11. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

   .asp-price-hero-copy h1 {
      font-size: 42px;
   }


   .asp-price-section-head h2,
   .asp-price-summary-head h2 {
      font-size: 35px;
   }


   .asp-price-section-price > strong {
      font-size: 46px;
   }


   .asp-price-detail-card {
      padding: 24px 20px;
   }


   .asp-price-summary-card {
      padding: 31px 22px;
   }

}

/* =========================================================
   ASTRO SPIRIT PRACTITIONERS PAGE
   Prefix: asp-prac-
========================================================= */


/* =========================================================
   01. SHARED
========================================================= */

.asp-prac-page {
   position: relative;
   overflow: hidden;
}


.asp-prac-container {
   width: min(1360px, calc(100% - 48px));
   margin: 0 auto;
}


.asp-prac-kicker {
   display: flex;
   align-items: center;
   gap: 11px;
   margin: 0 0 19px;
   color: var(--gold);
   font-size: 11px;
   font-weight: 700;
   letter-spacing: .19em;
   text-transform: uppercase;
}


.asp-prac-kicker > span {
   color: var(--cyan);
   font: 400 13px var(--forum);
}


.asp-prac-primary-btn,
.asp-prac-outline-btn {
   min-height: 53px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 13px;
   padding: 0 22px;
   border: 1px solid var(--gold);
   background: var(--gold);
   color: var(--night);
   font-size: 10px;
   font-weight: 800;
   letter-spacing: .13em;
   text-transform: uppercase;
   transition:
      background .3s var(--ease),
      color .3s var(--ease),
      transform .3s var(--ease),
      box-shadow .3s ease;
}


.asp-prac-outline-btn {
   background: transparent;
   color: var(--gold-bright);
}


.asp-prac-primary-btn:hover,
.asp-prac-outline-btn:hover {
   background: var(--gold-bright);
   color: var(--night);
   transform: translateY(-2px);
   box-shadow: 0 16px 42px rgba(210, 163, 94, .18);
}


.asp-prac-primary-btn i,
.asp-prac-outline-btn i {
   transition: transform .3s ease;
}


.asp-prac-primary-btn:hover i,
.asp-prac-outline-btn:hover i {
   transform: translate(3px, -3px);
}



/* =========================================================
   02. HERO
========================================================= */

.asp-prac-hero {
   position: relative;
   min-height: 690px;
   display: flex;
   align-items: center;
   padding: 165px 0 90px;
   overflow: hidden;
   border-bottom: 1px solid var(--line);
}


.asp-prac-hero-orbit {
   position: absolute;
   border: 1px solid rgba(210, 163, 94, .13);
   border-radius: 50%;
   pointer-events: none;
}


.asp-prac-hero-orbit-one {
   width: 650px;
   height: 650px;
   right: -330px;
   top: -320px;
}


.asp-prac-hero-orbit-two {
   width: 390px;
   height: 390px;
   left: -220px;
   bottom: -230px;
   border-color: rgba(107, 182, 198, .14);
}


.asp-prac-hero-grid {
   position: relative;
   z-index: 2;
   display: grid;
   grid-template-columns: minmax(0, 1.15fr) minmax(340px, .75fr);
   align-items: center;
   gap: clamp(55px, 8vw, 60px);
}


.asp-prac-hero-copy {
   max-width: 800px;
}


.asp-prac-hero-copy h1 {
   margin: 0;
   color: var(--paper);
   font: 400 clamp(58px, 6.2vw, 90px)/.96 var(--forum);
   letter-spacing: -.02em;
   text-transform: uppercase;
}


.asp-prac-hero-copy h1 em {
   display: block;
   color: var(--gold);
   font-style: normal;
}


.asp-prac-hero-text {
   max-width: 670px;
   margin: 30px 0 0;
   color: #abb5c0;
   font-size: 17px;
   line-height: 1.8;
}


.asp-prac-hero-actions {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 24px;
   margin-top: 35px;
}


.asp-prac-text-link {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   color: #aab3bd;
   font-size: 10px;
   font-weight: 700;
   letter-spacing: .12em;
   text-transform: uppercase;
}


.asp-prac-text-link i {
   color: var(--gold);
   transition: transform .3s ease;
}


.asp-prac-text-link:hover {
   color: var(--gold-bright);
}


.asp-prac-text-link:hover i {
   transform: translateX(5px);
}



/* Hero stats */

.asp-prac-hero-stat-wrap {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   border: 1px solid var(--line-gold);
   background:
      linear-gradient(
         145deg,
         rgba(20, 31, 45, .82),
         rgba(7, 12, 19, .84)
      );
}


.asp-prac-hero-stat {
   min-height: 155px;
   padding: 27px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   border-right: 1px solid var(--line);
   border-bottom: 1px solid var(--line);
}


.asp-prac-hero-stat:nth-child(2) {
   border-right: 0;
}


.asp-prac-hero-stat strong {
   color: var(--paper);
   font: 400 48px/1 var(--forum);
}


.asp-prac-hero-stat > span {
   margin-top: 8px;
   color: var(--dim);
   font-size: 9px;
   letter-spacing: .14em;
   text-transform: uppercase;
}


.asp-prac-hero-stat-wide {
   grid-column: 1 / -1;
   border-right: 0;
   border-bottom: 0;
}


.asp-prac-hero-stat-wide small {
   color: var(--gold);
   font-size: 9px;
   font-weight: 700;
   letter-spacing: .14em;
   text-transform: uppercase;
}


.asp-prac-hero-stat-wide p {
   margin: 10px 0 0;
   color: #abb4be;
   font-size: 13px;
   line-height: 1.65;
}



/* =========================================================
   03. OVERVIEW
========================================================= */

.asp-prac-overview {
   padding: 115px 0;
   border-bottom: 1px solid var(--line);
}


.asp-prac-section-head {
   width: min(790px, 100%);
   margin-bottom: 58px;
}


.asp-prac-section-head h2 {
   margin: 0;
   color: var(--paper);
   font: 400 clamp(45px, 5vw, 70px)/1 var(--forum);
   text-transform: uppercase;
}


.asp-prac-section-head h2 em {
   color: var(--gold);
   font-style: normal;
}


.asp-prac-section-head > p:last-child {
   max-width: 650px;
   margin: 23px 0 0;
   color: #a6b0ba;
   font-size: 15px;
   line-height: 1.75;
}


.asp-prac-section-head-center {
   margin-left: auto;
   margin-right: auto;
   text-align: center;
}


.asp-prac-section-head-center .asp-prac-kicker {
   justify-content: center;
}


.asp-prac-overview-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 22px;
}


.asp-prac-overview-card {
   min-height: 300px;
   display: grid;
   grid-template-columns: 220px 1fr;
   overflow: hidden;
   border: 1px solid var(--line);
   background:
      linear-gradient(
         145deg,
         rgba(20, 32, 46, .73),
         rgba(7, 12, 20, .77)
      );
   transition:
      transform .4s var(--ease),
      border-color .35s ease,
      box-shadow .35s ease;
}


.asp-prac-overview-card:hover {
   transform: translateY(-6px);
   border-color: var(--line-gold);
   box-shadow: 0 25px 70px rgba(0, 0, 0, .3);
}


.asp-prac-overview-image {
   position: relative;
   min-height: 300px;
   overflow: hidden;
}


.asp-prac-overview-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center top;
   transition: transform .55s var(--ease);
}


.asp-prac-overview-card:hover .asp-prac-overview-image img {
   transform: scale(1.045);
}


.asp-prac-overview-number {
   position: absolute;
   left: 14px;
   bottom: 14px;
   width: 38px;
   height: 38px;
   display: grid;
   place-items: center;
   border: 1px solid rgba(240, 200, 124, .48);
   border-radius: 50%;
   background: rgba(7, 11, 18, .76);
   color: var(--gold-bright);
   font: 12px var(--forum);
   backdrop-filter: blur(6px);
}


.asp-prac-overview-body {
   display: flex;
   flex-direction: column;
   padding: 30px;
}


.asp-prac-overview-experience {
   color: var(--cyan);
   font-size: 9px;
   font-weight: 700;
   letter-spacing: .15em;
   text-transform: uppercase;
}


.asp-prac-overview-body h3 {
   margin: 13px 0 0;
   color: var(--paper);
   font: 400 31px/1.08 var(--forum);
   text-transform: uppercase;
}


.asp-prac-overview-body > p {
   margin: 15px 0 0;
   color: #9fa9b3;
   font-size: 12px;
   line-height: 1.7;
}


.asp-prac-tag-row {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
   margin-top: 20px;
}


.asp-prac-tag-row span {
   padding: 5px 8px;
   border: 1px solid var(--line);
   border-radius: 999px;
   color: #9ea8b3;
   font-size: 8px;
}


.asp-prac-overview-body > a {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-top: auto;
   padding-top: 21px;
   border-top: 1px solid var(--line);
   color: var(--gold-bright);
   font-size: 9px;
   font-weight: 800;
   letter-spacing: .13em;
   text-transform: uppercase;
}


.asp-prac-overview-body > a i {
   font-size: 15px;
   transition: transform .3s ease;
}


.asp-prac-overview-body > a:hover i {
   transform: translate(3px, 3px);
}



/* =========================================================
   04. INDIVIDUAL PROFILES
========================================================= */

.asp-prac-profile-section {
   position: relative;
   padding: 60px 0;
   border-bottom: 1px solid var(--line);
}


.asp-prac-profile-alt {
   background:
      radial-gradient(
         circle at 80% 15%,
         rgba(210, 163, 94, .045),
         transparent 28%
      );
}


.asp-prac-profile-grid {
   display: grid;
   grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
   align-items: center;
   gap: clamp(60px, 9vw, 135px);
}


.asp-prac-profile-grid-reverse {
   grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
}


.asp-prac-profile-visual {
   position: relative;
   width: min(460px, 100%);
}


.asp-prac-profile-grid-reverse .asp-prac-profile-visual {
   justify-self: end;
}


.asp-prac-profile-image {
   position: relative;
   aspect-ratio: 4 / 5;
   overflow: hidden;
   border: 1px solid var(--line-gold);
   padding: 12px;
   background: rgba(255, 255, 255, .02);
}


.asp-prac-profile-image:after {
   content: '';
   position: absolute;
   inset: 12px;
   pointer-events: none;
   background:
      linear-gradient(
         180deg,
         transparent 65%,
         rgba(5, 8, 13, .3)
      );
}


.asp-prac-profile-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center top;
}


.asp-prac-profile-years {
   position: absolute;
   right: -35px;
   bottom: 35px;
   width: 145px;
   min-height: 125px;
   padding: 20px;
   border: 1px solid var(--gold);
   background: rgba(7, 11, 18, .94);
   box-shadow: 0 20px 55px rgba(0, 0, 0, .34);
}


.asp-prac-profile-years strong {
   display: block;
   color: var(--gold-bright);
   font: 400 46px/1 var(--forum);
}


.asp-prac-profile-years span {
   display: block;
   margin-top: 7px;
   color: var(--dim);
   font-size: 8px;
   font-weight: 700;
   line-height: 1.5;
   letter-spacing: .13em;
   text-transform: uppercase;
}


.asp-prac-profile-content {
   max-width: 720px;
}


.asp-prac-profile-content h2 {
   margin: 0;
   color: var(--paper);
   font: 400 clamp(50px, 5.5vw, 78px)/.98 var(--forum);
   text-transform: uppercase;
}


.asp-prac-profile-content h2 em {
   display: block;
   color: var(--gold);
   font-style: normal;
}


.asp-prac-profile-role {
   max-width: 650px;
   margin: 23px 0 0;
   color: var(--cyan);
   font-size: 14px;
   font-weight: 600;
   line-height: 1.65;
   letter-spacing: .07em;
   text-transform: uppercase;
}


.asp-prac-profile-divider {
   height: 1px;
   margin: 30px 0;
   background: var(--line);
}


.asp-prac-profile-info-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 16px;
}


.asp-prac-profile-info-grid > div {
   padding: 19px 20px;
   border: 1px solid var(--line);
   background: rgba(255, 255, 255, .015);
}


.asp-prac-profile-info-grid span,
.asp-prac-small-label {
   display: block;
   color: var(--dim);
   font-size: 9px;
   font-weight: 700;
   letter-spacing: .14em;
   text-transform: uppercase;
}


.asp-prac-profile-info-grid strong {
   display: block;
   margin-top: 6px;
   color: var(--paper);
   font: 400 21px var(--forum);
}


.asp-prac-profile-fields {
   margin-top: 28px;
}


.asp-prac-field-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 10px;
   margin-top: 11px;
}


.asp-prac-field-grid-four {
   grid-template-columns: repeat(2, minmax(0, 1fr));
}


.asp-prac-field-grid > div {
   min-height: 54px;
   padding: 12px;
   display: flex;
   align-items: center;
   gap: 9px;
   border: 1px solid var(--line);
   color: #a9b2bc;
   font-size: 10px;
}


.asp-prac-field-grid i {
   color: var(--gold);
   font-size: 14px;
}


.asp-prac-profile-description {
   margin: 29px 0;
   padding-top: 25px;
   border-top: 1px solid var(--line);
}


.asp-prac-profile-description h3 {
   margin: 0;
   color: var(--paper);
   font: 400 23px var(--forum);
}


.asp-prac-profile-description p {
   max-width: 640px;
   margin: 11px 0 0;
   color: #9da7b1;
   font-size: 13px;
   line-height: 1.75;
}



/* =========================================================
   05. COMPARE
========================================================= */

.asp-prac-compare-section {
   padding: 115px 0;
   border-bottom: 1px solid var(--line);
}


.asp-prac-compare-wrap {
   border: 1px solid var(--line);
}


.asp-prac-compare-row {
   display: grid;
   grid-template-columns: 1.05fr .45fr 1.4fr 80px;
   align-items: center;
   gap: 25px;
   min-height: 95px;
   padding: 16px 22px;
   border-bottom: 1px solid var(--line);
   color: #a5afb9;
   font-size: 12px;
}


.asp-prac-compare-row:last-child {
   border-bottom: 0;
}


.asp-prac-compare-header {
   min-height: 54px;
   color: var(--gold);
   background: rgba(210, 163, 94, .045);
   font-size: 8px;
   font-weight: 800;
   letter-spacing: .14em;
   text-transform: uppercase;
}


.asp-prac-compare-person {
   display: flex;
   align-items: center;
   gap: 14px;
}


.asp-prac-compare-person img {
   width: 56px;
   height: 56px;
   border: 1px solid var(--line-gold);
   border-radius: 50%;
   object-fit: cover;
   object-position: center top;
}


.asp-prac-compare-person strong {
   color: var(--paper);
   font: 400 18px var(--forum);
}


.asp-prac-compare-row a {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   color: var(--gold-bright);
   font-size: 9px;
   font-weight: 700;
   text-transform: uppercase;
}



/* =========================================================
   06. FINAL CTA
========================================================= */

.asp-prac-final {
   padding: 95px 0;
}


.asp-prac-final-inner {
   display: grid;
   grid-template-columns: minmax(0, 1fr) auto;
   align-items: center;
   gap: 60px;
   padding: 55px;
   border: 1px solid var(--line-gold);
   background:
      linear-gradient(
         145deg,
         rgba(35, 47, 60, .45),
         rgba(7, 12, 19, .7)
      );
}


.asp-prac-final-inner h2 {
   max-width: 740px;
   margin: 0;
   color: var(--paper);
   font: 400 clamp(43px, 4.8vw, 65px)/1 var(--forum);
   text-transform: uppercase;
}


.asp-prac-final-inner h2 em {
   color: var(--gold);
   font-style: normal;
}


.asp-prac-final-inner > div > p:last-child {
   max-width: 670px;
   margin: 20px 0 0;
   color: #9fa9b3;
   font-size: 14px;
   line-height: 1.75;
}



/* =========================================================
   07. RESPONSIVE - 1150PX
========================================================= */

@media (max-width: 1150px) {

   .asp-prac-overview-grid {
      grid-template-columns: 1fr;
   }


   .asp-prac-overview-card {
      max-width: 850px;
   }


   .asp-prac-field-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }

}



/* =========================================================
   08. RESPONSIVE - 900PX
========================================================= */

@media (max-width: 900px) {

   .asp-prac-container {
      width: calc(100% - 40px);
   }


   .asp-prac-hero {
      min-height: 0;
      padding: 130px 0 75px;
   }


   .asp-prac-hero-grid,
   .asp-prac-profile-grid,
   .asp-prac-profile-grid-reverse {
      grid-template-columns: 1fr;
   }


   .asp-prac-hero-stat-wrap {
      max-width: 650px;
   }


   .asp-prac-profile-section,
   .asp-prac-overview,
   .asp-prac-compare-section {
      padding: 80px 0;
   }


   .asp-prac-profile-grid-reverse .asp-prac-profile-content {
      order: 2;
   }


   .asp-prac-profile-grid-reverse .asp-prac-profile-visual {
      order: 1;
      justify-self: start;
   }


   .asp-prac-profile-visual {
      width: min(420px, 90%);
   }


   .asp-prac-final-inner {
      grid-template-columns: 1fr;
      padding: 40px;
   }


   .asp-prac-final-inner .asp-prac-primary-btn {
      justify-self: start;
   }

}



/* =========================================================
   09. RESPONSIVE - 700PX
========================================================= */

@media (max-width: 700px) {

   .asp-prac-overview-card {
      grid-template-columns: 160px 1fr;
   }


   .asp-prac-overview-image {
      min-height: 310px;
   }


   .asp-prac-overview-body {
      padding: 24px 20px;
   }


   .asp-prac-overview-body h3 {
      font-size: 26px;
   }


   .asp-prac-compare-header {
      display: none;
   }


   .asp-prac-compare-row {
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 22px;
   }


   .asp-prac-compare-row > div:nth-child(2):before {
      content: 'Experience: ';
      color: var(--dim);
   }


   .asp-prac-compare-row > div:nth-child(3):before {
      content: 'Fields: ';
      color: var(--dim);
   }

}



/* =========================================================
   10. RESPONSIVE - 600PX
========================================================= */

@media (max-width: 600px) {

   .asp-prac-container {
      width: calc(100% - 34px);
   }


   .asp-prac-hero {
      padding: 115px 0 60px;
   }


   .asp-prac-hero-copy h1 {
      font-size: 47px;
   }


   .asp-prac-hero-text {
      font-size: 15px;
   }


   .asp-prac-hero-actions {
      align-items: stretch;
      flex-direction: column;
   }


   .asp-prac-text-link {
      justify-content: center;
   }


   .asp-prac-hero-stat {
      min-height: 130px;
      padding: 20px;
   }


   .asp-prac-overview,
   .asp-prac-profile-section,
   .asp-prac-compare-section {
      padding: 65px 0;
   }


   .asp-prac-section-head {
      margin-bottom: 40px;
   }


   .asp-prac-section-head h2 {
      font-size: 39px;
   }


   .asp-prac-overview-card {
      display: block;
   }


   .asp-prac-overview-image {
      height: 390px;
      min-height: 0;
   }


   .asp-prac-overview-body {
      min-height: 310px;
   }


   .asp-prac-profile-content h2 {
      font-size: 44px;
   }


   .asp-prac-profile-role {
      font-size: 12px;
   }


   .asp-prac-profile-years {
      right: -8px;
      bottom: 20px;
      width: 125px;
   }


   .asp-prac-profile-info-grid,
   .asp-prac-field-grid,
   .asp-prac-field-grid-four {
      grid-template-columns: 1fr;
   }


   .asp-prac-primary-btn,
   .asp-prac-outline-btn {
      width: 100%;
   }


   .asp-prac-final {
      padding: 60px 0;
   }


   .asp-prac-final-inner {
      padding: 30px 22px;
   }


   .asp-prac-final-inner h2 {
      font-size: 38px;
   }

}



/* =========================================================
   11. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

   .asp-prac-hero-copy h1 {
      font-size: 41px;
   }


   .asp-prac-hero-stat-wrap {
      grid-template-columns: 1fr;
   }


   .asp-prac-hero-stat {
      border-right: 0;
   }


   .asp-prac-hero-stat-wide {
      grid-column: auto;
   }


   .asp-prac-overview-image {
      height: 340px;
   }


   .asp-prac-section-head h2 {
      font-size: 35px;
   }


   .asp-prac-profile-content h2 {
      font-size: 39px;
   }
.article-section {
    grid-template-columns: minmax(0, 1fr);
}

}

.back-top i {
    font-size: 24px;
    line-height: 1;
}

.menu-toggle {
    display: none;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: grid;
    }
}

.product-coming-soon {
    grid-column: 1 / -1;

    width: 100%;
    min-height: 125px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.product-coming-soon span {
    color: var(--gold-bright);
    font: 450 clamp(60px, 12vw, 60px)/1 var(--forum);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-coming-soon small {
    margin-top: 18px;

    color: var(--dim);

    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}