:root {
  --maroon: #691609;
  --deep: #250906;
  --red: #971f0c;
  --orange: #e65712;
  --saffron: #f58a16;
  --gold: #f4bf55;
  --cream: #fff8e8;
  --ink: #31150d;
  --muted: #76584d;
  --line: #e7cfaa;
  --serif: "Tiro Devanagari Hindi", serif;
  --sans: "Hind", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  background: #fff;
  color: #000;
  padding: 10px 18px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 82px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 238, 0.96);
  border-bottom: 1px solid rgba(105, 22, 9, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(15px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold);
  font-family: serif;
  font-size: 24px;
  box-shadow: 0 0 0 4px #f6e2bd;
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--maroon);
}
.brand small {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}
nav > a:not(.nav-cta):hover {
  color: var(--orange);
}
.nav-cta {
  background: var(--maroon);
  color: #fff;
  padding: 11px 18px;
  border-radius: 3px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--maroon);
  margin: 5px;
}
.hero {
  min-height: calc(100svh - 82px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2b0904;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("main%20header%20photos/Hero%20section%20with%20bio.jpeg")
    center 42% / cover no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(31, 5, 2, 0.97) 0%,
      rgba(55, 10, 2, 0.85) 38%,
      rgba(55, 10, 2, 0.12) 72%
    ),
    linear-gradient(0deg, rgba(33, 4, 1, 0.55), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 750px;
  padding: 100px clamp(24px, 8vw, 130px);
}
.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
}
.eyebrow {
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow span {
  width: 35px;
  height: 1px;
  background: var(--gold);
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  margin: 18px 0;
}
h1 {
  font-size: clamp(52px, 7.2vw, 104px);
  text-shadow: 0 5px 30px #180200;
}
h1 span {
  display: block;
  font-family: var(--sans);
  font-size: 0.26em;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
h2 {
  font-size: clamp(38px, 4.5vw, 64px);
}
h2 em {
  font-style: normal;
  color: var(--orange);
}
.hero-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
  color: #ffeac1;
}
.hero-meta {
  display: flex;
  gap: 25px;
  color: #f7cea0;
  font-size: 15px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 13px 24px;
  border-radius: 3px;
  font-weight: 700;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: linear-gradient(135deg, var(--saffron), #d8430b);
  box-shadow: 0 10px 30px rgba(212, 67, 11, 0.28);
}
.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.hero-mantra {
  position: absolute;
  right: -25px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--serif);
  font-size: clamp(45px, 7vw, 100px);
  z-index: 1;
  white-space: nowrap;
}
.sacred-strip {
  background: var(--maroon);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
  padding: 20px 5%;
}
.sacred-strip div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sacred-strip b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}
.sacred-strip span {
  font-size: 13px;
}
.sacred-strip i {
  color: #c36d2b;
  font-style: normal;
}
.section {
  padding: 110px clamp(22px, 7vw, 110px);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  align-items: center;
}
.intro-copy .lead {
  font-size: 21px;
  color: #4b251a;
}
.intro-copy p {
  color: var(--muted);
}
.signature {
  font-family: var(--serif);
  font-size: 25px;
  color: var(--maroon);
  margin-top: 24px;
}
.intro-visual {
  display: grid;
  gap: 24px;
}
.intro-photo-card {
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(76, 29, 10, 0.25);
}
.intro-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}
.intro-photo-card figcaption {
  padding: 13px 8px 6px;
  line-height: 1.4;
  color: var(--muted);
}
.intro-photo-card figcaption span,
.intro-photo-card figcaption b {
  display: block;
}
.intro-photo-card figcaption span {
  font-size: 12px;
}
.intro-photo-card figcaption b {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--maroon);
}
.services-section {
  background: var(--deep);
  color: #fff;
  position: relative;
}
.services-section:before {
  content: "ॐ";
  position: absolute;
  right: 4%;
  top: 30px;
  font-family: serif;
  font-size: 230px;
  color: rgba(244, 191, 85, 0.035);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  position: relative;
}
.section-heading > p {
  max-width: 460px;
  color: #c7aaa1;
}
.section-heading h2 em {
  color: var(--gold);
}
.section-kicker.light {
  color: var(--gold);
}
.service-filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 42px 0 28px;
}
.service-filters button {
  border: 1px solid #73352c;
  background: transparent;
  color: #d9c1b8;
  border-radius: 100px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 14px;
}
.service-filters button.active,
.service-filters button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
.service-filters span {
  opacity: 0.65;
  margin-left: 4px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: #36100b;
  border: 1px solid #5b271e;
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: #bc6d32;
  background: #40130c;
}
.service-card:before {
  content: "";
  position: absolute;
  right: -25px;
  top: -28px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(244, 191, 85, 0.1);
  border-radius: 50%;
}
.service-num {
  font-size: 12px;
  color: #b67953;
  letter-spacing: 0.15em;
}
.service-icon {
  font-family: serif;
  font-size: 28px;
  color: var(--gold);
  margin-top: 20px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  margin: 10px 0;
}
.service-card p {
  font-size: 14px;
  color: #bfa59c;
  line-height: 1.5;
  margin: 0 0 20px;
}
.service-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid #5b271e;
  padding-top: 16px;
}
.service-price small {
  display: block;
  font-size: 10px;
  color: #9d7a6f;
}
.service-price b {
  color: var(--gold);
}
.service-card button {
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}
.price-note {
  margin-top: 28px;
  border: 1px solid #714126;
  background: #30100a;
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  align-items: start;
}
.price-note span {
  color: var(--gold);
}
.price-note p {
  margin: 0;
  color: #cdb7ae;
  font-size: 14px;
}
.process-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  align-items: center;
  background: #f4ead4;
}
.process-image {
  position: relative;
}
.process-image:after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
  z-index: 0;
}
.process-image img {
  aspect-ratio: 3/4;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.process-copy ol {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.process-copy li {
  display: flex;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.process-copy li > span {
  font-family: var(--serif);
  color: var(--orange);
  font-size: 17px;
}
.process-copy b {
  font-family: var(--serif);
  font-size: 20px;
}
.process-copy p {
  margin: 2px 0;
  color: var(--muted);
  font-size: 15px;
}
.text-link {
  font-weight: 700;
  color: var(--maroon);
  border-bottom: 1px solid var(--maroon);
}
.gallery-section {
  background: #160604;
  color: #fff;
}
.section-heading.dark > p {
  color: #bba29a;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 290px;
  gap: 12px;
  margin-top: 45px;
}
.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.gallery-grid .g-wide {
  grid-column: span 2;
}
.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-grid figure:hover img {
  transform: scale(1.04);
}
.gallery-grid figure:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(20, 3, 1, 0.9));
}
.gallery-grid figcaption {
  position: absolute;
  left: 20px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 18px;
}
.disclaimer {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(22px, 7vw, 110px);
  background: #f2dba8;
  color: #5a311c;
}
.disclaimer span {
  font-family: serif;
  font-size: 32px;
  color: var(--maroon);
}
.disclaimer p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.final-cta {
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  background: radial-gradient(
    circle at 50% 10%,
    #9d3013 0,
    #541108 43%,
    #240604 100%
  );
  position: relative;
  overflow: hidden;
}
.final-cta:before,
.final-cta:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(244, 191, 85, 0.13);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.final-cta:before {
  left: -130px;
}
.final-cta:after {
  right: -130px;
}
.cta-symbol {
  font-family: serif;
  font-size: 40px;
  color: var(--gold);
}
.final-cta > p:first-of-type {
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: 12px;
}
.final-cta h2 {
  margin: 20px;
}
.final-cta h2 em {
  color: var(--gold);
}
.cta-sub {
  color: #dabcb1;
}
.button-gold {
  background: var(--gold);
  color: var(--deep);
  margin: 18px auto;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 10px 24px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.contact-links a {
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 14px;
  color: #efcbbf;
}
footer {
  background: #160604;
  color: #b59489;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(22px, 7vw, 110px);
  font-size: 12px;
}
footer p {
  margin: 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-family: var(--serif);
}
.footer-brand span {
  color: var(--gold);
  font-family: serif;
  font-size: 22px;
}
.credit a {
  color: var(--gold);
}
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  background: #1f9e55;
  color: #fff;
  padding: 12px 17px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}
.floating-wa span {
  font-size: 18px;
}
dialog {
  width: min(680px, calc(100% - 28px));
  max-height: 88vh;
  border: 1px solid #b36a31;
  padding: 0;
  background: #fff9e9;
  color: var(--ink);
  box-shadow: 0 30px 90px #190300;
  overflow: auto;
}
dialog::backdrop {
  background: rgba(24, 3, 1, 0.85);
  backdrop-filter: blur(4px);
}
.dialog-close {
  position: sticky;
  float: right;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-size: 25px;
  z-index: 2;
  cursor: pointer;
}
.dialog-inner {
  padding: 44px;
}
.dialog-kicker {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.dialog-inner h2 {
  font-size: 38px;
  color: var(--maroon);
}
.benefits {
  padding: 0;
  list-style: none;
}
.benefits li {
  border-top: 1px solid var(--line);
  padding: 11px 0 11px 28px;
  position: relative;
}
.benefits li:before {
  content: "✦";
  color: var(--orange);
  position: absolute;
  left: 2px;
}
.rates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}
.rate {
  border: 1px solid var(--line);
  padding: 13px;
  background: #fff;
}
.rate b {
  display: block;
  color: var(--maroon);
}
.dialog-wa {
  background: var(--maroon);
  color: #fff;
  width: 100%;
}
.no-scroll {
  overflow: hidden;
}
@media (max-width: 980px) {
  nav {
    gap: 15px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-grid {
    gap: 50px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .site-header {
    height: 70px;
  }
  .brand strong {
    font-size: 14px;
  }
  .brand small {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff8e8;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 15px 30px rgba(50, 10, 4, 0.15);
  }
  .site-header nav.open {
    display: flex;
  }
  .hero {
    min-height: 720px;
  }
  .hero-photo {
    background-position: 57% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(31, 5, 2, 0.94), rgba(55, 10, 2, 0.45)),
      linear-gradient(0deg, rgba(33, 4, 1, 0.75), transparent);
  }
  .hero-content {
    padding: 90px 22px 50px;
  }
  .hero-meta {
    flex-direction: column;
    gap: 3px;
  }
  .sacred-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sacred-strip div {
    display: block;
  }
  .sacred-strip i {
    display: none;
  }
  .section {
    padding: 75px 22px;
  }
  .intro-grid,
  .process-section {
    grid-template-columns: 1fr;
  }
  .section-heading {
    display: block;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 270px;
  }
  .process-image {
    max-width: 420px;
  }
  .gallery-grid {
    grid-auto-rows: 230px;
  }
  .gallery-grid .g-wide {
    grid-column: span 1;
  }
  .gallery-grid figure:last-child {
    grid-column: span 2;
  }
  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .rates {
    grid-template-columns: 1fr;
  }
  .dialog-inner {
    padding: 42px 22px 25px;
  }
  .floating-wa b {
    display: none;
  }
  .floating-wa {
    padding: 14px;
  }
}
@media (max-width: 430px) {
  h1 {
    font-size: 48px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .sacred-strip {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid figure:last-child {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.hero-photo {
  background-color: #250906;
  background-position: right center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
.service-card {
  padding: 0;
  min-height: 0;
}
.service-card:before,
.service-icon {
  display: none;
}
.service-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #240805;
}
.service-image:after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(31, 7, 3, 0.68));
}
.service-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: 0.45s;
}
.service-card:hover .service-image img {
  transform: scale(1.035);
}
.service-image .service-num {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 13px;
  background: rgba(35, 6, 2, 0.82);
  border: 1px solid rgba(244, 191, 85, 0.45);
  padding: 4px 9px;
  color: var(--gold);
}
.service-body {
  padding: 20px 22px 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.service-body h3 {
  margin: 0 0 8px;
}
@media (max-width: 760px) {
  .hero-photo {
    background-position: right center;
    background-size: auto 100%;
  }
  .service-card {
    min-height: 0;
  }
}
