:root {
  --bg: #f6efe4;
  --bg-deep: #ead8b8;
  --card: rgba(255, 249, 241, 0.74);
  --card-border: rgba(144, 90, 37, 0.34);
  --primary: #7a4318;
  --secondary: #a56b2e;
  --text: #5f3717;
  --soft-text: #7d5c3e;
  --glow: rgba(222, 164, 87, 0.36);
  --shadow: rgba(97, 51, 18, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Tiro Devanagari Hindi", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 36%),
    linear-gradient(145deg, #fcf8f1 0%, var(--bg) 40%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

.site-wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.bg-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.75;
  pointer-events: none;
}

.halo-one {
  width: 40rem;
  height: 40rem;
  top: -10rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(255, 225, 177, 0.7), rgba(255, 225, 177, 0));
}

.halo-two {
  width: 36rem;
  height: 36rem;
  right: -10rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(189, 126, 63, 0.28), rgba(189, 126, 63, 0));
}

.hero-section {
  min-height: 100vh;
  position: relative;
  padding: 2rem 0;
}

.hero-card {
  position: relative;
  padding: 3rem 1.5rem;
  border: 1px solid var(--card-border);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(252, 244, 231, 0.82)),
    var(--card);
  box-shadow:
    0 1.5rem 4rem var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.5rem;
  pointer-events: none;
}

.hero-card::before {
  border: 1px solid rgba(165, 107, 46, 0.2);
}

.hero-card::after {
  inset: 2rem;
  border: 1px dashed rgba(165, 107, 46, 0.18);
}

.brand-block {
  position: relative;
  margin-bottom: 0.5rem;
}

.brand-logo {
  width: min(100%, 700px);
  filter: drop-shadow(0 14px 30px rgba(138, 76, 28, 0.18));
  animation: floatLogo 5.5s ease-in-out infinite;
}

.devanagari-text {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  letter-spacing: 0.28rem;
  color: var(--secondary);
  text-transform: uppercase;
}

.coming-title {
  position: relative;
  z-index: 1;
  font-family: "Cinzel", serif;
  font-size: clamp(2.7rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.coming-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto 2.25rem;
  font-size: clamp(1.02rem, 2.4vw, 1.25rem);
  line-height: 1.8;
  color: var(--soft-text);
}

.service-strip {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.service-pill {
  height: 100%;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(165, 107, 46, 0.2);
  background: linear-gradient(135deg, rgba(255, 248, 237, 0.95), rgba(244, 223, 190, 0.88));
  box-shadow: 0 0.8rem 1.7rem rgba(122, 67, 24, 0.08);
  font-size: 1.05rem;
  color: var(--text);
}

.divider-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.divider-flourish span {
  width: min(22vw, 9rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(165, 107, 46, 0.8), transparent);
}

.divider-flourish i {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--secondary), var(--primary));
  box-shadow: 0 0 0 0.45rem rgba(222, 164, 87, 0.16);
}

.blessing-line {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.9;
  color: var(--text);
}

.ornament {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 50rem);
  height: 1.5rem;
}

.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(165, 107, 46, 0.85));
}

.ornament::before {
  left: 0;
}

.ornament::after {
  right: 0;
  transform: scaleX(-1);
}

.ornament-top {
  top: 1.8rem;
}

.ornament-bottom {
  bottom: 1.8rem;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 991.98px) {
  .hero-card {
    padding: 2.75rem 1.2rem;
  }

  .hero-card::after {
    inset: 1.35rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 1rem 0;
  }

  .hero-card {
    padding: 2.35rem 1rem;
    border-radius: 1.6rem;
  }

  .hero-card::before {
    inset: 0.75rem;
  }

  .hero-card::after {
    inset: 1.15rem;
  }

  .service-pill {
    font-size: 1rem;
  }

  .divider-flourish {
    gap: 0.7rem;
  }
}
