:root {
  --navy: #080615;
  --navy2: #0d0923;
  --ink: #f8f3e8;
  --muted: #b5aec5;
  --gold: #d4af37;
  --gold2: #f4d989;
  --violet: #8b5cf6;
  --line: rgba(212, 175, 55, 0.2);
  --glass: rgba(255, 255, 255, 0.045);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  background: var(--gold);
  color: #100b22;
  padding: 0.7rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-content: center;
  text-align: center;
  background: #090619;
  transition:
    opacity 0.7s,
    visibility 0.7s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader p {
  font-family: var(--serif);
  letter-spacing: 0.35em;
  color: var(--gold2);
}
.loader-orbit {
  margin: auto;
  width: 74px;
  height: 74px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.loader-orbit span {
  color: var(--gold);
  transform: translateY(-12px);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
  z-index: -1;
}
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(123, 82, 230, 0.1), transparent 68%);
  transform: translate(-50%, -50%);
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 999;
  box-shadow: 0 0 14px var(--gold);
}
.site-header {
  height: 78px;
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: 0.35s;
}
.site-header.scrolled {
  background: rgba(8, 6, 21, 0.87);
  backdrop-filter: blur(18px);
  border-color: rgba(212, 175, 55, 0.12);
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.09em;
  white-space: nowrap;
}
.brand img {
  border-radius: 50%;
  border: 1px solid var(--line);
}
.brand > span > span {
  color: var(--gold);
}
nav {
  display: flex;
  gap: 28px;
  margin: auto;
  font-size: 13px;
  color: #d8d3df;
}
nav a {
  transition: 0.2s;
}
nav a:hover {
  color: var(--gold2);
}
.nav-cta {
  border: 1px solid var(--line);
  padding: 9px 15px;
  border-radius: 99px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-cta span {
  color: var(--gold);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  width: 42px;
  height: 42px;
}
.menu-btn span {
  height: 1px;
  background: white;
  width: 24px;
  display: block;
  margin: 7px auto;
}
.hero {
  min-height: 100svh;
  max-width: 1450px;
  margin: auto;
  padding: 140px max(28px, calc((100vw - var(--max)) / 2)) 65px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -180px;
  top: 5%;
  background: radial-gradient(
    circle,
    rgba(106, 61, 208, 0.18),
    transparent 65%
  );
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.eyebrow,
.kicker {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 600;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0.5rem 0 1.4rem;
}
h1 {
  font-size: clamp(3.6rem, 6.4vw, 6.8rem);
}
h2 {
  font-size: clamp(2.6rem, 5vw, 5.1rem);
}
h1 em,
h2 em {
  color: var(--gold2);
  font-weight: 500;
}
h3 {
  font-family: var(--serif);
  font-weight: 600;
}
.hero-brand {
  font-weight: 700;
  letter-spacing: 0.19em;
  color: var(--gold2);
  margin: 0 0 1rem;
}
.hero-brand small {
  display: block;
  color: white;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 400;
  margin-top: 5px;
}
.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.07rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin: 2rem 0 2.4rem;
}
.btn {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 3px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.btn-gold {
  background: linear-gradient(120deg, #b99025, var(--gold2));
  color: #171020;
  border: 0;
  box-shadow: 0 8px 35px rgba(212, 175, 55, 0.18);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 42px rgba(212, 175, 55, 0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold2);
}
.text-link {
  font-size: 13px;
  border-bottom: 1px solid var(--gold);
  padding: 5px 0;
}
.trust-row {
  display: flex;
  gap: 0;
}
.trust-row div {
  padding: 0 25px;
  border-left: 1px solid var(--line);
}
.trust-row div:first-child {
  padding-left: 0;
  border: 0;
}
.trust-row b,
.trust-row span {
  display: block;
}
.trust-row b {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold2);
}
.trust-row span {
  font-size: 11px;
  color: var(--muted);
}
.hero-visual {
  height: min(700px, 78vh);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.portrait-frame {
  height: 92%;
  width: 80%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 48% 48% 5px 5px;
  border: 1px solid rgba(244, 217, 137, 0.34);
  box-shadow: 0 30px 80px #000;
}
.portrait-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 65%, rgba(8, 6, 21, 0.5));
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-halo {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  top: 0;
  animation: pulse 5s ease-in-out infinite;
}
.portrait-halo:before,
.portrait-halo:after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px dashed rgba(139, 92, 246, 0.35);
  border-radius: 50%;
  animation: spin 32s linear infinite;
}
.portrait-halo:after {
  inset: 15%;
  animation-direction: reverse;
  animation-duration: 18s;
}
.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(14, 10, 34, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}
.floating-note > span {
  color: var(--gold);
  font-size: 20px;
}
.floating-note b,
.floating-note small {
  display: block;
}
.floating-note b {
  font-size: 12px;
}
.floating-note small {
  font-size: 10px;
  color: var(--muted);
}
.note-one {
  left: 0;
  top: 28%;
}
.note-two {
  right: -4%;
  bottom: 17%;
  animation-delay: -2s;
}
.hero-orbit {
  position: absolute;
  right: 2%;
  top: 15%;
  width: 52vw;
  height: 52vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.08);
  animation: spin 120s linear infinite;
}
.hero-orbit i {
  position: absolute;
  left: 50%;
  top: 50%;
  font-style: normal;
  color: rgba(244, 217, 137, 0.15);
  font-size: 20px;
  transform: rotate(calc(var(--i) * 30deg)) translateY(-25vw);
}
.hero-orbit i:nth-child(1) {
  --i: 0;
}
.hero-orbit i:nth-child(2) {
  --i: 1;
}
.hero-orbit i:nth-child(3) {
  --i: 2;
}
.hero-orbit i:nth-child(4) {
  --i: 3;
}
.hero-orbit i:nth-child(5) {
  --i: 4;
}
.hero-orbit i:nth-child(6) {
  --i: 5;
}
.hero-orbit i:nth-child(7) {
  --i: 6;
}
.hero-orbit i:nth-child(8) {
  --i: 7;
}
.hero-orbit i:nth-child(9) {
  --i: 8;
}
.hero-orbit i:nth-child(10) {
  --i: 9;
}
.hero-orbit i:nth-child(11) {
  --i: 10;
}
.hero-orbit i:nth-child(12) {
  --i: 11;
}
.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue span {
  display: block;
  width: 1px;
  height: 30px;
  background: var(--gold);
  margin: 0 auto 8px;
}
@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  50% {
    transform: scale(1.04);
    opacity: 0.65;
  }
}
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.035);
  padding: 14px 0;
  color: var(--gold2);
  font-size: 10px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.marquee div {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee i {
  margin: 0 30px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 125px 28px;
  position: relative;
}
.section-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #817990;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 65px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.about-title h2 {
  margin-top: 10px;
}
.signature {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.signature span {
  color: var(--gold);
  padding: 0 7px;
}
.about-copy {
  padding-top: 20px;
  color: var(--muted);
}
.about-copy .lead {
  font-family: var(--serif);
  color: white;
  font-size: 1.55rem;
  line-height: 1.45;
}
.about-copy strong {
  color: var(--gold2);
  font-weight: 500;
}
.language-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.language-list span {
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: 99px;
  color: #eee;
  font-size: 12px;
}
.expertise {
  border-top: 1px solid var(--line);
  margin-top: 75px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: 25% 75%;
  font-size: 12px;
}
.expertise > p {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gold2);
}
.expertise > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.expertise span {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.services {
  max-width: none;
  background: linear-gradient(
    160deg,
    rgba(34, 18, 70, 0.45),
    rgba(8, 6, 21, 0.3)
  );
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 390px;
  color: var(--muted);
  margin-bottom: 10px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.service-card {
  position: relative;
  min-height: 460px;
  padding: 35px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  transition: 0.35s;
}
.service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 10%,
    rgba(139, 92, 246, 0.17),
    transparent 35%
  );
  opacity: 0;
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.service-card:hover:before {
  opacity: 1;
}
.service-card.featured {
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.13),
    rgba(255, 255, 255, 0.03)
  );
  border-color: rgba(212, 175, 55, 0.3);
}
.service-no {
  position: absolute;
  right: 25px;
  top: 20px;
  color: #777083;
  font-size: 11px;
}
.service-card .icon {
  font-family: var(--serif);
  color: var(--gold2);
  font-size: 45px;
  height: 90px;
}
.service-card h3 {
  font-size: 1.75rem;
  margin: 0.6rem 0;
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
}
.service-card ul {
  padding: 0;
  list-style: none;
  color: #ddd;
  font-size: 13px;
  margin: 25px 0;
}
.service-card li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.service-card > a {
  position: absolute;
  bottom: 28px;
  color: var(--gold2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.service-card.wide {
  grid-column: 1/-1;
  min-height: auto;
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  align-items: center;
}
.wide .icon {
  height: auto;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 8px 13px;
  font-size: 11px;
  color: #d0cad8;
}
.numerology {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
}
.number-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 16%;
  gap: 1px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.14),
    transparent 65%
  );
  box-shadow: 0 0 100px rgba(139, 92, 246, 0.08);
}
.number-art:before,
.number-art:after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.17);
  animation: spin 50s linear infinite;
}
.number-art:after {
  inset: 20%;
  animation-direction: reverse;
}
.number-art span {
  display: grid;
  place-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1;
}
.number-art b {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.035);
}
.numerology-copy > p:not(.kicker) {
  color: var(--muted);
}
.num-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 25px 0 35px;
}
.num-list span {
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.num-list span:before {
  content: "✦";
  color: var(--gold);
  font-size: 8px;
  margin-right: 10px;
}
.why {
  max-width: none;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  background: #0d0920;
}
.why-head {
  text-align: center;
  margin-bottom: 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-grid article {
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 240px;
  transition: 0.3s;
}
.why-grid article:hover {
  background: rgba(212, 175, 55, 0.045);
}
.why-grid b {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.why-grid h3 {
  font-size: 1.4rem;
}
.why-grid p {
  color: var(--muted);
  font-size: 13px;
}
.trust-strip {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #ddd;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trust-strip i {
  color: var(--gold);
}
.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-line:before {
  content: "";
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.1));
  left: 0;
  right: 0;
  top: 24px;
}
.process-line article {
  position: relative;
  padding: 0 22px;
}
.process-line b {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  background: var(--navy);
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: var(--gold2);
  font-size: 11px;
}
.process-line span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
  margin-top: 40px;
}
.process-line h3 {
  font-size: 1.35rem;
  margin: 0.5rem 0;
}
.process-line p {
  font-size: 12px;
  color: var(--muted);
}
.testimonials {
  max-width: none;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(135deg, #120d2c, #080615);
}
.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.slider-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}
.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold2);
  cursor: pointer;
}
.testimonial-window {
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
blockquote {
  margin: 0;
  min-width: 100%;
  padding: 45px 12%;
  text-align: center;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 12px;
}
blockquote > p {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1.45;
}
blockquote footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
blockquote footer > span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-content: center;
  font-size: 11px;
  color: var(--gold2);
}
blockquote footer b,
blockquote footer small {
  display: block;
  text-align: left;
}
blockquote footer small {
  color: var(--muted);
  font-size: 10px;
}
.placeholder-note {
  text-align: center;
  color: #777083;
  font-size: 10px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 8%;
}
.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.faq-intro > p:not(.kicker) {
  color: var(--muted);
}
.faq-intro > a {
  color: var(--gold2);
  font-size: 1.1rem;
}
.accordion details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span {
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 300;
  transition: 0.3s;
}
.accordion details[open] summary span {
  transform: rotate(45deg);
}
.accordion details p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  padding: 0 40px 24px 0;
}
.contact {
  max-width: none;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  background: radial-gradient(
    circle at 15% 50%,
    rgba(139, 92, 246, 0.13),
    transparent 35%
  );
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: rgba(14, 10, 34, 0.55);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}
.contact-info {
  padding: 55px;
}
.contact-info > p:not(.kicker) {
  color: var(--muted);
}
.contact-links {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-links a,
.contact-links address {
  font-style: normal;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.contact-links small,
.contact-links b {
  display: block;
}
.contact-links small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
}
.contact-links b {
  font-size: 12px;
  margin-top: 5px;
}
.map-placeholder {
  margin-top: 35px;
  min-height: 105px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.06),
    rgba(139, 92, 246, 0.06)
  );
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 15px;
}
.map-placeholder > span {
  font-size: 28px;
  color: var(--gold);
}
.map-placeholder b,
.map-placeholder small {
  display: block;
}
.map-placeholder small {
  color: var(--muted);
}
form {
  padding: 55px;
  background: rgba(255, 255, 255, 0.035);
  border-left: 1px solid var(--line);
}
.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.form-head span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.form-head b {
  font-family: var(--serif);
  font-size: 1.25rem;
}
form label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 9px;
  color: #beb6c9;
  margin-bottom: 15px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  background: rgba(0, 0, 0, 0.18);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 12px 5px;
  outline: none;
  border-radius: 0;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
}
select option {
  background: #17102d;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}
textarea {
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.error {
  display: block;
  color: #ff9b9b;
  text-transform: none;
  letter-spacing: 0;
  height: 12px;
}
.invalid input,
.invalid select,
.invalid textarea {
  border-color: #ff7a7a;
}
.form-status {
  font-size: 12px;
  color: var(--gold2);
}
.privacy {
  font-size: 9px;
  color: #777083;
}
footer {
  background: #05040e;
  border-top: 1px solid var(--line);
  padding: 70px max(28px, calc((100vw - var(--max)) / 2)) 25px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.4fr;
  gap: 55px;
}
.footer-brand img {
  border-radius: 50%;
  border: 1px solid var(--line);
}
.footer-brand h2 {
  font-family: var(--sans);
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  margin: 15px 0 0;
}
.footer-brand p {
  color: var(--muted);
  font-size: 12px;
}
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 10px;
}
footer h3 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold2);
  margin-bottom: 20px;
}
footer .footer-main > div:not(:first-child) a,
footer .footer-main > div:not(:first-child) p {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin: 10px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #686373;
  font-size: 9px;
}
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  display: flex;
  gap: 9px;
  align-items: center;
}
.floating-actions a {
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.float-call {
  width: 48px;
  background: #211940;
  border: 1px solid var(--line);
  color: var(--gold2);
}
.float-wa {
  border-radius: 99px !important;
  padding: 0 17px;
  background: #148c54;
  color: white;
  gap: 8px;
  font-size: 12px;
}
.back-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #100b22;
  color: var(--gold);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 200;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  nav {
    position: fixed;
    inset: 78px 0 0;
    background: rgba(8, 6, 21, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-family: var(--serif);
    font-size: 1.7rem;
    transform: translateX(100%);
    transition: 0.4s;
  }
  .menu-open nav {
    transform: none;
  }
  .nav-cta {
    margin-left: auto;
    margin-right: 10px;
  }
  .menu-btn {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero-visual {
    height: 590px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card.wide {
    grid-column: 1/-1;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-line {
    grid-template-columns: 1fr;
  }
  .process-line:before {
    left: 23px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }
  .process-line article {
    padding: 0 0 35px 80px;
  }
  .process-line b {
    position: absolute;
    left: 0;
  }
  .process-line span {
    margin-top: 0;
  }
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .contact-info,
  form {
    padding: 42px;
  }
  form {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-main > div:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 720px) {
  .cursor-glow {
    display: none;
  }
  .site-header {
    height: 68px;
    padding: 0 17px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand > span {
    font-size: 13px;
  }
  .nav-cta {
    display: none;
  }
  nav {
    inset: 68px 0 0;
  }
  .section {
    padding: 85px 20px;
  }
  .section-label {
    margin-bottom: 45px;
  }
  .hero {
    min-height: auto;
    padding: 120px 20px 65px;
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    text-align: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }
  .hero-lead {
    font-size: 0.95rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .trust-row {
    justify-content: center;
  }
  .hero-visual {
    height: 540px;
    width: 100%;
    margin-top: 35px;
  }
  .portrait-frame {
    width: 90%;
  }
  .floating-note {
    padding: 8px;
  }
  .note-one {
    left: 0;
  }
  .note-two {
    right: 0;
  }
  .scroll-cue {
    display: none;
  }
  .hero-orbit {
    width: 100vw;
    height: 100vw;
    top: 52%;
    right: 0;
  }
  .hero-orbit i {
    transform: rotate(calc(var(--i) * 30deg)) translateY(-50vw);
  }
  .about-grid,
  .numerology,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .expertise {
    grid-template-columns: 1fr;
  }
  .expertise > div {
    grid-template-columns: 1fr 1fr;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 25px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 430px;
    padding: 28px;
  }
  .service-card.wide {
    display: block;
  }
  .wide .chips {
    margin-top: 20px;
  }
  .number-art {
    order: 2;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    flex-wrap: wrap;
    gap: 20px;
  }
  .trust-strip i {
    display: none;
  }
  .testimonial-top {
    display: block;
  }
  blockquote {
    padding: 30px 0;
  }
  .faq-intro {
    position: relative;
    top: auto;
  }
  .contact-info,
  form {
    padding: 30px 22px;
  }
  .contact-links,
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-main > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin: 8px 0;
  }
  .float-wa span {
    display: none;
  }
  .float-wa {
    width: 48px;
    padding: 0;
  }
  .floating-actions {
    right: 14px;
    bottom: 14px;
  }
  .back-top {
    left: 14px;
    bottom: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Inner pages */
.inner-hero {
  min-height: 58vh;
  padding: 150px max(28px, calc((100vw - var(--max)) / 2)) 80px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(
    circle at 80% 30%,
    rgba(139, 92, 246, 0.16),
    transparent 35%
  );
}
.inner-hero:after {
  content: "✦";
  position: absolute;
  right: 8%;
  top: 25%;
  font-family: var(--serif);
  font-size: 18rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.035);
}
.inner-hero > div {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.breadcrumbs {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--gold2);
}
.inner-hero h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
  margin: 0.7rem 0 1rem;
}
.inner-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}
.page-content {
  max-width: var(--max);
  margin: auto;
  padding: 95px 28px;
}
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: start;
}
.prose h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}
.prose h3 {
  font-size: 1.6rem;
  color: var(--gold2);
}
.prose p,
.prose li {
  color: var(--muted);
}
.prose li {
  margin: 0.5rem 0;
}
.info-card {
  background: var(--glass);
  border: 1px solid var(--line);
  padding: 35px;
}
.info-card + .info-card {
  margin-top: 15px;
}
.info-card h3 {
  margin-top: 0;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.detail-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--glass);
  min-height: 220px;
  transition: 0.3s;
}
.detail-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.detail-card > span {
  color: var(--gold);
  font-size: 1.5rem;
}
.detail-card h3 {
  font-size: 1.35rem;
}
.detail-card p {
  color: var(--muted);
  font-size: 13px;
}
.page-cta {
  margin-top: 70px;
  padding: 50px;
  border: 1px solid var(--line);
  background: linear-gradient(
    120deg,
    rgba(212, 175, 55, 0.09),
    rgba(139, 92, 246, 0.08)
  );
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.page-cta h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 0;
}
.catalog-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.catalog-tabs button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 99px;
  cursor: pointer;
}
.catalog-tabs button.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--glass);
  overflow: hidden;
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  background: #eee;
}
.product-card-body {
  padding: 19px;
}
.product-card small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.product-card h3 {
  margin: 0.3rem 0;
  font-size: 1.25rem;
}
.product-card p {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 0;
}
.review-summary {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 35px;
  border: 1px solid var(--line);
  margin-bottom: 40px;
  background: var(--glass);
}
.review-score {
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--gold2);
  line-height: 1;
}
.review-stars {
  color: #fbbc04;
  letter-spacing: 0.15em;
}
.review-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-shot {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  padding: 8px;
  cursor: zoom-in;
  transition: 0.3s;
}
.review-shot:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.review-shot img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 2, 9, 0.92);
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 30px;
}
.lightbox.open {
  display: grid;
}
.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
}
.lightbox button {
  position: absolute;
  right: 25px;
  top: 20px;
  border: 0;
  background: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
.timeline-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  max-width: 850px;
  margin: auto;
}
.timeline-detail .step-no {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gold2);
}
.timeline-detail .step-no b {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-content: center;
}
.timeline-detail .step-no:after {
  content: "";
  width: 1px;
  flex: 1;
  background: var(--line);
}
.timeline-detail article {
  padding: 0 0 55px 20px;
}
.timeline-detail h2 {
  font-size: 2.2rem;
  margin: 0 0 0.8rem;
}
.timeline-detail p {
  color: var(--muted);
}
.disclaimer {
  font-size: 11px;
  color: #817990;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.subpage-footer {
  margin-top: 0;
}
@media (max-width: 800px) {
  .inner-hero {
    min-height: 50vh;
    padding: 120px 20px 60px;
  }
  .split-content,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .review-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .page-cta {
    display: block;
    padding: 30px;
  }
  .page-cta .btn {
    margin-top: 25px;
  }
  .review-shot img {
    height: 430px;
  }
}
@media (max-width: 520px) {
  .product-grid,
  .review-gallery {
    grid-template-columns: 1fr;
  }
  .review-shot img {
    height: auto;
  }
  .review-summary {
    align-items: flex-start;
    gap: 15px;
  }
  .review-score {
    font-size: 3.5rem;
  }
  .timeline-detail {
    grid-template-columns: 60px 1fr;
  }
}

/* Mobile navigation correction */
.menu-btn {
  width: 44px;
  height: 44px;
  padding: 10px;
  flex: 0 0 44px;
  cursor: pointer;
}
.menu-btn:before,
.menu-btn span {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.menu-open .menu-btn:before {
  transform: translateY(7px) rotate(45deg);
}
.menu-open .menu-btn span:first-of-type {
  opacity: 0;
}
.menu-open .menu-btn span:last-of-type {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 720px) {
  .site-header .menu-btn {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
}
.more-products {
  margin-top: 42px;
  padding: 35px;
  border: 1px solid var(--line);
  background: linear-gradient(
    120deg,
    rgba(212, 175, 55, 0.09),
    rgba(139, 92, 246, 0.08)
  );
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
}
.more-products > span {
  font-size: 2rem;
  color: var(--gold);
}
.more-products h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0.25rem 0;
}
.more-products p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 720px) {
  .more-products {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  .more-products > span {
    display: none;
  }
  .more-products .btn {
    justify-self: start;
  }
}

/* Brighter luxury palette */
:root {
  --navy: #12102b;
  --navy2: #1b1640;
  --muted: #cac4d8;
  --glass: rgba(255, 255, 255, 0.075);
  --line: rgba(226, 195, 91, 0.28);
}
body {
  background: linear-gradient(180deg, #151130 0%, #110e29 42%, #181338 72%, #100d27 100%);
  background-attachment: fixed;
}
#stars { opacity: 0.72; }
.site-header.scrolled {
  background: rgba(20, 16, 48, 0.9);
  border-color: rgba(226, 195, 91, 0.2);
  box-shadow: 0 10px 35px rgba(4, 3, 15, 0.22);
}
.hero:before { background: radial-gradient(circle, rgba(138, 92, 246, 0.26), transparent 65%); }
.services { background: linear-gradient(155deg, rgba(65, 43, 112, 0.5), rgba(22, 17, 52, 0.72)); }
.why { background: linear-gradient(150deg, #211947, #171334); }
.testimonials { background: linear-gradient(135deg, #261c52, #15112f); }
.inner-hero {
  background: radial-gradient(circle at 80% 30%, rgba(151, 108, 255, 0.25), transparent 38%), linear-gradient(135deg, #19143a, #21194a);
}
.service-card, .detail-card, .info-card, .product-card {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 45px rgba(4, 3, 15, 0.13);
}
.contact { background: radial-gradient(circle at 15% 50%, rgba(151, 108, 255, 0.22), transparent 38%); }
.contact-panel { background: rgba(31, 24, 67, 0.72); }
form { background: rgba(255, 255, 255, 0.055); }
input, select, textarea { background: rgba(5, 3, 18, 0.25); }
footer { background: #0e0b23; }
.loader { background: #12102b; }
@media (max-width: 1000px) { nav { background: rgba(19, 15, 45, 0.98); } }
