/* ==========================================================================
   DEEPAK THAPLIYAL — HINDU PRIEST UK
   Design tokens
   Colors:
     --maroon-950 #2B0808  deep temple maroon (hero / dark sections)
     --maroon-800 #3A0E0E  secondary dark
     --vermilion #C1272D   sindoor red accent
     --gold-500   #D4A017  marigold gold, primary accent
     --gold-300   #F0C864  light gold glow / highlight
     --brass-700  #8B5E34  secondary accent / muted gold
     --ivory-50   #FBF6EC  light background
     --ink-900    #241A14  body text on light bg
   Type:
     Display: 'Marcellus' (temple-carved serif, used with restraint)
     Accent script: 'Cormorant Garamond' italic (eyebrows, quotes)
     Body/UI: 'Work Sans'
   Signature element: the glowing diya (oil lamp) beside the hero portrait,
   and the scalloped toran (garland bunting) divider between sections.
   ========================================================================== */

:root {
  --maroon-950: #2B0808;
  --maroon-900: #330A0A;
  --maroon-800: #3A0E0E;
  --maroon-700: #5C1414;
  --vermilion: #C1272D;
  --vermilion-600: #A81F24;
  --gold-500: #D4A017;
  --gold-400: #E3B438;
  --gold-300: #F0C864;
  --gold-100: #F6E7C1;
  --brass-700: #8B5E34;
  --ivory-50: #FBF6EC;
  --ivory-100: #F5EDDC;
  --ink-900: #241A14;
  --ink-700: #4A3B30;

  --font-display: 'Marcellus', Georgia, serif;
  --font-script: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-gold: 0 8px 30px rgba(212, 160, 23, 0.25);
  --shadow-soft: 0 20px 60px rgba(43, 8, 8, 0.18);
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--ivory-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.15; color: var(--maroon-950); }
p { margin: 0 0 1em; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
/* The photos are wrapped in <picture> for WebP delivery. display:contents
   keeps the wrapper out of the box tree so every img rule below — object-fit,
   the absolutely positioned float, the gallery hover zoom — behaves exactly
   as it did when the img was a direct child. */
picture { display: contents; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* ---------- eyebrow / headings ---------- */
.eyebrow {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--vermilion);
  letter-spacing: 0.06em;
  margin-bottom: 0.6em;
  font-weight: 600;
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.light .eyebrow { color: var(--gold-300); }
.section-head.light h2 { color: var(--ivory-50); }
.section-sub { color: var(--ink-700); font-size: 1.05rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 55%, var(--brass-700));
  color: var(--maroon-950);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212,160,23,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--ivory-50);
  border-color: rgba(240,200,100,0.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(240,200,100,0.12); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--vermilion);
  border-color: var(--vermilion);
}
.btn-outline:hover { background: var(--vermilion); color: #fff; transform: translateY(-2px); }
.full-width { width: 100%; }

.text-link {
  color: var(--vermilion);
  font-weight: 600;
  border-bottom: 1px solid rgba(193,39,45,0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.text-link:hover { border-color: var(--vermilion); }

/* ---------- toran / garland divider (signature motif) ---------- */
.toran-strip {
  height: 22px;
  width: 100%;
  background:
    radial-gradient(circle at 10px 0px, transparent 9px, var(--maroon-950) 10px) 0 0/20px 20px repeat-x,
    linear-gradient(180deg, var(--gold-500), var(--gold-300));
  position: relative;
}
.toran-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, var(--vermilion) 0 3px, transparent 3px 20px);
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.toran-strip.flip { transform: scaleY(-1); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(43, 8, 8, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(212,160,23,0.35);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-300); }
.brand-sub { font-size: 0.7rem; letter-spacing: 0.08em; color: var(--ivory-100); opacity: 0.75; text-transform: uppercase; }

.main-nav ul { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  color: var(--ivory-100);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  display: inline-block;
}
.main-nav > ul > li > a:hover { color: var(--gold-300); background: rgba(240,200,100,0.08); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--maroon-900);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a { display: block; padding: 9px 12px; font-size: 0.88rem; border-radius: 6px; }
.dropdown a:hover { background: rgba(240,200,100,0.1); color: var(--gold-300); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-pill {
  display: flex; align-items: center; gap: 8px;
  color: var(--maroon-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s ease;
}
.phone-pill:hover { transform: translateY(-2px); }
.icon-sm { width: 15px; height: 15px; fill: currentColor; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 8px;
}
.menu-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--gold-300); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(120% 100% at 80% 0%, var(--maroon-800), var(--maroon-950) 60%);
  color: var(--ivory-50);
  overflow: hidden;
  padding: 96px 0 60px;
}
.hero-bg-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(240,200,100,0.22), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-mandala {
  position: absolute;
  left: -180px; bottom: -220px;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px dashed rgba(240,200,100,0.25);
  pointer-events: none;
}
.hero-mandala::before, .hero-mandala::after {
  content: "";
  position: absolute; inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(240,200,100,0.15);
}
.hero-mandala::after { inset: 90px; border-style: dotted; }
.hero-mandala.small { width: 380px; height: 380px; left: auto; right: -140px; top: -160px; bottom: auto; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.eyebrow .om { font-size: 1.3em; margin-right: 4px; }
.hero .eyebrow { color: var(--gold-300); }
.hero h1 {
  color: var(--ivory-50);
  font-size: clamp(2.5rem, 4.6vw, 4.1rem);
  margin-bottom: 0.3em;
}
.hero-title-sub {
  display: block;
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  font-size: 0.4em;
  color: var(--gold-300);
  margin-top: 0.25em;
  letter-spacing: 0.02em;
}
.hero-lede { color: var(--ivory-100); font-size: 1.08rem; max-width: 560px; opacity: 0.92; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 40px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-300); }
.hero-stats span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ivory-100); opacity: 0.75; }

.hero-portrait { position: relative; display: flex; justify-content: center; }
.portrait-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 8px 8px / 30% 30% 8px 8px;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(var(--maroon-950), var(--maroon-950)) padding-box,
              linear-gradient(160deg, var(--gold-300), var(--brass-700)) border-box;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(240,200,100,0.15);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.diya {
  position: absolute;
  bottom: 10%;
  right: 6%;
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(180deg, var(--gold-300), var(--brass-700));
  box-shadow: 0 0 30px 8px rgba(240,200,100,0.55);
}
.diya-flame {
  position: absolute;
  left: 50%; top: -22px;
  width: 12px; height: 24px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 70%, #FFF3C4, var(--gold-300) 60%, var(--vermilion) 100%);
  border-radius: 50% 50% 50% 50% / 65% 65% 35% 35%;
  filter: blur(0.3px);
  animation: flicker 2.4s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes flicker {
  0%, 100% { transform: translateX(-50%) scaleY(1) rotate(-2deg); opacity: 1; }
  25% { transform: translateX(-50%) scaleY(1.08) rotate(2deg); opacity: 0.95; }
  50% { transform: translateX(-50%) scaleY(0.94) rotate(-1deg); opacity: 1; }
  75% { transform: translateX(-50%) scaleY(1.05) rotate(3deg); opacity: 0.9; }
}

.scroll-cue { position: relative; z-index: 1; display: flex; justify-content: center; margin-top: 56px; }
.scroll-cue span {
  width: 26px; height: 42px;
  border: 2px solid rgba(240,200,100,0.5);
  border-radius: 20px;
  position: relative;
  display: block;
}
.scroll-cue span::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold-300);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0% { top: 8px; opacity: 1; } 70% { top: 22px; opacity: 0; } 100% { top: 22px; opacity: 0; } }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: 100px 0; background: var(--ivory-50); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 27 / 32;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.about-img-float {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 55%;
  aspect-ratio: 23 / 19;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: var(--radius-md);
  border: 6px solid var(--ivory-50);
  box-shadow: 0 20px 45px rgba(43,8,8,0.28);
}
.about-copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.about-copy p { color: var(--ink-700); }
.check-list { margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-900);
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--maroon-950);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { padding: 100px 0; background: var(--ivory-100); position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: linear-gradient(160deg, #fff, var(--ivory-50));
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(240,200,100,0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(43,8,8,0.15);
  border-color: rgba(212,160,23,0.5);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-950));
  box-shadow: inset 0 0 0 1px rgba(240,200,100,0.35);
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-700); font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   FEATURES (alternating)
   ========================================================================== */
.features { padding: 40px 0 70px; background: var(--ivory-50); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 50px 32px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.feature-copy h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.feature-copy p { color: var(--ink-700); margin-bottom: 24px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  background: radial-gradient(120% 100% at 20% 0%, var(--maroon-800), var(--maroon-950) 65%);
  padding: 100px 0;
  color: var(--ivory-50);
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 min(400px, 85vw);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(240,200,100,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(6px);
  margin: 0;
}
.testimonial-card p {
  font-family: var(--font-script);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ivory-100);
  margin-bottom: 18px;
}
.testimonial-card footer { color: var(--gold-300); font-weight: 600; font-size: 0.9rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testimonial-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(240,200,100,0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-dots span.active { background: var(--gold-300); transform: scale(1.3); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { padding: 100px 0; background: var(--ivory-100); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(43,8,8,0.12);
  aspect-ratio: 1/1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* ==========================================================================
   ARTICLES
   ========================================================================== */
.articles { padding: 100px 0; background: var(--ivory-50); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(43,8,8,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(43,8,8,0.16); }
.article-card img { aspect-ratio: 16/10.6; object-fit: cover; }
.article-body { padding: 22px; }
.article-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.article-body p { color: var(--ink-700); font-size: 0.9rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  position: relative;
  background: radial-gradient(120% 100% at 80% 0%, var(--maroon-800), var(--maroon-950) 60%);
  color: var(--ivory-50);
  padding: 100px 0;
  overflow: hidden;
}
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; position: relative; z-index: 1; }
.contact .eyebrow { color: var(--gold-300); }
.contact h2 { color: var(--ivory-50); }
.contact-copy p { color: var(--ivory-100); opacity: 0.9; }
.contact-details { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.contact-details li { display: flex; align-items: center; gap: 12px; color: var(--ivory-100); }
.ci { font-size: 1.1rem; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(240,200,100,0.4);
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: rgba(240,200,100,0.15); transform: translateY(-3px); }

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,200,100,0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; color: var(--ivory-100); font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(240,200,100,0.3);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ivory-50);
  font-family: inherit;
  font-size: 0.92rem;
  resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(245,237,220,0.5); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-300);
  box-shadow: 0 0 0 3px rgba(240,200,100,0.2);
}
.contact-form select option { color: var(--ink-900); }
.form-note { font-size: 0.85rem; color: var(--gold-300); min-height: 1.2em; margin: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--maroon-950); color: var(--ivory-100); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding: 64px 32px 40px;
}
.footer-brand .brand-mark { width: 52px; margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-script); font-style: italic; color: var(--gold-100); opacity: 0.85; font-size: 1.05rem; }
.footer-col h4 { color: var(--gold-300); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; }
.footer-col a:hover { opacity: 1; color: var(--gold-300); }
.footer-col ul.plain li { font-size: 0.9rem; opacity: 0.85; }
.certificate-badge {
  border: 1px dashed rgba(240,200,100,0.4);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.certificate-badge span { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.certificate-badge p { margin: 0; font-size: 0.78rem; opacity: 0.7; }
.footer-bottom {
  border-top: 1px solid rgba(240,200,100,0.15);
  text-align: center;
  padding: 20px 32px 28px;
  font-size: 0.8rem;
  opacity: 0.65;
}

/* ==========================================================================
   WHATSAPP FAB
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 90;
  transition: transform 0.25s ease;
}
.whatsapp-fab svg { width: 26px; height: 26px; fill: var(--maroon-950); }
.whatsapp-fab:hover { transform: scale(1.08); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { margin-bottom: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .phone-pill span { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; max-width: 320px; margin: 0 auto; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-inner { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 48px 24px 32px; }
  .hero { padding: 76px 0 40px; }
  .hero-stats { gap: 24px; }
}

/* ---------- Mobile nav (open state, JS-toggled) ---------- */
.main-nav.mobile-open {
  display: block;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--maroon-950);
  border-bottom: 1px solid rgba(212,160,23,0.35);
  padding: 12px 20px 20px;
}
.main-nav.mobile-open ul { flex-direction: column; align-items: stretch; gap: 2px; }
.main-nav.mobile-open .dropdown {
  position: static; opacity: 1; visibility: visible; transform: none;
  display: none; box-shadow: none; border: none; padding-left: 12px; margin-top: 4px;
  background: transparent;
}
.main-nav.mobile-open .has-dropdown.open .dropdown { display: block; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   UAE EDITION — announcement, credentials, cities, FAQ, phone cards
   ========================================================================== */

/* ---------- announcement bar ---------- */
.announce-bar {
  background: linear-gradient(90deg, var(--maroon-900), var(--vermilion-600) 50%, var(--maroon-900));
  color: var(--gold-100);
  text-align: center;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}
.announce-bar p {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.announce-bar strong { color: var(--gold-300); }
.announce-bar a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 1px;
}
.announce-bar a:hover { color: var(--gold-300); border-color: var(--gold-300); }
.announce-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 0 0 rgba(240,200,100,0.7);
  animation: announce-pulse 2.4s infinite;
  flex-shrink: 0;
}
@keyframes announce-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(240,200,100,0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(240,200,100,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,200,100,0); }
}

/* ---------- WhatsApp button ---------- */
.btn-wa {
  background: linear-gradient(135deg, #34C05A, #1EA84B);
  color: #fff;
  box-shadow: 0 8px 30px rgba(30, 168, 75, 0.32);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(30, 168, 75, 0.45); color: #fff; }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- credentials strip ---------- */
.creds {
  background: var(--maroon-900);
  border-top: 1px solid rgba(212,160,23,0.25);
  border-bottom: 1px solid rgba(212,160,23,0.25);
}
.creds-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.cred-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(212,160,23,0.2);
}
.cred-item:last-child { border-right: none; }
.cred-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--gold-300);
  letter-spacing: 0.01em;
}
.cred-item span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory-100);
  opacity: 0.65;
}

/* ---------- service card: highlight variant ---------- */
.service-card.highlight {
  background: linear-gradient(160deg, var(--maroon-800), var(--maroon-950));
  border-color: rgba(240,200,100,0.45);
}
.service-card.highlight h3 { color: var(--gold-300); }
.service-card.highlight p { color: var(--ivory-100); opacity: 0.88; }
.service-card.highlight p a { color: var(--gold-300); font-weight: 600; white-space: nowrap; }
.service-card.highlight p a:hover { text-decoration: underline; }

/* ---------- UAE cities ---------- */
.cities { padding: 100px 0; background: var(--ivory-50); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.city-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(212,160,23,0.22);
  border-radius: var(--radius-lg);
  padding: 34px 28px 28px;
  box-shadow: 0 10px 34px rgba(43,8,8,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.city-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,160,23,0.55);
  box-shadow: 0 22px 54px rgba(43,8,8,0.14);
}
.city-card.featured {
  background: linear-gradient(165deg, #FFFDF7, var(--ivory-100));
  border-color: rgba(212,160,23,0.55);
  box-shadow: var(--shadow-gold);
}
.city-flag {
  position: absolute;
  top: -12px; left: 28px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--maroon-950);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
}
.city-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--maroon-800);
  margin-bottom: 12px;
}
.city-card p { color: var(--ink-700); font-size: 0.95rem; margin: 0; }
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.city-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brass-700);
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 999px;
  padding: 5px 12px;
}
.cities-note {
  margin-top: 36px;
  text-align: center;
  color: var(--ink-700);
  font-size: 0.98rem;
}
.cities-note strong { color: var(--maroon-800); }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; background: var(--ivory-100); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(212,160,23,0.22);
  border-radius: var(--radius-md);
  padding: 4px 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] {
  border-color: rgba(212,160,23,0.5);
  box-shadow: 0 12px 34px rgba(43,8,8,0.08);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 34px 20px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--maroon-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-500);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 4px; border-radius: 6px; }
.faq-item > p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--ink-700);
  font-size: 0.95rem;
}
.faq-item > p a { color: var(--vermilion); font-weight: 600; white-space: nowrap; }
.faq-item > p a:hover { text-decoration: underline; }

/* ---------- contact: phone cards ---------- */
.phone-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 16px;
}
.phone-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,200,100,0.28);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.phone-card:hover {
  background: rgba(240,200,100,0.12);
  border-color: rgba(240,200,100,0.6);
  transform: translateY(-3px);
}
.phone-card.primary {
  background: linear-gradient(150deg, rgba(240,200,100,0.22), rgba(212,160,23,0.08));
  border-color: rgba(240,200,100,0.65);
}
.pc-flag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-300);
}
.phone-card strong {
  font-size: 1.02rem;
  color: var(--ivory-50);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.pc-note { font-size: 0.75rem; color: var(--ivory-100); opacity: 0.62; }

/* ---------- contact / footer link + icon polish ---------- */
.contact-details a { color: var(--gold-300); }
.contact-details a:hover { text-decoration: underline; }
.contact-details li { align-items: flex-start; line-height: 1.5; }
.social-row a svg { width: 19px; height: 19px; fill: currentColor; }
.footer-col ul.plain em {
  font-style: normal;
  font-size: 0.75rem;
  opacity: 0.55;
}

/* ---------- responsive (UAE edition) ---------- */
@media (max-width: 980px) {
  .cities-grid { grid-template-columns: 1fr; }
  .city-card.featured { order: -1; }
  .creds-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
  .cred-item:nth-child(2) { border-right: none; }
}

@media (max-width: 860px) {
  .phone-cards { grid-template-columns: 1fr; }
  .phone-card { flex-direction: row; align-items: baseline; gap: 10px; flex-wrap: wrap; }
  .pc-note { margin-left: auto; }
}

@media (max-width: 640px) {
  .announce-bar { font-size: 0.78rem; }
  .announce-bar p { gap: 6px; padding: 8px 16px; }
  .cities, .faq { padding: 70px 0; }
  .city-card { padding: 30px 22px 24px; }
  .faq-item summary { font-size: 0.98rem; }
  .hero-ctas .btn { width: 100%; }
}

/* ---------- YouTube channel band ---------- */
.youtube {
  background: radial-gradient(120% 100% at 80% 0%, var(--maroon-800), var(--maroon-950) 65%);
  padding: 90px 0;
  color: var(--ivory-50);
}
.youtube-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.youtube .eyebrow { color: var(--gold-300); }
.youtube h2 { color: var(--ivory-50); margin-bottom: 16px; }
.youtube-copy > p {
  color: var(--ivory-100);
  opacity: 0.9;
  margin-bottom: 26px;
}
.btn-yt {
  background: #FF0000;
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.28);
}
.btn-yt:hover {
  background: #E60000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 0, 0, 0.42);
}
.btn-yt svg { width: 22px; height: 22px; fill: currentColor; }
.youtube-handle {
  margin-top: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold-300);
  opacity: 0.8;
}
.youtube-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.youtube-stats li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,200,100,0.28);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.youtube-stats li:hover {
  background: rgba(240,200,100,0.1);
  border-color: rgba(240,200,100,0.55);
  transform: translateY(-3px);
}
.youtube-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--gold-300);
}
.youtube-stats span {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ivory-100);
  opacity: 0.68;
}

@media (max-width: 860px) {
  .youtube-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .youtube { padding: 70px 0; }
  .youtube-stats { gap: 12px; }
  .youtube-stats li { padding: 20px 14px; }
  .youtube-stats strong { font-size: 1.7rem; }
}

/* ---------- Facebook button + social CTA row ---------- */
.youtube-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-fb {
  background: #1877F2;
  color: #fff;
  box-shadow: 0 8px 30px rgba(24, 119, 242, 0.28);
}
.btn-fb:hover {
  background: #0F63D6;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(24, 119, 242, 0.42);
}
.btn-fb svg { width: 22px; height: 22px; fill: currentColor; }

@media (max-width: 640px) {
  .youtube-ctas .btn { width: 100%; }
}

/* ---------- YouTube channel name / tagline ---------- */
.youtube-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--gold-300);
  margin: -6px 0 14px;
  opacity: 0.9;
}
.youtube-copy em { color: var(--gold-100); font-style: italic; }

/* The about-section float overhangs its container by 40px, which pushed the
   document 20px wider than the viewport on phones. Tuck it in on narrow
   screens so nothing is clipped. */
@media (max-width: 860px) {
  .about-img-float { right: -12px; bottom: -24px; width: 48%; }
}

/* ==========================================================================
   CITY LANDING PAGES (/pandit-in-dubai/ etc.)
   ========================================================================== */
.city-hero { padding: 64px 0 72px; }
.city-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 18px; }
.city-hero .hero-lede { max-width: 640px; font-size: 1.12rem; }
.city-hero .hero-ctas { margin-top: 30px; }

.crumbs {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ivory-100);
  opacity: 0.7;
  margin-bottom: 26px;
}
.crumbs a { color: var(--gold-300); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span[aria-hidden] { margin: 0 6px; opacity: 0.6; }

.section-inner.narrow { max-width: 820px; }
.center-text { text-align: center; }
.center-text .phone-cards { text-align: left; }
.center-text .contact-details { align-items: center; }
.center-text .contact-details li { justify-content: center; }

.city-intro { padding: 84px 0; }
.city-intro h2 { margin-bottom: 22px; }
.city-intro p { color: var(--ink-700); font-size: 1.02rem; }
.city-intro strong { color: var(--maroon-800); }

/* three-up on the city pages rather than the home page's four-up */
.services-grid.city-pujas { grid-template-columns: repeat(3, 1fr); }

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.area-chips li {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--maroon-800);
  background: #fff;
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 999px;
  padding: 9px 18px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.area-chips li:hover {
  background: rgba(212,160,23,0.1);
  border-color: rgba(212,160,23,0.6);
  transform: translateY(-2px);
}

.city-link { display: inline-block; margin-top: 18px; }

@media (max-width: 980px) {
  .services-grid.city-pujas { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid.city-pujas { grid-template-columns: 1fr; }
  .city-intro { padding: 64px 0; }
  .city-hero { padding: 48px 0 56px; }
}

/* ==========================================================================
   CEREMONY PAGES (/griha-pravesh-puja/ etc.)
   ========================================================================== */
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.quick-facts li {
  flex: 1 1 200px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,200,100,0.28);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.quick-facts strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-300);
  margin-bottom: 5px;
}
.quick-facts span { color: var(--ivory-100); font-size: 0.94rem; }

.samagri-list {
  max-width: 620px;
  margin: 0 auto;
  columns: 2;
  column-gap: 40px;
}
.samagri-list li { break-inside: avoid; }

.link-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 820px;
  margin: 0 auto;
}
.link-cols h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass-700);
  margin-bottom: 16px;
}
.link-list { display: flex; flex-direction: column; gap: 10px; }
.link-list a {
  color: var(--maroon-800);
  font-weight: 500;
  border-bottom: 1px solid rgba(212,160,23,0.3);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.link-list a:hover { color: var(--vermilion); border-color: var(--vermilion); }

.ceremonies-block { margin-top: 48px; }

/* linked headings on the home page service cards */
.service-card h3 a { transition: color 0.2s ease; }
.service-card h3 a:hover { color: var(--vermilion); }

@media (max-width: 640px) {
  .samagri-list { columns: 1; }
  .link-cols { grid-template-columns: 1fr; gap: 28px; }
  .quick-facts li { flex-basis: 100%; }
}
