:root {
  --black: #05030a;
  --ink: #090719;
  --midnight: #07152f;
  --purple: #4b168e;
  --violet: #8f45ff;
  --gold: #f5c96b;
  --rose: #ff7ad9;
  --cyan: #77e8ff;
  --white: #f8f4ff;
  --muted: #b9b0cf;
  --glass: rgba(255, 255, 255, 0.07);
  --border: rgba(245, 201, 107, 0.22);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 69, 255, 0.34), transparent 30vw),
    radial-gradient(circle at 82% 28%, rgba(245, 201, 107, 0.18), transparent 24vw),
    linear-gradient(145deg, var(--black), var(--midnight) 48%, #0d0618);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0, transparent 72%);
  pointer-events: none;
}

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

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

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

::selection {
  color: #14051f;
  background: var(--gold);
}

#cosmos {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: #03010a;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  gap: 18px;
  color: var(--gold);
  background: radial-gradient(circle, #16072d, #03010a 70%);
  transition: opacity 900ms ease, visibility 900ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader span {
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loader-ring {
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 201, 107, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(245, 201, 107, 0.36);
  animation: spin 1.15s linear infinite;
}

.light-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.light-field span {
  position: absolute;
  width: clamp(180px, 24vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 69, 255, 0.24), transparent 67%);
  filter: blur(10px);
  animation: floatLight 16s ease-in-out infinite alternate;
}

.light-field span:nth-child(1) {
  left: 4%;
  top: 18%;
}

.light-field span:nth-child(2) {
  right: 3%;
  top: 12%;
  background: radial-gradient(circle, rgba(245, 201, 107, 0.2), transparent 68%);
  animation-duration: 20s;
}

.light-field span:nth-child(3) {
  left: 20%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(119, 232, 255, 0.16), transparent 70%);
  animation-duration: 18s;
}

.light-field span:nth-child(4) {
  right: 21%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(255, 122, 217, 0.14), transparent 70%);
  animation-duration: 22s;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(7, 5, 18, 0.58);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #120719;
  background: linear-gradient(135deg, #fff5c9, var(--gold), #a77820);
  box-shadow: 0 0 24px rgba(245, 201, 107, 0.54);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  color: rgba(248, 244, 255, 0.72);
  font-size: 0.88rem;
}

.main-nav a,
.site-footer a {
  transition: color 220ms ease, text-shadow 220ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
  text-shadow: 0 0 16px rgba(245, 201, 107, 0.7);
}

.nav-cta,
.primary-button,
.ghost-button {
  display: inline-flex;
  position: relative;
  isolation: isolate;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.nav-cta,
.primary-button {
  color: #140817;
  background: linear-gradient(135deg, #fff4ba, var(--gold) 52%, #a96f18);
  box-shadow: 0 0 34px rgba(245, 201, 107, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.ghost-button {
  border: 1px solid rgba(245, 201, 107, 0.4);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(245, 201, 107, 0.26);
}

.section-panel {
  position: relative;
  min-height: 100vh;
  padding: clamp(90px, 12vw, 160px) max(24px, calc((100vw - 1180px) / 2));
  overflow: clip;
}

.section-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(245, 201, 107, 0.4), rgba(143, 69, 255, 0.32), transparent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  min-height: 96svh;
  padding-top: clamp(112px, 11vw, 150px);
  padding-bottom: clamp(54px, 7vw, 86px);
}

.hero-copy {
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Cinzel, Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 4.75vw, 4.75rem);
  text-shadow: 0 0 48px rgba(143, 69, 255, 0.42);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.3rem;
}

.hero-lede,
.about-copy p,
.booking-copy p,
.service-card p,
.testimonial p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 600px;
  margin-top: 26px;
}

.hero-metrics div,
.about-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.hero-metrics strong,
.about-stats strong {
  display: block;
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.hero-metrics span,
.about-stats span {
  color: rgba(248, 244, 255, 0.64);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  min-height: min(76vh, 780px);
  perspective: 1100px;
}

.hero-media img {
  width: min(42vw, 620px);
  min-width: 340px;
  height: min(60vh, 600px);
  object-fit: cover;
  border: 1px solid rgba(245, 201, 107, 0.16);
  border-radius: 50%;
  box-shadow: var(--shadow), 0 0 90px rgba(143, 69, 255, 0.42);
  animation: imageDrift 10s ease-in-out infinite alternate;
}

.hero-media::before,
.about-visual::before {
  position: absolute;
  inset: -14%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background:
    conic-gradient(from 90deg, transparent, rgba(245, 201, 107, 0.28), transparent, rgba(143, 69, 255, 0.36), transparent),
    radial-gradient(circle, rgba(245, 201, 107, 0.08), transparent 62%);
  filter: blur(1px);
  animation: spin 28s linear infinite;
}

.hero-orbit {
  position: absolute;
  inset: 4% 0 auto auto;
  width: min(50vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 201, 107, 0.28);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(18deg);
  animation: orbitPulse 9s ease-in-out infinite alternate;
}

.orbit-two {
  inset: 12% 8% auto auto;
  width: min(38vw, 520px);
  border-color: rgba(119, 232, 255, 0.18);
  animation-duration: 12s;
}

.zodiac-float span {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(48px, 5vw, 72px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 201, 107, 0.28);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(8, 5, 22, 0.42);
  box-shadow: 0 0 32px rgba(143, 69, 255, 0.26);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  backdrop-filter: blur(12px);
  animation: symbolFloat 6s ease-in-out infinite alternate;
}

.zodiac-float span:nth-child(1) {
  top: 18%;
  right: 40%;
}

.zodiac-float span:nth-child(2) {
  top: 26%;
  right: 8%;
  animation-delay: -1.2s;
}

.zodiac-float span:nth-child(3) {
  right: 30%;
  bottom: 18%;
  animation-delay: -2.8s;
}

.zodiac-float span:nth-child(4) {
  top: 55%;
  right: 2%;
  animation-delay: -3.4s;
}

.zodiac-float span:nth-child(5) {
  left: 44%;
  bottom: 9%;
  animation-delay: -4.5s;
}

.zodiac-float span:nth-child(6) {
  top: 12%;
  left: 54%;
  animation-delay: -5.5s;
}

.moon-wrap {
  position: absolute;
  top: 17%;
  right: clamp(20px, 7vw, 90px);
  z-index: 5;
  width: clamp(84px, 10vw, 142px);
  aspect-ratio: 1;
  filter: drop-shadow(0 0 38px rgba(245, 201, 107, 0.42));
}

.moon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, #fff8d7 0 8%, transparent 9%),
    radial-gradient(circle at 66% 58%, #baa86f 0 7%, transparent 8%),
    radial-gradient(circle at 43% 70%, #817147 0 5%, transparent 6%),
    radial-gradient(circle at 38% 38%, #fff5be, #d7bc76 48%, #766439 100%);
  animation: moonRotate 18s linear infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(245, 201, 107, 0.52);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 5px;
  height: 9px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--gold);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(34px, 6vw, 78px);
}

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

.service-card,
.testimonial,
.contact-item,
.booking-form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 201, 107, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.service-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-130%);
  transition: transform 700ms ease;
}

.service-card:hover {
  border-color: rgba(245, 201, 107, 0.42);
  box-shadow: 0 35px 110px rgba(84, 36, 160, 0.32);
  transform: translateY(-10px) rotateX(4deg) rotateY(-5deg);
}

.service-card:hover::after {
  transform: translateX(130%);
}

.service-card > span {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #130815;
  background: radial-gradient(circle, #fff6c7, var(--gold));
  box-shadow: 0 0 34px rgba(245, 201, 107, 0.34);
  font-size: 1.5rem;
}

.about,
.booking {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: min(100%, 560px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(245, 201, 107, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 70px rgba(143, 69, 255, 0.28);
}

.chart-ring {
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 201, 107, 0.34);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(245, 201, 107, 0.5) 0 1deg, transparent 1deg 15deg),
    radial-gradient(circle, rgba(143, 69, 255, 0.18), transparent 70%);
  animation: spin 22s linear infinite reverse;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.zodiac {
  text-align: center;
}

.zodiac .section-heading {
  margin-inline: auto;
}

.zodiac-wheel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 900px;
}

.zodiac-wheel button {
  min-height: 136px;
  border: 1px solid rgba(245, 201, 107, 0.22);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 2.4rem;
  transform: translateZ(0);
  transition: transform 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.zodiac-wheel button span {
  display: block;
  margin-top: 12px;
  color: rgba(248, 244, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.zodiac-wheel button:hover {
  background: rgba(245, 201, 107, 0.12);
  box-shadow: 0 22px 70px rgba(143, 69, 255, 0.22), 0 0 24px rgba(245, 201, 107, 0.18);
  transform: translateY(-8px) rotateZ(-2deg);
}

.testimonial-stage {
  position: relative;
  min-height: 280px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: clamp(28px, 6vw, 74px);
  opacity: 0;
  transform: translateX(34px) scale(0.97);
  transition: opacity 700ms ease, transform 700ms ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.testimonial p {
  max-width: 980px;
  color: var(--white);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 4rem);
  line-height: 1.18;
}

.testimonial span {
  color: var(--gold);
  font-weight: 800;
}

.testimonial-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.testimonial-dots button {
  width: 42px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.testimonial-dots button.active {
  width: 76px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(245, 201, 107, 0.5);
}

.booking {
  min-height: auto;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.booking-form label {
  display: grid;
  gap: 9px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form .wide {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  background: rgba(3, 1, 10, 0.44);
  outline: 0;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.booking-form input,
.booking-form select {
  height: 52px;
  padding: 0 15px;
}

.booking-form textarea {
  min-height: 122px;
  padding: 15px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(245, 201, 107, 0.62);
  background: rgba(3, 1, 10, 0.68);
  box-shadow: 0 0 0 4px rgba(245, 201, 107, 0.1);
}

.booking-form option {
  color: #090719;
}

.contact {
  min-height: 66vh;
  text-align: center;
}

.contact .section-heading {
  margin-inline: auto;
}

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

.contact-item {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 26px;
  color: rgba(248, 244, 255, 0.86);
  transition: transform 280ms ease, border-color 280ms ease, color 280ms ease;
}

.contact-item:hover {
  border-color: rgba(245, 201, 107, 0.44);
  color: var(--gold);
  transform: translateY(-8px);
}

.contact-item span {
  color: var(--gold);
  font-size: 2rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2)) 40px;
  color: rgba(248, 244, 255, 0.62);
  background: rgba(3, 1, 10, 0.42);
}

[data-reveal],
.text-reveal {
  opacity: 0;
  transform: translateY(38px) rotateX(8deg);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible,
.text-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.service-card[data-reveal] {
  transform: translateY(68px) rotateX(18deg) rotateZ(-4deg);
}

.service-card[data-reveal].is-visible {
  transform: translateY(0) rotateX(0deg) rotateZ(0deg);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes moonRotate {
  to {
    transform: rotate(360deg);
    filter: hue-rotate(18deg);
  }
}

@keyframes floatLight {
  to {
    transform: translate3d(42px, -36px, 0) scale(1.14);
  }
}

@keyframes imageDrift {
  to {
    transform: translate3d(0, -18px, 0) rotateY(-4deg) rotateX(3deg);
  }
}

@keyframes symbolFloat {
  to {
    transform: translate3d(14px, -22px, 0) rotate(8deg);
  }
}

@keyframes orbitPulse {
  to {
    opacity: 0.62;
    transform: rotateX(64deg) rotateZ(58deg) scale(1.06);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(16px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .about,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-media {
    grid-column: 1;
    grid-row: auto;
    order: 0;
    min-height: 440px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: auto;
    order: -1;
  }

  .hero-media img {
    width: min(92vw, 540px);
    min-width: 0;
    height: 440px;
    margin-left: auto;
  }

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

  .zodiac-wheel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section-panel {
    padding-inline: 18px;
  }

  .brand span:last-child {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 3.35rem);
  }

  .hero {
    min-height: 96svh;
    padding-top: 116px;
    padding-bottom: 86px;
  }

  .hero-media {
    position: absolute;
    top: 104px;
    right: -150px;
    z-index: 0;
    width: 420px;
    min-height: 300px;
    margin-top: 0;
    opacity: 0.46;
    pointer-events: none;
  }

  .hero-media img {
    width: 420px;
    min-width: 0;
    height: 420px;
  }

  .service-grid,
  .about-stats,
  .zodiac-wheel,
  .booking-form,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    display: none;
  }

  .moon-wrap {
    z-index: 1;
    top: 210px;
    right: -26px;
    opacity: 0.34;
  }

  .zodiac-float span {
    display: none;
  }

  .booking-form .wide {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

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