:root {
  --navy: #282c46;
  --navy-dark: #080b1f;
  --orange: #ff681f;
  --orange-deep: #e95311;
  --rose: #ff8a4c;
  --teal: #ffb36b;
  --saffron: #ffd39b;
  --cream: #fff7ef;
  --paper: #ffffff;
  --mist: #f3f4f8;
  --ink: #151827;
  --muted: #626675;
  --line: #e6e7ee;
  --shadow: 0 24px 70px rgba(15, 19, 37, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: #fff8f1;
  overflow-x: hidden;
}

section {
  isolation: isolate;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.animated-sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  --scroll-shift: 0px;
  background:
    radial-gradient(circle at 18% calc(18% + var(--scroll-shift)), rgba(255, 104, 31, 0.2), transparent 22rem),
    radial-gradient(circle at 82% calc(34% - var(--scroll-shift)), rgba(255, 179, 107, 0.18), transparent 24rem),
    radial-gradient(circle at 50% 80%, rgba(255, 138, 76, 0.12), transparent 22rem),
    linear-gradient(135deg, #fffaf6 0%, #fff5eb 48%, #ffffff 100%);
  transition: background-position 120ms linear;
}

.animated-sky::before,
.animated-sky::after {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    radial-gradient(circle, rgba(40, 44, 70, 0.35) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 104, 31, 0.22) 0 1px, transparent 1.5px);
  background-position:
    0 0,
    40px 60px;
  background-size:
    130px 130px,
    190px 190px;
  animation: starDrift 34s linear infinite;
  transform: translateY(calc(var(--scroll-shift) * -0.45));
}

.animated-sky::after {
  opacity: 0.55;
  animation-duration: 52s;
  animation-direction: reverse;
}

.animated-sky span {
  position: absolute;
  width: clamp(11rem, 18vw, 21rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 104, 31, 0.24);
  border-radius: 50%;
  animation: orbitFloat 12s ease-in-out infinite alternate;
  transform: translateY(calc(var(--scroll-shift) * 0.2));
}

.animated-sky span:nth-child(1) {
  left: 6%;
  top: 16%;
}

.animated-sky span:nth-child(2) {
  right: 7%;
  top: 12%;
  border-color: rgba(40, 44, 70, 0.22);
  animation-delay: -4s;
}

.animated-sky span:nth-child(3) {
  left: 42%;
  bottom: 5%;
  animation-delay: -7s;
}

.animated-sky span:nth-child(4) {
  right: 18%;
  bottom: 26%;
  width: clamp(6rem, 12vw, 13rem);
  border-color: rgba(255, 104, 31, 0.18);
  animation-delay: -2s;
}

@keyframes starDrift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(80px, 60px, 0) rotate(8deg); }
}

@keyframes orbitFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(1.2rem, -1rem, 0) scale(1.06); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  width: min(48vw, 22rem);
}

.brand img {
  width: 100%;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(0.8rem, 2.2vw, 2rem);
  color: var(--navy);
  font-weight: 760;
}

.site-nav a,
.contact-menu-button {
  padding: 0.5rem 0;
}

.contact-dropdown {
  position: relative;
}

.contact-menu-button {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.contact-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 12rem;
  display: grid;
  gap: 0.45rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.contact-dropdown.is-open .contact-menu,
.contact-dropdown:hover .contact-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.7rem;
  padding: 0 0.75rem;
  border-radius: 8px;
  background: rgba(255, 248, 241, 0.9);
}

.contact-menu svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.whatsapp-link {
  color: #fff !important;
  border-color: #25d366 !important;
  background: #25d366 !important;
}

.language-toggle {
  min-height: 2.45rem;
  padding: 0 0.95rem;
  color: #fff;
  font: inherit;
  font-weight: 850;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  cursor: pointer;
}

.site-nav a:hover,
.contact-menu-button:hover,
.text-link:hover {
  color: var(--orange);
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.26rem auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: rgba(255, 255, 255, 0.36);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -16rem;
  width: min(55vw, 42rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 5rem solid rgba(255, 104, 31, 0.68);
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 1.15rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 13ch;
  margin-bottom: 0.9rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.zodiac-feature p,
.contact-section p {
  max-width: 43rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions,
.hero-meta,
.social-row,
.blog-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 0.85rem;
  margin-top: 2rem;
}

.primary-action,
.secondary-action,
.text-link {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
}

.primary-action {
  padding: 0 1.3rem;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 44px rgba(255, 104, 31, 0.25);
}

.secondary-action {
  padding: 0 1.3rem;
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
}

.hero-meta {
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-meta div {
  display: grid;
  gap: 0.15rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(18px);
}

.hero-meta strong {
  color: var(--navy);
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  min-height: 38rem;
  display: grid;
  place-items: center;
}

.zodiac-orbit {
  width: min(100%, 37rem);
  filter: drop-shadow(0 0 32px rgba(58, 112, 221, 0.45));
  animation: slowSpin 42s linear infinite;
}

.hanuman {
  position: absolute;
  right: -2rem;
  bottom: 1.25rem;
  width: min(52vw, 27rem);
  filter: drop-shadow(0 24px 30px rgba(15, 19, 37, 0.22));
}

.hanuman-seated {
  position: absolute;
  left: -1.5rem;
  bottom: 1.25rem;
  z-index: 2;
  width: min(30vw, 15rem);
  filter: drop-shadow(0 22px 28px rgba(15, 19, 37, 0.2));
}

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

.services-section,
.pricing-section,
.cosmic-section,
.blogs-section,
.contact-section,
.zodiac-feature {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

/* Reusable translucent image layer for readable section backgrounds. */
.translucent-bg {
  overflow: hidden;
}

.translucent-bg::before,
.translucent-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.translucent-bg::before {
  z-index: -2;
  opacity: 0.18;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
}

.translucent-bg::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 241, 0.88)),
    radial-gradient(circle at 85% 20%, rgba(255, 104, 31, 0.16), transparent 20rem);
}

.horoscope-bg {
  --section-bg: url("assets/horoscope-bg.png");
}

.pricing-bg {
  --section-bg: url("assets/pricing.jpeg");
}

.consultation-bg {
  --section-bg: url("assets/consultation-bg.png");
}

.remedies-bg {
  --section-bg: url("assets/remedies-bg.png");
}

.section-heading {
  max-width: 55rem;
  margin-bottom: 2rem;
}

.section-heading.centered {
  max-width: 62rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-inline: auto;
}

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

.service-grid article,
.price-card,
.cosmic-grid article,
.blog-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(15, 19, 37, 0.08);
}

.price-card {
  color: inherit;
}

.service-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 17rem;
  padding: 1.25rem;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-card::before {
  z-index: -2;
  opacity: 0.34;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
}

.service-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 241, 0.84)),
    radial-gradient(circle at 88% 18%, rgba(255, 104, 31, 0.12), transparent 9rem);
}

.service-horoscope {
  --card-bg: url("assets/horoscope-bg.png");
}

.service-kundli {
  --card-bg: url("assets/consultation-bg.png");
}

.service-marriage {
  --card-bg: url("assets/remedies-bg.png");
}

.service-remedies {
  --card-bg: url("assets/hanuman-blessing.png");
}

.service-grid span {
  display: grid;
  width: 3rem;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 850;
}

.service-grid p,
.price-card li,
.blog-panel li,
.blog-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.zodiac-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 104, 31, 0.22), transparent 18rem),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08), transparent 22rem),
    #1d2034;
  color: #fff;
}

.zodiac-feature.translucent-bg::before {
  opacity: 0.16;
}

.zodiac-feature.translucent-bg::after {
  background:
    linear-gradient(90deg, rgba(29, 32, 52, 0.96), rgba(29, 32, 52, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(255, 104, 31, 0.28), transparent 18rem);
}

.zodiac-feature img {
  width: min(100%, 34rem);
  margin-inline: auto;
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(106, 166, 255, 0.32);
}

.zodiac-feature h2 {
  color: #fff;
}

.zodiac-feature p {
  color: #d9dcea;
}

.text-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.pricing-section,
.blogs-section {
  background: rgba(243, 244, 248, 0.7);
}

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

.price-card {
  position: relative;
  overflow: hidden;
  min-height: 25rem;
  padding: 1.5rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.price-card:hover,
.price-card:focus-visible {
  z-index: 2;
  transform: translateY(-0.7rem) scale(1.025);
  border-color: rgba(255, 104, 31, 0.62);
  box-shadow: 0 34px 90px rgba(15, 19, 37, 0.2);
  outline: none;
}

.price-card.featured {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 11, 31, 0.94), rgba(40, 44, 70, 0.9)),
    var(--navy-dark);
  border-color: var(--navy-dark);
}

.price-card.soft {
  background: rgba(255, 247, 239, 0.72);
}

.price-card.featured h3,
.price-card.featured li,
.price-card.featured strong,
.price-card.featured .price-detail p {
  color: #fff;
}

.price-card strong {
  display: block;
  margin: 1.7rem 0;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 4.3rem);
  line-height: 1;
}

.price-card ul,
.blog-panel ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.2rem;
}

.price-detail {
  position: absolute;
  inset: auto 1rem 1rem;
  padding: 0.9rem;
  border-radius: 8px;
  background: rgba(255, 104, 31, 0.1);
  opacity: 0;
  transform: translateY(0.8rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.price-card.featured .price-detail {
  background: rgba(255, 255, 255, 0.12);
}

.price-card:hover .price-detail,
.price-card:focus-visible .price-detail {
  opacity: 1;
  transform: translateY(0);
}

.price-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cosmic-section {
  background: rgba(255, 255, 255, 0.74);
}

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

.cosmic-grid article {
  min-height: 15rem;
  padding: 1.25rem;
}

.cosmic-grid span {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.cosmic-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.blog-tabs {
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tab-button {
  min-height: 2.8rem;
  padding: 0 1rem;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.tab-button.is-active {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.blog-panel {
  padding: clamp(1.2rem, 4vw, 2rem);
}

.blog-panel h3 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.blog-panel h4 {
  margin: 1.4rem 0 0.55rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 28rem);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  color: #fff;
  background: var(--orange);
}

.contact-section.translucent-bg::before {
  opacity: 0.14;
}

.contact-section.translucent-bg::after {
  background: linear-gradient(90deg, rgba(255, 104, 31, 0.95), rgba(233, 83, 17, 0.9));
}

.contact-section h2,
.contact-section p,
.contact-section .eyebrow {
  color: #fff;
}

.contact-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.contact-card > a,
.social-row a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(9rem, 100%), 1fr));
  gap: 0.7rem;
}

.social-row a {
  gap: 0.55rem;
  justify-content: center;
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  white-space: nowrap;
}

.social-row svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.social-row a:first-child {
  border-color: #ff0000;
  background: #ff0000;
}

.social-row a:nth-child(2) {
  border-color: #1877f2;
  background: #1877f2;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 5vw, 5rem);
  color: #fff;
  background: var(--orange);
}

.site-footer img {
  width: min(45vw, 17rem);
  border-radius: 8px;
}

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 1rem;
}

.pricing-modal.is-open {
  display: grid;
}

.pricing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 31, 0.58);
  backdrop-filter: blur(8px);
}

.pricing-form {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.1rem, 4vw, 1.6rem);
  border: 1px solid rgba(255, 104, 31, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pricing-form h2 {
  max-width: 100%;
  margin-bottom: 0.2rem;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.pricing-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 850;
}

.pricing-form input,
.pricing-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
  font: inherit;
}

.pricing-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.pricing-form input:focus,
.pricing-form textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 104, 31, 0.18);
}

.pricing-form .primary-action {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.pricing-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8f1;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero,
  .zodiac-feature,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 28rem;
  }

  .hanuman {
    right: 0;
    bottom: 1.4rem;
    width: min(50vw, 22rem);
  }

  .hanuman-seated {
    left: -0.5rem;
    bottom: 1.4rem;
    width: min(28vw, 12rem);
  }

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

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
  }

  .brand {
    width: min(62vw, 13rem);
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 4.7rem 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .contact-menu-button,
  .language-toggle {
    width: 100%;
    min-height: 2.9rem;
    padding: 0 0.85rem;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: rgba(255, 248, 241, 0.82);
  }

  .language-toggle {
    justify-content: center;
    color: #fff;
    background: var(--orange);
  }

  .contact-menu {
    position: static;
    min-width: 0;
    margin-top: 0.45rem;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    background: rgba(255, 255, 255, 0.68);
  }

  .contact-dropdown.is-open .contact-menu {
    display: grid;
  }

  .hero {
    min-height: auto;
    grid-template-areas:
      "copy"
      "media";
    gap: 1.2rem;
    padding: 1.75rem 0.85rem 2.25rem;
    overflow: hidden;
  }

  .hero-copy {
    grid-area: copy;
  }

  .hero-media {
    grid-area: media;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.6vw, 2.55rem);
    line-height: 1.06;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.6rem, 7.5vw, 2.4rem);
    line-height: 1.1;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-copy > p:not(.eyebrow),
  .section-heading p,
  .zodiac-feature p,
  .contact-section p {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.35rem;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-height: 3rem;
    padding: 0 1rem;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
  }

  .hero::after {
    width: 20rem;
    right: -12rem;
    bottom: -14rem;
  }

  .hero-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .hero-meta div {
    min-width: 0;
    width: 100%;
  }

  .pricing-grid,
  .service-grid,
  .cosmic-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .price-card {
    min-height: auto;
    padding-bottom: 1.25rem;
  }

  .price-card:hover,
  .price-card:focus-visible {
    transform: translateY(-0.25rem);
  }

  .price-detail {
    position: static;
    margin-top: 1rem;
    opacity: 1;
    transform: none;
  }

  .hero-media {
    min-height: clamp(18rem, 72vw, 25rem);
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    background:
      radial-gradient(circle at 48% 45%, rgba(255, 255, 255, 0.82), transparent 50%),
      linear-gradient(135deg, rgba(255, 104, 31, 0.14), rgba(255, 255, 255, 0.5));
  }

  .zodiac-orbit {
    width: min(86vw, 23rem);
  }

  .hanuman {
    position: absolute;
    right: 0.15rem;
    bottom: 1.1rem;
    width: min(52vw, 14rem);
  }

  .hanuman-seated {
    left: 0.15rem;
    bottom: 1.1rem;
    width: min(34vw, 9rem);
  }

  .contact-section {
    gap: 1rem;
  }

  .contact-card {
    width: 100%;
    min-width: 0;
    padding: 0.9rem;
  }

  .contact-card > a,
  .social-row a {
    width: 100%;
    min-width: 0;
    min-height: 2.8rem;
    padding: 0 0.8rem;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .contact-card > a {
    justify-content: flex-start;
  }

  .social-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .social-row a {
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    padding: 0 0.5rem;
    min-height: 3rem;
  }

  .social-row svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
  }

  .blog-tabs {
    gap: 0.5rem;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0.25rem;
  }

  .tab-button {
    flex: 1 1 min(9rem, 100%);
    white-space: normal;
  }

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

@media (max-width: 420px) {
  .brand {
    width: min(58vw, 12rem);
  }

  .services-section,
  .pricing-section,
  .cosmic-section,
  .blogs-section,
  .contact-section,
  .zodiac-feature {
    padding: 2.5rem 0.85rem;
  }

  .hero {
    padding-inline: 0.75rem;
  }

  .animated-sky span {
    display: none;
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.1rem);
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .primary-action,
  .secondary-action {
    font-size: 0.9rem;
  }

  .social-row {
    grid-template-columns: 1fr;
  }

  .social-row a {
    font-size: 0.9rem;
    padding: 0 0.8rem;
  }

  .hero-media {
    min-height: clamp(17rem, 78vw, 21rem);
  }

  .zodiac-orbit {
    width: min(82vw, 18rem);
  }

  .hanuman {
    width: min(52vw, 11rem);
  }

  .hanuman-seated {
    width: min(34vw, 7.5rem);
  }
}

@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;
  }
}
