:root {
  --cream: #f4eee4;
  --cream-2: #fbf7f0;
  --ink: #18201b;
  --muted: #6a635a;
  --line: #e6dccb;
  --green: #1a2b22;
  --green-2: #24362c;
  --gold: #a8844d;
  --gold-soft: #efe3cf;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(24, 32, 27, 0.08);
  --radius: 26px;
  --fold: rgba(255, 252, 247, 0.88);
  --fold-border: rgba(168, 132, 77, 0.2);
  --begum-cream: #f3ebe0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--begum-cream);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: Outfit, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: transparent;
  padding-bottom: 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Basic Begum layer — all pages */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #f4ead8;
  background-image: url("../images/bg-mehndi.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 68% at 50% 42%, rgba(251, 247, 240, 0.38) 0%, rgba(251, 247, 240, 0.1) 58%, transparent 78%);
}

/* Content fold layer — readable panels over Begum art */
main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}
main > section {
  position: relative;
  padding: 28px 0;
}
main > section > .container {
  position: relative;
  background: var(--fold);
  border: 1px solid var(--fold-border);
  border-radius: 28px;
  padding: 26px 28px;
  box-shadow: 0 14px 42px rgba(24, 32, 27, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fold {
  background: var(--fold);
  border: 1px solid var(--fold-border);
  border-radius: 28px;
  padding: 26px 28px;
  box-shadow: 0 14px 42px rgba(24, 32, 27, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
main > section.hero {
  padding-top: 24px;
  padding-bottom: 12px;
}
main > section.page-hero {
  padding-top: 32px;
  padding-bottom: 8px;
}
main > section.hero > .container,
main > section.page-hero > .container {
  background: rgba(255, 252, 247, 0.7);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow.light { color: #d9c7a5; }
h1, h2, h3, .display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(44px, 6vw, 72px); line-height: 0.98; }
h2 { font-size: clamp(32px, 4.2vw, 50px); line-height: 1.08; }
h3 { font-size: 26px; line-height: 1.15; }
p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid transparent;
  transition: transform 0.28s cubic-bezier(.22,1,.36,1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.28s ease, letter-spacing 0.25s ease;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.btn-dark { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(26, 43, 34, 0.18); }
.btn-dark:hover { transform: translateY(-3px); background: #101a15; box-shadow: 0 16px 32px rgba(26, 43, 34, 0.28); }
.btn-ghost { border-color: #d7cbb8; background: rgba(255,255,255,0.75); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--green); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,0.18); }
.btn-anim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.btn-anim:hover::after { transform: translateX(120%); }
.btn-price {
  border-color: #d4bc8f !important;
  background: linear-gradient(180deg, #fffaf2, #f3ead8) !important;
  color: var(--green) !important;
  box-shadow: 0 8px 20px rgba(168, 132, 77, 0.18);
}
.btn-price:hover {
  border-color: var(--gold) !important;
  transform: translateY(-3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 247, 240, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(168, 132, 77, 0.18);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 1;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.15;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.nav {
  display: flex;
  gap: 4px 12px;
  margin: 0 auto;
  font-size: 13px;
  color: #5c564e;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.nav a {
  position: relative;
  padding: 6px 4px;
  white-space: nowrap;
}
.nav-book-mobile { display: none !important; }
.header-book { flex-shrink: 0; }
.nav a.is-active, .nav a:hover { color: var(--ink); }
.nav a.nav-pricing,
.footer-bar a.nav-pricing {
  color: var(--green);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8ee, #f3ead8);
  border: 1px solid #e2d2b4;
}
.nav a.nav-pricing:hover,
.nav a.nav-pricing.is-active,
.footer-bar a.nav-pricing:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.footer-bar a.nav-pricing {
  color: #f3ead8;
  background: rgba(168, 132, 77, 0.18);
  border-color: rgba(212, 188, 143, 0.45);
}
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
}
.nav a.nav-pricing.is-active::after { display: none; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.75);
  padding: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { padding: 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.hero-copy p { max-width: 440px; margin: 18px 0 26px; font-size: 16px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.trust { display: flex; gap: 10px; flex-wrap: wrap; }
.trust span {
  font-size: 12px;
  color: #4b463f;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  height: min(560px, 70vh);
  object-fit: cover;
  border-radius: 28px 28px 28px 110px;
  box-shadow: var(--shadow);
}
.hero-aside {
  position: absolute;
  right: -6px;
  top: 18%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #8a8278;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.services { padding: 0; }
.service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 160px;
  gap: 18px;
  align-items: start;
}
.service-card {
  padding: 0;
  transition: transform 0.25s ease;
}
.service-card:hover { transform: translateY(-3px); }
.svc-photo {
  position: relative;
  margin-bottom: 12px;
}
.svc-price-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(26, 43, 34, 0.9);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.icon-dot {
  display: none;
}
.service-card h3 { font-size: 24px; margin-bottom: 6px; }
.service-card p { font-size: 14px; }
.story-note {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
  padding-top: 18px;
}

.about { padding: 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.7fr;
  gap: 34px;
  align-items: center;
}
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.about-layout-2 {
  grid-template-columns: 0.9fr 1.2fr;
}
.about-portrait {
  margin: 0;
}
.about-portrait figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.about-photo {
  height: 440px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(168, 132, 77, 0.22);
}
.owner-photo { object-position: top center; }
.about-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-copy h2 { margin: 8px 0 14px; }
.about-copy p { margin-bottom: 14px; max-width: 520px; }
.about-aside .quote { margin-bottom: 16px; }
.about-aside .content-block { margin-top: 0; }
.stats { display: flex; gap: 22px; margin: 22px 0 26px; flex-wrap: wrap; }
.stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--ink);
  line-height: 1;
}
.stats span { font-size: 12px; color: var(--muted); }
.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.25;
  color: var(--ink);
  font-style: italic;
}

.gallery { padding: 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}
.gallery-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.gallery-row img, .masonry img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  cursor: zoom-in;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-row img:hover, .masonry img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.masonry img { height: 340px; }

.reviews { padding: 0; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.review-card:hover { transform: translateY(-3px); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}
.stars { color: #c4a36a; letter-spacing: 1px; font-size: 13px; }

.page-hero { padding: 0; }
.page-hero p { max-width: 620px; margin-top: 12px; }

.form-card, .info-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fffdf9;
}
.field textarea { min-height: 130px; resize: vertical; }
.flash {
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.flash.success { background: #e8f3ea; color: #23462c; }
.flash.error { background: #fdecea; color: #7a2a22; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.soft-img {
  border-radius: 28px;
  height: 480px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 22, 18, 0.86);
  display: none;
  place-items: center;
  padding: 30px;
  z-index: 60;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 88vh; border-radius: 16px; }

.site-footer {
  color: #ece7df;
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  margin-top: auto;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #15221b;
  background-image:
    radial-gradient(ellipse 70% 55% at 8% -10%, rgba(168, 132, 77, 0.22), transparent 52%),
    radial-gradient(ellipse 55% 45% at 100% 110%, rgba(80, 112, 90, 0.28), transparent 50%),
    linear-gradient(180deg, #2a3f34 0%, #1a2b22 48%, #101814 100%);
  box-shadow: 0 -24px 48px rgba(16, 24, 20, 0.12);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 10c2.4 7.2 7.2 12 14.4 14.4C43.2 26.8 38.4 31.6 36 38.8 33.6 31.6 28.8 26.8 21.6 24.4 28.8 22 33.6 17.2 36 10z' fill='%23e8d5b0' fill-opacity='0.045'/%3E%3C/svg%3E");
  opacity: 0.9;
}
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, #1a2b22 0%, #8f7040 22%, #f0e2c4 50%, #8f7040 78%, #1a2b22 100%);
}
.footer-cta {
  background: transparent;
  padding: 88px 0 64px;
  position: relative;
  z-index: 1;
}
.footer-cta h2 {
  color: #fff;
  margin: 10px 0 12px;
  max-width: 440px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
}
.footer-lead {
  color: #d9cbb8 !important;
  max-width: 420px;
  font-size: 14px;
  margin: 0 !important;
}
.footer-cta-copy .eyebrow { margin-bottom: 6px; }
.footer-cta-grid {
  display: grid;
  grid-template-columns: 1.35fr minmax(200px, 0.85fr) 1fr 1fr;
  gap: 36px 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.footer-label {
  color: #d8c7a6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-cta .footer-col a,
.footer-cta .footer-col p,
.footer-cta .footer-lead {
  color: #efe8dc;
  display: block;
  margin-bottom: 8px;
}
.footer-cta .btn {
  display: inline-flex;
  width: 100%;
  margin-bottom: 0;
  color: inherit;
}
.footer-cta .btn-light {
  background: #fff !important;
  color: var(--green) !important;
  font-weight: 600;
}
.footer-cta .btn-light:hover {
  background: #f3ead8 !important;
  color: var(--green) !important;
}
.footer-site {
  margin-top: 10px !important;
  color: #d8c7a6 !important;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.socials a { color: #efe8dc; }
.footer-note {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 34px);
  color: #e8d5b0;
  font-style: italic;
  margin-top: 10px;
}
.footer-areas { background: #15221b; padding: 28px 0; }
.area-pills { display: flex; flex-wrap: wrap; gap: 8px 12px; }
.area-pills a { color: #d9cbb8; font-size: 13px; }
.area-pills a:hover { color: #fff; }
.footer-rule {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 213, 176, 0.45) 18%, rgba(240, 226, 196, 0.7) 50%, rgba(232, 213, 176, 0.45) 82%, transparent 100%);
  box-shadow: none;
}
.footer-bar {
  position: relative;
  z-index: 1;
  background: #0c1410;
  padding: 26px 0 28px;
  border-top: 0;
  margin-top: auto;
}
.footer-bar-wrap {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) auto minmax(200px, 1fr);
  align-items: center;
  gap: 20px 28px;
  font-size: 13px;
  color: #c9c2b6;
}
.footer-nav {
  display: flex;
  gap: 10px 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-nav a:hover { color: #fff; }
.footer-copy {
  text-align: right;
  margin: 0;
  line-height: 1.45;
}
.brand-light strong { color: #fff; }
.brand-light small { color: #d8c7a6; }
.brand-light img { border-color: rgba(232, 213, 176, 0.35); }

.price-hero { padding: 0; }
.price-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; }
.price-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px 24px 24px 90px;
  box-shadow: var(--shadow);
}
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; font-size: 13px; }
.trust-row span {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}
.packages { padding: 0; }
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.package-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 18px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.package-card:hover { transform: translateY(-4px); }
.package-card.is-popular {
  border-color: #d4bc8f;
  background: linear-gradient(180deg, #fffaf2, #fff);
}
.package-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}
.ribbon {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.package-card h3 { font-size: 26px; margin: 4px 0 8px; }
.price-box {
  background: linear-gradient(135deg, #f3ead8, #fff8ee);
  border: 1px solid #e2d2b4;
  border-radius: 16px;
  padding: 16px;
  margin: 10px 0 14px;
  text-align: center;
}
.package-card.is-popular .price-box {
  background: linear-gradient(135deg, #1a2b22, #2c4638);
  border-color: #1a2b22;
}
.package-card.is-popular .price-box .price,
.package-card.is-popular .price-box .price-label,
.package-card.is-popular .price-box .price-time,
.package-card.is-popular .price-box .price small {
  color: #fff;
}
.price-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}
.price-time {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  color: var(--ink);
  margin: 0;
  line-height: 1;
  font-weight: 600;
}
.price small { font-size: 14px; color: var(--muted); }
.package-grid-3 { grid-template-columns: repeat(3, 1fr); }
.script-line {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  margin: 8px 0 12px !important;
}
.price-hero-visual { position: relative; }
.seal {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1px dashed #c9b48a;
  background: rgba(255,253,249,0.92);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  line-height: 1.2;
  padding: 12px;
  color: var(--ink);
}
.addon-card.is-link {
  display: block;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.addon-card.is-link:hover {
  transform: translateY(-3px);
  border-color: #c9b48a;
}
.addon-ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--green);
}
.addon-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--ink) !important;
  margin: 4px 0 !important;
}
.addon-cta { font-size: 12px; color: var(--gold); }
.check-list { list-style: none; margin-top: 12px; }
.check-list li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 14px;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3d6a4a;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}
.faq-item summary { cursor: pointer; font-weight: 500; }
.faq-item p { margin-top: 8px; }
.addon-pick {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 16px;
}
.addon-pick legend {
  padding: 0 8px;
  font-size: 13px;
  color: var(--gold);
}
.addon-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.addon-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}
.addon-check strong { display: block; font-size: 13px; }
.book-preview {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}
.book-side-hint {
  font-size: 13px;
  margin: 6px 0 12px !important;
}
.service-pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 1100px) {
  .service-pick-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.service-pick {
  text-align: left;
  border: 1px solid var(--line);
  background: #fffdf9;
  border-radius: 14px;
  padding: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.service-pick img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}
.service-pick strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  color: var(--ink);
}
.service-pick small {
  display: block;
  color: var(--gold);
  font-size: 11px;
  margin: 3px 0 4px;
}
.service-pick span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}
.service-pick:hover {
  border-color: #c9b48a;
  transform: translateY(-1px);
}
.service-pick.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(26, 43, 34, 0.12);
  background: #f4faf6;
}
.book-direct {
  margin: 14px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}
.btn-ico {
  width: 16px;
  height: 16px;
  display: block;
}
.footer-cta-simple {
  display: grid;
  grid-template-columns: 1.35fr auto 1fr 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.footer-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  max-width: 260px;
}
.footer-ghost {
  border-color: rgba(255,255,255,0.45) !important;
  background: transparent !important;
  color: #fff !important;
}
.footer-ghost:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: #fff !important;
  color: #fff !important;
}
.badge {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.package-card ul { list-style: none; margin: 0 0 18px; flex: 1; }
.package-card li {
  font-size: 13px;
  color: #5c564e;
  padding: 4px 0 4px 16px;
  position: relative;
}
.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3d6a4a;
}
.addons { padding: 0; }
.addon-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.addon-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.addon-card strong { display: block; font-size: 14px; margin-bottom: 6px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 50px; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process div {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.faq-list details {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq-list summary { cursor: pointer; font-weight: 500; }
.faq-list p { margin-top: 8px; }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.area-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.area-card:hover {
  transform: translateY(-3px);
  border-color: #cfbfa4;
}
.area-card h3 { font-size: 24px; }
.area-card small {
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.local-strip { padding: 0; }
.content-block {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.why-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.why-card h3 { font-size: 22px; margin-bottom: 6px; }
.why-card p { font-size: 13px; }
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.occasion-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
}
.occasion-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 1;
}
.occasion-card strong { display: block; font-size: 15px; color: var(--ink); }
.occasion-card span { font-size: 12px; color: var(--muted); }
.process-strip { padding: 0; }
.package-card img,
.service-pick img,
.book-preview,
.gallery-row img,
.masonry img,
.soft-img,
.about-photo,
.hero-visual img,
.price-hero img {
  opacity: 1;
  filter: none;
}
.sr-search input {
  width: min(520px, 100%);
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.loc-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.loc-chip {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.loc-chip:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.loc-chip.is-hide { display: none; }

.float-bar {
  position: fixed;
  right: 16px;
  bottom: 18px;
  left: auto;
  transform: none;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: auto;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 24, 18, 0.28);
  line-height: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px rgba(18, 24, 18, 0.32);
}
.float-svg {
  width: 26px;
  height: 26px;
  display: block;
}
.float-call {
  background: #1a2b22;
}
.float-call:hover { background: #122018; }
.float-wa {
  background: #25d366;
}
.float-wa:hover { background: #1ebe57; }

.reveal {
  opacity: 1;
  transform: none;
}
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
img.reveal,
.about-photo.reveal,
.hero-visual.reveal,
.package-card img {
  opacity: 1 !important;
  transform: none !important;
}

/* Motif backgrounds, pricing focus, homepage extras */
.has-motif {
  position: relative;
}
.has-motif > .container {
  position: relative;
  z-index: 1;
}
.mehndi-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 22px;
  color: var(--gold);
}
.mehndi-divider::before,
.mehndi-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4bc8f, transparent);
}
.mehndi-divider span {
  font-size: 14px;
  letter-spacing: 0.2em;
}
.mehndi-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.mehndi-mosaic-3 { grid-template-columns: repeat(3, 1fr); }
.mehndi-mosaic img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(168, 132, 77, 0.2);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mehndi-mosaic img:nth-child(2),
.mehndi-mosaic img:nth-child(5) {
  transform: translateY(12px);
}
.mehndi-mosaic img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(24, 32, 27, 0.14);
}
.section-head.tight { margin-bottom: 14px; }
.ink-strong { color: var(--ink); }
.svc-thumb {
  height: 168px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0;
}
.price-sm { font-size: 28px !important; margin-top: 8px; }
.text-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.text-link:hover { color: var(--green); }
.price-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e2d2b4;
  background: rgba(255, 250, 242, 0.92);
  font-size: 13px;
  color: var(--ink);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.price-chip em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.price-chip.is-hot {
  background: linear-gradient(135deg, #1a2b22, #2c4638);
  border-color: #1a2b22;
  color: #fff;
}
.price-chip.is-hot em { color: #e8d5b0; }
.price-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(26, 43, 34, 0.1);
}
.pricing-focus {
  padding: 28px 0 48px;
}
.pricing-focus .section-head h2 {
  position: relative;
}
.pricing-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 22px 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 20%, rgba(88, 120, 98, 0.35), transparent 42%),
    linear-gradient(145deg, #24362c, #1a2b22);
  color: #fff;
  box-shadow: var(--shadow);
}
.pricing-banner h3 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 4px;
}
.pricing-banner-prices {
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  gap: 10px;
}
.pricing-banner-prices div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(232, 213, 176, 0.28);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
}
.pricing-banner-prices span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d8c7a6;
  margin-bottom: 4px;
}
.pricing-banner-prices strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}
.pricing-banner-prices .is-hot {
  background: linear-gradient(180deg, #f3ead8, #e8d5b0);
  border-color: #e8d5b0;
}
.pricing-banner-prices .is-hot span { color: #6a5330; }
.pricing-banner-prices .is-hot strong { color: var(--green); }
.about-visual {
  display: grid;
  gap: 12px;
}
.about-side {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.about-strip-img {
  margin-top: 16px;
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.focus-band {
  padding: 36px 0;
}
.why-price {
  border-color: #d4bc8f;
  background: linear-gradient(180deg, #fffaf2, #fff);
}
.gallery-row-6 {
  grid-template-columns: repeat(6, 1fr) !important;
}
.area-price-hint {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}
.mid-cta {
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background:
    linear-gradient(135deg, rgba(243, 234, 216, 0.95), rgba(255, 255, 255, 0.92)),
    var(--cream);
  border: 1px solid #e2d2b4;
  box-shadow: var(--shadow);
}
.mid-cta h3 {
  margin: 4px 0 6px;
  font-size: clamp(26px, 3vw, 36px);
}
.svc-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.svc-meta div {
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid var(--fold-border);
  border-radius: 18px;
  padding: 16px 18px;
}
.svc-meta strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.25;
}
.svc-meta span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px 36px;
  align-items: start;
}
.svc-include { margin-top: 16px; }
.svc-include li { font-size: 15px; padding: 8px 0 8px 22px; }
.svc-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.svc-styles span {
  border: 1px solid #e2d2b4;
  background: rgba(255, 250, 242, 0.92);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink);
}
.svc-hero-photo {
  height: 420px !important;
  object-fit: cover;
  object-position: center 18%;
  animation: hero-photo-in 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-photo-in {
  from { opacity: 0; transform: scale(1.08) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .svc-hero-photo {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 70px;
    left: 12px;
    right: 12px;
    background: #fffdf8;
    padding: 12px;
    border: 1px solid var(--fold-border);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(24, 32, 27, 0.16);
    gap: 2px;
    z-index: 60;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
  }
  .nav.is-open a {
    padding: 12px 14px;
    border-radius: 12px;
    white-space: normal;
  }
  .nav.is-open a:hover,
  .nav.is-open a.is-active {
    background: #f3ead8;
  }
  .nav.is-open a.is-active::after { display: none; }
  .nav-book-mobile {
    display: inline-flex !important;
    justify-content: center;
    margin-top: 8px;
  }
  .header-book { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
}

@media (max-width: 980px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .hero-grid, .about-grid, .about-layout, .about-layout-2, .review-grid, .form-grid, .split, .footer-cta-grid, .masonry, .footer-bar-wrap, .price-hero-grid, .package-grid, .addon-grid, .two-col, .process, .area-grid, .faq-grid, .footer-cta-simple, .package-grid-3, .addon-check-grid, .why-grid, .occasion-grid, .pricing-banner-prices, .mehndi-mosaic, .mehndi-mosaic-3, .detail-grid, .svc-detail-grid, .svc-meta, .service-pick-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .service-row,
  .gallery-row,
  .gallery-row-6 {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }
  .mehndi-mosaic img:nth-child(2),
  .mehndi-mosaic img:nth-child(5) {
    transform: none;
  }
  .float-bar {
    left: auto;
    right: 12px;
    bottom: 16px;
    flex-direction: column;
    width: auto;
  }
  .float-btn {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    min-width: 50px;
    padding: 0;
  }
  .float-svg { width: 24px; height: 24px; }
  body { padding-bottom: 0; }
  .footer-bar { padding-bottom: 92px; }
  .footer-copy { padding: 0 64px; }
  .hero-visual { order: -1; min-width: 0; }
  .hero-copy { min-width: 0; }
  .hero-grid { gap: 14px; }
  .hero-visual img, .about-photo, .soft-img, .masonry img {
    width: 100%;
    max-width: 100%;
    height: 220px;
    border-radius: 18px;
  }
  .svc-hero-photo { height: 220px !important; border-radius: 18px; }
  .hero-aside { display: none; }
  .hero-copy p {
    max-width: none;
    margin: 10px 0 14px;
    font-size: 14px;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .hero-actions { flex-direction: column; margin-bottom: 14px; align-items: stretch; }
  .hero-actions .btn { width: auto; max-width: calc(100% - 58px); white-space: normal; }
  .hero-actions a[href*="wa.me"] { display: none; }
  .btn { white-space: normal; max-width: 100%; }
  h1 { font-size: 32px; line-height: 1.08; }
  h2 { font-size: 24px; line-height: 1.15; }
  h3 { font-size: 20px; }
  .price { font-size: 32px; }
  .eyebrow {
    letter-spacing: 0.1em;
    font-size: 10px;
    line-height: 1.5;
    white-space: normal;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }
  .story-note {
    grid-column: 1 / -1;
    font-size: 20px;
    padding-top: 4px;
  }
  .svc-thumb { height: 130px; }
  .icon-dot { display: none; }
  .service-card { padding: 0; min-width: 0; }
  .trust { gap: 6px; }
  .trust span { font-size: 11px; padding: 6px 10px; }
  .price-chip-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    gap: 8px;
  }
  .price-chip { justify-content: center; width: 100%; }
  .gallery-row img { height: 140px; }
  .mid-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .mid-cta .hero-actions { margin-bottom: 0; }
  .pricing-banner-prices { grid-template-columns: 1fr 1fr; }
  .nav-wrap { min-height: 62px; gap: 8px; }
  .container {
    width: calc(100% - 20px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  main > section { padding: 12px 0; }
  main > section.hero { padding-top: 12px; padding-bottom: 8px; }
  .site-header .container { width: calc(100% - 16px); }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 8px; letter-spacing: 0.04em; max-width: 150px; overflow: hidden; text-overflow: ellipsis; }
  .about-photo { border-radius: 18px; }
  .footer-cta { padding: 40px 0 36px; }
  .footer-cta-grid { gap: 22px; }
  .footer-cta-actions {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
  .footer-cta .btn { width: 100%; }
  .footer-note { font-size: 24px; }
  .footer-bar-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer-nav { justify-content: center; }
  .footer-copy { text-align: center; }
  .brand-light { justify-content: center; }
  .pricing-banner { flex-direction: column; align-items: stretch; }
  main > section > .container,
  .fold {
    padding: 16px 14px;
    border-radius: 18px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 252, 247, 0.94);
    overflow: hidden;
    max-width: calc(100% - 20px);
  }
  .package-card,
  .review-card,
  .info-card,
  .form-card {
    min-width: 0;
  }
  .package-card img,
  .occasion-card img {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .footer-cta-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
