:root {
  --ink: #17161f;
  --copper: #b3502e;
  --gold: #e7bf5b;
  --gold-bright: #ffe29a;
  --hot-pink: #ff3e90;
  --ruby: #c02f5f;
  --teal: #0d6767;
  --aqua: #4bd4c6;
  --violet: #533b9d;
  --plum: #34203d;
  --night: #171331;
  --night-deep: #080711;
  --paper: #fff9ef;
  --white: #ffffff;
  --shadow: 0 28px 96px rgba(3, 3, 12, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--night-deep);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 226, 154, 0.18), transparent 18%),
    radial-gradient(circle at 14% 16%, rgba(255, 62, 144, 0.42), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(101, 55, 190, 0.5), transparent 30%),
    radial-gradient(circle at 78% 78%, rgba(13, 103, 103, 0.36), transparent 34%),
    linear-gradient(135deg, #080512 0%, #22062f 42%, #3a0d3d 72%, #081a24 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(231, 191, 91, 0.56) 0 1px, transparent 1.2px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-position:
    0 0,
    36px 62px,
    0 0,
    0 0;
  background-size:
    112px 112px,
    154px 154px,
    64px 64px,
    64px 64px;
  opacity: 0.76;
  animation: starDrift 28s linear infinite;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), transparent 96%);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 249, 239, 0.08), transparent 25%, transparent 74%, rgba(255, 62, 144, 0.08)),
    radial-gradient(circle at 50% 45%, transparent 0 27%, rgba(6, 5, 16, 0.28) 74%);
  pointer-events: none;
}

.hero__sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cosmic-glow,
.zodiac-field,
.orbit,
.sigil {
  position: absolute;
}

.cosmic-glow {
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.72;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.cosmic-glow--gold {
  top: 12%;
  left: 43%;
  width: 320px;
  height: 320px;
  background: rgba(255, 226, 154, 0.4);
}

.cosmic-glow--rose {
  top: 10%;
  left: 4%;
  width: 380px;
  height: 380px;
  background: rgba(255, 62, 144, 0.3);
  animation-delay: -2s;
}

.cosmic-glow--teal {
  right: 4%;
  bottom: 9%;
  width: 360px;
  height: 360px;
  background: rgba(83, 59, 157, 0.36);
  animation-delay: -4s;
}

.zodiac-field {
  top: 50%;
  left: 60%;
  width: min(76vw, 840px);
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  opacity: 0.44;
  animation: rotateWheel 72s linear infinite;
}

.zodiac-field__ring {
  position: absolute;
  border-radius: 50%;
}

.zodiac-field__ring--outer {
  inset: 0;
  border: 1px solid rgba(255, 249, 239, 0.34);
  box-shadow:
    inset 0 0 42px rgba(231, 191, 91, 0.16),
    0 0 42px rgba(231, 191, 91, 0.12);
}

.zodiac-field__ring--middle {
  inset: 10%;
  border: 1px dashed rgba(231, 191, 91, 0.52);
}

.zodiac-field__ring--inner {
  inset: 25%;
  border: 1px solid rgba(255, 249, 239, 0.26);
}

.zodiac-field::before,
.zodiac-field::after {
  position: absolute;
  inset: 4%;
  content: "";
  border-radius: 50%;
  background:
    conic-gradient(
      from 10deg,
      transparent 0deg 12deg,
      rgba(255, 249, 239, 0.56) 12deg 13deg,
      transparent 13deg 30deg
    );
  mask-image: radial-gradient(circle, transparent 0 43%, #000 44% 46%, transparent 47%);
}

.zodiac-field::after {
  inset: 18%;
  opacity: 0.65;
  animation: rotateWheelReverse 45s linear infinite;
}

.orbit {
  border: 1px solid rgba(255, 249, 239, 0.18);
  border-radius: 50%;
  animation: rotateWheel 24s linear infinite;
}

.orbit--one {
  top: 16%;
  right: 11%;
  width: 210px;
  height: 210px;
}

.orbit--two {
  bottom: 15%;
  left: 9%;
  width: 150px;
  height: 150px;
  animation-duration: 32s;
  animation-direction: reverse;
}

.orbit--three {
  top: 60%;
  right: 33%;
  width: 96px;
  height: 96px;
  animation-duration: 18s;
}

.planet {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  translate: 0 -50%;
  box-shadow: 0 0 28px currentColor;
}

.planet--gold {
  color: rgba(231, 191, 91, 0.92);
  background: var(--gold);
}

.planet--teal {
  color: rgba(75, 212, 198, 0.8);
  background: var(--aqua);
}

.planet--copper {
  color: rgba(218, 88, 54, 0.82);
  background: #da5836;
}

.sigil {
  color: rgba(255, 249, 239, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 3.1rem);
  text-shadow: 0 0 24px rgba(231, 191, 91, 0.28);
  animation: floatSigil 7s ease-in-out infinite;
}

.sigil--one {
  top: 20%;
  left: 22%;
}

.sigil--two {
  top: 24%;
  right: 16%;
  animation-delay: -2s;
}

.sigil--three {
  bottom: 22%;
  left: 29%;
  animation-delay: -3.5s;
}

.sigil--four {
  right: 12%;
  bottom: 32%;
  animation-delay: -5s;
}

.star {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(231, 191, 91, 0.78);
  animation: twinkle 3.8s ease-in-out infinite;
}

.star--one {
  top: 18%;
  left: 11%;
}

.star--two {
  top: 28%;
  right: 22%;
  animation-delay: -1s;
}

.star--three {
  right: 10%;
  bottom: 19%;
  animation-delay: -1.8s;
}

.star--four {
  bottom: 28%;
  left: 44%;
  animation-delay: -2.6s;
}

.star--five {
  top: 66%;
  left: 16%;
  width: 5px;
  height: 5px;
  animation-delay: -3.1s;
}

.star--six {
  top: 13%;
  left: 68%;
  width: 4px;
  height: 4px;
  animation-delay: -0.6s;
}

.nav,
.hero__content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: rgba(255, 249, 239, 0.88);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
  font-weight: 700;
}

.nav__logo {
  flex: 0 0 auto;
  width: 118px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(231, 191, 91, 0.26));
}

.nav__contact {
  flex: 0 0 auto;
  color: rgba(255, 249, 239, 0.92);
  font-weight: 800;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
  min-height: calc(100svh - 96px);
  padding: 32px 0 72px;
}

.hero__copy {
  max-width: 720px;
}

h1 {
  max-width: 22ch;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.95rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(231, 191, 91, 0.16);
}

.hero__subtitle {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--gold-bright);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 800;
  line-height: 1.55;
}

.hero__meta {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 249, 239, 0.78);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  font-weight: 600;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #110b18;
  background: linear-gradient(135deg, var(--gold-bright) 0%, #ffb84f 38%, var(--hot-pink) 100%);
  box-shadow:
    0 18px 42px rgba(231, 191, 91, 0.22),
    0 0 36px rgba(255, 62, 144, 0.22);
}

.button--secondary {
  color: rgba(255, 249, 239, 0.92);
  border-color: rgba(255, 249, 239, 0.24);
  background: rgba(255, 249, 239, 0.08);
  backdrop-filter: blur(18px);
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: clamp(390px, 48vw, 610px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 239, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 226, 154, 0.72), transparent 17%),
    radial-gradient(circle at 50% 50%, rgba(255, 62, 144, 0.38), transparent 38%),
    radial-gradient(circle at 30% 28%, rgba(255, 249, 239, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(12, 6, 28, 0.94) 0%, rgba(73, 14, 72, 0.9) 48%, rgba(10, 36, 55, 0.88) 100%);
  box-shadow: var(--shadow);
  color: rgba(255, 250, 241, 0.8);
  text-align: center;
}

.hero__visual::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 249, 239, 0.18);
  border-radius: 8px;
}

.hero__visual::after {
  position: absolute;
  inset: -40%;
  content: "";
  background: conic-gradient(from 90deg, transparent, rgba(255, 249, 239, 0.15), rgba(255, 62, 144, 0.13), transparent 36%);
  animation: rotateWheel 18s linear infinite;
}

.hero__visual p {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  width: max-content;
  max-width: 85%;
  background: rgba(8, 7, 17, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(231, 191, 91, 0.35);
  padding: 10px 22px;
  border-radius: 50px;
  color: var(--gold-bright);
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  animation: float-highlight 4s ease-in-out infinite alternate;
}

@keyframes float-highlight {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, -4px);
    border-color: rgba(231, 191, 91, 0.55);
    box-shadow: 
      0 14px 35px rgba(0, 0, 0, 0.4),
      0 0 15px rgba(231, 191, 91, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

.zodiac {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: min(82%, 450px);
  aspect-ratio: 1;
  translate: -50% -50%;
  animation: rotateWheel 38s linear infinite;
}

.portrait-card {
  position: relative;
  z-index: 2;
  width: min(65%, 290px);
  overflow: hidden;
  border: 1px solid rgba(255, 249, 239, 0.25);
  border-radius: 8px;
  background: transparent;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(255, 62, 144, 0.2);
  margin-bottom: 34px;
}

.portrait-card img {
  width: 100%;
  height: auto;
  display: block;
}

.zodiac__ring,
.zodiac__sun {
  position: absolute;
  border-radius: 50%;
}

.zodiac__ring {
  inset: 0;
  border: 1px solid rgba(255, 249, 239, 0.56);
}

.zodiac__ring--middle {
  inset: 16%;
  border-style: dashed;
}

.zodiac__ring--inner {
  inset: 31%;
  border-color: rgba(255, 249, 239, 0.72);
}

.zodiac__sun {
  inset: 42%;
  background: var(--gold);
  box-shadow:
    0 0 38px rgba(231, 191, 91, 0.9),
    0 0 100px rgba(192, 47, 95, 0.42);
}

@keyframes starDrift {
  to {
    background-position:
      112px 112px,
      190px 216px,
      64px 64px,
      64px 64px;
  }
}

@keyframes pulseGlow {
  from {
    scale: 0.96;
    opacity: 0.52;
  }

  to {
    scale: 1.08;
    opacity: 0.82;
  }
}

@keyframes rotateWheel {
  to {
    rotate: 360deg;
  }
}

@keyframes rotateWheelReverse {
  to {
    rotate: -360deg;
  }
}

@keyframes floatSigil {
  50% {
    translate: 0 -14px;
    opacity: 0.84;
  }
}

@keyframes twinkle {
  50% {
    scale: 1.7;
    opacity: 0.58;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 840px) {
  .nav {
    align-items: flex-start;
  }

  .nav__brand span:last-child {
    line-height: 1.25;
  }

  .zodiac-field {
    top: 64%;
    left: 52%;
    width: 720px;
    opacity: 0.3;
  }

  .hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    max-width: 16ch;
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .hero__visual {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .nav,
  .hero__content {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    gap: 16px;
  }

  .nav__logo {
    width: 92px;
    height: 36px;
  }

  .nav__contact {
    font-size: 0.88rem;
  }

  .nav__brand span:last-child {
    font-size: 0.92rem;
  }

  h1 {
    max-width: 16ch;
    font-size: clamp(1.75rem, 7.4vw, 2.35rem);
  }

  .orbit--one,
  .orbit--two,
  .orbit--three,
  .sigil--three,
  .sigil--four {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(68px, 9vw, 112px) 0;
}

.section:nth-of-type(odd):not(.clarity-band):not(.why-section) {
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 191, 91, 0.18), transparent 26%),
    radial-gradient(circle at 86% 20%, rgba(13, 103, 103, 0.1), transparent 28%),
    #fffdf8;
}

.section__inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  color: #151020;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  color: #151020;
  font-size: 1.05rem;
  line-height: 1.25;
}

.section p {
  color: #5b5363;
  line-height: 1.75;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading--center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-grid,
.clarity-grid,
.why-grid,
.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
}

.credential-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.credential-panel__item,
.process-step,
.service-card,
.testimonial-card,
.faq-grid details {
  border: 1px solid rgba(21, 16, 32, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(16, 12, 25, 0.08);
}

.credential-panel__item {
  min-height: 138px;
  padding: 24px;
}

.credential-panel__item strong {
  display: block;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.credential-panel__item span {
  display: block;
  margin-top: 10px;
  color: #5b5363;
  line-height: 1.5;
}

.process-section {
  background:
    linear-gradient(180deg, #fff9ef 0%, #f7efe4 100%);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  min-height: 220px;
  padding: 24px;
}

.process-step span,
.service-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #190d17;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-weight: 900;
}

.clarity-band {
  color: var(--white);
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 226, 154, 0.25), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(255, 62, 144, 0.24), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(83, 59, 157, 0.36), transparent 30%),
    linear-gradient(135deg, #080512 0%, #250832 48%, #4a0f43 74%, #081a24 100%);
}

.clarity-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.4px),
    linear-gradient(90deg, rgba(255, 249, 239, 0.05) 1px, transparent 1px);
  background-size: 126px 126px, 58px 58px;
  opacity: 0.42;
}

.clarity-band .section__inner {
  position: relative;
  z-index: 1;
}

.clarity-band h2,
.clarity-band p {
  color: var(--white);
}

.clarity-band .section-kicker {
  color: var(--gold-bright);
}

.clarity-band p {
  max-width: 580px;
  color: rgba(255, 249, 239, 0.78);
  font-size: 1.06rem;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.service-tabs span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(179, 80, 46, 0.24);
  border-radius: 999px;
  padding: 0 16px;
  color: #5b301f;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 318px;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 16%, rgba(231, 191, 91, 0.2), transparent 26%),
    #ffffff;
}

.service-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(179, 80, 46, 0.14);
  border-radius: 8px;
  color: var(--copper);
  background: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.service-card p {
  min-height: 104px;
}

.service-card a {
  color: var(--copper);
  font-weight: 900;
}

.why-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(192, 47, 95, 0.1), transparent 26%),
    #fbf4ea;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list div {
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.82);
  color: #4b4352;
  font-weight: 700;
  line-height: 1.55;
}

.rating-line {
  margin: 16px 0 0;
  color: var(--copper);
  font-weight: 900;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  padding: 26px;
}

.testimonial-card span {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: #151020;
}

.booking-section {
  background:
    radial-gradient(circle at 74% 16%, rgba(231, 191, 91, 0.22), transparent 26%),
    linear-gradient(180deg, #fff9ef, #f6ebdd);
}

.booking-panel {
  border: 1px solid rgba(21, 16, 32, 0.1);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 48px);
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(16, 12, 25, 0.1);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #32283a;
  font-weight: 800;
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--copper);
}

.contact-list__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.8;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-list a:hover .contact-list__icon {
  opacity: 1;
  transform: scale(1.05);
}

.booking-panel .button {
  justify-self: end;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  padding: 20px 22px;
}

.faq-grid summary {
  cursor: pointer;
  color: #151020;
  font-weight: 900;
}

.faq-grid p {
  margin-bottom: 0;
}

.site-footer {
  background: #080711;
  color: rgba(255, 249, 239, 0.72);
  padding: 34px 0;
}

.site-footer__inner {
  display: flex;
  width: min(1160px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.site-footer img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(231, 191, 91, 0.2));
}

.site-footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 960px) {
  .about-grid,
  .clarity-grid,
  .why-grid,
  .booking-panel {
    grid-template-columns: 1fr;
  }

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

  .booking-panel .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .section__inner {
    width: min(100% - 28px, 1160px);
  }

  .credential-panel,
  .process-track,
  .service-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card p {
    min-height: auto;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

/* Floating Contact Widgets */
.contact-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
  pointer-events: none;
}

.contact-widget {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.contact-widget--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  animation: widget-pulse-whatsapp 2s infinite;
}

.contact-widget--call {
  background: linear-gradient(135deg, #ffb84f 0%, var(--copper) 100%);
  animation: widget-pulse-call 2.5s infinite;
}

.contact-widget:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.contact-widget__icon {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease;
}

.contact-widget:hover .contact-widget__icon {
  transform: rotate(15deg);
}

.contact-widget__tooltip {
  position: absolute;
  right: 72px;
  background: rgba(8, 7, 17, 0.95);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 249, 239, 0.15);
}

.contact-widget__tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(8, 7, 17, 0.95);
}

.contact-widget:hover .contact-widget__tooltip {
  opacity: 1;
  visibility: visible;
  right: 68px;
}

@keyframes widget-pulse-whatsapp {
  0% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3), 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3), 0 0 0 0px rgba(37, 211, 102, 0);
  }
}

@keyframes widget-pulse-call {
  0% {
    box-shadow: 0 8px 24px rgba(179, 80, 46, 0.3), 0 0 0 0px rgba(179, 80, 46, 0.4);
  }
  70% {
    box-shadow: 0 8px 24px rgba(179, 80, 46, 0.3), 0 0 0 12px rgba(179, 80, 46, 0);
  }
  100% {
    box-shadow: 0 8px 24px rgba(179, 80, 46, 0.3), 0 0 0 0px rgba(179, 80, 46, 0);
  }
}

@media (max-width: 560px) {
  .contact-widgets {
    bottom: 16px;
    right: 16px;
    gap: 12px;
  }
  .contact-widget {
    width: 48px;
    height: 48px;
  }
  .contact-widget__icon {
    width: 22px;
    height: 22px;
  }
  .contact-widget__tooltip {
    display: none;
  }
}

/* Lead Magnet Section */
.lead-magnet {
  background: linear-gradient(135deg, var(--plum) 0%, var(--night) 100%);
  border-bottom: 1px solid rgba(231, 191, 91, 0.2);
  border-top: 1px solid rgba(231, 191, 91, 0.2);
  padding: 48px 0;
  color: var(--white);
  position: relative;
}

.lead-magnet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(231, 191, 91, 0.08), transparent 45%);
  pointer-events: none;
}

.lead-magnet__inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.lead-magnet__content h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  line-height: 1.25;
  text-shadow: 0 0 24px rgba(231, 191, 91, 0.15);
}

.lead-magnet__content p {
  margin: 10px 0 0;
  color: rgba(255, 249, 239, 0.8);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  max-width: 680px;
}

.lead-magnet__action {
  flex-shrink: 0;
}

@media (max-width: 840px) {
  .lead-magnet__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .lead-magnet__action {
    width: 100%;
  }
  .lead-magnet__action button {
    width: 100%;
  }
}

/* Modal Popup Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--night);
  border: 1px solid rgba(231, 191, 91, 0.25);
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px rgba(231, 191, 91, 0.1);
  position: relative;
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.modal-overlay.is-open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  color: rgba(255, 249, 239, 0.6);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--gold-bright);
}

.modal-body {
  padding: 36px 28px;
}

.modal-body h3 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.modal-body p {
  margin: 8px 0 24px;
  color: rgba(255, 249, 239, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 249, 239, 0.2);
  border-radius: 6px;
  color: var(--white);
  font-size: 1rem;
  transition: border-color 0.2s, background-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.button--full {
  width: 100%;
}

.form-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: scale-up-pulse 1s infinite alternate;
}

@keyframes scale-up-pulse {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Hero Brand Header */
.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(231, 191, 91, 0.25));
}

.hero__brand-name {
  color: var(--white);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* About Astrologer Section Enhancements */
.about-intro {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2b1f3d;
  line-height: 1.6;
}

.about-approach {
  margin-top: 28px;
  padding: 22px;
  background: rgba(179, 80, 46, 0.04);
  border-left: 4px solid var(--copper);
  border-radius: 4px;
}

.about-approach h3 {
  margin: 0 0 14px 0 !important;
  font-size: 1.1rem !important;
  font-family: Inter, sans-serif !important;
  font-weight: 800 !important;
  color: var(--copper) !important;
  letter-spacing: 0.02em;
}

.approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.approach-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #3b2f44;
  font-size: 0.95rem;
}

.approach-list__icon {
  color: var(--copper);
  font-size: 0.9rem;
}

/* Scroll To Top Button */
.contact-widget--scroll {
  background: rgba(8, 7, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 249, 239, 0.2);
  color: var(--gold-bright);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-widget--scroll.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.contact-widget--scroll:hover {
  background: var(--night);
  color: var(--white);
  border-color: var(--gold-bright);
}




