:root {
  --red: #c1121f;
  --red-dark: #7f0d16;
  --yellow: #f6bd18;
  --yellow-soft: #fff4c2;
  --white: #ffffff;
  --ink: #25120e;
  --muted: #6f5d58;
  --line: #f0d8a5;
  --surface: #fffaf0;
  --shadow: 0 18px 42px rgba(127, 13, 22, .14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, .94);
  border-bottom: 1px solid rgba(193, 18, 31, .12);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: radial-gradient(circle, #fff7ca, var(--yellow));
  box-shadow: inset 0 0 0 2px rgba(193, 18, 31, .18);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
}

.nav-menu a {
  color: #4d2720;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--red);
}

.nav-call {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--red);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--yellow-soft);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--red-dark);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #9b101b;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(37, 18, 14, .76), rgba(37, 18, 14, 0));
  pointer-events: none;
}

.hero-art {
  position: absolute;
  inset: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 56px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: .98;
  letter-spacing: 0;
}

.tagline {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #fff6d8;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: var(--red-dark);
  background: linear-gradient(135deg, #fff8c7, var(--yellow));
  box-shadow: 0 12px 30px rgba(246, 189, 24, .22);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .12);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

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

.section-heading h2,
.whatsapp-cta h2 {
  margin: 0;
  color: var(--red-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:last-child,
.whatsapp-cta p {
  color: var(--muted);
}

.inquiry-form {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 800;
  color: #4b211c;
}

input,
textarea {
  width: 100%;
  border: 1px solid #e8c989;
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, .11);
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 26px;
  margin: 14px 0 0;
  text-align: center;
  font-weight: 800;
}

.form-status.success {
  color: #137a32;
}

.form-status.error {
  color: var(--red);
}

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

.service-card,
.product-card,
.review-card,
.contact-panel,
.whatsapp-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card,
.product-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(127, 13, 22, .18);
}

.service-card span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--red);
  background: var(--yellow-soft);
  font-size: 1.45rem;
  font-weight: 900;
}

.service-card h3,
.product-card h3,
.contact-panel h3,
.footer h3 {
  margin: 0 0 8px;
  color: var(--red-dark);
  line-height: 1.2;
}

.service-card p,
.product-card p,
.review-card p,
.contact-panel p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.card-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.service-card p,
.product-card p {
  margin-bottom: 20px;
}

.product-art {
  height: 162px;
  margin: -6px -6px 20px;
  border-radius: var(--radius);
  background-color: var(--yellow-soft);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 112px 112px, cover;
}

.rudraksha {
  background-image:
    radial-gradient(circle at center, transparent 35%, #7c3a18 36% 43%, transparent 44%),
    radial-gradient(circle, #f9cd4d, #fff5c8);
}

.gemstone {
  background-image:
    conic-gradient(from 45deg, #28b6c8, #6ddef0, #116779, #28b6c8),
    radial-gradient(circle, #fff5c8, #f2b51e);
  clip-path: none;
}

.yantra {
  background-image:
    linear-gradient(45deg, transparent 43%, #c1121f 44% 56%, transparent 57%),
    linear-gradient(-45deg, transparent 43%, #c1121f 44% 56%, transparent 57%),
    radial-gradient(circle, #fff5c8, #f2b51e);
}

.books {
  background-image:
    linear-gradient(90deg, #c1121f 0 28%, #fff 28% 34%, #f6bd18 34% 62%, #fff 62% 68%, #7f0d16 68%),
    radial-gradient(circle, #fff5c8, #f2b51e);
}

.pooja {
  background-image:
    radial-gradient(ellipse at center 70%, #a25113 0 27%, transparent 28%),
    radial-gradient(circle at center 34%, #f6bd18 0 13%, transparent 14%),
    radial-gradient(circle, #fff5c8, #f2b51e);
}

.remedies {
  background-image:
    radial-gradient(circle at center, #c1121f 0 12%, transparent 13%),
    repeating-conic-gradient(from 0deg, #f6bd18 0 12deg, #fff5c8 12deg 24deg),
    radial-gradient(circle, #fff5c8, #f2b51e);
}

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

.review-card {
  overflow: hidden;
}

.review-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: cover;
  background: #451014;
}

.whatsapp-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, #fff, #fff4c2);
}

.whatsapp-btn {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 16px 24px;
  border-radius: 999px;
  color: var(--white);
  background: #16a34a;
  font-size: 1.08rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(22, 163, 74, .25);
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.contact-panel > div {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-panel > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.contact-panel a {
  color: var(--red);
  font-weight: 800;
}

.footer {
  margin-top: 48px;
  color: #ffeec7;
  background: #451014;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3 {
  color: var(--yellow);
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #ffeec7;
  text-decoration: none;
}

.footer a:hover {
  color: var(--yellow);
}

.footer p {
  color: #f2d9a4;
}

.copyright {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  text-align: center;
  color: #f2d9a4;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #16a34a;
  font-size: 1.55rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(22, 163, 74, .34);
}

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

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

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

  .reveal,
  .service-card,
  .product-card {
    transition: none;
  }
}

@media (max-width: 980px) {
  .card-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatsapp-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px 8px;
  }

  .nav-call {
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    padding-bottom: 36px;
  }

  .field-grid,
  .card-grid,
  .review-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel > div:nth-child(odd) {
    border-right: 0;
  }

  .section {
    padding: 58px 0;
  }
}

@media (max-width: 480px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    font-size: .92rem;
  }

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

  .hero {
    min-height: 640px;
  }

  .hero-actions,
  .btn,
  .whatsapp-btn {
    width: 100%;
  }

  .inquiry-form,
  .whatsapp-cta {
    padding: 22px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
  }
}
