/* ============================================================
   style.css — Shriraj Vastu and Astro
   Single consolidated stylesheet for all pages.
   Sections:
     1. Design Tokens (:root)
     2. Reset & Base
     3. Shared Utilities
     4. Header & Navigation
     5. Hero Slider
     6. About Section
     7. Services Section
     8. Footer
     9. WhatsApp FAB
    10. Responsive (all breakpoints)
============================================================ */


/* ============================================================
   1. DESIGN TOKENS
============================================================ */
:root {
  /* Brand colours */
  --brown:        #9D4F27;
  --brown-dark:   #7A3B1E;
  --saffron:      #E8720C;
  --saffron-glow: #FF8C2A;
  --saffron-lt:   #FF9A3C;
  --gold:         #D4AF37;
  --gold-lt:      #F0D060;

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #FDF8F3;

  /* Text */
  --text-dark:    #2C1A0E;
  --text-mid:     #5A3E28;
  --text-light:   #8C6A50;

  /* Layout */
  --nav-height:   78px;
  --top-height:   38px;

  /* Motion */
  --transition:   0.35s ease;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================================
   2. RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  padding-top: calc(var(--top-height) + var(--nav-height));
}

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

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


/* ============================================================
   3. SHARED UTILITIES
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── CSS-only animation safety net ──────────────────────────
   If JS never fires (wrong BASE path, blocked by browser etc.)
   every animated element becomes visible after 3.5 s.
   When JS DOES run, .visible is added before the animation
   fires, so the transition plays normally.
──────────────────────────────────────────────────────────── */
@keyframes reveal-fallback {
  to { opacity: 1; transform: none; }
}
[data-animate]:not(.visible),
.service-card:not(.visible),
.blog-card:not(.visible),
.inst-heading:not(.visible),
.inst-ornament:not(.visible),
.testi-heading:not(.visible),
.testi-ornament:not(.visible) {
  animation: reveal-fallback 0.001s 3.5s forwards;
}


/* Section label (shared base — scoped start states below) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  opacity: 0;
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.section-label.visible { opacity: 1; transform: translate(0, 0); }

.label-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

.label-text {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--saffron);
}

/* Gold ornament divider (shared) */
.heading-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.heading-ornament.visible { opacity: 1; transform: translate(0, 0); }

.orn-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.orn-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.heading-accent { color: var(--saffron); }

/* Primary CTA button (hero) */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--saffron);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  border: 2px solid var(--saffron);
  transition: background .28s ease, box-shadow .28s ease, transform .22s ease;
  white-space: nowrap;
}
.btn-cta-primary:hover {
  background: var(--saffron-lt);
  border-color: var(--saffron-lt);
  box-shadow: 0 0 30px rgba(232,114,12,.6), 0 8px 24px rgba(0,0,0,.3);
  transform: translateY(-2px);
}

/* Ghost / secondary CTA button (hero) */
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 40px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.45);
  transition: border-color .28s ease, background .28s ease, transform .22s ease;
  white-space: nowrap;
}
.btn-cta-ghost:hover {
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}


/* ============================================================
   4. HEADER & NAVIGATION
============================================================ */

/* ── Top bar ───────────────────────────────────────────────── */
#top-bar {
  background: var(--brown);
  height: var(--top-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 13px;
  color: rgba(255,255,255,.88);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: transform var(--transition);
}
#top-bar.hidden { transform: translateY(-100%); }

.top-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.88);
  transition: color var(--transition);
}
.top-contact a:hover { color: #fff; }
.top-contact i { font-size: 11px; color: var(--saffron-glow); }

.top-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.3);
}

.top-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-social a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  transition: color var(--transition), transform var(--transition);
}
.top-social a:hover { color: #fff; transform: translateY(-2px); }

/* ── Main nav ──────────────────────────────────────────────── */
#main-nav {
  background: var(--white);
  height: var(--nav-height);
  position: fixed;
  top: var(--top-height);
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: top var(--transition), box-shadow var(--transition),
              backdrop-filter var(--transition), background var(--transition);
}
#main-nav.sticky {
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.13);
  animation: slideDown .35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 180px;
}
.nav-logo img {
  width: 180px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
}
.nav-logo .logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-fallback .logo-main {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: .5px;
}
.logo-fallback .logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--saffron);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--saffron); }
.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}
.nav-links > li > a .chevron {
  font-size: 10px;
  transition: transform var(--transition);
}
.nav-links > li:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  min-width: 210px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  border-top: 3px solid var(--saffron);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition),
              visibility var(--transition);
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13.5px;
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition),
              padding var(--transition);
}
.dropdown li a i { color: var(--saffron); width: 16px; font-size: 13px; }
.dropdown li a:hover {
  background: #FFF5EE;
  color: var(--saffron);
  padding-left: 24px;
}

/* Book Consultation button */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: var(--saffron);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 8px;
  transition: background var(--transition), box-shadow var(--transition),
              transform var(--transition);
}
.btn-book:hover {
  background: var(--saffron-glow);
  box-shadow: 0 0 20px rgba(232,114,12,.55);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition);
  background: none;
  border: none;
}
.hamburger:hover { background: #f5f0eb; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile overlay ────────────────────────────────────────── */
#mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;
  opacity: 0;
  transition: opacity .3s ease;
}
#mobile-overlay.visible { display: block; opacity: 1; }

/* ── Mobile drawer ─────────────────────────────────────────── */
#mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--white);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
#mobile-drawer.open { transform: translateX(0); }

.drawer-header {
  background: var(--brown);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-header .logo-main { color: #fff; font-size: 18px; }
.drawer-header .logo-sub  { color: rgba(255,255,255,.7); }

.drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background var(--transition);
}
.drawer-close:hover { background: rgba(255,255,255,.15); }

.drawer-nav {
  flex: 1;
  padding: 12px 0;
  list-style: none;
}
.drawer-nav > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid #f3ede8;
  transition: color var(--transition), background var(--transition);
}
.drawer-nav > li > a:hover,
.drawer-nav > li > a.active { color: var(--saffron); background: #fff8f3; }

.drawer-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: #fdf8f5;
}
.drawer-submenu.open { max-height: 500px; }
.drawer-submenu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px 11px 36px;
  font-size: 13.5px;
  color: var(--text-mid);
  border-bottom: 1px solid #efe8e0;
  transition: color var(--transition);
}
.drawer-submenu li a i { color: var(--saffron); width: 16px; }
.drawer-submenu li a:hover { color: var(--saffron); }

.drawer-chevron {
  font-size: 11px;
  transition: transform var(--transition);
}
.drawer-chevron.open { transform: rotate(180deg); }

.drawer-footer {
  padding: 18px 22px;
  border-top: 1px solid #f0e8df;
}
.drawer-footer .btn-book {
  width: 100%;
  justify-content: center;
  margin-left: 0;
  margin-bottom: 16px;
}
.drawer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.drawer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5ede4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 15px;
  transition: background var(--transition), color var(--transition),
              transform var(--transition);
}
.drawer-social a:hover {
  background: var(--saffron);
  color: #fff;
  transform: translateY(-3px);
}


/* ============================================================
   5. HERO SLIDER
============================================================ */
#hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  overflow: hidden;
}

/* Shimmer particle layer — pure CSS twinkling dots */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 3px 3px at 15% 20%,  rgba(255,200,80,.55) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 72% 14%,  rgba(255,160,50,.45) 0%, transparent 100%),
    radial-gradient(ellipse 4px 4px at 38% 78%,  rgba(255,200,80,.40) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 88% 55%,  rgba(255,220,100,.50) 0%, transparent 100%),
    radial-gradient(ellipse 3px 3px at 55% 40%,  rgba(255,180,60,.35) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 25% 65%,  rgba(255,200,80,.40) 0%, transparent 100%),
    radial-gradient(ellipse 3px 3px at 82% 82%,  rgba(255,160,50,.45) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 10% 90%,  rgba(255,220,100,.35) 0%, transparent 100%),
    radial-gradient(ellipse 4px 4px at 62% 92%,  rgba(255,200,80,.40) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 45% 8%,   rgba(255,180,60,.45) 0%, transparent 100%);
  animation: shimmerFloat 8s ease-in-out infinite alternate;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 2px 2px at 30% 30%,  rgba(255,220,120,.55) 0%, transparent 100%),
    radial-gradient(ellipse 3px 3px at 90% 10%,  rgba(255,180,60,.45) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 5%  50%,  rgba(255,210,90,.40) 0%, transparent 100%),
    radial-gradient(ellipse 3px 3px at 60% 70%,  rgba(255,200,80,.50) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 78% 38%,  rgba(255,220,100,.35) 0%, transparent 100%),
    radial-gradient(ellipse 4px 4px at 50% 55%,  rgba(255,160,50,.30) 0%, transparent 100%);
  animation: shimmerFloat 6s ease-in-out 2s infinite alternate-reverse;
}
@keyframes shimmerFloat {
  0%   { opacity: .6; transform: translateY(0)    scale(1);   }
  50%  { opacity: 1;  transform: translateY(-8px) scale(1.3); }
  100% { opacity: .5; transform: translateY(4px)  scale(.85); }
}

/* Individual slide */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide.prev   { opacity: 0; z-index: 0; }

/* Slide background images + Ken Burns zoom */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1.06); }

/* Slide 1 — sacred geometry / Vastu feel */
.slide-1 .slide-bg {
  background-image: url('../images/slide1.svg');
  background-color: #2C0E00;
}
.slide-1 .slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 50%, #4A1800 0%, #1C0800 55%, #0D0400 100%),
    repeating-radial-gradient(circle at 60% 50%,
      transparent 0px, transparent 48px,
      rgba(212,160,23,.08) 49px, rgba(212,160,23,.08) 50px);
}

/* Slide 2 — modern home / office */
.slide-2 .slide-bg {
  background-image: url('../images/slide2.svg');
  background-color: #0D1A2A;
}
.slide-2 .slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1A2A 0%, #1A3040 40%, #0A2030 100%);
}

/* Slide 3 — numerology / cosmic */
.slide-3 .slide-bg {
  background-image: url('../images/slide3.svg');
  background-color: #0A0A2A;
}
.slide-3 .slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, #1A0A3A 0%, #050510 70%);
}

/* Dark gradient overlay for text readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.50) 50%, rgba(0,0,0,.10) 100%);
}

/* Slide content */
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,114,12,.18);
  border: 1px solid rgba(232,114,12,.45);
  color: var(--saffron-lt);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.slide-badge i { font-size: 10px; color: var(--gold); }

.slide-headline {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  max-width: 680px;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s .1s var(--ease-out), transform .7s .1s var(--ease-out);
}

.headline-accent {
  color: var(--saffron-lt);
  position: relative;
  display: inline-block;
}

.slide-sub {
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,.82);
  letter-spacing: .5px;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s .2s var(--ease-out), transform .7s .2s var(--ease-out);
}

.slide-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s .32s var(--ease-out), transform .7s .32s var(--ease-out);
}

/* Animate slide content in when slide is active */
.slide.active .slide-badge,
.slide.active .slide-headline,
.slide.active .slide-sub,
.slide.active .slide-cta-row {
  opacity: 1;
  transform: translateY(0);
}

/* Mandala watermark */
.mandala-watermark {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: clamp(260px, 35vw, 480px);
  height: auto;
  opacity: .055;
  z-index: 2;
  pointer-events: none;
  animation: mandalaRotate 60s linear infinite;
  transform-origin: center center;
}
@keyframes mandalaRotate {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* Arrow buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.28);
  color: var(--white);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.slider-arrow:hover {
  background: rgba(232,114,12,.55);
  border-color: var(--saffron);
  transform: translateY(-50%) scale(1.08);
}
.arrow-prev { left: 28px; }
.arrow-next { right: 28px; }

/* Navigation dots */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
  border: none;
  cursor: pointer;
  transition: background .3s ease, width .3s ease, border-radius .3s ease;
  padding: 0;
}
.dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--saffron);
}

/* Progress bar */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--saffron);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint i { font-size: 18px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0);   opacity: .5; }
  50%       { transform: translateY(6px); opacity: .9; }
}


/* ============================================================
   6. ABOUT SECTION
============================================================ */
#about {
  position: relative;
  padding: 100px 0 110px;
  background: var(--off-white);
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 60px solid rgba(212,175,55,.06);
  pointer-events: none;
}
#about::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(157,79,39,.05);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 72px;
  align-items: center;
}

/* Section label — slides in from left in About */
#about .section-label {
  transform: translateX(-40px);
}

/* Heading */
.about-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s .08s var(--ease-out), transform .7s .08s var(--ease-out);
}
.about-heading.visible { opacity: 1; transform: translateX(0); }

/* Ornament — left column */
#about .heading-ornament {
  margin-bottom: 26px;
  transform: translateX(-40px);
  transition: opacity .7s .14s var(--ease-out), transform .7s .14s var(--ease-out);
}

/* Body text block */
.about-body {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s .2s var(--ease-out), transform .7s .2s var(--ease-out);
}
.about-body.visible { opacity: 1; transform: translateX(0); }
.about-body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--text-dark); font-weight: 600; }

/* Stats strip */
.about-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(157,79,39,.15);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s .28s var(--ease-out), transform .7s .28s var(--ease-out);
}
.about-stats.visible { opacity: 1; transform: translateX(0); }
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .5px;
}

/* Read More CTA */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--saffron);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s .35s var(--ease-out),
              transform .7s .35s var(--ease-out),
              border-color .28s ease,
              gap .28s ease;
}
.about-cta.visible { opacity: 1; transform: translateX(0); }
.about-cta:hover { border-color: var(--saffron); gap: 16px; }
.about-cta .cta-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background var(--transition), transform var(--transition);
}
.about-cta:hover .cta-arrow { background: var(--brown); transform: translateX(4px); }

/* Visual column */
.about-visual {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s .15s var(--ease-out), transform .8s .15s var(--ease-out);
}
.about-visual.visible { opacity: 1; transform: translateX(0); }

/* Double-border image frame */
.image-frame { position: relative; padding: 0; }
.image-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: -14px; bottom: -14px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  z-index: 0;
  transition: transform .5s var(--ease-out);
}
.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--brown);
  border-radius: 6px;
  z-index: 2;
  pointer-events: none;
}
.about-visual.visible .image-frame::before {
  animation: framePop .7s .5s var(--ease-out) both;
}
@keyframes framePop {
  from { opacity: 0; transform: translate(-6px,-6px); }
  to   { opacity: 1; transform: translate(0,0);       }
}

/* Founder image */
.founder-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #3A1C0A 0%, #6B3018 50%, #3A1C0A 100%);
}
.founder-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}
.founder-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(60,20,0,.55) 100%);
  z-index: 2;
  pointer-events: none;
  border-radius: 4px;
}

/* Play button */
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 4px solid rgba(255,255,255,.35);
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(232,114,12,.55);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.play-btn i { margin-left: 4px; }
.play-btn:hover {
  background: var(--brown);
  transform: translate(-50%,-50%) scale(1.1);
  box-shadow: 0 10px 36px rgba(157,79,39,.65);
}
.play-btn::before, .play-btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(232,114,12,.35);
  animation: ripple 2.2s ease-out infinite;
}
.play-btn::after {
  inset: -20px;
  border-color: rgba(232,114,12,.18);
  animation-delay: .7s;
}
@keyframes ripple {
  0%   { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Excellence badge */
.excellence-badge {
  position: absolute;
  top: -20px; right: -20px;
  z-index: 6;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0deg, #F0D060 90deg, var(--gold) 180deg, #B8940F 270deg, var(--gold) 360deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  cursor: default;
}
.badge-number {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.badge-label {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--brown-dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.2;
  margin-top: 2px;
}
.badge-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212,175,55,.6);
  animation: badgeRingRotate 12s linear infinite;
}
@keyframes badgeRingRotate {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* Image caption strip */
.image-caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 5;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.caption-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.caption-text .caption-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.caption-text .caption-role {
  font-size: 11px;
  color: rgba(255,255,255,.72);
  letter-spacing: .5px;
}

/* Video lightbox modal */
#video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn .3s ease;
}
#video-modal.open { display: flex; }
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal-inner {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  animation: modalSlideUp .38s var(--ease-out);
}
@keyframes modalSlideUp {
  from { transform: translateY(40px) scale(.96); opacity: 0; }
  to   { transform: translateY(0)    scale(1);   opacity: 1; }
}
.modal-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.modal-close {
  position: absolute;
  top: -44px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: .75;
  transition: opacity var(--transition), transform var(--transition);
  line-height: 1;
}
.modal-close:hover { opacity: 1; transform: rotate(90deg); }


/* ============================================================
   7. SERVICES SECTION
============================================================ */
#services {
  position: relative;
  padding: 100px 0 110px;
  background-color: var(--off-white);
  background-image: radial-gradient(circle, rgba(157,79,39,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 55px solid rgba(212,175,55,.05);
  pointer-events: none;
}
#services::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 70px solid rgba(157,79,39,.04);
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Section label — fades up in Services */
#services .section-label {
  transform: translateY(28px);
}

.services-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s .08s var(--ease-out), transform .65s .08s var(--ease-out);
}
.services-heading.visible { opacity: 1; transform: translateY(0); }

/* Ornament — centered in Services */
#services .heading-ornament {
  max-width: 320px;
  margin: 0 auto 36px;
  transform: translateY(28px);
  transition: opacity .65s .14s var(--ease-out), transform .65s .14s var(--ease-out);
}

/* Mandala divider */
.mandala-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s .2s var(--ease-out), transform .65s .2s var(--ease-out);
}
.mandala-divider.visible { opacity: .38; transform: translateY(0); }
.mandala-divider svg { width: min(480px, 90vw); height: auto; }

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Service card */
.service-card {
  position: relative;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(44,26,14,.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out),
              box-shadow .35s ease;
  opacity: 0;
  transform: translateY(30px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover   { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(44,26,14,.16); }

/* Top accent bar */
.card-top-accent {
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: var(--saffron);
  border-radius: 0 2px 0 0;
  transition: width .4s var(--ease-out);
  z-index: 5;
  pointer-events: none;
}
.service-card:hover .card-top-accent { width: 100%; }

/* Card image area */
.card-image-area {
  position: relative;
  height: 200px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.card-image--1 { background-image: url('../images/service-1.svg'), linear-gradient(135deg,#7A3B1E 0%,#E8720C 55%,#D4AF37 100%); }
.card-image--2 { background-image: url('../images/service-2.svg'), linear-gradient(135deg,#1E4A3B 0%,#2E7D5A 55%,#5A3E28 100%); }
.card-image--3 { background-image: url('../images/service-3.svg'), linear-gradient(135deg,#3A1A5A 0%,#7B3FA0 55%,#E8720C 100%); }
.card-image--4 { background-image: url('../images/service-4.svg'), linear-gradient(135deg,#0D1A2A 0%,#1A3A6A 55%,#D4AF37 100%); }
.card-image--5 { background-image: url('../images/service-5.svg'), linear-gradient(135deg,#3A2010 0%,#8B5E3C 55%,#D4A017 100%); }
.card-image--6 { background-image: url('../images/service-6.svg'), linear-gradient(135deg,#5A1A2A 0%,#9D4F27 55%,#D4AF37 100%); }

.card-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease-out);
}
.service-card:hover .card-img { transform: scale(1.05); }
.card-image-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,26,14,0);
  transition: background .35s ease;
  pointer-events: none;
  z-index: 1;
}
.service-card:hover .card-image-area::after { background: rgba(44,26,14,.22); }

/* Icon badge — direct child of card, straddles image/body seam */
.card-icon-badge {
  position: absolute;
  top: 172px; left: 24px;
  z-index: 10;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(232,114,12,.15);
  box-shadow: 0 3px 14px rgba(44,26,14,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  font-size: 22px;
  transition: background .3s ease, color .3s ease, border-color .3s ease,
              transform .3s var(--ease-out), box-shadow .3s ease;
}
.service-card:hover .card-icon-badge {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  box-shadow: 0 6px 20px rgba(232,114,12,.4);
  transform: rotate(10deg) scale(1.08);
}

/* Card body */
.card-body {
  padding: 44px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-title {
  font-family: 'Cinzel', serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}
.card-desc {
  font-size: 13.5px;
  line-height: 1.82;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 20px;
}
.card-body::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--saffron);
  border-radius: 2px;
  transition: width .4s var(--ease-out);
  margin-top: auto;
  margin-bottom: 18px;
}
.service-card:hover .card-body::after { width: 40px; }

/* Learn more link */
.card-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--saffron);
  text-decoration: none;
  letter-spacing: .3px;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
  transition: gap .25s ease, color .25s ease, border-color .25s ease;
  width: fit-content;
}
.card-learn-more:hover { gap: 11px; color: var(--brown-dark); border-bottom-color: var(--brown-dark); }
.learn-arrow {
  display: inline-block;
  transition: transform .25s ease;
  font-style: normal;
}
.card-learn-more:hover .learn-arrow { transform: translateX(3px); }


/* ============================================================
   8. FOOTER
============================================================ */
#site-footer {
  background: #7A3B1E; /* hard-coded fallback in case CSS variable fails */
  background: var(--brown-dark);
  color: rgba(255,255,255,.82);
  padding: 64px 0 0;
  display: block; /* explicit — prevents any accidental override */
  position: relative;
  z-index: 1; /* sits above any stacking-context overflow from sections */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-main { color: #fff; font-size: 22px; }
.footer-brand .logo-sub  { color: rgba(255,255,255,.55); }

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  margin-top: 14px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: var(--saffron);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--saffron-lt); padding-left: 5px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
}
.footer-contact-item i { color: var(--saffron); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--saffron-lt); }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,.42);
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--saffron-lt); }


/* ============================================================
   9. WHATSAPP FLOATING BUTTON
============================================================ */
#whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
#whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
}
#whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,.5);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(.9); opacity: 1; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(.9); opacity: 0; }
}
#whatsapp-fab .wa-tooltip {
  position: absolute;
  right: 68px;
  background: #fff;
  color: var(--text-dark);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
#whatsapp-fab:hover .wa-tooltip { opacity: 1; }


/* ============================================================
   10. RESPONSIVE
============================================================ */

/* ── 1100px — Nav spacing ──────────────────────────────────── */
@media (max-width: 1100px) {
  #main-nav { padding: 0 24px; }
  .nav-links > li > a { padding: 8px 9px; font-size: 13px; }
}

/* ── 992px — Hamburger / collapse nav ─────────────────────── */
@media (max-width: 992px) {
  .nav-links, .btn-book { display: none; }
  .hamburger { display: flex; }
  #top-bar { padding: 0 18px; font-size: 11.5px; gap: 8px; }
  .top-contact { gap: 10px; }
  .top-contact .top-divider { display: none; }

  /* Hero */
  #hero { min-height: 70vh; }
  .slide-content { padding: 0 40px; }
  .slider-arrow { width: 42px; height: 42px; font-size: 14px; }
  .arrow-prev { left: 14px; }
  .arrow-next { right: 14px; }

  /* About */
  #about { padding: 72px 0 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { order: -1; }
  .about-visual,
  #about .section-label,
  .about-heading,
  #about .heading-ornament,
  .about-body,
  .about-stats,
  .about-cta { transform: translateY(30px) !important; }
  .about-visual.visible,
  #about .section-label.visible,
  .about-heading.visible,
  #about .heading-ornament.visible,
  .about-body.visible,
  .about-stats.visible,
  .about-cta.visible { transform: translateY(0) !important; }
  .excellence-badge { top: -14px; right: -10px; width: 82px; height: 82px; }
  .badge-number { font-size: 16px; }

  /* Services */
  #services { padding: 80px 0 90px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── 768px — Services 2-col ────────────────────────────────── */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-header { margin-bottom: 48px; }
  #services { padding: 72px 0 80px; }
}

/* ── 640px — About fine-tuning ─────────────────────────────── */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  #about { padding: 56px 0 64px; }
  .about-stats { gap: 20px; }
  .stat-number { font-size: 24px; }
  .image-caption { padding: 10px 12px; }
}

/* ── 560px — Hide phone on tiny top bar ────────────────────── */
@media (max-width: 560px) {
  #top-bar .top-contact a:last-child { display: none; }
}

/* ── 480px — Services 1-col / Mobile hero ──────────────────── */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  #services { padding: 56px 0 64px; }
  .services-heading { font-size: clamp(22px, 6vw, 32px); }
  .mandala-divider { margin-bottom: 40px; }
  .mandala-divider svg { width: min(300px, 85vw); }

  #hero { min-height: 60vh; }
  .slide-content { padding: 0 22px; }
  .slider-arrow { display: none; }
  .mandala-watermark { width: 200px; right: -60px; bottom: -30px; }
  .scroll-hint { display: none; }
  .slide-overlay { background: linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.70) 100%); }
  .slide-content { padding-bottom: 70px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ============================================================
   11. INSTRUMENTS CAROUSEL SECTION
============================================================ */

/* ── Section shell ──────────────────────────────────────────── */
#instruments {
  padding: 100px 0 110px;
  background: #2C2C2C;
  position: relative;
  overflow: hidden;
}

/* Ambient gold glow corners */
#instruments::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(212,175,55,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 90% 10%, rgba(212,175,55,.06) 0%, transparent 70%);
  z-index: 0;
}

#instruments .container { position: relative; z-index: 1; }


/* ── Section Header ─────────────────────────────────────────── */
.inst-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Animated entry — start states */
.inst-label,
.inst-heading,
.inst-ornament {
  opacity: 0;
  transform: translateY(24px);
}

.inst-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.inst-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 20px;
  transition: opacity .65s var(--ease-out) .08s, transform .65s var(--ease-out) .08s;
}
.inst-ornament {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .65s var(--ease-out) .16s, transform .65s var(--ease-out) .16s;
}

/* Visible state (JS adds .visible) */
.inst-label.visible,
.inst-heading.visible,
.inst-ornament.visible {
  opacity: 1;
  transform: translateY(0);
}

.inst-label-line {
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  opacity: .7;
}

.inst-label-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.inst-heading-accent { color: var(--gold-lt); }

.inst-orn-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  border-radius: 1px;
}
.inst-orn-line--rev {
  background: linear-gradient(to left, transparent, var(--gold));
}
.inst-orn-diamond {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}


/* ── Carousel wrapper ───────────────────────────────────────── */
.inst-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}


/* ── Arrow buttons ──────────────────────────────────────────── */
.inst-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,.35);
  background: rgba(255,255,255,.05);
  color: var(--gold);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, border-color .3s ease, transform .25s ease, opacity .3s ease;
  z-index: 2;
}
.inst-arrow:hover {
  background: rgba(212,175,55,.18);
  border-color: var(--gold);
  transform: scale(1.08);
}
.inst-arrow:disabled,
.inst-arrow[aria-disabled="true"] {
  opacity: .28;
  cursor: default;
  pointer-events: none;
}


/* ── Viewport (clips track) ─────────────────────────────────── */
.inst-viewport {
  flex: 1;
  overflow: hidden;
}


/* ── Track (slides horizontally) ───────────────────────────── */
.inst-track {
  display: flex;
  gap: 24px;
  transition: transform .5s var(--ease-out);
  will-change: transform;
}


/* ── Individual card ────────────────────────────────────────── */
/* 3 visible: 2 gaps of 24px total = 48px → each card loses 48/3 = 16px */
.inst-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #1E1E1E;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .38s var(--ease-out), box-shadow .38s ease, border-color .38s ease;
  cursor: default;
}
.inst-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.55);
  border-color: rgba(212,175,55,.22);
}


/* ── Image wrapper ──────────────────────────────────────────── */
.inst-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

/* Gradient placeholder */
.inst-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: rgba(255,255,255,.22);
  transition: transform .5s var(--ease-out);
}
.inst-card:hover .inst-placeholder { transform: scale(1.06); }

/* Real photo */
.inst-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
  z-index: 1;
}
.inst-card:hover .inst-photo { transform: scale(1.06); }

/* Subtle bottom gradient for image readability */
.inst-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Glow ring — appears on hover using per-card --glow-color CSS var */
.inst-glow-ring {
  position: absolute;
  inset: -3px;
  border-radius: 12px;
  border: 2px solid var(--glow-color, transparent);
  opacity: 0;
  transition: opacity .4s ease, box-shadow .4s ease;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 0 0 var(--glow-color, transparent);
}
.inst-card:hover .inst-glow-ring {
  opacity: 1;
  box-shadow: 0 0 20px 4px var(--glow-color, transparent);
}


/* ── Card info ──────────────────────────────────────────────── */
.inst-info {
  padding: 20px 22px 24px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.inst-name {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  color: #F0D060;
  margin: 0 0 8px;
  line-height: 1.3;
}

.inst-desc {
  font-size: 13px;
  color: rgba(255,255,255,.52);
  margin: 0;
  line-height: 1.65;
}


/* ── Dot indicators ─────────────────────────────────────────── */
.inst-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.inst-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, width .3s ease;
}
.inst-dot.active {
  background: var(--gold);
  width: 24px;
}
.inst-dot:hover:not(.active) {
  background: rgba(212,175,55,.45);
}


/* ── 2-card breakpoint ──────────────────────────────────────── */
@media (max-width: 900px) {
  /* 2 visible: 1 gap of 24px → each card loses 24/2 = 12px */
  .inst-card { flex: 0 0 calc(50% - 12px); }
}

/* ── 1-card breakpoint ──────────────────────────────────────── */
@media (max-width: 560px) {
  .inst-card { flex: 0 0 100%; }
  .inst-arrow { width: 38px; height: 38px; font-size: 12px; }
  .inst-carousel-wrap { gap: 10px; }
  #instruments { padding: 64px 0 72px; }
  .inst-img-wrap { height: 190px; }
}


/* ============================================================
   12. TESTIMONIALS SECTION
============================================================ */

/* ── Section shell ──────────────────────────────────────────── */
#testimonials {
  padding: 100px 0 110px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Faint dot-grid texture */
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(157,79,39,.045) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

/* Warm ambient glow — bottom-left saffron, top-right gold */
#testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(232,114,12,.06) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 100% 0%, rgba(212,175,55,.05) 0%, transparent 70%);
  z-index: 0;
}

#testimonials .container { position: relative; z-index: 1; }

/* ── Lotus SVG watermark ────────────────────────────────────── */
.testi-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  color: var(--saffron);
  opacity: .042;
  pointer-events: none;
  z-index: 0;
}


/* ── Section header ─────────────────────────────────────────── */
.testi-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Scroll-animation start states */
.testi-label,
.testi-heading,
.testi-ornament {
  opacity: 0;
  transform: translateY(24px);
}

.testi-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  transition: opacity .65s var(--ease-out),
              transform .65s var(--ease-out);
}
.testi-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 0 20px;
  transition: opacity .65s var(--ease-out) .08s,
              transform .65s var(--ease-out) .08s;
}
.testi-ornament {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .65s var(--ease-out) .16s,
              transform .65s var(--ease-out) .16s;
}

/* Visible states — JS adds .visible */
.testi-label.visible,
.testi-heading.visible,
.testi-ornament.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Label */
.testi-label-line {
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--saffron);
  border-radius: 2px;
  opacity: .7;
}
.testi-label-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--saffron);
}

.testi-heading-accent { color: var(--saffron); }

/* Gold ornament */
.testi-orn-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  border-radius: 1px;
}
.testi-orn-line--rev {
  background: linear-gradient(to left, transparent, var(--gold));
}
.testi-orn-diamond {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}


/* ── Carousel wrapper ───────────────────────────────────────── */
.testi-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}


/* ── Arrow buttons ──────────────────────────────────────────── */
.testi-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(157,79,39,.22);
  background: var(--white);
  color: var(--saffron);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(44,26,14,.10);
  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    transform .25s ease,
    opacity .3s ease;
  z-index: 2;
}
.testi-arrow:hover {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  box-shadow: 0 6px 24px rgba(232,114,12,.28);
  transform: scale(1.08);
}
.testi-arrow:disabled,
.testi-arrow[aria-disabled="true"] {
  opacity: .25;
  cursor: default;
  pointer-events: none;
}


/* ── Viewport ───────────────────────────────────────────────── */
.testi-viewport {
  flex: 1;
  overflow: hidden;
  /* Vertical padding lets the card box-shadow breathe */
  padding: 28px 0;
}


/* ── Track (slides left/right) ──────────────────────────────── */
.testi-track {
  display: flex;
  gap: 28px;
  transition: transform .55s var(--ease-out);
  will-change: transform;
}


/* ── Card — 80% wide so ≈10% of each adjacent card peeks ───── */
/* JS centers the active card via translateX on the track.      */
.testi-card {
  flex: 0 0 80%;
  background: var(--white);
  border-radius: 16px;
  padding: 44px 48px 38px;
  box-shadow:
    0 4px 32px rgba(44,26,14,.08),
    0 1px 4px rgba(44,26,14,.04);
  border: 1px solid rgba(157,79,39,.07);
  position: relative;
  overflow: hidden;
  transition: box-shadow .38s ease, transform .38s var(--ease-out);
}
.testi-card:hover {
  box-shadow:
    0 12px 52px rgba(44,26,14,.14),
    0 2px 8px rgba(44,26,14,.06);
  transform: translateY(-4px);
}

/* Saffron-to-gold gradient accent bar across top of each card */
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--saffron), var(--gold));
  border-radius: 16px 16px 0 0;
}


/* ── Decorative quote icon ──────────────────────────────────── */
.testi-quote-icon {
  font-size: 72px;
  color: var(--saffron);
  opacity: .11;
  line-height: 1;
  margin: 0 0 4px -6px;
  pointer-events: none;
  user-select: none;
}


/* ── Review text ────────────────────────────────────────────── */
.testi-text {
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--text-mid);
  margin: 0 0 24px;
  quotes: none;
  border: none;
  padding: 0;
}


/* ── Star rating ────────────────────────────────────────────── */
.testi-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 28px;
}
.testi-stars .fa-star {
  color: var(--gold);
  font-size: 14px;
}


/* ── Client row ─────────────────────────────────────────────── */
.testi-client {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(157,79,39,.09);
  padding-top: 24px;
}

/* Circular avatar with gold ring + initials fallback */
.testi-avatar {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--avatar-bg, var(--brown-dark));
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.18), 0 2px 12px rgba(44,26,14,.14);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity .3s ease;
}
/* Initials sit behind the photo (z-index 0);
   when photo is missing/errors its opacity goes to 0 revealing them */
.testi-initials {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  z-index: 0;
  letter-spacing: .5px;
  pointer-events: none;
  user-select: none;
}

.testi-client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.3;
}
.testi-detail {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}


/* ── Dot indicators ─────────────────────────────────────────── */
.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: none;
  background: rgba(157,79,39,.2);
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, width .3s ease;
}
.testi-dot.active {
  background: var(--saffron);
  width: 28px;
}
.testi-dot:hover:not(.active) {
  background: rgba(232,114,12,.38);
}


/* ── Mobile: full-width card, arrows hidden ─────────────────── */
@media (max-width: 600px) {
  #testimonials { padding: 64px 0 72px; }
  .testi-card {
    flex: 0 0 100%;
    padding: 32px 24px 28px;
  }
  .testi-arrow { display: none; }
  .testi-carousel-wrap { gap: 0; }
  .testi-text { font-size: 15px; line-height: 1.70; }
  .testi-quote-icon { font-size: 56px; }
}


/* ============================================================
   13. LATEST BLOG POSTS SECTION
============================================================ */

/* ── Section shell ──────────────────────────────────────────── */
#blog {
  padding: 100px 0 110px;
  background: #FFF8F0;
  position: relative;
  overflow: hidden;
}

/* Subtle repeating dot texture */
#blog::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(157,79,39,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}

/* Warm corner blooms */
#blog::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%,   rgba(232,114,12,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 0%   100%,  rgba(212,175,55,.05) 0%, transparent 70%);
  z-index: 0;
}

#blog .container { position: relative; z-index: 1; }


/* ── Section header ─────────────────────────────────────────── */
.blog-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Header elements are always visible — no opacity:0 hidden state.
   Cards use scroll-in animation (see .blog-card below). */
.blog-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.blog-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 0 20px;
}
.blog-ornament {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.blog-view-all {
  text-align: center;
  margin-top: 52px;
}

/* Label parts */
.blog-label-line {
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--saffron);
  border-radius: 2px;
  opacity: .7;
}
.blog-label-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--saffron);
}

.blog-heading-accent { color: var(--saffron); }

/* Ornament */
.blog-orn-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  border-radius: 1px;
}
.blog-orn-line--rev {
  background: linear-gradient(to left, transparent, var(--gold));
}
.blog-orn-diamond {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}


/* ── 3-column card grid ─────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


/* ── Individual card ────────────────────────────────────────── */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,26,14,.08), 0 1px 3px rgba(44,26,14,.04);
  border: 1px solid rgba(157,79,39,.07);
  /* Scroll-animation start state */
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .65s var(--ease-out),
    transform .65s var(--ease-out),
    box-shadow .38s ease;
}
.blog-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.blog-card:hover {
  box-shadow: 0 16px 44px rgba(44,26,14,.14);
  transform: translateY(-6px);
}


/* ── Image / placeholder wrap (16:9) ────────────────────────── */
.blog-card-img-link {
  display: block;
  text-decoration: none;
  outline-offset: 2px;
}
.blog-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--brown-dark);
}

/* Gradient placeholder — always behind photo */
.blog-card-placeholder {
  position: absolute;
  inset: 0;
  transition: transform .5s var(--ease-out);
}
.blog-card:hover .blog-card-placeholder { transform: scale(1.06); }

/* Real photo */
.blog-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .5s var(--ease-out), opacity .3s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.06); }

/* Dark gradient at image bottom for legibility */
.blog-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,.35), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ── Category pill ──────────────────────────────────────────── */
.blog-cat-pill {
  position: absolute;
  top: 13px;
  left: 14px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
  z-index: 3;
  line-height: 1.5;
  white-space: nowrap;
}


/* ── Card body ──────────────────────────────────────────────── */
.blog-card-body {
  padding: 22px 24px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Date row */
.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 11px;
}
.blog-card-date .fa-calendar-alt {
  font-size: 11px;
  color: var(--saffron);
  opacity: .75;
}

/* Title — max 2 lines */
.blog-card-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color .3s ease;
}
.blog-card:hover .blog-card-title a { color: var(--saffron); }

/* Excerpt — max 2 lines, ellipsis */
.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.68;
  margin: 0 0 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read More link */
.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron);
  text-decoration: none;
  margin-top: auto;
  transition: gap .3s ease, color .3s ease;
}
.blog-card-readmore:hover {
  gap: 9px;
  color: var(--brown);
}
.blog-card-readmore .fa-arrow-right {
  font-size: 11px;
  transition: transform .3s ease;
}
.blog-card-readmore:hover .fa-arrow-right { transform: translateX(2px); }


/* ── Author footer ──────────────────────────────────────────── */
.blog-card-footer {
  padding: 13px 24px 16px;
  border-top: 1px solid rgba(157,79,39,.08);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(253,248,243,.5);
}

/* Author avatar: initials behind, photo on top */
.blog-author-avatar {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,.5);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(44,26,14,.14);
}
.blog-author-initials {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.blog-author-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity .3s ease;
}

.blog-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}


/* ── View All Posts button ───────────────────────────────────── */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 34px;
  border: 1.5px solid var(--saffron);
  border-radius: 6px;
  color: var(--saffron);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .3px;
  transition:
    background .3s ease,
    color .3s ease,
    gap .3s ease,
    box-shadow .3s ease;
}
.btn-view-all:hover {
  background: var(--saffron);
  color: var(--white);
  gap: 12px;
  box-shadow: 0 6px 22px rgba(232,114,12,.24);
}
.btn-view-all .fa-arrow-right {
  font-size: 12px;
  transition: transform .3s ease;
}
.btn-view-all:hover .fa-arrow-right { transform: translateX(3px); }


/* ── Tablet: 2-column ───────────────────────────────────────── */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* ── Mobile: 1-column ───────────────────────────────────────── */
@media (max-width: 560px) {
  #blog { padding: 64px 0 72px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card-body { padding: 18px 20px 14px; }
  .blog-card-footer { padding: 12px 20px 14px; }
  .blog-view-all { margin-top: 36px; }
}


/* ============================================================
   14. SERVICES PAGE (services.php)
   Sections: Banner · Alternating Rows · Process · FAQ · CTA
============================================================ */


/* ── 1. PAGE BANNER ─────────────────────────────────────────── */
.svc-page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #4A1A08 0%, #7A3B1E 45%, #2C0E00 100%);
  overflow: hidden;
  padding: 100px 0 60px;
}

.svc-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,114,12,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(212,175,55,.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Faint dot texture */
.svc-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Mandala watermark — top-right */
.svc-banner-mandala {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 460px;
  height: 460px;
  opacity: .09;
  pointer-events: none;
}
.svc-banner-mandala svg { width: 100%; height: 100%; }

.svc-banner-content { position: relative; z-index: 2; }

.svc-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron-lt);
  margin-bottom: 18px;
}

.svc-banner-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 24px;
  max-width: 680px;
}
.svc-banner-accent { color: var(--saffron-lt); }

/* Breadcrumb */
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
}
.svc-breadcrumb a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .3s ease;
}
.svc-breadcrumb a:hover { color: var(--saffron-lt); }
.svc-bc-sep { font-size: 9px; color: rgba(255,255,255,.35); }
.svc-breadcrumb [aria-current="page"] { color: var(--saffron-lt); font-weight: 500; }


/* ── 2. SERVICES ALTERNATING ROWS ───────────────────────────── */
.svc-row {
  padding: 80px 0;
  border-bottom: 1px solid rgba(157,79,39,.1);
  background: var(--white);
}
.svc-row:nth-child(odd)  { background: var(--white); }
.svc-row:nth-child(even) { background: var(--off-white); }

.svc-row-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Flipped row: swap column order */
.svc-row--flip .svc-row-inner {
  direction: rtl;
}
.svc-row--flip .svc-row-inner > * {
  direction: ltr;
}

/* ── Image column ── */
.svc-row-img-col { position: relative; }

.svc-row-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(44,26,14,.14);
  aspect-ratio: 4 / 3;
}

.svc-img-placeholder {
  position: absolute;
  inset: 0;
  transition: transform .65s var(--ease-out);
}

.svc-row-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .65s var(--ease-out), opacity .3s ease;
}

.svc-row-img-wrap:hover .svc-row-img,
.svc-row-img-wrap:hover .svc-img-placeholder {
  transform: scale(1.04);
}

/* Floating icon badge */
.svc-img-badge {
  position: absolute;
  bottom: -20px;
  right: 24px;
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  color: var(--saffron);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,114,12,.25);
  border: 2px solid rgba(232,114,12,.15);
  transition: background .3s ease, color .3s ease, transform .3s var(--ease-out);
}
.svc-row-img-wrap:hover .svc-img-badge {
  background: var(--saffron);
  color: var(--white);
  transform: rotate(12deg) scale(1.1);
}

/* ── Text column ── */
.svc-row-text-col { padding-bottom: 24px; }

.svc-row-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.svc-row-num {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: 1px;
}
.svc-row-label-line {
  flex: 1;
  max-width: 60px;
  height: 1.5px;
  background: linear-gradient(to right, var(--saffron), transparent);
  border-radius: 1px;
}

.svc-row-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0 0 20px;
}

.svc-row-desc {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-mid);
  margin: 0 0 28px;
}

/* Benefits list */
.svc-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.svc-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.4;
}

.svc-benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232,114,12,.1);
  color: var(--saffron);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA row */
.svc-row-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-svc-book {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: var(--saffron);
  color: var(--white);
  border-radius: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .3px;
  box-shadow: 0 4px 18px rgba(232,114,12,.28);
  transition: background .3s ease, box-shadow .3s ease, transform .3s var(--ease-out);
}
.btn-svc-book:hover {
  background: var(--brown);
  box-shadow: 0 8px 28px rgba(232,114,12,.36);
  transform: translateY(-2px);
}

.btn-svc-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1.5px solid rgba(157,79,39,.3);
  border-radius: 7px;
  color: var(--brown);
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.btn-svc-ghost:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(232,114,12,.05);
}


/* ── 3. SECTION HEADER (shared: Process + FAQ) ──────────────── */
#svc-process,
#svc-faq {
  padding: 96px 0 104px;
}
#svc-process { background: var(--off-white); }
#svc-faq     { background: var(--white); }

.svc-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.svc-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.svc-sec-line {
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--saffron);
  border-radius: 2px;
  opacity: .7;
}
.svc-sec-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--saffron);
}
.svc-sec-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 0 14px;
}
.svc-sec-accent { color: var(--saffron); }
.svc-sec-sub {
  font-size: 15px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ── 3. PROCESS STEPS ───────────────────────────────────────── */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

/* Dotted horizontal connector line */
.process-connector {
  position: absolute;
  top: 40px;              /* vertically centred on circle */
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  border-top: 2px dashed rgba(232,114,12,.3);
  pointer-events: none;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Numbered circle */
.process-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid rgba(232,114,12,.25);
  color: var(--saffron);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 20px rgba(232,114,12,.12);
  transition: background .35s ease, color .35s ease, border-color .35s ease,
              box-shadow .35s ease, transform .35s var(--ease-out);
}
.process-step:hover .process-circle {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  box-shadow: 0 8px 30px rgba(232,114,12,.3);
  transform: translateY(-4px);
}

.process-num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--saffron);
  margin-bottom: 12px;
}

.process-title {
  font-family: 'Cinzel', serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0 0 10px;
}

.process-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}


/* ── 4. FAQ ACCORDION ───────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid rgba(157,79,39,.14);
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(44,26,14,.05);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(232,114,12,.35);
  box-shadow: 0 4px 20px rgba(232,114,12,.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  transition: background .25s ease;
}
.faq-question:hover { background: rgba(232,114,12,.04); }

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
  flex: 1;
  transition: color .25s ease;
}
.faq-question[aria-expanded="true"] .faq-q-text { color: var(--saffron); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232,114,12,.1);
  color: var(--saffron);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s ease, color .3s ease, transform .35s var(--ease-out);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--saffron);
  color: var(--white);
  transform: rotate(45deg);
}

/* Collapse / expand — animated via max-height */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease;
}
.faq-answer:not([hidden]) { max-height: 600px; }

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-mid);
  border-top: 1px solid rgba(157,79,39,.1);
  padding-top: 18px;
}


/* ── 5. CTA BANNER ──────────────────────────────────────────── */
#svc-cta {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(135deg, #C8500A 0%, #E8720C 45%, #D4A020 100%);
  overflow: hidden;
  text-align: center;
}

.svc-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.svc-cta-bg svg {
  width: 100%;
  height: 100%;
}

.svc-cta-content { position: relative; z-index: 2; }

.svc-cta-icon {
  font-size: 36px;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}

.svc-cta-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 18px;
}

.svc-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.svc-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-cta-svc-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: var(--white);
  color: var(--saffron);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 26px rgba(0,0,0,.18);
  transition: transform .3s var(--ease-out), box-shadow .3s ease, background .3s ease;
}
.btn-cta-svc-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,.24);
  background: #fdf8f3;
}

.btn-cta-svc-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease-out);
}
.btn-cta-svc-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-3px);
}


/* ── RESPONSIVE: SERVICES PAGE ──────────────────────────────── */
@media (max-width: 1024px) {
  .svc-row-inner  { gap: 44px; }
  .process-desc   { font-size: 12.5px; }
}

@media (max-width: 860px) {
  /* Stack service rows vertically */
  .svc-row { padding: 60px 0; }
  .svc-row-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr !important;
  }
  .svc-row--flip .svc-row-inner { direction: ltr; }
  .svc-img-badge { bottom: -16px; right: 20px; width: 52px; height: 52px; font-size: 18px; }
  .svc-benefits { grid-template-columns: 1fr; }

  /* Process: 2-column grid */
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-connector { display: none; }
}

@media (max-width: 600px) {
  .svc-page-banner { min-height: 260px; padding: 90px 0 50px; }
  .svc-banner-mandala { width: 280px; right: -60px; top: -40px; }
  .svc-row { padding: 48px 0; }
  .svc-row-title { font-size: clamp(19px, 5vw, 26px); }
  .svc-row-desc { font-size: 14px; }
  .svc-row-actions { flex-direction: column; align-items: flex-start; }
  .btn-svc-book, .btn-svc-ghost { width: 100%; justify-content: center; }

  /* Process: 1-column */
  .process-track { grid-template-columns: 1fr; gap: 28px; }
  #svc-process, #svc-faq { padding: 64px 0 72px; }
  .svc-section-header { margin-bottom: 44px; }

  /* FAQ */
  .faq-question { padding: 16px 18px; }
  .faq-q-text { font-size: 14px; }
  .faq-answer-inner { padding: 14px 18px 18px; font-size: 13.5px; }

  /* CTA */
  #svc-cta { padding: 64px 0 72px; }
  .svc-cta-heading { font-size: clamp(22px, 6vw, 34px); }
  .btn-cta-svc-primary, .btn-cta-svc-ghost { width: 100%; justify-content: center; }
}


/* ============================================================
   15. GALLERY PAGE (gallery.php)
   Sections: Banner · Tag Filter · Viewer · Thumbnail Strip
============================================================ */


/* ── 1. PAGE BANNER ─────────────────────────────────────────── */
.gallery-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D1A2A 0%, #1A2A4A 45%, #0A0F1E 100%);
  overflow: hidden;
  padding: 100px 0 60px;
}

.gallery-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 70% 50%, rgba(212,175,55,.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 0% 0%,   rgba(232,114,12,.10) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.gallery-banner-deco {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 440px;
  height: 440px;
  opacity: .08;
  pointer-events: none;
}
.gallery-banner-deco svg { width: 100%; height: 100%; }

.gallery-banner-content { position: relative; z-index: 2; }

.gallery-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
}

.gallery-banner-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 24px;
}
.gallery-banner-accent { color: var(--gold); }

.gallery-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
}
.gallery-breadcrumb a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .3s ease;
}
.gallery-breadcrumb a:hover { color: var(--gold); }
.gallery-bc-sep { font-size: 9px; color: rgba(255,255,255,.3); }
.gallery-breadcrumb [aria-current="page"] { color: var(--gold); font-weight: 500; }


/* ── 2. TAG FILTER BAR ──────────────────────────────────────── */
.glv-filter-bar {
  position: sticky;
  top: calc(var(--top-height) + var(--nav-height));
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid rgba(157,79,39,.12);
  box-shadow: 0 2px 12px rgba(44,26,14,.07);
  overflow: hidden;
}
.glv-filter-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.glv-filter-inner::-webkit-scrollbar { display: none; }
.glv-filter-fade {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48px;
  background: linear-gradient(to left, #fff 30%, transparent);
  pointer-events: none;
}

.glv-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid rgba(157,79,39,.18);
  background: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.glv-tag:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}
.glv-tag.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
  font-weight: 600;
}
.glv-tag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  font-size: 10.5px;
  font-weight: 700;
  background: rgba(255,255,255,.25);
}
.glv-tag:not(.active) .glv-tag-count {
  background: rgba(157,79,39,.1);
  color: var(--saffron);
}


/* ── 3. GALLERY VIEWER WRAPPER ──────────────────────────────── */
.glv-wrap {
  background: #0C0804;
}

/* ── 3a. Main viewer (image stage) ────────────────────────── */
.glv-viewer {
  position: relative;
  display: flex;
  flex-direction: column;
}

.glv-stage {
  position: relative;
  background: #0C0804;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52vh;
  max-height: 68vh;
  overflow: hidden;
}

.glv-main-img {
  display: block;
  max-width: 100%;
  max-height: 68vh;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity .32s ease;
  position: relative;
  z-index: 1;
}
.glv-main-img.glv-img-ready { opacity: 1; }

/* Loading spinner */
.glv-spinner {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--saffron);
  border-radius: 50%;
  animation: glv-spin .7s linear infinite;
  display: none;
}
@keyframes glv-spin { to { transform: rotate(360deg); } }

/* Counter badge */
.glv-counter {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 3;
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.7);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Prev / Next arrows */
.glv-arrow {
  position: absolute;
  top: calc(50% - 30px); /* offset so not on info panel */
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s var(--ease-out);
}
.glv-arrow:hover  { background: rgba(232,114,12,.75); }
.glv-arrow--prev  { left: 16px; }
.glv-arrow--next  { right: 16px; }
.glv-arrow--prev:hover { transform: translateX(-3px); }
.glv-arrow--next:hover { transform: translateX(3px); }
.glv-arrow:disabled { opacity: .2; cursor: default; pointer-events: none; }

/* ── 3b. Info panel ────────────────────────────────────────── */
.glv-info {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, #1A0D06 0%, #240F06 100%);
  border-top: 1px solid rgba(232,114,12,.15);
  padding: 20px 64px;          /* 64px sides leave room for arrows */
  min-height: 72px;
}
.glv-info-left {
  flex: 1;
  min-width: 0;
}
.glv-info-cat {
  display: inline-block;
  background: var(--saffron);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.glv-info-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin: 0 0 4px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.glv-info-caption {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin: 0;
  line-height: 1.5;
}
.glv-info-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  margin: 0;
  flex: 0 0 38%;
  max-width: 420px;
}

/* ── 4. THUMBNAIL STRIP ─────────────────────────────────────── */
.glv-strip-outer {
  position: relative;
  background: #150A04;
  border-top: 1px solid rgba(255,255,255,.06);
}
.glv-strip {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 48px;       /* side padding so first/last thumb not hidden behind arrows */
}
.glv-strip::-webkit-scrollbar { display: none; }

/* Individual thumbnail */
.glv-thumb {
  flex: 0 0 auto;
  width: 90px;
  height: 72px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  padding: 0;
  background: #2A1208;
  position: relative;
  transition: border-color .22s ease, transform .22s var(--ease-out);
  outline: none;
}
.glv-thumb:hover {
  border-color: rgba(232,114,12,.55);
  transform: scale(1.06);
  z-index: 1;
}
.glv-thumb.active {
  border-color: var(--saffron);
  transform: scale(1.08);
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(232,114,12,.4), 0 4px 16px rgba(232,114,12,.25);
}
.glv-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .75;
  transition: opacity .22s ease;
}
.glv-thumb:hover .glv-thumb-img,
.glv-thumb.active .glv-thumb-img { opacity: 1; }

.glv-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  transition: background .22s ease;
}
.glv-thumb:hover .glv-thumb-overlay,
.glv-thumb.active .glv-thumb-overlay { background: transparent; }

/* Strip scroll arrows */
.glv-strip-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20,10,4,.85);
  border: 1px solid rgba(232,114,12,.25);
  color: rgba(255,255,255,.7);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s ease, opacity .22s ease;
}
.glv-strip-arrow:hover { background: rgba(232,114,12,.75); color: #fff; }
.glv-strip-arrow--l { left: 6px; }
.glv-strip-arrow--r { right: 6px; }

/* ── 5. EMPTY STATE ─────────────────────────────────────────── */
.glv-empty {
  text-align: center;
  padding: 64px 24px;
  color: rgba(255,255,255,.35);
  background: #0C0804;
}
.glv-empty i { font-size: 48px; display: block; margin-bottom: 16px; opacity: .4; }
.glv-empty p { font-size: 15px; margin: 0; }


/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .glv-stage    { min-height: 42vh; max-height: 56vh; }
  .glv-main-img { max-height: 56vh; }
  .glv-info     { flex-direction: column; gap: 10px; padding: 16px 56px; }
  .glv-info-desc { max-width: none; flex: none; }
  .glv-info-title { white-space: normal; }
}

@media (max-width: 600px) {
  .gallery-banner { min-height: 240px; padding: 90px 0 44px; }
  .gallery-banner-deco { width: 260px; right: -50px; top: -40px; }
  .glv-filter-inner { padding: 10px 14px; }
  .glv-stage    { min-height: 38vw; max-height: 52vw; }
  .glv-main-img { max-height: 52vw; }
  .glv-arrow    { width: 38px; height: 38px; font-size: 14px; }
  .glv-arrow--prev { left: 6px; }
  .glv-arrow--next { right: 6px; }
  .glv-info     { padding: 14px 16px; }
  .glv-info-title { font-size: 14px; }
  .glv-thumb    { width: 68px; height: 54px; }
  .glv-strip    { padding: 8px 40px; }
}


/* ============================================================
   16. BLOG LISTING PAGE (blog.php)
   Sections: Banner · Post Cards · Pagination · Sidebar
============================================================ */

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ── 1. PAGE BANNER ─────────────────────────────────────────── */
.blog-page-banner {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2C0E00 0%, #6A2A08 45%, #1A0800 100%);
  overflow: hidden;
  padding: 100px 0 60px;
}

.blog-page-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 72% 50%, rgba(232,114,12,.2) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 0% 100%, rgba(212,175,55,.1) 0%, transparent 60%);
  pointer-events: none;
}

.blog-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.blog-page-banner-deco {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 420px;
  height: 420px;
  opacity: .09;
  pointer-events: none;
}
.blog-page-banner-deco svg { width: 100%; height: 100%; }

.blog-page-banner-content { position: relative; z-index: 2; }

.blog-page-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron-lt);
  margin-bottom: 16px;
}

.blog-page-banner-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 12px;
}
.blog-page-banner-accent { color: var(--saffron-lt); }

.blog-page-banner-sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  margin: 0 0 24px;
  max-width: 560px;
}

.blog-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.blog-page-breadcrumb a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .3s ease;
}
.blog-page-breadcrumb a:hover { color: var(--saffron-lt); }
.blog-page-breadcrumb .fa-chevron-right { font-size: 9px; color: rgba(255,255,255,.3); }
.blog-page-breadcrumb [aria-current="page"] { color: var(--saffron-lt); font-weight: 500; }


/* ── 2. PAGE WRAP + GRID ────────────────────────────────────── */
.blog-page-wrap {
  background: var(--off-white);
  padding: 60px 0 80px;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}


/* ── 3. BLOG POST CARDS ─────────────────────────────────────── */
.bp-card {
  display: grid;
  grid-template-columns: 40% 60%;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(44,26,14,.07);
  margin-bottom: 28px;
  transition: transform .35s var(--ease-out), box-shadow .35s ease;
}
.bp-card:last-of-type { margin-bottom: 0; }
.bp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(44,26,14,.13);
}

/* Image column */
.bp-card-img-link {
  display: block;
  overflow: hidden;
  height: 100%;
  min-height: 220px;
}

.bp-card-img-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.bp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease-out);
}
.bp-card:hover .bp-card-img { transform: scale(1.05); }

.bp-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* Content column */
.bp-card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}

.bp-card-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.bp-card-date,
.bp-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
}
.bp-card-date i,
.bp-card-read i { font-size: 11px; color: var(--saffron); }

.bp-card-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
}
.bp-card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color .3s ease;
}
.bp-card-title a:hover { color: var(--saffron); }

.bp-card-excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  margin: 0 0 20px;
  flex: 1;
  /* 2-line clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(157,79,39,.1);
}

.bp-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron);
  text-decoration: none;
  transition: gap .3s ease, color .3s ease;
}
.bp-read-more:hover { gap: 11px; color: var(--brown); }
.bp-read-more .fa-arrow-right { font-size: 11px; transition: transform .3s ease; }
.bp-read-more:hover .fa-arrow-right { transform: translateX(3px); }

.bp-author {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-light);
  font-weight: 500;
}

.bp-author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown) 0%, var(--saffron) 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* ── 4. PAGINATION ──────────────────────────────────────────── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.bp-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid rgba(157,79,39,.2);
  background: var(--white);
  color: var(--text-mid);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .25s ease;
}
.bp-page-btn:hover {
  background: rgba(232,114,12,.08);
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-2px);
}
.bp-page-btn.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  font-weight: 700;
}
.bp-page-prev,
.bp-page-next { font-size: 12px; }
.bp-page-ellipsis {
  color: var(--text-light);
  font-size: 14px;
  padding: 0 4px;
  user-select: none;
}


/* ── 5. SIDEBAR ─────────────────────────────────────────────── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Widget shell */
.sidebar-widget {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 14px rgba(44,26,14,.07);
}

/* Widget title */
.sidebar-widget-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 22px;
}
.sw-title-line {
  display: block;
  width: 4px;
  height: 18px;
  background: linear-gradient(to bottom, var(--saffron), var(--gold));
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Search ── */
.sidebar-search { padding: 18px; }

.sidebar-search-form {
  display: flex;
  border: 1.5px solid rgba(157,79,39,.22);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.sidebar-search-form:focus-within {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,114,12,.12);
}

.sidebar-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: var(--text-dark);
}
.sidebar-search-input::placeholder { color: var(--text-light); }

.sidebar-search-btn {
  width: 46px;
  flex-shrink: 0;
  border: none;
  background: var(--saffron);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-search-btn:hover { background: var(--brown); }

/* ── Categories ── */
.sidebar-cats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .25s ease;
}
.sidebar-cat-link:hover { background: rgba(232,114,12,.06); }

.sidebar-cat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sidebar-cat-label {
  flex: 1;
  font-size: 13.5px;
  color: var(--text-mid);
  font-weight: 500;
  transition: color .25s ease;
}
.sidebar-cat-link:hover .sidebar-cat-label { color: var(--saffron); }

.sidebar-cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: rgba(157,79,39,.1);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 600;
  transition: background .25s ease, color .25s ease;
}
.sidebar-cat-link:hover .sidebar-cat-count {
  background: var(--saffron);
  color: #fff;
}

/* ── Recent Posts ── */
.sidebar-recent {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-recent-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sidebar-recent-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease-out);
}
.sidebar-recent-item:hover .sidebar-recent-thumb img { transform: scale(1.08); }

.sidebar-recent-info {
  flex: 1;
  min-width: 0;
}

.sidebar-recent-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.45;
  margin-bottom: 6px;
  /* 2-line clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .3s ease;
}
.sidebar-recent-title:hover { color: var(--saffron); }

.sidebar-recent-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-light);
}
.sidebar-recent-date i { font-size: 10px; color: var(--saffron); }

/* ── Newsletter ── */
.sidebar-newsletter {
  background: linear-gradient(135deg, #7A3B1E 0%, #C8560A 60%, #D4A020 100%);
  color: #fff;
  text-align: center;
  padding: 32px 24px;
}

.sidebar-nl-icon {
  font-size: 32px;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}

.sidebar-nl-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.sidebar-nl-desc {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin: 0 0 20px;
}

.sidebar-nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-nl-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 7px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: border-color .3s ease, background .3s ease;
  box-sizing: border-box;
}
.sidebar-nl-input::placeholder { color: rgba(255,255,255,.5); }
.sidebar-nl-input:focus {
  border-color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.2);
}

.sidebar-nl-btn {
  width: 100%;
  padding: 11px 20px;
  background: var(--white);
  color: var(--saffron);
  border: none;
  border-radius: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .3s ease, transform .3s var(--ease-out), box-shadow .3s ease;
}
.sidebar-nl-btn:hover {
  background: #fdf0e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}

.sidebar-nl-privacy {
  margin: 12px 0 0;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.sidebar-nl-privacy i { font-size: 10px; }


/* ── RESPONSIVE: BLOG PAGE ──────────────────────────────────── */
@media (max-width: 1080px) {
  .blog-page-grid { grid-template-columns: 1fr 300px; gap: 28px; }
  .bp-card-body { padding: 22px 20px 18px; }
}

@media (max-width: 860px) {
  /* Stack main + sidebar vertically */
  .blog-page-grid { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  /* Stack post card image on top of content */
  .bp-card {
    grid-template-columns: 1fr;
  }
  .bp-card-img-link { min-height: 200px; height: 200px; }
  .bp-card-body { padding: 18px 18px 16px; }
  .bp-card-excerpt { -webkit-line-clamp: 3; }

  /* Single-column sidebar on mobile */
  .blog-sidebar { grid-template-columns: 1fr; }

  .blog-page-wrap { padding: 40px 0 56px; }
  .blog-page-banner { min-height: 260px; padding: 90px 0 44px; }
  .blog-page-banner-deco { width: 260px; right: -50px; top: -40px; }
}


/* ============================================================
   17. ACCESSIBILITY — Skip-to-content · Focus-visible
============================================================ */

/* Skip-to-content link (visible only on keyboard focus) */
.skip-to-content {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100000;
  padding: 12px 28px;
  background: var(--brown-dark);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top .25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(44,26,14,.25);
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
}

/* Global :focus-visible ring (keyboard-only, no mouse ring) */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Exceptions for elements that have their own focus style */
.nav-link:focus-visible,
.gallery-tab:focus-visible,
.gallery-item:focus-visible {
  outline-offset: 4px;
}


/* ============================================================
   18. PRELOADER — Om symbol + spinning rings
============================================================ */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7A3B1E; /* hard-coded fallback — no var() dependency */
  /* CSS-only safety net: auto-hide after 3 s if JS never fires */
  animation: preloader-css-hide 0.6s ease 3s forwards;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes preloader-css-hide {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.preloader-inner {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spinning rings */
.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid transparent;
  border-top-color: var(--saffron);
  border-right-color: rgba(232,114,12,.3);
  animation: preloader-spin 1s linear infinite;
}
.preloader-ring--2 {
  inset: 12px;
  border-top-color: var(--gold);
  border-right-color: rgba(212,175,55,.3);
  animation-duration: 1.5s;
  animation-direction: reverse;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

/* Om symbol */
.preloader-om {
  font-size: 38px;
  line-height: 1;
  color: var(--saffron-lt);
  font-family: serif;
  animation: preloader-pulse 1.8s ease-in-out infinite;
  user-select: none;
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: .65; transform: scale(.88); }
}


/* ============================================================
   19. BACK-TO-TOP BUTTON
============================================================ */

#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--saffron);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(232,114,12,.40);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease, background .25s ease, box-shadow .25s ease;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--brown-dark);
  box-shadow: 0 6px 22px rgba(44,26,14,.30);
}
#back-to-top:active { transform: scale(.93); }

/* Push button up when cookie banner is visible */
body.cookie-visible #back-to-top {
  bottom: 110px;
  transition: bottom .35s ease, opacity .35s ease, visibility .35s ease, transform .35s ease;
}

@media (max-width: 600px) {
  #back-to-top { bottom: 20px; right: 16px; width: 42px; height: 42px; font-size: 14px; }
}


/* ============================================================
   20. COOKIE CONSENT BANNER
============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  background: #7A3B1E; /* hard-coded fallback */
  background: var(--brown-dark);
  color: rgba(255,255,255,.88);
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(44,26,14,.22);
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
  /* DO NOT add display:flex here — it would override [hidden] attribute */
}
/* [hidden] = display:none from the browser; must override only when NOT hidden */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner:not([hidden]) { display: flex; }
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 22px;
  color: var(--saffron-lt);
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  font-size: 13.5px;
  line-height: 1.55;
  min-width: 200px;
  margin: 0;
}
.cookie-text a {
  color: var(--saffron-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-text a:hover { color: var(--gold); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
}
.cookie-btn--accept:hover {
  background: var(--saffron-lt);
  border-color: var(--saffron-lt);
}
.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.25);
}
.cookie-btn--decline:hover {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner-inner { gap: 12px; }
  .cookie-text { font-size: 12.5px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}


/* ============================================================
   21. BLOG POST DETAIL PAGE  (blog-post.php)
============================================================ */

/* ── Banner ───────────────────────────────────────────────── */
.post-banner {
  position: relative;
  background: linear-gradient(135deg, #2C0E00 0%, #6A2A08 45%, #1A0800 100%);
  min-height: 340px;
  padding: calc(var(--nav-height) + var(--top-height) + 48px) 0 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.post-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 20% 50%, rgba(232,114,12,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(212,175,55,.10) 0%, transparent 65%);
  pointer-events: none;
}

.post-banner-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: .07;
  pointer-events: none;
}

.post-banner-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.post-banner-cat {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.post-banner-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.28;
  margin: 0 0 18px;
}

.post-banner-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 6px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.post-banner-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-banner-meta-item i {
  color: var(--saffron-lt);
  font-size: 12px;
}

.post-banner-meta-sep {
  color: rgba(255,255,255,.3);
  font-size: 16px;
  line-height: 1;
}

.post-banner-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
}

.post-banner-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .25s ease;
}
.post-banner-breadcrumb a:hover { color: var(--saffron-lt); }

.post-bc-sep {
  color: rgba(255,255,255,.25);
  font-size: 10px;
}

.post-banner-breadcrumb [aria-current="page"] {
  color: rgba(255,255,255,.75);
  font-weight: 600;
}


/* ── Layout ───────────────────────────────────────────────── */
.post-page-wrap {
  background: var(--off-white);
  padding: 52px 0 72px;
}

.post-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: start;
}


/* ── Featured Image ───────────────────────────────────────── */
.post-featured-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 36px;
  aspect-ratio: 16/9;
  background: var(--brown-dark);
  box-shadow: 0 4px 28px rgba(44,26,14,.18);
}

.post-featured-img-placeholder {
  position: absolute;
  inset: 0;
}

.post-featured-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.post-featured-img-wrap:hover .post-featured-img {
  transform: scale(1.03);
}

.post-img-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
}


/* ── Article Body ─────────────────────────────────────────── */
.post-main {
  background: #fff;
  border-radius: 14px;
  padding: 36px 40px 40px;
  box-shadow: 0 2px 18px rgba(44,26,14,.07);
}

.post-excerpt-lead {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-mid);
  border-left: 4px solid var(--saffron);
  padding: 14px 20px;
  background: rgba(232,114,12,.05);
  border-radius: 0 8px 8px 0;
  margin: 0 0 28px;
}

/* Rich HTML content typography (when admin writes full posts) */
.post-body {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--text-dark);
}

.post-body h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212,175,55,.3);
}

.post-body h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--brown-dark);
  margin: 28px 0 12px;
}

.post-body p { margin: 0 0 18px; }

.post-body ul,
.post-body ol {
  margin: 0 0 20px 1.4rem;
  padding: 0;
}
.post-body li { margin-bottom: 8px; }

.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 22px;
  margin: 24px 0;
  background: rgba(212,175,55,.06);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 15.5px;
}

.post-body strong { color: var(--brown-dark); font-weight: 700; }
.post-body em     { color: var(--text-mid); }

.post-body a {
  color: var(--saffron);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-body a:hover { color: var(--brown); }

.post-body img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(44,26,14,.12);
}

/* "Full article coming soon" placeholder */
.post-coming-soon {
  text-align: center;
  padding: 48px 32px;
  background: rgba(232,114,12,.04);
  border: 1.5px dashed rgba(232,114,12,.25);
  border-radius: 12px;
  margin: 24px 0 8px;
}
.post-cs-icon {
  font-size: 36px;
  color: var(--saffron);
  margin-bottom: 14px;
  opacity: .7;
}
.post-cs-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.post-cs-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto;
}


/* ── Tags ─────────────────────────────────────────────────── */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 20px 0 0;
  margin-top: 28px;
  border-top: 1px solid rgba(157,79,39,.12);
}

.post-tags-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(157,79,39,.08);
  color: var(--brown);
  border: 1px solid rgba(157,79,39,.18);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}
.post-tag:hover {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
}


/* ── Share ────────────────────────────────────────────────── */
.post-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 32px;
}

.post-share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.post-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, opacity .25s ease;
}
.post-share-btn:hover { transform: translateY(-3px); opacity: .9; }

.post-share-wa   { background: #25D366; }
.post-share-fb   { background: #1877F2; }
.post-share-tw   { background: #000; }
.post-share-copy { background: var(--brown-dark); }


/* ── Author Bio ───────────────────────────────────────────── */
.post-author-box {
  display: flex;
  gap: 22px;
  background: linear-gradient(135deg, rgba(122,59,30,.05) 0%, rgba(232,114,12,.06) 100%);
  border: 1px solid rgba(157,79,39,.14);
  border-radius: 14px;
  padding: 26px 28px;
  margin: 32px 0 28px;
  align-items: flex-start;
}

.post-author-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--saffron) 100%);
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.post-author-initials {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}
.post-author-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.post-author-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 3px;
}
.post-author-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.post-author-bio {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0 0 12px;
}
.post-author-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron);
  text-decoration: none;
  transition: gap .25s ease;
}
.post-author-cta:hover { gap: 10px; }


/* ── Back link ────────────────────────────────────────────── */
.post-back-row { margin-top: 4px; }

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .25s ease, gap .25s ease;
}
.post-back-link:hover {
  color: var(--saffron);
  gap: 12px;
}


/* ── Related Posts section ─────────────────────────────────── */
.post-related {
  background: var(--off-white);
  padding: 56px 0 68px;
  border-top: 1px solid rgba(157,79,39,.12);
}

.post-related-header {
  text-align: center;
  margin-bottom: 36px;
}

.post-related-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.post-rel-line {
  display: block;
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.post-rel-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.post-rel-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--saffron);
}

.post-related-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.post-related-accent { color: var(--saffron); }

.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1080px) {
  .post-page-grid { grid-template-columns: 1fr 300px; gap: 32px; }
}

@media (max-width: 860px) {
  .post-page-grid { grid-template-columns: 1fr; }
  .blog-sidebar   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .post-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .post-main { padding: 24px 20px 28px; }
  .post-author-box { flex-direction: column; align-items: center; text-align: center; }
  .post-author-cta { justify-content: center; }
  .post-banner { min-height: 280px; padding-bottom: 40px; }
  .post-banner-meta-sep { display: none; }
  .post-banner-meta { gap: 8px 14px; }
}

@media (max-width: 560px) {
  .blog-sidebar { grid-template-columns: 1fr; }
  .post-related-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   22. SERVICE DETAIL PAGE  (service-detail.php)
============================================================ */

/* ── Banner ───────────────────────────────────────────────── */
.svc-detail-banner {
  position: relative;
  background: linear-gradient(135deg, #2C0E00 0%, #6A2A08 45%, #1A0800 100%);
  min-height: 320px;
  padding: calc(var(--nav-height) + var(--top-height) + 44px) 0 52px;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
}

.svc-detail-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(232,114,12,.15) 0%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 80% 20%, rgba(212,175,55,.10) 0%, transparent 65%);
  pointer-events: none;
}

/* reuses .svc-banner-mandala from services.php (position: absolute, right side) */

.svc-detail-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.svc-detail-banner-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--saffron-lt);
  margin-bottom: 6px;
  backdrop-filter: blur(4px);
}

.svc-detail-banner-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  max-width: 720px;
}

.svc-detail-banner-sub {
  font-size: 15px;
  color: rgba(255,255,255,.68);
  max-width: 560px;
  line-height: 1.6;
  margin: 4px 0 8px;
}


/* ── Content wrapper ──────────────────────────────────────── */
.svc-detail-wrap {
  background: var(--off-white);
}

/* The .svc-row inside gets a white background for separation */
.svc-detail-wrap .svc-row {
  background: #fff;
  border-bottom: 1px solid rgba(157,79,39,.08);
}

/* Slightly larger desc text on detail page */
.svc-detail-wrap .svc-row-desc {
  font-size: 15.5px;
  line-height: 1.78;
}


/* ── Back link ────────────────────────────────────────────── */
.svc-detail-back {
  margin-top: 20px;
}

.svc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  transition: color .25s ease, gap .25s ease;
}
.svc-back-link:hover {
  color: var(--saffron);
  gap: 12px;
}


/* ── Other Services section ───────────────────────────────── */
.svc-detail-others {
  background: var(--off-white);
  padding: 60px 0 72px;
  border-top: 1px solid rgba(157,79,39,.1);
}

.svc-detail-others-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Limit the "other services" grid to 3 columns max */
.svc-detail-others-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

.svc-detail-others-cta {
  text-align: center;
  margin-top: 36px;
}


/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .svc-detail-others-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
  .svc-detail-banner { min-height: 260px; }
  .svc-detail-banner-icon { width: 56px; height: 56px; font-size: 22px; }
  .svc-detail-others-grid { grid-template-columns: 1fr !important; }
}


/* ============================================================
   Section 23 · Error Pages (404, 403)
   500.php uses self-contained inline styles (safe fallback)
============================================================ */

/* ── Shared banner ───────────────────────────────────────── */
.error-page-banner {
  position: relative;
  background: linear-gradient(135deg, var(--brown-dark, #2d0f00) 0%, #6b2d00 50%, var(--brown-dark, #2d0f00) 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 1.5rem 60px;
}

.error-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.error-mandala {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: .08;
  pointer-events: none;
}

.error-page-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.error-code {
  font-family: 'Cinzel', serif;
  font-size: clamp(4.5rem, 16vw, 8rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--saffron, #E8720C), var(--gold, #D4AF37));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-title {
  font-family: 'Cinzel', serif;
  color: #fff;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 600;
  margin: 0;
}

.error-subtitle {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.75;
  max-width: 500px;
  margin: 0;
}

/* ── Body section ────────────────────────────────────────── */
.error-page-body {
  background: var(--bg-light, #fdf6ee);
  padding: 4rem 1.5rem 5rem;
}

.error-page-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* Icon ring */
.error-icon-wrap { margin-bottom: 1.75rem; }

.error-icon-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff5eb, #ffe8ce);
  border: 2px solid rgba(232,114,12,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--saffron, #E8720C);
  box-shadow: 0 8px 24px rgba(232,114,12,.15);
}

.error-icon-ring--orange {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: var(--brown, #9D4F27);
  border-color: rgba(157,79,39,.2);
}

.error-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  color: var(--text-dark, #2d1a0e);
  margin-bottom: .75rem;
}

.error-desc {
  color: var(--text-mid, #6b4c2e);
  font-size: 15px;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* Quick-link cards */
.error-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-bottom: 2.5rem;
}

.error-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.1rem .75rem;
  background: #fff;
  border: 1px solid rgba(232,114,12,.15);
  border-radius: 10px;
  color: var(--text-dark, #2d1a0e);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.error-link-card i {
  font-size: 1.3rem;
  color: var(--saffron, #E8720C);
}

.error-link-card:hover {
  background: #fff8f2;
  border-color: var(--saffron, #E8720C);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232,114,12,.12);
  text-decoration: none;
  color: var(--saffron, #E8720C);
}

/* CTA buttons */
.error-cta {
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-error-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.8rem;
  background: var(--saffron, #E8720C);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-error-primary:hover {
  background: #d06008;
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.btn-error-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.8rem;
  background: transparent;
  color: var(--brown, #9D4F27);
  border: 1.5px solid rgba(157,79,39,.3);
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
}

.btn-error-ghost:hover {
  background: #fff8f2;
  border-color: var(--brown, #9D4F27);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--brown, #9D4F27);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 580px) {
  .error-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 360px) {
  .error-links { grid-template-columns: 1fr 1fr; }
  .error-link-card { padding: .85rem .5rem; }
}


/* ============================================================
   OUR INSPIRATION PAGE  (inspiration.php)
============================================================ */

/* ── 1. Banner ─────────────────────────────────────────────── */
.insp-banner {
  position: relative;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #4A2210 55%, var(--brown) 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.insp-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(232,114,12,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 0%   0%,   rgba(212,175,55,.07) 0%, transparent 60%);
  pointer-events: none;
}
.insp-banner-mandala {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  opacity: .07;
  pointer-events: none;
}
.insp-banner-content {
  position: relative;
  z-index: 1;
}
.insp-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--saffron-lt);
  background: rgba(232,114,12,.12);
  border: 1px solid rgba(232,114,12,.25);
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.insp-banner-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 14px;
}
.insp-banner-accent {
  color: var(--saffron-lt);
  display: block;
}
.insp-banner-sub {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  letter-spacing: .5px;
  margin-bottom: 24px;
}
.insp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.insp-breadcrumb a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .25s ease;
}
.insp-breadcrumb a:hover { color: var(--saffron-lt); }
.insp-breadcrumb i { font-size: 10px; }


/* ── 2. Introduction ───────────────────────────────────────── */
.insp-intro {
  background: var(--off-white);
  padding: 60px 0;
  border-bottom: 1px solid rgba(157,79,39,.1);
}
.insp-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.insp-intro-ornament {
  font-size: 52px;
  line-height: 1;
  color: var(--saffron);
  opacity: .18;
  font-family: serif;
  margin-bottom: 18px;
  display: block;
}
.insp-intro-text {
  font-size: clamp(15.5px, 1.5vw, 18px);
  line-height: 1.85;
  color: var(--text-mid);
}
.insp-intro-text strong { color: var(--brown-dark); }
.insp-intro-text em { color: var(--saffron); font-style: normal; font-weight: 600; }


/* ── 3. Portrait + Bio ─────────────────────────────────────── */
.insp-bio {
  background: #fff;
  padding: 80px 0 90px;
}
.insp-bio-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .insp-bio-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Portrait */
.insp-portrait-col { position: relative; }
.insp-portrait-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 340px;
}
@media (max-width: 900px) {
  .insp-portrait-wrap { max-width: 300px; margin: 0 auto; display: block; }
}
.insp-portrait-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,.25);
  pointer-events: none;
}
.insp-portrait-ring {
  inset: -18px;
  border-color: rgba(212,175,55,.2);
}
.insp-portrait-ring--2 {
  inset: -36px;
  border-color: rgba(212,175,55,.10);
}
.insp-portrait-fig {
  position: relative;
  margin: 0;
}
.insp-portrait-img {
  width: 100%;
  border-radius: 4px 4px 0 0;
  border: 4px solid #fff;
  box-shadow: 0 12px 48px rgba(44,26,14,.18), 0 2px 8px rgba(44,26,14,.1);
  display: block;
  object-fit: cover;
  object-position: top center;
  max-height: 480px;
}
.insp-portrait-caption {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: rgba(255,255,255,.85);
  font-size: 13px;
  line-height: 1.6;
  padding: 14px 18px;
  border-radius: 0 0 4px 4px;
  text-align: center;
}
.insp-portrait-caption i { color: var(--saffron-lt); margin-right: 6px; }
.insp-portrait-caption small { font-size: 11.5px; color: rgba(255,255,255,.6); display: block; }
.insp-caption-credit {
  margin-top: 6px;
  font-size: 10.5px !important;
  color: rgba(255,255,255,.42) !important;
}
.insp-caption-credit a {
  color: rgba(255,255,255,.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.insp-caption-credit a:hover { color: var(--saffron-lt); }

/* Bio text col */
.insp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.insp-label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}
.insp-label-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
}
.insp-bio-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 28px;
}
.insp-accent { color: var(--saffron); }
.insp-bio-body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.insp-bio-body p:last-child { margin-bottom: 0; }
.insp-bio-body strong { color: var(--brown-dark); font-weight: 600; }

/* data-animate states */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}


/* ── 4. Pillars ────────────────────────────────────────────── */
.insp-pillars {
  background: var(--off-white);
  padding: 80px 0 90px;
}
.insp-section-header {
  text-align: center;
  margin-bottom: 52px;
}
.insp-section-header .insp-section-label {
  justify-content: center;
  margin-bottom: 14px;
}
.insp-sec-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.22;
  margin: 0;
}
.insp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .insp-pillars-grid { grid-template-columns: 1fr; gap: 20px; max-width: 540px; margin: 0 auto; }
}
.insp-pillar-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px 32px;
  border: 1px solid rgba(157,79,39,.1);
  box-shadow: 0 4px 20px rgba(44,26,14,.06);
  text-align: center;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.insp-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(44,26,14,.12);
}
.insp-pillar-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--brown));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(232,114,12,.28);
}
.insp-pillar-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.insp-pillar-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0;
}
.insp-pillar-desc strong { color: var(--brown-dark); font-weight: 600; }


/* ── 5. Timeline ───────────────────────────────────────────── */
.insp-timeline {
  background: #fff;
  padding: 80px 0 90px;
  border-top: 1px solid rgba(157,79,39,.08);
}
.insp-tl-list {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}
/* Vertical line */
.insp-tl-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--saffron) 0%, rgba(157,79,39,.15) 100%);
  border-radius: 2px;
}
.insp-tl-item {
  display: flex;
  gap: 28px;
  margin-bottom: 44px;
  position: relative;
}
.insp-tl-item:last-child { margin-bottom: 0; }
.insp-tl-marker {
  flex-shrink: 0;
  width: 58px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.insp-tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--saffron);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(232,114,12,.25), 0 2px 8px rgba(232,114,12,.2);
  display: block;
  flex-shrink: 0;
}
.insp-tl-marker--last .insp-tl-dot {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.25), 0 2px 8px rgba(212,175,55,.2);
}
.insp-tl-content { padding-top: 0; }
.insp-tl-year {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 6px;
}
.insp-tl-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.insp-tl-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0;
}
.insp-tl-desc strong { color: var(--brown-dark); font-weight: 600; }
.insp-tl-desc em { font-style: italic; }
@media (max-width: 600px) {
  .insp-tl-list::before { left: 20px; }
  .insp-tl-marker { width: 44px; }
  .insp-tl-item { gap: 16px; }
}


/* ── 6. Tribute quote ──────────────────────────────────────── */
.insp-tribute {
  position: relative;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #3A1A0A 60%, var(--brown) 100%);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.insp-tribute-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(232,114,12,.12) 0%, transparent 70%);
  pointer-events: none;
}
.insp-tribute-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.insp-tribute-icon {
  font-size: 48px;
  color: rgba(232,114,12,.35);
  margin-bottom: 20px;
}
.insp-tribute-quote {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
  margin-bottom: 20px;
  border: none;
  padding: 0;
  font-style: italic;
}
.insp-tribute-attr {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  letter-spacing: .5px;
  margin: 0;
}


/* ── 7. Sources ────────────────────────────────────────────── */
.insp-sources {
  background: var(--off-white);
  padding: 72px 0 80px;
}
.insp-sources-list {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.insp-source-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(157,79,39,.1);
  border-radius: 10px;
  padding: 20px 24px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.insp-source-item:hover {
  border-color: rgba(232,114,12,.3);
  box-shadow: 0 4px 16px rgba(232,114,12,.08);
}
.insp-source-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,114,12,.12), rgba(157,79,39,.08));
  border: 1px solid rgba(232,114,12,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--saffron);
}
.insp-source-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 5px;
}
.insp-source-link {
  font-size: 14.5px;
  color: var(--brown-dark);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .25s ease, gap .25s ease;
  line-height: 1.4;
}
.insp-source-link:hover { color: var(--saffron); gap: 10px; }
.insp-source-link i { font-size: 11px; flex-shrink: 0; }
