:root {
  --red: #a10b0b;
  --deep-red: #730707;
  --dark-red: #4f0505;
  --saffron: #ffbd16;
  --yellow: #ffd34d;
  --cream: #fff3cf;
  --pale: #fffaf0;
  --white: #ffffff;
  --ink: #261b19;
  --muted: #705b55;
  --line: #eadab8;
  --soft-red: #f8e8e4;
  --shadow: 0 16px 36px rgba(80, 18, 6, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  background: var(--pale);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

figure {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  background: var(--deep-red);
  border-bottom: 3px solid var(--saffron);
  box-shadow: 0 8px 28px rgba(65, 0, 0, 0.2);
  transition: min-height 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  box-shadow: 0 10px 34px rgba(65, 0, 0, 0.3);
}

.brand {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  align-self: stretch;
  display: inline-flex;
  min-width: 246px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 24px;
  background: var(--white);
  color: var(--red);
  box-shadow: 0 10px 26px rgba(70, 0, 0, 0.2);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid var(--saffron);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: Cinzel, Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 23px;
  line-height: 1.05;
}

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

.site-nav {
  grid-column: 1 / 4;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.7vw, 54px);
  padding: 0 38px;
}

.site-nav a:nth-child(3) {
  margin-left: 292px;
}

.site-nav a {
  position: relative;
  padding: 25px 2px 22px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-right: 2px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px max(24px, calc((100vw - 1280px) / 2)) 58px;
  background: var(--saffron);
}

.hero-image {
  position: absolute;
  inset: 74px 0 0;
  z-index: -3;
  height: calc(100% - 74px);
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 74px 0 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(255, 196, 18, 0.96) 0%, rgba(255, 198, 23, 0.83) 34%, rgba(255, 202, 27, 0.2) 66%, rgba(255, 199, 17, 0.04) 100%);
}

.hero-content {
  width: min(660px, 55vw);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  color: var(--red);
  font-size: clamp(62px, 8vw, 104px);
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.62);
}

h2 {
  color: var(--red);
  font-size: clamp(32px, 3.6vw, 46px);
}

h3 {
  font-size: 21px;
}

.hero-lede {
  max-width: 610px;
  margin: 20px 0 0;
  color: #341c0d;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(80, 0, 0, 0.18);
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.78);
  color: var(--red);
}

.practice-strip {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 16px max(24px, calc((100vw - 1280px) / 2));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.practice-strip p {
  margin: 0 auto 0 0;
  color: var(--deep-red);
  font-family: Cinzel, Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.practice-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: 88px max(24px, calc((100vw - 1280px) / 2));
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.gemstone-intro h2,
.credential-card h2,
.final-cta h2,
.pricing-heading h2,
.location-intro h2 {
  margin-bottom: 18px;
}

.section p,
.section li,
.final-cta p {
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background: var(--white);
}

.section-copy {
  max-width: 660px;
}

.section-copy p {
  font-size: 17px;
}

.about-visual,
.gemstone-visual,
.location-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}

.about-visual {
  min-height: 500px;
  box-shadow: var(--shadow);
}

.about-visual img {
  height: 500px;
  object-fit: cover;
}

.about-visual figcaption,
.gemstone-visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 480px;
  padding: 16px 18px;
  border-left: 4px solid var(--saffron);
  border-radius: 4px;
  background: rgba(79, 5, 5, 0.92);
  color: var(--white);
  font-family: Cinzel, Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.services-section,
.charges-section {
  background: var(--cream);
}

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

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--deep-red);
  box-shadow: 0 14px 26px rgba(99, 5, 5, 0.14);
  color: var(--white);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(99, 5, 5, 0.2);
}

.service-card h3 {
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.service-card p {
  margin: 14px 0 0;
  color: #f9dddd;
  font-size: 14px;
}

.service-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #fff 0 11px, transparent 12px), conic-gradient(from 0deg, #ffe175, #ff8d2b, #a90b0b, #ffe175);
}

.service-icon.moon {
  background: radial-gradient(circle at 68% 38%, var(--deep-red) 0 22px, transparent 23px), radial-gradient(circle at 42% 45%, #fff8df 0 30px, transparent 31px);
}

.service-icon.number,
.service-icon.face,
.service-icon.book,
.service-icon.vastu {
  border-radius: 8px;
}

.service-icon.number {
  background: linear-gradient(135deg, var(--yellow), #ef7715);
}

.service-icon.face {
  background: radial-gradient(circle at 50% 38%, #fff 0 22px, transparent 23px), linear-gradient(135deg, var(--yellow), var(--red));
}

.service-icon.book {
  background: linear-gradient(90deg, var(--yellow) 0 48%, var(--deep-red) 48% 52%, #ffe890 52% 100%);
}

.service-icon.vastu {
  background: linear-gradient(45deg, transparent 44%, var(--white) 45% 55%, transparent 56%), linear-gradient(-45deg, transparent 44%, rgba(255, 255, 255, 0.85) 45% 55%, transparent 56%), linear-gradient(135deg, var(--yellow), var(--red));
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
  margin-top: 34px;
  text-align: center;
}

.section-action p {
  margin: 0;
  font-weight: 700;
}

.text-link {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--saffron);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.gemstone-section {
  display: grid;
  grid-template-columns: minmax(380px, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.gemstone-visual {
  min-height: 520px;
  box-shadow: var(--shadow);
}

.gemstone-visual img {
  height: 520px;
  object-fit: cover;
}

.gemstone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.gemstone-list span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--pale);
  color: var(--deep-red);
  font-size: 12px;
  font-weight: 800;
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 40px;
}

.pricing-heading > p {
  margin: 0 0 5px;
  font-size: 15px;
}

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

.price-card {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(83, 31, 5, 0.07);
}

.price-card.featured {
  grid-column: 1 / -1;
  min-height: 158px;
  border-color: var(--deep-red);
  background: var(--deep-red);
  color: var(--white);
}

.price-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 5px;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.price-card p {
  margin: 7px 0 0;
  font-size: 13px;
}

.price-card strong {
  flex: 0 0 auto;
  color: var(--red);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
  white-space: nowrap;
}

.price-card strong small {
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.price-card.featured span,
.price-card.featured h3,
.price-card.featured strong,
.price-card.featured p {
  color: var(--white);
}

.price-card.featured span {
  color: var(--yellow);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-top: 28px;
}

.pricing-note span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.locations-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(44px, 7vw, 86px);
  align-items: start;
  background: var(--white);
}

.location-intro > p:not(.eyebrow) {
  max-width: 600px;
}

.location-visual {
  margin-top: 28px;
  box-shadow: var(--shadow);
}

.location-visual img {
  height: 310px;
  object-fit: cover;
}

.location-list {
  display: grid;
  gap: 14px;
  padding-top: 2px;
}

.location-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--pale);
}

.location-list > article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--yellow);
  font-family: Cinzel, Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.location-list h3 {
  color: var(--deep-red);
  font-size: 20px;
}

.location-list p {
  margin: 8px 0 0;
  font-size: 14px;
}

.location-list a {
  grid-column: 2;
  width: fit-content;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--saffron);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.credentials-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.7fr);
  gap: 18px;
  background: var(--soft-red);
}

.credential-card,
.credential-summary {
  padding: 38px;
  border-radius: var(--radius);
}

.credential-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.credential-card ul {
  margin: 24px 0 0;
  padding-left: 22px;
}

.credential-card li + li {
  margin-top: 11px;
}

.credential-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--deep-red);
  color: var(--white);
}

.credential-summary .eyebrow {
  color: var(--yellow);
}

.credential-summary h3,
.credential-summary p,
.credential-summary .text-link {
  color: var(--white);
}

.credential-summary h3 {
  font-size: 28px;
}

.credential-summary .text-link {
  width: fit-content;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 76px max(24px, calc((100vw - 1280px) / 2));
  background: var(--red);
  color: var(--white);
}

.final-cta > div:first-child {
  max-width: 760px;
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta p {
  margin-bottom: 0;
}

.final-cta .button.primary {
  background: var(--saffron);
  color: var(--dark-red);
}

.final-cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
  color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(24px, calc((100vw - 1280px) / 2));
  background: var(--dark-red);
  color: var(--cream);
  font-size: 13px;
}

.site-footer strong {
  color: var(--white);
  font-family: Cinzel, Georgia, serif;
  font-size: 17px;
}

.site-footer p {
  margin: 2px 0 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-contact a {
  color: var(--yellow);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
    align-self: center;
    padding: 8px 12px;
  }

  .site-nav {
    gap: 20px;
    justify-content: flex-end;
    padding: 0;
  }

  .site-nav a:nth-child(3) {
    margin-left: 0;
  }

  .hero {
    padding-inline: 32px;
  }

  .practice-strip {
    flex-wrap: wrap;
    padding: 20px 32px;
  }

  .practice-strip p {
    width: 100%;
    text-align: center;
  }

  .section {
    padding-inline: 32px;
  }

  .about-section,
  .gemstone-section,
  .locations-section,
  .credentials-section {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: var(--deep-red);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding: 104px 24px 42px;
  }

  .hero-image,
  .hero-shade {
    inset: 68px 0 0;
    height: calc(100% - 68px);
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(255, 198, 23, 0.94) 0%, rgba(255, 198, 23, 0.82) 58%, rgba(255, 198, 23, 0.42) 100%);
  }

  .hero-content {
    width: min(600px, 82vw);
  }

  .practice-strip {
    gap: 10px 18px;
  }

  .practice-strip span {
    white-space: normal;
  }

  .about-section,
  .gemstone-section,
  .locations-section,
  .credentials-section,
  .pricing-heading {
    grid-template-columns: 1fr;
  }

  .gemstone-visual {
    order: 2;
  }

  .pricing-heading {
    gap: 6px;
  }

  .final-cta {
    display: grid;
    padding-inline: 32px;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 610px;
    padding-inline: 20px;
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .practice-strip {
    justify-content: flex-start;
    padding-inline: 20px;
  }

  .practice-strip p {
    text-align: left;
  }

  .section {
    padding: 64px 20px;
  }

  .service-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    grid-column: auto;
  }

  .price-card {
    min-height: 152px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .price-card strong {
    align-self: flex-end;
  }

  .pricing-note,
  .section-action {
    align-items: stretch;
    flex-direction: column;
    text-align: left;
  }

  .pricing-note .button {
    width: 100%;
  }

  .about-visual,
  .about-visual img,
  .gemstone-visual,
  .gemstone-visual img {
    min-height: 380px;
    height: 380px;
  }

  .about-visual figcaption,
  .gemstone-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-size: 14px;
  }

  .location-list article {
    padding: 20px;
  }

  .credential-card,
  .credential-summary {
    padding: 26px 22px;
  }

  .final-cta {
    padding: 62px 20px;
  }

  .cta-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
