/*
Theme Name: Manav Mandir
Theme URI: https://mmbrevard.org/
Author: SKIFF
Description: Custom WordPress theme for Manav Mandir Temple (Melbourne, FL). Warm, traditional design carried over from the mmbrevard.org Joomla site.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: manav-mandir-theme
*/

/* =========================================================
   Design tokens
   ========================================================= */
:root {
  /* Creams / neutrals */
  --cream: #fbf4e8;
  --cream-alt: #f5ecda;
  --ivory: #fdf9f1;
  --white: #ffffff;
  --ink: #2b1b12;
  --black: #000000;

  /* Maroon / brand */
  --maroon: #6e1b28;
  --maroon-dark: #3e0f18;

  /* Accent / gold */
  --accent: #d9772b;
  --gold: #e8a945;
  --gold-pale: #e9d8c4;
  --gold-pale-2: #f3d8a6;

  /* Borders */
  --border: #eadfc7;
  --border-warm: #d8c6a0;
  --border-warm-2: #e2d2b4;
  --table-stripe: #f0e6d2;

  /* Text */
  --text-brown: #4a3a2a;
  --text-muted: #6b5240;
  --label-brown: #8a7256;
  --placeholder-muted: #9c8a72;

  /* Footer */
  --footer-border: #4a392a;
  --footer-muted: #b8b3ad;
  --copyright-muted: #8f8a84;

  /* Type */
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Karla", sans-serif;
  --font-deva: "Yatra One", cursive;
}

/* =========================================================
   Reset / base
   ========================================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.82;
}
img {
  max-width: 100%;
}
button {
  font-family: inherit;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}

.site {
  width: 100%;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Container widths */
.wrap-1280 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}
.wrap-1120 {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}
.wrap-900 {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}
.wrap-820 {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--gold {
  color: var(--gold);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-head h2 {
  margin: 10px 0 0;
}
.section-head p {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================================
   Utility bar
   ========================================================= */
.util-bar {
  width: 100%;
  background: var(--maroon-dark);
  color: var(--gold-pale);
}
.util-bar__inner {
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.util-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.util-hours strong {
  color: var(--cream);
}
.util-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-weight: 600;
}

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  width: 100%;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 30;
}
.site-header__inner {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--maroon);
}
.brand__deva {
  font-family: var(--font-deva);
  font-size: 14px;
  color: var(--label-brown);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-brown);
}
.main-nav a.is-active {
  font-weight: 700;
  color: var(--maroon);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-donate-pill {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.burger svg.icon-close {
  display: none;
}
.burger[aria-expanded="true"] svg.icon-open {
  display: none;
}
.burger[aria-expanded="true"] svg.icon-close {
  display: block;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 30px rgba(74, 17, 25, 0.12);
  padding: 8px 20px 24px;
  flex-direction: column;
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-brown);
  padding: 15px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.is-active {
  font-weight: 700;
  color: var(--maroon);
}
.mobile-nav .btn-donate-pill {
  margin-top: 20px;
  text-align: center;
}

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero {
  width: 100%;
  position: relative;
  background: linear-gradient(
    160deg,
    var(--maroon) 0%,
    var(--maroon-dark) 100%
  );
  overflow: hidden;
}
.page-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(243, 216, 166, 0.18);
}
.page-hero__ring--1 {
  top: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
}
.page-hero__ring--2 {
  top: -60px;
  right: -20px;
  width: 280px;
  height: 280px;
  border-color: rgba(243, 216, 166, 0.12);
}
.page-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 48px 64px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-hero__inner--tall {
  padding-top: 72px;
  padding-bottom: 76px;
}
.page-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.08;
  color: var(--cream);
}
.page-hero p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gold-pale);
  max-width: 600px;
}

/* =========================================================
   Homepage — hero
   ========================================================= */
.home-hero {
  width: 100%;
  position: relative;
  background: linear-gradient(
    160deg,
    var(--maroon) 0%,
    var(--maroon-dark) 100%
  );
  overflow: hidden;
}
.home-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(243, 216, 166, 0.18);
}
.home-hero__ring--1 {
  top: -120px;
  right: -100px;
  width: 480px;
  height: 480px;
}
.home-hero__ring--2 {
  top: -40px;
  right: -20px;
  width: 340px;
  height: 340px;
  border-color: rgba(243, 216, 166, 0.14);
}
.home-hero__ring--3 {
  bottom: -220px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-color: rgba(243, 216, 166, 0.12);
}
.home-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px 140px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  gap: 56px;
}
.home-hero__copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.home-hero__deva {
  font-family: var(--font-deva);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
}
.home-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.08;
  color: var(--cream);
}
.home-hero__lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gold-pale);
  max-width: 520px;
}
.home-hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.btn-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
.btn-pill-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold-pale-2);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(243, 216, 166, 0.55);
}

/* Hero photo carousel */
.hero-media {
  flex: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-carousel__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(251, 244, 232, 0.06);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}
.hero-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-carousel__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(251, 244, 232, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.hero-carousel__nav--prev {
  left: 12px;
}
.hero-carousel__nav--next {
  right: 12px;
}
.hero-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.hero-carousel__dot {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-carousel__dot span {
  display: block;
  border-radius: 999px;
  background: rgba(243, 216, 166, 0.45);
  width: 8px;
  height: 8px;
}
.hero-carousel__dot.is-active span {
  background: var(--gold);
  width: 22px;
  height: 8px;
}

/* =========================================================
   Quick info strip
   ========================================================= */
.info-strip {
  width: 100%;
  background: var(--cream);
}
.info-strip__pad {
  max-width: 1120px;
  margin: -64px auto 0;
  padding: 0 48px;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}
.info-strip__card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(74, 17, 25, 0.16);
  padding: 34px 40px;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.info-item {
  flex: 1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0 28px;
}
.info-item:first-child {
  padding-left: 0;
  padding-right: 28px;
}
.info-item:last-child {
  padding-right: 0;
  padding-left: 28px;
}
.info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item__label {
  font-weight: 700;
  font-size: 14px;
  color: var(--maroon);
}
.info-item__value {
  font-size: 14px;
  color: var(--text-brown);
  line-height: 1.5;
  margin-top: 2px;
}
.info-divider {
  width: 1px;
  background: var(--border);
}

/* =========================================================
   Calendar
   ========================================================= */
.calendar-section {
  width: 100%;
  background: var(--cream);
}
.calendar-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 48px 80px;
  box-sizing: border-box;
}
.calendar-section img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: var(--white);
}

/* =========================================================
   Weekly services grid (home)
   ========================================================= */
.weekly-services {
  width: 100%;
  background: var(--cream-alt);
}
.weekly-services__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 48px;
  box-sizing: border-box;
}
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.weekly-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 3px solid var(--accent);
}
.weekly-card--sun {
  background: var(--maroon);
  border-top-color: var(--gold);
}
.weekly-card__day {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-brown);
}
.weekly-card--sun .weekly-card__day {
  color: var(--gold-pale);
}
.weekly-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--maroon);
}
.weekly-card--sun .weekly-card__name {
  color: var(--cream);
}

/* =========================================================
   Priests (home)
   ========================================================= */
.priests-section {
  width: 100%;
  background: var(--cream);
}
.priests-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 48px;
  box-sizing: border-box;
}
.priests-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.priest-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
}
.priest-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--maroon);
}
.priest-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-brown);
}

/* =========================================================
   Donate banner (home) / donate CTA gradient block
   ========================================================= */
.donate-banner {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--maroon) 0%,
    var(--maroon-dark) 100%
  );
  position: relative;
  overflow: hidden;
}
.donate-banner__ring {
  position: absolute;
  top: -160px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(243, 216, 166, 0.14);
}
.donate-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 92px 48px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
.donate-banner__om {
  font-family: var(--font-deva);
  font-size: 30px;
  color: var(--gold);
}
.donate-banner h2 {
  margin: 16px 0 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--cream);
}
.donate-banner p {
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gold-pale);
  max-width: 560px;
}
.donate-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.donate-banner__note {
  margin: 24px 0 0;
  font-size: 13px;
  color: #c9ae93;
}

/* =========================================================
   Gallery preview (home)
   ========================================================= */
.gallery-preview {
  width: 100%;
  background: var(--cream);
}
.gallery-preview__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 48px;
  box-sizing: border-box;
}
.gallery-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border-warm);
  background: var(--white);
  font-weight: 700;
  font-size: 15px;
  color: var(--maroon);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.gallery-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  min-width: 0;
  font-family: var(--font-body);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(74, 17, 25, 0.12);
  opacity: 1;
}
.gallery-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--maroon-dark);
  background-size: cover;
  background-position: center;
}
.gallery-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-card__play span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(110, 27, 40, 0.88);
  border: 2px solid rgba(243, 216, 166, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 16px;
}
.gallery-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--maroon);
}
.gallery-card__year {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--label-brown);
}

/* =========================================================
   Video lightbox (home + gallery page)
   ========================================================= */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(28, 16, 10, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.video-lightbox.is-open {
  display: flex;
}
.video-lightbox__dialog {
  width: 100%;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-lightbox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.video-lightbox__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--cream);
  line-height: 1.2;
}
.video-lightbox__close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243, 216, 166, 0.5);
  background: rgba(251, 244, 232, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.video-lightbox__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: 14px;
  overflow: hidden;
}
.video-lightbox__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   Newsletter
   ========================================================= */
.newsletter {
  width: 100%;
  background: var(--cream-alt);
}
.newsletter__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 48px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--maroon);
}
.newsletter__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
.newsletter__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter__form input {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-warm);
  font-size: 14px;
  min-width: 240px;
  box-sizing: border-box;
  background: var(--white);
  font-family: var(--font-body);
}
.newsletter__form button {
  background: var(--maroon);
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  width: 100%;
  background: var(--ink);
  color: var(--footer-muted);
}
.site-footer__grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 48px 40px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col--brand {
  gap: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--cream);
}
.footer-brand__deva {
  font-family: var(--font-deva);
  font-size: 14px;
  color: var(--footer-muted);
}
.footer-col p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--footer-muted);
  max-width: 260px;
}
.footer-col__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13.5px;
  color: var(--footer-muted);
}
.footer-col span.footer-text {
  font-size: 13.5px;
  color: var(--footer-muted);
  line-height: 1.7;
}
.site-footer__legal {
  border-top: 1px solid var(--footer-border);
  padding: 22px 48px;
  box-sizing: border-box;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer__copyright {
  font-size: 12.5px;
  color: var(--copyright-muted);
}
.site-footer__legal-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer__legal-nav a {
  font-size: 12.5px;
  color: var(--footer-muted);
}

/* =========================================================
   Services page
   ========================================================= */
.book-section {
  width: 100%;
  background: var(--cream);
}
.book-card {
  margin-top: -32px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(74, 17, 25, 0.12);
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.book-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--maroon);
}
.book-card > div > p {
  margin: 0;
  font-size: 15.5px;
  color: var(--text-brown);
  line-height: 1.6;
}
.book-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.book-list li {
  display: flex;
}
.book-list a {
  flex: 1;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid var(--border-warm-2);
  border-radius: 14px;
}
.book-list a:hover {
  border-color: var(--accent);
  opacity: 1;
}
.book-list__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-list__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.book-list__phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--maroon);
  font-variant-numeric: tabular-nums;
  display: block;
}

.prices-section {
  width: 100%;
  background: var(--cream);
}
.prices-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 48px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prices-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.prices-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.15;
  color: var(--maroon);
}

.svc-search {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-search__field {
  position: relative;
  display: block;
}
.svc-search__field svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.svc-search__field input {
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 12px 16px 12px 44px;
  border-radius: 999px;
  border: 1px solid var(--border-warm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.svc-count {
  font-size: 13.5px;
  color: var(--text-muted);
}

.svc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.svc-table th,
.svc-table td {
  padding: 14px 24px;
}
.svc-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--maroon);
  color: var(--cream);
  text-align: left;
  padding: 15px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.svc-table thead th:first-child {
  border-top-left-radius: 17px;
}
.svc-table thead th:last-child {
  border-top-right-radius: 17px;
}
.svc-table thead th.svc-table__num {
  text-align: right;
  width: 170px;
}
.svc-table tbody th {
  text-align: left;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  border-top: 1px solid var(--table-stripe);
}
.svc-table tbody td {
  text-align: right;
  border-top: 1px solid var(--table-stripe);
}
.svc-table tbody tr:nth-child(even) {
  background: var(--ivory);
}
.svc-price {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.svc-tag-call {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--maroon);
  background: var(--cream-alt);
  border: 1px solid var(--border-warm-2);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.svc-tag-na {
  font-size: 13px;
  font-weight: 500;
  color: var(--placeholder-muted);
  font-style: italic;
}

.svc-cards {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
  gap: 10px;
}
.svc-cards li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-cards__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.svc-cards dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.svc-cards dl > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: var(--cream);
  border-radius: 10px;
}
.svc-cards dt {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-brown);
}
.svc-cards dd {
  margin: 0;
}

.svc-no-results {
  padding: 28px;
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--border-warm);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.svc-no-results p {
  margin: 0;
  font-size: 15.5px;
  color: var(--text-brown);
}
.btn-clear {
  background: transparent;
  border: 1.5px solid var(--border-warm);
  color: var(--maroon);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
}

.dakshina-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--cream-alt);
  border: 1px solid var(--border-warm-2);
  border-radius: 14px;
}
.dakshina-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.dakshina-note p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-brown);
  line-height: 1.65;
}
.dakshina-note strong {
  color: var(--maroon);
}

.rentals-section {
  width: 100%;
  background: var(--cream);
}
.rentals-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 48px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rentals-section h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.15;
  color: var(--maroon);
}
.rentals-section__lede {
  margin: 4px 0 0;
  font-size: 15.5px;
  color: var(--text-brown);
  line-height: 1.6;
  max-width: 640px;
}
.rentals-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.rental-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}
.rental-card__space {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--maroon);
  line-height: 1.2;
  display: block;
}
.rental-card__detail {
  font-size: 14.5px;
  color: var(--text-brown);
  display: block;
}
.rental-card__tag {
  align-self: flex-start;
}

.rental-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.rental-contact__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.rental-contact__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-solid-pill {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  background: var(--maroon);
  color: var(--cream);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}
.btn-ghost-pill {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  background: var(--white);
  color: var(--maroon);
  border: 1.5px solid var(--border-warm);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.cta-banner-section {
  width: 100%;
  background: var(--cream);
}
.cta-banner-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 48px 96px;
  box-sizing: border-box;
}
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--maroon) 0%,
    var(--maroon-dark) 100%
  );
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-banner__ring {
  position: absolute;
  top: -110px;
  left: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(243, 216, 166, 0.16);
}
.cta-banner h2 {
  position: relative;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--cream);
  line-height: 1.2;
}
.cta-banner__btns {
  position: relative;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-accent-pill {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 700;
}
.btn-outline-light-pill {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  background: transparent;
  color: var(--gold-pale-2);
  border: 1.5px solid rgba(243, 216, 166, 0.55);
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 700;
}

/* =========================================================
   Events Gallery page
   ========================================================= */
.featured-video-section {
  width: 100%;
  background: var(--cream);
}
.featured-video-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 48px 40px;
  box-sizing: border-box;
}
.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.featured-video__play {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--maroon-dark);
  box-shadow: 0 18px 40px rgba(74, 17, 25, 0.18);
}
.featured-video__play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(43, 27, 18, 0) 40%,
    rgba(43, 27, 18, 0.45) 100%
  );
}
.featured-video__overlay span {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.featured-video__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.featured-video__copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.15;
  color: var(--maroon);
}
.featured-video__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-brown);
}
.btn-watch {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  background: var(--maroon);
  color: var(--cream);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.year-filter-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(251, 244, 232, 0.96);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.year-filter {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 48px;
  box-sizing: border-box;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.year-filter__btn {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border-warm);
  background: var(--white);
  color: var(--text-brown);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.year-filter__btn:hover {
  border-color: var(--label-brown);
  opacity: 1;
}
.year-filter__btn.is-active {
  border-color: var(--maroon);
  background: var(--maroon);
  color: var(--cream);
}
.year-filter__btn.is-active:hover {
  opacity: 1;
}

.year-section {
  width: 100%;
  background: var(--cream);
}
.year-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 48px 16px;
  box-sizing: border-box;
}
.year-section__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.year-section__head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 38px;
  color: var(--maroon);
  line-height: 1;
}
.year-section__rule {
  flex: 1;
  height: 1px;
  background: var(--border-warm-2);
}
.year-section__count {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--label-brown);
  white-space: nowrap;
}
.year-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-card--lg .gallery-card__thumb {
  background: var(--maroon-dark);
}
.gallery-card--lg .gallery-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-card--lg .gallery-card__play span {
  width: 54px;
  height: 54px;
}
.gallery-card--lg .gallery-card__body {
  padding: 16px 18px 18px;
}
.gallery-card--lg .gallery-card__title {
  font-size: 20px;
}
.gallery-card--lg .gallery-card__year {
  font-size: 13px;
}

.playlist-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  min-width: 0;
}
.playlist-card:hover {
  box-shadow: 0 10px 24px rgba(74, 17, 25, 0.1);
  opacity: 1;
}
.playlist-card__thumb {
  position: relative;
  flex-shrink: 0;
  width: 132px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--maroon-dark);
}
.playlist-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.playlist-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.playlist-card__play span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(110, 27, 40, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
}
.playlist-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.playlist-card__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.playlist-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: var(--maroon);
}

.album-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-width: 0;
}
.album-card:hover {
  box-shadow: 0 10px 24px rgba(74, 17, 25, 0.1);
  opacity: 1;
}
.album-card__icon {
  flex-shrink: 0;
  width: 132px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: var(--cream-alt);
  border: 1.5px dashed var(--border-warm);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.album-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.earlier-cta-section {
  width: 100%;
  background: var(--cream);
}
.earlier-cta-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 48px 88px;
  box-sizing: border-box;
}

/* =========================================================
   Our Team page
   ========================================================= */
.team-section {
  width: 100%;
  background: var(--cream);
}
.team-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 48px 24px;
  box-sizing: border-box;
}
.team-section__inner--leaders {
  padding: 56px 48px 96px;
}
.team-section h2 {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: var(--maroon);
}
.team-section__lede {
  margin: 0 0 28px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.officers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.officer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.officer-card__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-brown);
}
.officer-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 23px;
  color: var(--maroon);
}
.officer-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.officer-card__phone,
.team-member__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-brown);
}
.btn-message {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--border-warm);
  color: var(--maroon);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}
.btn-message:hover {
  background: var(--cream-alt);
  opacity: 1;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.team-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  color: var(--maroon);
}
.team-member {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--table-stripe);
}
.team-member__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.team-member__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.btn-message-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 0;
  cursor: pointer;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(43, 27, 18, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.contact-modal.is-open {
  display: flex;
}
.contact-modal__dialog {
  width: 100%;
  max-width: 480px;
  max-height: 100%;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(43, 27, 18, 0.35);
  padding: 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.contact-modal__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-brown);
  display: block;
}
.contact-modal__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--maroon);
  line-height: 1.15;
  display: block;
}
.contact-modal__close {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.contact-modal__note {
  font-size: 12.5px;
  color: var(--label-brown);
  text-align: center;
}
.contact-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-brown);
  min-width: 0;
}
.form-field span.optional {
  font-weight: 400;
  color: var(--label-brown);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-warm);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  box-sizing: border-box;
  width: 100%;
}
.form-field textarea {
  resize: vertical;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 12px 0 4px;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--maroon);
}
.form-success p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================================
   Donate page
   ========================================================= */
.donate-section {
  width: 100%;
  background: var(--cream);
}
.donate-section__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 48px 96px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.donate-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.donate-tabs__btn {
  flex: 1;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text-brown);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
}
.donate-tabs__btn.is-active {
  background: var(--maroon);
  color: var(--cream);
}

.donate-panel {
  display: none;
}
.donate-panel.is-active {
  display: flex;
}
.donate-panel--card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 44px 36px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.donate-panel__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.donate-panel__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--maroon);
  line-height: 1.15;
}
.donate-panel__desc {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
}
.donate-panel__secure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.donate-panel--zelle {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 28px;
}
.donate-panel--zelle h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--maroon);
}
.donate-panel--zelle .donate-panel__desc {
  margin: 0;
  font-size: 15px;
  text-align: left;
  max-width: none;
}
.zelle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 24px;
  align-items: start;
}
.zelle-info {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.zelle-info__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--label-brown);
  display: block;
}
.zelle-info__name {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.zelle-info__email {
  font-size: 14.5px;
  color: var(--text-muted);
  display: block;
}
.zelle-info__hint {
  font-size: 14px;
  color: var(--text-brown);
  line-height: 1.6;
}
.zelle-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.zelle-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.zelle-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.zelle-steps__n {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zelle-steps__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 5px;
}
.zelle-steps__title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.zelle-steps__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.donate-footnote {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.donate-footnote a {
  color: var(--maroon);
  font-weight: 700;
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-section {
  width: 100%;
  background: var(--cream);
}
.contact-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 48px 96px;
  box-sizing: border-box;
}
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: var(--maroon);
}
.contact-info__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.contact-info__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-brown);
}
.contact-info__value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
}
.contact-info__value a {
  font-size: 16px;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.contact-info__directions {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  box-sizing: border-box;
}
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form-card__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}
.contact-form-card__head span:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--maroon);
}
.contact-form-card__head span:last-child {
  font-size: 14px;
  color: var(--text-muted);
}
.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.btn-submit {
  margin-top: 4px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
.btn-send-another {
  margin-top: 8px;
  background: transparent;
  color: var(--maroon);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--border-warm);
  cursor: pointer;
}

.generic-content {
  padding-top: 64px;
  padding-bottom: 64px;
}
.generic-content h1 {
  font-family: var(--font-heading);
  color: var(--maroon);
}

/* =========================================================
   Responsive — 1080 / 960 / 760 / 640
   ========================================================= */
@media (max-width: 1080px) {
  .main-nav,
  .util-hide {
    display: none !important;
  }
  .burger {
    display: flex !important;
  }
}
@media (min-width: 1081px) {
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .wrap-1280,
  .wrap-1120,
  .wrap-900,
  .wrap-820,
  .calendar-section__inner,
  .weekly-services__inner,
  .priests-section__inner,
  .donate-banner__inner,
  .gallery-preview__inner,
  .newsletter__inner,
  .prices-section__inner,
  .rentals-section__inner,
  .cta-banner-section__inner,
  .featured-video-section__inner,
  .year-section__inner,
  .earlier-cta-section__inner,
  .team-section__inner,
  .donate-section__inner,
  .contact-section__inner,
  .info-strip__pad {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .video-grid,
  .officers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .weekly-grid,
  .priests-grid,
  .teams-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .year-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 64px 28px 36px !important;
    gap: 36px 28px !important;
  }
  .site-footer__legal {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .contact-split {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 32px !important;
  }
  .featured-video {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
  }

  /* Homepage-only: its sections collapse to a uniform 72px top/bottom rhythm on tablet. */
  .calendar-section__inner,
  .weekly-services__inner,
  .priests-section__inner,
  .donate-banner__inner,
  .gallery-preview__inner,
  .newsletter__inner {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .home-hero__inner {
    padding: 64px 28px 120px !important;
    gap: 40px !important;
  }
  .home-hero h1 {
    font-size: 44px !important;
  }
}

@media (max-width: 760px) {
  .svc-table {
    display: none !important;
  }
  .svc-cards {
    display: flex !important;
  }
  .rentals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 52px 20px 32px !important;
    gap: 32px !important;
  }
  .util-bar__inner {
    padding: 8px 20px !important;
    font-size: 12.5px !important;
  }
  .site-header__inner {
    padding: 14px 20px !important;
  }
  .brand__name {
    font-size: 19px !important;
  }
  .brand__logo {
    width: 42px !important;
    height: 42px !important;
  }
  .mobile-nav .btn-donate-pill {
    display: none !important;
  }

  .wrap-1280,
  .wrap-1120,
  .wrap-900,
  .wrap-820,
  .calendar-section__inner,
  .weekly-services__inner,
  .priests-section__inner,
  .donate-banner__inner,
  .gallery-preview__inner,
  .newsletter__inner,
  .prices-section__inner,
  .rentals-section__inner,
  .cta-banner-section__inner,
  .featured-video-section__inner,
  .year-section__inner,
  .earlier-cta-section__inner,
  .team-section__inner,
  .donate-section__inner,
  .contact-section__inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .info-strip__pad {
    padding: 0 20px !important;
  }

  .home-hero__inner {
    padding: 48px 20px 104px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 32px !important;
  }
  .home-hero__deva {
    font-size: 30px !important;
  }
  .home-hero h1 {
    font-size: 34px !important;
  }
  .home-hero__lead {
    font-size: 16px !important;
  }
  .home-hero__cta > a {
    flex: 1 1 100%;
    text-align: center;
  }
  .hero-media {
    width: 100%;
  }

  .page-hero__inner {
    padding: 48px 20px 56px !important;
  }
  .page-hero__inner--gallery {
    padding: 40px 20px 48px !important;
  }
  .page-hero h1 {
    font-size: 38px !important;
  }

  .info-strip__card {
    flex-direction: column !important;
    padding: 8px 24px !important;
  }
  .info-item {
    padding: 18px 0 !important;
  }
  .info-divider {
    width: auto !important;
    height: 1px !important;
  }

  .section-head h2 {
    font-size: 28px !important;
  }
  .weekly-services__inner h2,
  .priests-section__inner h2,
  .gallery-preview__inner h2,
  .prices-head h2,
  .rentals-section h2,
  .featured-video__copy h2,
  .year-section__head h2,
  .donate-banner h2,
  .team-section h2,
  .contact-info h2 {
    font-size: 28px !important;
  }
  .weekly-grid,
  .priests-grid,
  .video-grid,
  .site-footer__grid,
  .officers-grid,
  .year-grid,
  .teams-grid,
  .rentals-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .video-grid {
    gap: 12px !important;
  }
  .weekly-card {
    padding: 20px !important;
    gap: 16px !important;
  }
  .newsletter__form {
    width: 100%;
  }
  .newsletter__form input {
    flex: 1 1 100%;
    min-width: 0 !important;
  }
  .newsletter__form button {
    flex: 1 1 100%;
  }

  .book-card {
    padding: 24px 20px !important;
  }
  .form-row-2 {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .contact-form-card,
  .donate-panel--card,
  .donate-panel--zelle {
    padding: 24px 20px !important;
  }
  .zelle-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .donate-tabs__btn {
    font-size: 14px !important;
    padding: 0 12px !important;
  }
  .cta-banner {
    padding: 24px 20px !important;
  }
  .cta-banner__btns > a {
    flex: 1 1 100%;
    justify-content: center;
  }
  .year-filter {
    padding: 12px 20px !important;
  }
  .site-footer__legal {
    padding: 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
