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

:root {
  color-scheme: light;
  --bg: #f8f5f2;
  --dark: #1f1c1a;
  --accent: #c19d63;
  --accent-dark: #9b7b44;
  --soft: #efe8dd;
  --card: #ffffff;
  --muted: #6e6a66;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

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

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

.hero {
  background: linear-gradient(120deg, #ffffff 0%, #f3ede3 50%, #e8d8c5 100%);
  padding: 2.5rem 6vw 5rem;
  min-height: 100vh;
}

.page-hero {
  background: linear-gradient(120deg, #ffffff 0%, #f3ede3 50%, #e8d8c5 100%);
  padding: 2.5rem 6vw 3rem;
}

.page-hero .hero__content {
  margin-top: 2.5rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand__logo {
  width: 52px;
  height: 52px;
  background: var(--dark);
  color: #fff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.brand__text h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand__text p {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--dark);
  display: block;
}

.lang-toggle {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.hero__content {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 1rem 0 1.2rem;
}

.highlight {
  color: var(--accent-dark);
}

.lead {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(193, 157, 99, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn--small {
  padding: 0.55rem 1.2rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
  display: inline-flex;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero__stats h3 {
  font-size: 1.6rem;
  font-weight: 700;
}

.hero__stats p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__card {
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__card-top {
  background: var(--dark);
  color: #fff;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__card-body {
  padding: 2rem;
}

.hero__card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.hero__card-body form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

input,
textarea {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid #e2ddd5;
  font-family: inherit;
  font-size: 0.95rem;
}

.section {
  padding: 5rem 6vw;
}

.section__title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__title h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-top: 0.6rem;
}

.grid {
  display: grid;
  gap: 1.8rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h4 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

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

.section--dark {
  background: var(--dark);
  color: #fff;
}

.section--dark .eyebrow,
.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery__item {
  border: 0;
  border-radius: 16px;
  min-height: 160px;
  padding: 1.2rem;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(193, 157, 99, 0.9), rgba(155, 123, 68, 0.8));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery__item:hover {
  transform: translateY(-6px);
}

.card--price ul {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.card--price .price {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 0.6rem;
}

.card--price.featured {
  background: var(--dark);
  color: #fff;
  transform: translateY(-10px);
}

.card--price.featured .price,
.card--price.featured ul {
  color: rgba(255, 255, 255, 0.9);
}

.section--soft {
  background: var(--soft);
}

.reviews {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.review {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.review p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.section--cta {
  background: linear-gradient(135deg, #e8d8c5, #f3ede3);
}

.cta {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.form {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.form__row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.media {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.media__videos {
  display: grid;
  gap: 1.2rem;
}

.media__video {
  background: #fff;
  padding: 0.8rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.media__video video {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.media__caption {
  margin-top: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.media__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.media__photo img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.media__note {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-weight: 600;
}

.media-mosaic {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-tile {
  background: #fff;
  padding: 0.8rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.media-tile img,
.media-tile video {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.footer {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 3rem 6vw;
  background: var(--dark);
  color: #fff;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
}

.socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox__content {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

small {
  color: var(--accent-dark);
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
  animation: wavePulse 2.4s ease-out infinite;
  z-index: 50;
}

.whatsapp-float__icon {
  width: 28px;
  height: 28px;
  display: block;
  animation: iconWiggle 2.6s infinite;
}

.whatsapp-float__icon svg {
  width: 100%;
  height: 100%;
}

@keyframes wavePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45),
      0 18px 35px rgba(37, 211, 102, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0),
      0 18px 35px rgba(37, 211, 102, 0.35);
  }
}

@keyframes iconWiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-8deg) scale(1.04);
  }
  40% {
    transform: rotate(6deg) scale(1.06);
  }
  60% {
    transform: rotate(-4deg) scale(1.03);
  }
}

@media (max-width: 860px) {
  .nav__links {
    position: absolute;
    top: 90px;
    right: 6vw;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease;
  }

  .nav__links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2rem 5vw 4rem;
  }

  .hero__card {
    order: 2;
  }
}
