/*
Theme Name: MDSA Theme
Theme URI: http://localhost:8888/mdsa
Author: MDSA
Author URI: http://localhost:8888/mdsa
Description: Custom theme for Manav Dharam Society of Australia
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: mdsa-theme
*/

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --saffron: #e07b1a;
  --saffron-light: #f5a623;
  --gold: #c8960c;
  --gold-light: #f0c040;
  --deep-blue: #1a1a3e;
  --deep-blue-light: #2d2d5e;
  --cream: #fdf8f0;
  --cream-dark: #f5ede0;
  --white: #ffffff;
  --text-dark: #222222;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e8d9c0;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--saffron); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--deep-blue);
}

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

/* ===========================
   GOOGLE FONTS IMPORT
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ===========================
   SKIP LINK
   =========================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--saffron);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ===========================
   HEADER & NAVIGATION
   =========================== */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Scrolled state — applied via JS */
#masthead.scrolled {
  background: rgba(18, 18, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

/* Thin gold top accent line */
#masthead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
  opacity: 0;
  transition: opacity 0.4s;
}
#masthead.scrolled::before { opacity: 1; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 24px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}
.logo-link:hover .site-logo { transform: scale(1.06) rotate(-2deg); }
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.site-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.site-tagline {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav */
#site-navigation { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 9px 13px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current-page-ancestor > a::after { transform: scaleX(1); }

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-page-ancestor > a { color: var(--gold-light); }

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(18,18,46,0.97);
  border: 1px solid rgba(240,192,64,0.15);
  border-top: 2px solid var(--saffron);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 230px;
  padding: 10px 0 10px;
  padding-top: 14px; /* covers the gap so mouse doesn't escape */
  margin-top: -2px;  /* overlap parent slightly */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  /* delay only on hide so it doesn't vanish instantly */
  transition-delay: 0s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 100;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition-delay: 0s;
}

/* Short delay before hiding — gives mouse time to reach the dropdown */
.nav-menu li:not(:hover) > .sub-menu {
  transition-delay: 0.18s;
}

.nav-menu .sub-menu li a {
  display: block;
  padding: 9px 20px 9px 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), padding var(--transition);
  border-left: 2px solid transparent;
}
.nav-menu .sub-menu li a:hover {
  background: rgba(224,123,26,0.1);
  color: var(--gold-light);
  padding-left: 26px;
  border-left-color: var(--saffron);
}

/* Dropdown caret */
.nav-menu > li:has(.sub-menu) > a > span.caret {
  display: inline-block;
  margin-left: 5px;
  font-size: 0.55rem;
  opacity: 0.5;
  vertical-align: middle;
  transition: transform 0.2s;
}
.nav-menu > li:hover > a > span.caret { transform: rotate(180deg); opacity: 1; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(255,255,255,0.12); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===========================
   PAGE HERO BANNER
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-light) 100%);
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.page-hero h1 {
  color: var(--gold-light);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
}
.page-hero .breadcrumb {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }

/* ===========================
   HOMEPAGE HERO
   =========================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Banner image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pink-goat-468608.hostingersite.com/wp-content/uploads/2026/05/banner_1-1.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}
.hero-section.loaded .hero-bg { transform: scale(1); }

/* Layered overlays — strong dark on left for readability, lighter on right to show the image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(8,6,24,0.92) 0%,
      rgba(8,6,24,0.82) 50%,
      rgba(8,6,24,0.45) 72%,
      rgba(8,6,24,0.15) 100%
    ),
    linear-gradient(to top,
      rgba(8,6,24,0.7) 0%,
      transparent 40%
    );
}

/* Decorative OM watermark — sits behind the text, right side */
.hero-section::before {
  content: 'ॐ';
  position: absolute;
  right: 3%;
  bottom: 10%;
  font-size: 28vw;
  color: rgba(240,192,64,0.04);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* Gold bar at very bottom */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--saffron) 20%,
    var(--gold-light) 50%,
    var(--saffron) 80%,
    transparent 100%
  );
  z-index: 4;
}

/* Main content area — vertically centered */
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 48px 60px;
  align-self: stretch;
}

.hero-content { max-width: 780px; }

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  opacity: 0.85;
}
.hero-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}

/* Title */
.hero-title {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title .t-small {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}
.hero-title .t-main {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-title .t-sub {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* Divider */
.hero-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  margin: 20px 0 22px;
  border-radius: 2px;
}

/* Questions */
.hero-questions {
  list-style: none;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-questions li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.5;
}
.hero-questions li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--saffron-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTAs */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}


/* ── Mobile hero ─────────────────────────────── */
@media (max-width: 768px) {

  .hero-section {
    min-height: 100svh;
  }

  /* Reposition image to show the face on mobile */
  .hero-bg {
    background-position: 72% center;
  }

  /* Stronger uniform overlay on mobile — text spans full width */
  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(8,6,24,0.55) 0%,
        rgba(8,6,24,0.70) 40%,
        rgba(8,6,24,0.88) 70%,
        rgba(8,6,24,0.96) 100%
      );
  }

  /* Hide OM watermark on mobile — clutters small screen */
  .hero-section::before { display: none; }

  /* Center content, reduce padding */
  .hero-inner {
    padding: calc(var(--nav-height) + 32px) 24px 48px;
    justify-content: flex-end;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  /* Eyebrow — shorten lines, keep centered */
  .hero-eyebrow {
    justify-content: center;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    margin-bottom: 14px;
  }
  .hero-eyebrow-line { width: 20px; }

  /* Title sizing */
  .hero-title { margin-bottom: 16px; }
  .hero-title .t-small {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }
  .hero-title .t-main {
    font-size: clamp(2.8rem, 13vw, 3.8rem);
    line-height: 0.95;
  }
  .hero-title .t-sub {
    font-size: 1rem;
    margin-top: 8px;
  }

  /* Shorter divider, centered */
  .hero-divider {
    margin: 16px auto 16px;
    width: 44px;
  }

  /* Questions — left-align text, smaller font */
  .hero-questions {
    margin-bottom: 28px;
    gap: 10px;
    display: inline-flex;
    flex-direction: column;
    text-align: left;
  }
  .hero-questions li {
    font-size: 0.9rem;
    gap: 8px;
  }

  /* CTA buttons — stack on very small, side-by-side on normal mobile */
  .hero-cta {
    justify-content: center;
    gap: 12px;
  }
  .hero-cta .btn {
    padding: 12px 24px;
    font-size: 0.82rem;
  }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(224,123,26,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,26,0.5);
  color: var(--white);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-sm { padding: 9px 20px; font-size: 0.78rem; }

/* ===========================
   SECTION HEADINGS
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--saffron);
  opacity: 0.5;
}
.section-label::before { right: 100%; margin-right: -16px; }
.section-label::after { left: 100%; margin-left: -16px; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--deep-blue);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  margin: 20px auto 0;
  border-radius: 3px;
}

/* ===========================
   ABOUT / WHO WE ARE SECTION
   =========================== */
.about-section {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--deep-blue);
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-visual {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: 'ॐ';
  position: absolute;
  font-size: 200px;
  color: rgba(255,255,255,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  line-height: 1;
  font-family: serif;
}
.about-visual blockquote {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
}
.about-visual cite {
  display: block;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ===========================
   GURU SECTION
   =========================== */
.guru-section {
  background: var(--deep-blue);
  position: relative;
  overflow: hidden;
}
.guru-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(224,123,26,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.guru-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Card */
.guru-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
}
.guru-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45);
  border-color: rgba(240,192,64,0.25);
}

/* Image */
.guru-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  flex-shrink: 0;
}
.guru-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(20%) brightness(0.88);
}
.guru-card:hover .guru-card-img-wrap img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.95);
}

/* Gradient overlay on image bottom */
.guru-card-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(8,6,28,0.95) 0%, rgba(8,6,28,0.4) 60%, transparent 100%);
  pointer-events: none;
}

/* Text body */
.guru-card-body {
  padding: 18px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(15,12,40,1) 0%, rgba(20,16,50,1) 100%);
}
.guru-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1.2;
}
.guru-card-divider {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin-bottom: 12px;
}
.guru-card-quote {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .guru-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .guru-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .guru-card-name { font-size: 0.88rem; }
  .guru-card-quote { font-size: 0.75rem; }
}

/* ===========================
   SATPAL MAHARAJ SECTION
   =========================== */
.satpal-section {
  background: var(--cream-dark);
}
.satpal-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}
.satpal-card {
  background: var(--deep-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.satpal-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.satpal-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.satpal-card:hover .satpal-card-photo img {
  transform: scale(1.04);
}
.satpal-card-body {
  padding: 32px;
  text-align: center;
}
.satpal-card-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.satpal-card-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.satpal-text h2 {
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 16px;
}
.satpal-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

/* ===========================
   QUOTE BANNER
   =========================== */
.quote-banner {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '"';
  position: absolute;
  font-size: 300px;
  color: rgba(255,255,255,0.06);
  top: -60px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}
.quote-banner blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--white);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.quote-banner cite {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===========================
   MANAV DHARAM INFO SECTION
   =========================== */
.dharma-section {
  background: var(--cream);
}
.dharma-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.dharma-text h2 { font-size: 2rem; margin-bottom: 16px; }
.dharma-text p { color: var(--text-mid); margin-bottom: 14px; }

/* ===========================
   RECENT POSTS SLIDER
   =========================== */
.posts-section { background: var(--cream-dark); }

/* Header row: title left, arrows right */
.posts-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}
.posts-slider-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--deep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.slider-btn:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(224,123,26,0.35);
}
.slider-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Slider viewport */
.posts-slider-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.posts-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide = 50% of the container minus half the gap */
.post-slide {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.post-slide:hover { box-shadow: var(--shadow-lg); }

/* Thumbnail */
.post-slide-thumb {
  position: relative;
  aspect-ratio: 16/8;
  overflow: hidden;
  background: var(--deep-blue);
}
.post-slide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.post-slide:hover .post-slide-thumb img { transform: scale(1.04); }
.post-slide-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,28,0.55) 0%, transparent 50%);
  pointer-events: none;
}
.post-slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-light) 100%);
}
.post-slide-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Body */
.post-slide-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-slide-date {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.post-slide-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--deep-blue);
  line-height: 1.3;
  margin-bottom: 12px;
}
.post-slide-title a { color: inherit; }
.post-slide-title a:hover { color: var(--saffron); }
.post-slide-excerpt {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.post-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.post-slide-link:hover { gap: 10px; color: var(--gold); }

/* Dots */
.posts-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.posts-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.posts-slider-dots .dot.active {
  background: var(--saffron);
  width: 24px;
  border-radius: 4px;
}

/* Mobile: single post per view */
@media (max-width: 640px) {
  .post-slide { flex: 0 0 100%; }
  .posts-section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Keep old .read-more for single/archive pages */
.read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--saffron);
  letter-spacing: 0.05em;
}
.read-more:hover { color: var(--gold); }

/* ===========================
   VIDEO GALLERY
   =========================== */
.videos-section {
  background: var(--deep-blue);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.video-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224,123,26,0.3);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity var(--transition); }
.video-card:hover .video-thumb img { opacity: 0.9; }
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 52px;
  height: 52px;
  background: rgba(224,123,26,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.video-play-btn::after {
  content: '';
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent white;
  margin-left: 3px;
}
.video-card:hover .video-play-btn {
  transform: translate(-50%,-50%) scale(1.1);
  background: var(--saffron);
}
.video-card-body { padding: 16px; }
.video-card-title {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ===========================
   CONTACT PAGE
   =========================== */

/* Hero */
.contact-hero {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-light) 100%);
  padding: calc(var(--nav-height) + 56px) 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(224,123,26,0.08), transparent 65%);
}
.contact-hero-inner { position: relative; z-index: 1; }
.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
  margin-bottom: 16px;
}
.contact-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.contact-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto;
}

/* Page layout */
.contact-page-section { padding: 72px 0 80px; background: var(--cream); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.contact-form-card-header {
  background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue-light));
  padding: 28px 36px;
}
.contact-form-card-header h2 {
  color: var(--gold-light);
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.contact-form-card-header p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

/* CF7 form styling */
.contact-form-card .wpcf7 { padding: 32px 36px; }
.contact-form-card .wpcf7 p { margin-bottom: 18px; }
.contact-form-card .wpcf7 label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form-card .wpcf7 input[type="text"],
.contact-form-card .wpcf7 input[type="email"],
.contact-form-card .wpcf7 input[type="tel"],
.contact-form-card .wpcf7 textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.contact-form-card .wpcf7 input:focus,
.contact-form-card .wpcf7 textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(224,123,26,0.12);
  background: var(--white);
}
.contact-form-card .wpcf7 textarea { min-height: 130px; resize: vertical; }
.contact-form-card .wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  padding: 13px 36px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(224,123,26,0.35);
  transition: all 0.25s ease;
  font-family: var(--font-body);
  width: auto;
}
.contact-form-card .wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,26,0.45);
}
.contact-form-card .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
}

/* Info cards */
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}
.contact-info-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.contact-info-card-body { flex: 1; min-width: 0; }
.contact-info-card-body h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-info-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 3px;
}
.contact-info-card-body a { color: var(--saffron); }
.contact-info-card-body a:hover { color: var(--gold); }
.contact-info-note { font-size: 0.78rem !important; color: var(--text-light) !important; font-style: italic; }

/* Map */
.contact-map-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-map-label {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-blue);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.contact-map-label svg { color: var(--saffron); flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-info-col { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .contact-info-col { grid-template-columns: 1fr; }
  .contact-form-card .wpcf7 { padding: 24px 20px; }
  .contact-form-card-header { padding: 22px 24px; }
  .contact-map-wrap { height: 300px; }
  .contact-map-label { font-size: 0.75rem; padding: 8px 14px; }
}

/* ===========================
   CONTACT SECTION (homepage)
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(224,123,26,0.1), rgba(200,150,12,0.1));
  border: 1px solid rgba(224,123,26,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 4px;
}
.contact-item-value {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* Contact form */
.contact-form { background: var(--cream-dark); border-radius: var(--radius-lg); padding: 36px; }
.contact-form h3 { font-size: 1.4rem; color: var(--deep-blue); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(224,123,26,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.wpcf7-submit,
.form-submit-btn {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(224,123,26,0.35);
}
.wpcf7-submit:hover,
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,26,0.45);
}

/* ===========================
   FOOTER
   =========================== */
#colophon {
  background: var(--deep-blue);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-title { font-size: 1.2rem; margin-bottom: 12px; color: var(--gold-light); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-icon { color: var(--saffron-light); flex-shrink: 0; margin-top: 2px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ===========================
   SINGLE EVENT PAGE
   =========================== */

/* Hero */
.event-hero {
  position: relative;
  background: var(--deep-blue);
  padding: calc(var(--nav-height) + 56px) 0 48px;
  overflow: hidden;
}
.event-hero--has-img { padding-bottom: 64px; }

.event-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.event-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 1;
}
.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,8,28,0.90) 0%,
    rgba(10,8,28,0.75) 50%,
    rgba(10,8,28,0.40) 100%
  ),
  linear-gradient(
    to top,
    rgba(10,8,28,0.60) 0%,
    transparent 50%
  );
}

.event-hero-inner {
  position: relative;
  z-index: 1;
}

.event-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.event-back-link:hover { color: var(--gold-light); }

.event-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.event-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.event-badge--upcoming { background: rgba(92,184,92,0.2); color: #7ddd7d; border: 1px solid rgba(92,184,92,0.3); }
.event-badge--past     { background: rgba(150,150,150,0.2); color: #bbb; border: 1px solid rgba(150,150,150,0.3); }

.event-hero-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.event-hero-date svg { color: var(--saffron-light); flex-shrink: 0; }

.event-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 760px;
}

.event-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.event-hero-location svg { color: var(--saffron); flex-shrink: 0; }

/* Body layout */
.event-body-wrap { padding: 56px 0 72px; }

.event-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Featured image */
.event-featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/7;
}
.event-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Registration form wrapper */
.event-reg-form-wrap {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid var(--cream-dark);
}

/* ── Registration Form ───────────────────────────────── */
.mdsa-reg-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.mdsa-reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  margin-bottom: 28px;
}
.mdsa-reg-full { grid-column: 1 / -1; }

.mdsa-reg-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mdsa-reg-field label {
  display: block !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: var(--text-dark) !important;
  margin: 0 0 6px !important;
  float: none !important;
  width: auto !important;
}
.mdsa-reg-field label .req { color: var(--saffron); }
.mdsa-reg-field label span[style] { font-weight: 400; color: var(--text-light); text-transform: none; letter-spacing: 0; }

.mdsa-reg-field input,
.mdsa-reg-field textarea,
.mdsa-reg-field select {
  display: block !important;
  width: 100% !important;
  padding: 11px 14px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  font-size: 0.93rem !important;
  font-family: var(--font-body) !important;
  color: var(--text-dark) !important;
  background: var(--cream) !important;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s !important;
  outline: none !important;
  box-shadow: none !important;
  float: none !important;
  margin: 0 !important;
  -webkit-appearance: none;
  appearance: none;
}
.mdsa-reg-field input:focus,
.mdsa-reg-field textarea:focus {
  border-color: var(--saffron) !important;
  box-shadow: 0 0 0 3px rgba(224,123,26,0.12) !important;
  background: var(--white) !important;
}
.mdsa-reg-field textarea {
  resize: vertical !important;
  min-height: 100px !important;
}

/* Submit */
.mdsa-reg-submit {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 36px !important;
  background: linear-gradient(135deg, var(--saffron), var(--gold)) !important;
  color: var(--white) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(224,123,26,0.35) !important;
  transition: all 0.25s ease !important;
  font-family: var(--font-body) !important;
  width: auto !important;
  float: none !important;
}
.mdsa-reg-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(224,123,26,0.45) !important;
}
.mdsa-reg-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}

/* Errors */
.mdsa-reg-errors {
  background: #fff5f5;
  border: 1px solid #fcc;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.mdsa-reg-errors p { color: #c0392b; font-size: 0.88rem; margin: 4px 0; }

/* Success */
.mdsa-reg-success {
  background: linear-gradient(135deg, #f0fff4, #e8f5e9);
  border: 1px solid #a8d5a2;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.mdsa-reg-success-icon {
  width: 60px; height: 60px;
  background: #5cb85c;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(92,184,92,0.35);
}
.mdsa-reg-success h3 { font-size: 1.4rem; color: #2d6a2d; margin-bottom: 10px; }
.mdsa-reg-success p  { color: #4a7c4a; font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 640px) {
  .mdsa-reg-grid { grid-template-columns: 1fr; }
  .mdsa-reg-form { padding: 24px 18px; }
}

/* Content / description */
.event-section-heading {
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--cream-dark);
  position: relative;
}
.event-section-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--saffron);
}

/* Details card */
.event-details-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.event-detail-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.event-detail-block:last-of-type { border-bottom: none; }

/* Calendar-style date block */
.event-detail-date-block { background: var(--cream); }
.event-cal-icon {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  flex-shrink: 0;
  min-width: 52px;
  box-shadow: 0 4px 12px rgba(224,123,26,0.35);
}
.event-cal-month {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.event-cal-day {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.event-cal-year {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.event-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  flex-shrink: 0;
}
.event-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.event-detail-value {
  font-size: 0.93rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

/* Map link */
.event-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--saffron);
  padding: 0 24px 14px;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.event-map-link:hover { color: var(--gold); }

/* Register button */
.event-register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 20px 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(224,123,26,0.35);
  transition: all var(--transition);
}
.event-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,26,0.45);
  color: var(--white);
}

/* Free / past tags */
.event-free-tag,
.event-past-tag {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 12px 20px;
  margin: 4px 20px 8px;
  border-radius: 8px;
}
.event-free-tag  { background: rgba(92,184,92,0.1); color: #3a9a3a; border: 1px solid rgba(92,184,92,0.25); }
.event-past-tag  { background: var(--cream); color: var(--text-light); }

/* Back button inside card */
.event-back-btn {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 12px 20px 20px;
  transition: color var(--transition);
}
.event-back-btn:hover { color: var(--saffron); }

/* Related events */
.event-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-related-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-related-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--deep-blue);
}
.event-related-nothumb { width: 100%; height: 100%; background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue-light)); }
.event-related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.event-related-card:hover .event-related-thumb img { transform: scale(1.05); }
.event-related-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,28,0.45), transparent 50%); }
.event-related-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: var(--saffron);
  border-radius: 6px;
  padding: 4px 10px;
  text-align: center;
  line-height: 1.1;
}
.event-related-badge span:first-child { display: block; font-size: 1.1rem; font-weight: 700; color: #fff; }
.event-related-badge span:last-child  { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.08em; }
.event-related-body { padding: 18px 20px; }
.event-related-body h3 { font-size: 1rem; color: var(--deep-blue); margin-bottom: 8px; line-height: 1.35; font-family: var(--font-heading); }
.event-related-body p { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.event-related-body svg { color: var(--saffron); flex-shrink: 0; }

/* Responsive */
@media (max-width: 900px) {
  .event-layout { grid-template-columns: 1fr; }
  .event-details-card { position: static; }
  .event-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .event-related-grid { grid-template-columns: 1fr; }
  .event-hero { padding-bottom: 36px; }
}

/* ===========================
   PHOTO GALLERY PAGE
   =========================== */

/* Hero */
.gallery-hero {
  position: relative;
  padding: calc(var(--nav-height) + 64px) 0 64px;
  text-align: center;
  overflow: hidden;
  background: var(--deep-blue);
}
.gallery-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('/wp-content/uploads/2020/09/IMG_4648-scaled.jpg') center/cover no-repeat,
    url('/wp-content/uploads/2020/09/IMG_4676-scaled.jpg') center/cover no-repeat;
  opacity: 0.18;
  filter: blur(3px);
  transform: scale(1.05);
}
.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,28,0.6), rgba(10,8,28,0.85));
}
.gallery-hero-inner { position: relative; z-index: 1; }
.gallery-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
  margin-bottom: 16px;
}
.gallery-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.gallery-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
}

/* Gallery section */
.gallery-section {
  background: var(--cream);
  padding: 56px 0 80px;
}

/* Filter tabs */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.gallery-filter-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-1px);
}
.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(224,123,26,0.35);
}
.gallery-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 50px;
  font-size: 0.7rem;
  background: rgba(0,0,0,0.08);
  color: inherit;
  font-weight: 700;
}
.gallery-filter-btn.active .gallery-filter-count { background: rgba(255,255,255,0.25); }

/* Masonry grid */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item-btn {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item-btn img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item-btn:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,28,0.7) 0%, rgba(10,8,28,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.gallery-item-btn:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-zoom {
  width: 48px;
  height: 48px;
  background: rgba(224,123,26,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.gallery-item-btn:hover .gallery-item-zoom { transform: scale(1); }

.gallery-item-caption {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 0 12px;
  letter-spacing: 0.04em;
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  transform: translateY(6px);
  transition: transform 0.3s ease;
}
.gallery-item-btn:hover .gallery-item-caption { transform: translateY(0); }

/* Empty state */
.gallery-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-light);
  font-style: italic;
}

/* ── Lightbox ────────────────────────────────────────── */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-lightbox.active { opacity: 1; }

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
}
.lightbox-img-wrap {
  position: relative;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 85vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transition: opacity 0.25s ease;
  display: block;
}
.lightbox-loader {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--saffron);
  border-radius: 50%;
  animation: lbSpin 0.7s linear infinite;
}
@keyframes lbSpin { to { transform: rotate(360deg); } }

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85vw;
  max-width: 900px;
  margin-top: 16px;
  padding: 0 4px;
}
.lightbox-caption {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}
.lightbox-counter {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

/* Nav buttons */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 1;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
}
.lightbox-prev:disabled,
.lightbox-next:disabled { opacity: 0.2; pointer-events: none; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 1;
}
.lightbox-close:hover { background: #e84d3d; border-color: #e84d3d; color: #fff; }

/* Responsive */
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}


/* ===========================
   ABOUT PAGE
   =========================== */

/* ─── Intro ─── */
.abt-intro { background:var(--cream); padding:72px 0 80px; }
.abt-intro-grid {
  display:grid;
  grid-template-columns:1fr 400px;
  gap:60px;
  align-items:start;
}
.abt-h2 {
  font-family:var(--font-heading);
  font-size:clamp(1.6rem,3vw,2.2rem);
  color:var(--deep-blue);
  margin:10px 0 0;
  line-height:1.25;
}
.abt-rule { width:48px;height:3px;background:linear-gradient(90deg,var(--saffron),var(--gold));border-radius:3px;margin:18px 0 24px; }
.abt-intro-left p { color:var(--text-mid);font-size:1rem;line-height:1.85;margin-bottom:16px; }
.abt-intro-left p:last-of-type { margin-bottom:0; }

.abt-stats-row {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  overflow:hidden;
  margin-top:32px;
  border:1px solid var(--border);
}
.abt-stat { text-align:center;padding:20px 8px;display:flex;flex-direction:column;gap:5px;border-right:1px solid var(--border); }
.abt-stat:last-child { border-right:none; }
.abt-stat strong { font-family:var(--font-heading);font-size:1.4rem;color:var(--saffron);font-weight:700;line-height:1; }
.abt-stat span { font-size:0.62rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:var(--text-light); }

.abt-intro-right { display:flex;flex-direction:column;gap:20px;position:sticky;top:calc(var(--nav-height) + 20px); }
.abt-intro-img-wrap { position:relative;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:16/9;box-shadow:var(--shadow-lg); }
.abt-intro-img-wrap img { width:100%;height:100%;object-fit:cover;object-position:center 25%;display:block;transition:transform 0.6s ease; }
.abt-intro-img-wrap:hover img { transform:scale(1.04); }
.abt-intro-img-overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(10,8,28,.45) 0%,transparent 50%); }
.abt-motto-card {
  background:linear-gradient(145deg,var(--deep-blue),#1e1060);
  border-radius:var(--radius-lg);
  padding:28px 28px 26px;
  text-align:center;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(240,192,64,0.12);
}
.abt-motto-om {
  font-size:2.5rem;
  background:linear-gradient(135deg,var(--gold-light),var(--saffron));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  display:block;
  line-height:1;
  margin-bottom:10px;
}
.abt-motto-label { font-size:0.62rem;font-weight:700;letter-spacing:0.22em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:12px; }
.abt-motto-card blockquote { font-family:var(--font-heading);font-size:0.97rem;color:rgba(255,255,255,.85);font-style:italic;line-height:1.7;margin:0;padding:0;border:none;background:none; }

/* ─── Mission & Vision ─── */
.abt-mv { background:var(--deep-blue);padding:80px 0;position:relative;overflow:hidden; }
.abt-mv::before { content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 30% 50%,rgba(224,123,26,.07),transparent 55%);pointer-events:none; }
.abt-mv-grid { display:grid;grid-template-columns:1fr 1fr;gap:24px;position:relative;z-index:1; }
.abt-mv-card {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.09);
  border-radius:var(--radius-lg);
  padding:40px 36px 42px;
  position:relative;
  overflow:hidden;
  transition:transform var(--transition),border-color var(--transition),background var(--transition);
}
.abt-mv-card:hover { transform:translateY(-4px);border-color:rgba(224,123,26,.35);background:rgba(255,255,255,.08); }
.abt-mv-card::before { content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--saffron),var(--gold)); }
.abt-mv-card--b::before { background:linear-gradient(90deg,#5b8dee,#3a6fd8); }
.abt-mv-num { font-family:var(--font-heading);font-size:3.5rem;font-weight:700;color:rgba(255,255,255,.04);position:absolute;top:16px;right:24px;line-height:1; }
.abt-mv-icon { width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;color:var(--gold-light);background:rgba(240,192,64,.1);border:1px solid rgba(240,192,64,.18); }
.abt-mv-icon--b { color:#7aabff;background:rgba(91,141,238,.1);border-color:rgba(91,141,238,.18); }
.abt-mv-card h3 { font-family:var(--font-heading);font-size:1.3rem;color:var(--white);margin-bottom:14px; }
.abt-mv-card p { color:rgba(255,255,255,.6);font-size:.97rem;line-height:1.8;margin:0; }

/* ─── Faith & Practice ─── */
.abt-faith { background:var(--cream-dark);padding:80px 0; }
.abt-practice-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:18px; }
.abt-practice-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:24px 22px 26px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:transform var(--transition),box-shadow var(--transition);
  position:relative;
  overflow:hidden;
}
.abt-practice-card:hover { transform:translateY(-4px);box-shadow:var(--shadow-lg); }
.abt-practice-card::after { content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--saffron),var(--gold));transform:scaleX(0);transform-origin:left;transition:transform 0.3s ease; }
.abt-practice-card:hover::after { transform:scaleX(1); }
.abt-practice-top { display:flex;align-items:center;justify-content:space-between; }
.abt-practice-icon { font-size:1.8rem;line-height:1; }
.abt-practice-num { font-size:0.65rem;font-weight:700;letter-spacing:0.12em;color:var(--border); }
.abt-practice-title { font-family:var(--font-heading);font-size:.95rem;color:var(--deep-blue);margin:0;font-weight:700; }
.abt-practice-text { font-size:.83rem;color:var(--text-mid);line-height:1.6;margin:0; }

/* ─── Values ─── */
.abt-values { padding:80px 0; }
.abt-values-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px; }
.abt-val-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px 24px;
  display:flex;
  align-items:flex-start;
  gap:18px;
  box-shadow:var(--shadow);
  transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition);
}
.abt-val-card:hover { transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--saffron); }
.abt-val-icon-ring {
  width:52px;height:52px;
  border-radius:12px;
  background:var(--cream);
  border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;
  flex-shrink:0;
}
.abt-val-body h3 { font-family:var(--font-heading);font-size:1rem;color:var(--deep-blue);margin-bottom:6px;line-height:1.2; }
.abt-val-body p { font-size:.84rem;color:var(--text-mid);line-height:1.65;margin:0; }

/* ─── Responsive ─── */
@media (max-width:1100px) { .abt-practice-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:1024px) { .abt-intro-grid { grid-template-columns:1fr; } .abt-intro-right { position:static; } }
@media (max-width:768px) { .abt-mv-grid { grid-template-columns:1fr; } .abt-values-grid { grid-template-columns:repeat(2,1fr); } .abt-stats-row { grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px) { .abt-values-grid { grid-template-columns:1fr; } .abt-practice-grid { grid-template-columns:1fr; } }

   =========================== */

/* ── Hero ── */
.abt-hero {
  position: relative;
  min-height: 440px;
  background: linear-gradient(145deg, #0d0b22 0%, var(--deep-blue) 40%, #1a2a50 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 64px) 0 80px;
  overflow: hidden;
  text-align: center;
}
.abt-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(224,123,26,0.1) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(200,150,12,0.06) 0%, transparent 40%);
}
.abt-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
}
.abt-hero-inner {
  position: relative;
  z-index: 2;
}
.abt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.75;
  margin-bottom: 20px;
}
.abt-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.abt-hero-title span { color: var(--gold-light); }
.abt-hero-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.abt-hero-tags span {
  padding: 6px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.abt-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
}

/* ── Who We Are ── */
.abt-who-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.abt-section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--deep-blue);
  line-height: 1.25;
  margin: 10px 0 0;
}
.abt-who-text p {
  color: var(--text-mid);
  font-size: 1.01rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.abt-who-text p:last-child { margin-bottom: 0; }

/* Motto card */
.abt-motto-card {
  background: linear-gradient(155deg, var(--deep-blue), #1e1060);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(240,192,64,0.12);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.abt-motto-om {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 12px rgba(224,123,26,0.3));
}
.abt-motto-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.abt-motto-divider {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 0 auto 18px;
}
.abt-motto-card blockquote {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/* Stats row */
.abt-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.abt-stat {
  text-align: center;
  padding: 18px 10px;
  border-right: 1px solid var(--border);
}
.abt-stat:last-child { border-right: none; }
.abt-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 4px;
}
.abt-stat-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── Mission & Vision ── */
.abt-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.abt-mv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px 42px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.abt-mv-card:hover { transform: translateY(-4px); border-color: rgba(224,123,26,0.3); }
.abt-mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}
.abt-mv-card--vision::before {
  background: linear-gradient(90deg, #5b8dee, #3a6fd8);
}
.abt-mv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-light);
  background: rgba(240,192,64,0.1);
  border: 1px solid rgba(240,192,64,0.15);
}
.abt-mv-card--vision .abt-mv-card-icon { color: #7aabff; background: rgba(91,141,238,0.1); border-color: rgba(91,141,238,0.15); }
.abt-mv-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 10px;
}
.abt-mv-card--vision .abt-mv-card-tag { color: #7aabff; }
.abt-mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}
.abt-mv-card p { color: rgba(255,255,255,0.65); font-size: 0.97rem; line-height: 1.8; }

/* ── Faith & Practice ── */
.abt-practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.abt-practice-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--saffron);
  transition: transform var(--transition), box-shadow var(--transition);
}
.abt-practice-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}
.abt-practice-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.abt-practice-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.5;
  font-weight: 500;
}

/* ── Values ── */
.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.abt-value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.abt-value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.abt-value-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}
.abt-value-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
}
.abt-value-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin: 0; }
.abt-value-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.abt-value-card:hover .abt-value-bar { transform: scaleX(1); }

/* ── Motto banner ── */
.abt-motto-banner {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.abt-motto-banner::before {
  content: '"';
  position: absolute;
  left: 20px; top: -30px;
  font-size: 220px;
  color: rgba(255,255,255,0.07);
  font-family: Georgia, serif;
  line-height: 1;
}
.abt-motto-banner-om {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.abt-motto-banner-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 14px;
  padding: 0;
  border: none;
  background: none;
}
.abt-motto-banner-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .abt-who-grid { grid-template-columns: 1fr; }
  .abt-motto-card { position: static; }
  .abt-mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .abt-values-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-practice-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .abt-values-grid { grid-template-columns: 1fr; }
  .abt-stats-row { grid-template-columns: repeat(3, 1fr); }
}

/* ===========================
   INTRODUCTION PAGE
   =========================== */

/* Prose text */
.intro-prose { display: flex; flex-direction: column; gap: 20px; }
.intro-prose p {
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.9;
  margin: 0;
}

/* Callout box */
.intro-callout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue-light));
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.intro-callout::after {
  content: 'ॐ';
  position: absolute;
  right: 16px;
  bottom: -16px;
  font-size: 100px;
  color: rgba(255,255,255,0.04);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}
.intro-callout-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.intro-callout h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.intro-callout p {
  color: rgba(255,255,255,0.72) !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
}

/* Sub-headings */
.intro-subheading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin: 12px 0 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream-dark);
  position: relative;
}
.intro-subheading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--saffron);
}

/* ── Baiji cards ─────────────────────────────────────── */
.baiji-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.baiji-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.baiji-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Fixed-size image — same height for all */
.baiji-card-img {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--deep-blue);
}
.baiji-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(10%) brightness(0.95);
}
.baiji-card:hover .baiji-card-img img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}
.baiji-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,28,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.baiji-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(60,60,80,0.85);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}

/* Card body */
.baiji-card-body {
  padding: 20px 22px 22px;
  text-align: center;
  border-top: 2px solid var(--cream-dark);
}
.baiji-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--deep-blue);
  margin-bottom: 6px;
  line-height: 1.3;
}
.baiji-card-body p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .baiji-grid { grid-template-columns: repeat(2, 1fr); }
  .baiji-card-img { height: 240px; }
}
@media (max-width: 480px) {
  .baiji-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .baiji-card-img { height: 200px; }
  .intro-callout { flex-direction: column; gap: 12px; padding: 24px 20px; }
}

/* ===========================
   CONTENT PAGES
   =========================== */
.page-content-wrap { padding: 64px 0; }
.page-content-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.page-content-inner.full-width { grid-template-columns: 1fr; }
.entry-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.entry-content h2,
.entry-content h3 { margin: 32px 0 16px; color: var(--deep-blue); }
.entry-content h2 { font-size: 1.75rem; }
.entry-content h3 { font-size: 1.3rem; }
.entry-content p { margin-bottom: 16px; color: var(--text-mid); line-height: 1.8; }
.entry-content ul, .entry-content ol { margin: 16px 0 16px 24px; }
.entry-content li { margin-bottom: 8px; color: var(--text-mid); }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content blockquote {
  border-left: 4px solid var(--saffron);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-mid);
}
.entry-content a { color: var(--saffron); font-weight: 500; }
.entry-content a:hover { color: var(--gold); }
.entry-content img { border-radius: var(--radius); margin: 24px auto; }

/* ===========================
   SIDEBAR
   =========================== */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.widget-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
  position: relative;
}
.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--saffron);
}
.widget ul { list-style: none; }
.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-mid); }
.widget ul li a:hover { color: var(--saffron); }

/* ===========================
   SINGLE POST
   =========================== */
.post-header { margin-bottom: 32px; }
.post-header h1 { font-size: 2.2rem; color: var(--deep-blue); margin-bottom: 12px; }
.post-meta {
  font-size: 0.83rem;
  color: var(--text-light);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.post-meta span::before { content: '·'; margin-right: 6px; opacity: 0.4; }
.post-meta span:first-child::before { display: none; }

/* ===========================
   ARCHIVE / SEARCH
   =========================== */
.archive-header { margin-bottom: 40px; }
.archive-header h1 { font-size: 1.8rem; }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  transition: all var(--transition);
}
.pagination a:hover, .pagination .current {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
}

/* ===========================
   404 PAGE
   =========================== */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.error-404 .error-code {
  font-size: 8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.error-404 h2 { font-size: 1.8rem; margin-bottom: 12px; }
.error-404 p { color: var(--text-mid); margin-bottom: 28px; }

/* ===========================
   PROGRAMS PAGE
   =========================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--saffron);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.program-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--deep-blue); }
.program-card p { color: var(--text-mid); font-size: 0.93rem; }

/* ===========================
   GLOBAL LINKS
   =========================== */
.global-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.global-link-card {
  background: var(--deep-blue);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.global-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  border-color: rgba(224,123,26,0.3);
}
.global-link-card h3 { color: var(--gold-light); margin-bottom: 8px; }
.global-link-card p { font-size: 0.87rem; color: rgba(255,255,255,0.55); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about-grid, .dharma-grid, .satpal-inner, .contact-grid { grid-template-columns: 1fr; }
  .satpal-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .page-content-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* ── Mobile nav ── */
  .menu-toggle { display: flex; }

  /* Shorten logo text on mobile */
  .site-title {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    white-space: normal;
    line-height: 1.2;
    max-width: 58vw;
  }
  .site-tagline { display: none; }
  .site-logo { width: 42px; height: 42px; }
  .logo-link { gap: 9px; }

  #site-navigation {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10,8,28,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px 0 24px;
    border-top: 1px solid rgba(240,192,64,0.12);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  #site-navigation.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu { flex-direction: column; width: 100%; gap: 0; }
  .nav-menu > li > a {
    padding: 13px 20px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.8rem;
  }
  /* Remove underline effect on mobile, use left border instead */
  .nav-menu > li > a::after { display: none; }
  .nav-menu > li > a:hover,
  .nav-menu > li.current-menu-item > a {
    background: rgba(224,123,26,0.1);
    border-left: 3px solid var(--saffron);
    padding-left: 17px;
    color: var(--gold-light);
  }

  .nav-menu .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: none;
    padding: 4px 0;
    background: rgba(0,0,0,0.25);
    display: none;
    border-radius: 0;
  }
  .nav-menu .sub-menu li a {
    padding: 10px 20px 10px 36px;
    font-size: 0.74rem;
    border-left: none;
  }
  .nav-menu .sub-menu li a:hover {
    padding-left: 40px;
    background: rgba(224,123,26,0.08);
    border-left: none;
  }
  .nav-menu li.open > .sub-menu { display: block; }

  /* ── General ── */
  .section-pad { padding: 56px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .entry-content { padding: 28px 20px; }
  .contact-form { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .guru-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
}

/* ===========================
   UTILITIES
   =========================== */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Elementor reset overrides */
.elementor-section, .elementor-container, .elementor-widget-wrap { width: 100% !important; }

/* WP alignment classes */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin: 16px auto; display: block; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--text-light); text-align: center; margin-top: 6px; }
