:root {
  --cream: #fff8ef;
  --cream-2: #f8f2ea;
  --white: #ffffff;
  --ink: #1d1a17;
  --muted: #70665d;
  --orange: #ff8a00;
  --orange-dark: #d96e00;
  --gold: #d9a441;
  --green: #60a96d;
  --line: #ece2d5;
  --dark: #0f0f0d;
  --shadow: 0 18px 45px rgba(34, 25, 16, 0.1);
  --shadow-strong: 0 24px 70px rgba(32, 22, 12, 0.18);
  --container: 1120px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.top-strip {
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.top-strip-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff3df;
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.16);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  color: var(--orange-dark);
  font-size: 17px;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #38332e;
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

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

.button:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 138, 0, 0.28);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 30px rgba(255, 138, 0, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button-full {
  width: 100%;
}

.nav-toggle {
  display: none;
  padding: 6px;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 99px;
}

.hero {
  padding: 54px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.98) 0%, rgba(255, 248, 239, 0.92) 48%, rgba(255, 244, 226, 0.78) 100%),
    url("../assets/bg1.png") center right / cover no-repeat;
  overflow: hidden;
}

.hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 36px;
  align-items: end;
}

.pill {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: #fff1dc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Fraunces", serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: 56px;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: min(100%, 360px);
  height: 1px;
  margin: 22px 0 0;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

h2 {
  margin-bottom: 10px;
  font-size: 38px;
}

h2 span,
h1 em {
  color: var(--orange);
  font-style: normal;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-copy p:not(.pill) {
  max-width: 600px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 72px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  justify-items: center;
  isolation: isolate;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  max-height: 540px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 38px rgba(88, 47, 18, 0.24));
}

.hero-aura {
  position: absolute;
  z-index: 1;
  width: min(88%, 480px);
  aspect-ratio: 1;
  bottom: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.52) 0 34%, transparent 35%),
    radial-gradient(circle, rgba(224, 152, 56, 0.16), transparent 68%);
  border: 1px solid rgba(217, 164, 65, 0.24);
}

.hero-aura::before,
.hero-aura::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(217, 164, 65, 0.2);
  border-radius: inherit;
}

.hero-aura::after {
  inset: 22%;
  border-style: dashed;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 4;
  margin-top: -38px;
  padding-bottom: 48px;
}

.stat-card {
  min-height: 78px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-card strong {
  color: var(--orange);
  font-size: 26px;
  font-weight: 800;
}

.stat-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 82px 0;
}

.compact {
  padding-top: 52px;
  padding-bottom: 52px;
}

.section-tint {
  background: #fbfbfb;
}

.section-cta {
  background: var(--cream-2);
}

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

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.feature-card {
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 13, 7, 0.1), rgba(18, 13, 7, 0.88)),
    var(--feature-image) center / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

.feature-vastu {
  --feature-image: url("../assets/bg1.png");
  background-position: center 42%;
}

.feature-kundli {
  --feature-image: url("../assets/bg2.png");
  background-position: center 38%;
}

.feature-muhurta {
  --feature-image: url("../assets/bg3.png");
  background-position: center 54%;
}

.feature-remedy {
  --feature-image: url("../assets/bg4.png");
  background-position: center 48%;
}

.feature-content {
  width: 100%;
  padding: 24px;
  color: #fff;
}

.feature-content span,
.tier-card span,
.benefit-card span,
.testimonial-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  color: #fff;
  background: var(--orange);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-content h3 {
  color: #fff;
  font-size: 24px;
}

.feature-content p {
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

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

.service-card,
.benefit-card,
.testimonial-card,
.contact-form,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(33, 24, 14, 0.05);
}

.service-card {
  min-height: 198px;
  padding: 22px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3 {
  font-size: 18px;
}

.service-card p,
.benefit-card p,
.testimonial-card p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.tier-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tier-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.tier-card div {
  padding: 20px;
}

.tier-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.community-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.community-grid div {
  min-height: 94px;
  padding: 18px 12px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #10100f;
  border-radius: 8px;
}

.community-grid strong {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.community-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.benefit-card {
  padding: 22px 18px;
  text-align: center;
}

.benefit-card span,
.testimonial-card span {
  color: var(--green);
  background: #edf8ef;
}

.benefit-card h3 {
  color: var(--orange-dark);
  font-size: 17px;
}

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

.testimonial-card {
  min-height: 210px;
  padding: 24px;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: var(--orange-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.mentor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.mentor-photo {
  overflow: hidden;
  border-radius: 8px;
  background: #150f09;
  box-shadow: var(--shadow-strong);
}

.mentor-photo img {
  width: 100%;
  aspect-ratio: 1403 / 1121;
  object-fit: contain;
  object-position: center;
}

.mentor-copy h3 {
  color: var(--orange-dark);
}

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

.mentor-stats div {
  padding: 18px 12px;
  background: #10100f;
  border-radius: 8px;
  text-align: center;
}

.mentor-stats strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
}

.mentor-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-wrap {
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--orange);
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding-bottom: 18px;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-panel {
  max-width: 920px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-list {
  margin: 22px 0;
}

.contact-list p {
  margin-bottom: 9px;
  font-size: 14px;
}

.contact-list a {
  color: var(--orange-dark);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form {
  padding: 22px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  padding: 46px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1fr;
  gap: 34px;
}

.site-footer .brand strong,
.site-footer h3 {
  color: var(--orange);
}

.site-footer .brand small,
.site-footer p,
.site-footer a,
.footer-links li {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  font-size: 13px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  h1 {
    font-size: 44px;
  }

  .hero-grid,
  .mentor-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .tiers-grid,
  .testimonial-row,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .top-strip-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 6px 0;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 16px;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    flex-direction: column;
  }

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

  .hero {
    padding-top: 38px;
    background:
      linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(255, 248, 239, 0.88)),
      url("../assets/bg1.png") center / cover no-repeat;
  }

  .hero-grid {
    min-height: auto;
    align-items: center;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-portrait {
    max-height: 360px;
  }

  .hero-aura {
    bottom: 20px;
    width: min(92%, 340px);
  }

  .hero-actions {
    margin-bottom: 24px;
  }

  .stats-bar {
    margin-top: 18px;
    padding-bottom: 34px;
  }

  .stats-bar,
  .feature-grid,
  .services-grid,
  .tiers-grid,
  .community-grid,
  .benefits-grid,
  .testimonial-row,
  .mentor-stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .feature-card {
    min-height: 260px;
  }

  .community-grid {
    max-width: 360px;
  }

  .contact-panel {
    padding: 22px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
