:root {
  --plum: #6f1745;
  --plum-dark: #4b0d2d;
  --rose: #c85b82;
  --blush: #fff1f5;
  --cream: #fffaf7;
  --beige: #f4dfd8;
  --gold: #b98a45;
  --text: #24151d;
  --muted: #74636b;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(111, 23, 69, 0.13);
  --shadow-soft: 0 12px 32px rgba(36, 21, 29, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}
.top-strip {
  background: linear-gradient(90deg, var(--plum-dark), var(--plum));
  color: #fff;
  font-size: 0.86rem;
}
.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-strip__contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(111, 23, 69, 0.08);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-image {
  width: 90px;
  height: 80px;
  display: block;
}
.logo__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  box-shadow: 0 12px 24px rgba(111, 23, 69, 0.22);
}
.logo strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--plum);
}
.logo small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  color: var(--muted);
}
.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #3c2a32;
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 0;
  background: var(--rose);
  transition: 0.25s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--plum), var(--rose));
  color: #fff;
  box-shadow: 0 14px 30px rgba(111, 23, 69, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(111, 23, 69, 0.32);
}
.btn-outline {
  color: var(--plum);
  background: #fff;
  border-color: rgba(111, 23, 69, 0.18);
}
.btn-outline:hover {
  border-color: var(--rose);
  transform: translateY(-3px);
}
.btn-light {
  background: #fff;
  color: var(--plum);
}
.btn-full {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--plum);
  margin: 7px 0;
  border-radius: 99px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 76px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(200, 91, 130, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(185, 138, 69, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, #fffaf7 0%, #fff1f5 55%, #f7ddd7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -40% auto;
  width: 560px;
  height: 560px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 60px;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--rose);
  font-weight: 800;
}
.eyebrow::after {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.hero h1,
.section-heading h2,
.bridal__content h2,
.booking-form h2,
.visit-card h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  color: var(--text);
}
.hero h1 {
  font-size: clamp(3.2rem, 7vw, 4rem);
  margin: 18px 0 20px;
  max-width: 620px;
}
.hero h1 em {
  display: block;
  color: var(--plum);
  font-style: italic;
}
.hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 560px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin: 32px 0 22px;
  flex-wrap: wrap;
}
.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__badges span {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(111, 23, 69, 0.1);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--muted);
}
.hero__visual {
  position: relative;
  min-height: 560px;
}
.hero__visual img {
  height: 560px;
  object-fit: cover;
  border-radius: 36px 36px 130px 36px;
  box-shadow: var(--shadow);
}
.consult-card {
  position: absolute;
  right: -20px;
  bottom: 38px;
  width: 270px;
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(111, 23, 69, 0.08);
}
.consult-card__title {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}
.consult-card strong {
  font-family: "Playfair Display", serif;
  display: block;
  font-size: 1.4rem;
  color: var(--plum);
  margin-bottom: 12px;
}
.consult-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero__petal {
  position: absolute;
  width: 18px;
  height: 34px;
  background: rgba(200, 91, 130, 0.28);
  border-radius: 70% 0 70% 0;
  transform: rotate(24deg);
}
.hero__petal--one {
  left: 4%;
  top: 50%;
}
.hero__petal--two {
  right: 7%;
  top: 74%;
  transform: rotate(-18deg);
}

.stats {
  background: #fff;
  border-block: 1px solid rgba(111, 23, 69, 0.08);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats article {
  padding: 30px 18px;
  border-right: 1px solid rgba(111, 23, 69, 0.08);
}
.stats article:last-child {
  border-right: 0;
}
.stats span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--plum);
  font-weight: 800;
}
.stats p {
  font-size: 0.92rem;
  color: var(--muted);
}

.section {
  padding: 96px 0;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 12px 0 14px;
}
.section-heading p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(111, 23, 69, 0.08);
  transition: 0.25s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card img {
  height: 190px;
  object-fit: cover;
}
.service-card div {
  padding: 22px;
}
.service-card span {
  font-size: 1.8rem;
}
.service-card h3 {
  font-size: 1.05rem;
  margin: 6px 0;
  color: var(--plum);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.why {
  background: linear-gradient(180deg, #fff, #fff1f5);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.why-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(111, 23, 69, 0.08);
  border-radius: 24px;
  padding: 26px 20px;
  box-shadow: var(--shadow-soft);
}
.why-card span {
  font-size: 2rem;
}
.why-card h3 {
  margin: 14px 0 6px;
  color: var(--plum);
  font-size: 1rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.bridal {
  background: #fffaf7;
}
.bridal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 260px;
  align-items: center;
  gap: 30px;
}
.bridal__image img {
  height: 530px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.bridal__content h2 {
  font-size: clamp(2.1rem, 4vw, 2.4rem);
  margin: 12px 0 16px;
}
.bridal__content p,
.visit-card li {
  color: var(--muted);
}
.tick-list {
  list-style: none;
  margin: 24px 0;
  display: grid;
  gap: 10px;
}
.tick-list li::before {
  content: "✓";
  color: var(--rose);
  font-weight: 800;
  margin-right: 10px;
}
.price-card {
  display: inline-grid;
  background: #fff;
  border: 1px solid rgba(111, 23, 69, 0.1);
  border-radius: 20px;
  padding: 18px 28px;
  margin: 0 0 24px;
  box-shadow: var(--shadow-soft);
}
.price-card small,
.price-card span {
  color: var(--muted);
}
.price-card strong {
  font-size: 2rem;
  color: var(--plum);
  line-height: 1.1;
}
.offer-mini {
  background: linear-gradient(180deg, #fff, #ffe6ee);
  border: 1px solid rgba(200, 91, 130, 0.18);
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.offer-mini span {
  font-size: 2.2rem;
}
.offer-mini h3 {
  color: var(--plum);
  margin: 10px 0;
}
.offer-mini p {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.gallery-grid figure,
.gallery-cta {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}
.gallery-grid img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: 0.35s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.06);
}
.gallery-grid figcaption {
  position: absolute;
  inset: auto 12px 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--plum);
  border-radius: 999px;
  padding: 8px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.84rem;
}
.gallery-cta {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.reviews {
  background: #fff;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: linear-gradient(180deg, #fff, #fff7fa);
  border: 1px solid rgba(111, 23, 69, 0.08);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.review-card__top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.review-card__top img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}
.review-card h3 {
  font-size: 1rem;
}
.review-card span {
  color: var(--gold);
  font-size: 0.9rem;
}
.review-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.offer-banner {
  padding: 40px 0;
  background: #fff;
}
.offer-banner__inner {
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(255, 255, 255, 0.24),
      transparent 30%
    ),
    linear-gradient(135deg, var(--plum-dark), var(--plum), #c06086);
  color: #fff;
  border-radius: 30px;
  padding: 34px 44px;
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow);
}
.offer-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.offer-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin: 8px 0;
}
.offer-banner__discount {
  display: grid;
  text-align: center;
}
.offer-banner__discount strong {
  font-size: 2.4rem;
  color: #ffe38d;
}

.booking {
  background: linear-gradient(180deg, #fff1f5, #fffaf7);
}
.booking__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.booking-form,
.studio-card,
.visit-card {
  background: #fff;
  border: 1px solid rgba(111, 23, 69, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.booking-form h2,
.visit-card h2 {
  font-size: 2rem;
  margin: 10px 0 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(111, 23, 69, 0.16);
  border-radius: 14px;
  padding: 14px 14px;
  margin-bottom: 12px;
  background: #fffaf7;
  color: var(--text);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(200, 91, 130, 0.12);
}
.form-note {
  margin-top: 10px;
  color: var(--plum);
  font-weight: 600;
}
.studio-card {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: end;
  overflow: hidden;
  color: #fff;
}
.studio-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.studio-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-card::after {
  
  /* content: ""; */
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, transparent, rgba(75, 13, 45, 0.74)); */
}
.studio-card p,
.play-btn {
  position: relative;
  z-index: 1;
}
.play-btn {
  margin: auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--plum);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.studio-card p {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.visit-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.map-card {
  background: #fff1f5;
  border-radius: 22px;
  padding: 22px;
  text-align: center;
}
.map-card span {
  font-size: 2rem;
}
.map-card p {
  margin-bottom: 14px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(111, 23, 69, 0.09);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}
.faq-item p {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  padding: 0 22px;
  transition: 0.25s ease;
}
.faq-item.is-open p {
  max-height: 140px;
  padding: 0 22px 20px;
}
.faq-item.is-open button span {
  transform: rotate(45deg);
}

.footer {
  background: linear-gradient(135deg, var(--plum-dark), #2b061a);
  color: #fff;
  padding: 58px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 34px;
}
.logo--footer strong,
.logo--footer small {
  color: #fff;
}
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}
.footer h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer a {
  display: block;
  margin: 8px 0;
  transition: 0.25s ease;
}
.footer a:hover {
  color: #fff;
  transform: translateX(4px);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 38px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
  z-index: 60;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .nav-cta {
    display: none;
  }
  .hero__grid,
  .bridal__grid,
  .booking__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: auto;
  }
  .hero__visual img {
    height: 480px;
  }
  .consult-card {
    right: 20px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .top-strip__inner {
    justify-content: center;
    text-align: center;
  }
  .top-strip__contact {
    display: none;
  }
  .nav {
    height: 74px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 80px;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 20px;
    display: grid;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }
  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .hero {
    padding: 50px 0;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .consult-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -70px;
    margin-left: auto;
    margin-right: auto;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats article:nth-child(2) {
    border-right: 0;
  }
  .service-grid,
  .why-grid,
  .gallery-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .offer-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* Mobile Video Fix */
@media (max-width: 768px) {
  .studio-card {
    padding: 15px;
    overflow: hidden;
  }

  .studio-card video,
  .studio-card iframe {
    position: relative !important;
    width: 100% !important;
    height: 360px !important;
    display: block;
    border-radius: 15px;
    object-fit: cover;
  }

  .studio-card p {
    font-size: 1rem;
    margin-top: 10px;
    text-align: center;
  }
}


.reviews .container {
  max-width: 1200px;
  margin: 0 auto;
}

.elfsight-app-528e4c1e-7559-4733-b4e3-10612e9c819f {
  width: 100%;
}
