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

:root {
  --maroon-950: #350810;
  --maroon-900: #55101d;
  --maroon-800: #7a1626;
  --maroon-700: #8f1a2e;
  --maroon-600: #a52338;
  --gold-700: #a97e1f;
  --gold-600: #c99a2e;
  --gold-500: #e0b83f;
  --gold-300: #f3d78a;
  --gold-100: #fbecc4;
  --cream-50: #fdf9f0;
  --cream-100: #f7eedb;
  --ink-900: #241611;
  --ink-700: #4a352d;
  --ink-500: #7a6459;

  --font-display: 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;
  --font-deva: 'Tiro Devanagari Hindi', serif;

  --shadow-soft: 0 10px 30px rgba(53, 8, 16, 0.12);
  --shadow-strong: 0 20px 50px rgba(53, 8, 16, 0.25);
  --radius: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

section { position: relative; padding: 110px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-700);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-300); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: var(--maroon-900);
  margin-bottom: 18px;
  position: relative;
}
.section-title--light { color: var(--cream-50); }

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  border-radius: 3px;
}

.section-sub {
  max-width: 620px;
  color: var(--ink-500);
  font-size: 1.02rem;
  margin-bottom: 50px;
}
.section-sub--light { color: rgba(253, 249, 240, 0.78); }

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

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(253, 249, 240, 0.72);
  border-bottom: 1px solid rgba(169, 126, 31, 0.18);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(53, 8, 16, 0.08); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--maroon-900);
  letter-spacing: 0.3px;
}
.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--gold-700);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-link {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-link:hover { background: rgba(169, 126, 31, 0.12); color: var(--maroon-800); }
.nav-link--cta {
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-600));
  color: var(--cream-50) !important;
  box-shadow: 0 6px 18px rgba(122, 22, 38, 0.3);
}
.nav-link--cta:hover { filter: brightness(1.08); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--maroon-900);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 78px;
  background:
    radial-gradient(circle at 50% 15%, rgba(224, 184, 63, 0.18), transparent 55%),
    linear-gradient(160deg, var(--maroon-950) 0%, var(--maroon-800) 55%, var(--maroon-700) 100%);
  overflow: hidden;
}

.hero-rays {
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(from 0deg at 50% 20%,
      rgba(224, 184, 63, 0.09) 0deg 6deg,
      transparent 6deg 12deg);
  mask-image: radial-gradient(circle at 50% 20%, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 50% 20%, black 0%, transparent 65%);
  animation: spin 90s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.hero-logo {
  height: 150px;
  width: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.35));
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  color: var(--cream-50);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.hero-tagline {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.hero-tagline i { font-style: normal; color: var(--gold-600); }

/* --- Sanskrit motto --- */
.hero-motto {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 4px auto 26px;
  max-width: 640px;
}
.hero-motto .motto-text {
  font-family: var(--font-deva);
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 18px rgba(224, 184, 63, 0.25);
}
.hero-motto .motto-orn {
  font-family: var(--font-deva);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--gold-600);
  opacity: 0.75;
}
.hero-motto .motto-translit {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: rgba(253, 249, 240, 0.62);
  font-style: italic;
  margin-top: 2px;
}

.hero-sub {
  color: rgba(253, 249, 240, 0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--maroon-950);
  box-shadow: 0 12px 28px rgba(224, 184, 63, 0.35);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(224, 184, 63, 0.45); }

.btn-ghost {
  border: 1.5px solid rgba(253, 249, 240, 0.5);
  color: var(--cream-50);
}
.btn-ghost:hover { background: rgba(253, 249, 240, 0.1); }

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue span {
  display: block;
  width: 26px; height: 42px;
  border: 2px solid rgba(253, 249, 240, 0.55);
  border-radius: 20px;
  position: relative;
}
.scroll-cue span::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 5px; height: 5px;
  background: var(--gold-300);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: dot 1.6s ease-in-out infinite;
}
@keyframes dot { 0% { top: 8px; opacity:1;} 70% { top: 24px; opacity: 0;} 100% { top: 24px; opacity: 0;} }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
  margin-top: 20px;
}

.lead { font-size: 1.2rem; color: var(--maroon-900); font-weight: 500; margin-bottom: 16px; }
.about-copy p { color: var(--ink-700); margin-bottom: 16px; }

.vision-card {
  margin-top: 28px;
  padding: 28px 30px;
  background: linear-gradient(135deg, var(--maroon-900), var(--maroon-700));
  border-radius: var(--radius);
  color: var(--cream-50);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.vision-card::after {
  content: "🕉️";
  position: absolute;
  right: 18px; bottom: 8px;
  font-size: 3.4rem;
  opacity: 0.12;
}
.vision-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  margin-bottom: 10px;
}
.vision-card p { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; color: var(--cream-50) !important; }

.pillars {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.pillars li {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 16px;
  padding: 18px 20px;
  background: var(--cream-100);
  border-radius: 16px;
  border: 1px solid rgba(169,126,31,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillars li:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); }
.pillar-icon {
  grid-row: 1 / 3;
  font-size: 1.6rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-50);
  border-radius: 12px;
}
.pillar-name { font-family: var(--font-display); font-weight: 600; color: var(--maroon-900); }
.pillar-desc { font-size: 0.85rem; color: var(--ink-500); }

.info-card {
  background: var(--cream-50);
  border: 1px solid rgba(169,126,31,0.2);
  border-radius: 16px;
  padding: 8px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--ink-900);
  transition: background 0.2s ease;
}
a.info-row:hover { background: var(--cream-100); }

/* ============ ICONS ============ */
.icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
}
.icon-lg { width: 30px; height: 30px; }
.icon-phone::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--maroon-800);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
}
.icon-globe::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--maroon-800);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='2' y1='12' x2='22' y2='12'/><path d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='2' y1='12' x2='22' y2='12'/><path d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/></svg>") center/contain no-repeat;
}
.icon-camera::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-600);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/><circle cx='12' cy='13' r='4'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/><circle cx='12' cy='13' r='4'/></svg>") center/contain no-repeat;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}

.gallery-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 2px dashed rgba(169, 126, 31, 0.4);
  background: var(--cream-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.gallery-placeholder:hover { transform: translateY(-6px); border-color: var(--gold-600); }
.gallery-placeholder .icon-camera { width: 34px; height: 34px; opacity: 0.6; }
.gallery-placeholder .ph-title { font-weight: 600; color: var(--maroon-800); font-size: 0.95rem; }
.gallery-placeholder .ph-sub { font-size: 0.8rem; color: var(--ink-500); }

/* --- album cards --- */
.album-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-family: inherit;
  background: var(--maroon-900);
  display: block;
  width: 100%;
}
.album-cover {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.album-card:hover .album-cover { transform: scale(1.09); }

.album-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(36,22,17,0.55) 0%, rgba(36,22,17,0.05) 45%, rgba(36,22,17,0.15) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.album-card:hover .album-overlay { opacity: 1; }
.album-play {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(253,249,240,0.92);
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.8);
  transition: transform 0.35s ease;
  box-shadow: var(--shadow-soft);
}
.album-card:hover .album-play { transform: scale(1); }
.album-play .icon-camera { width: 28px; height: 28px; }

.album-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 18px 18px 16px;
  text-align: left;
  background: linear-gradient(to top, rgba(36,22,17,0.9), transparent);
}
.album-title { color: var(--cream-50); font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.album-meta { color: var(--gold-300); font-size: 0.78rem; letter-spacing: 0.5px; }

/* --- lightbox --- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 6, 10, 0.92);
  backdrop-filter: blur(6px);
  animation: fade 0.3s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.lb-dialog {
  position: relative;
  z-index: 2;
  width: min(94vw, 1040px);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pop { from { opacity: 0; transform: scale(0.94) translateY(12px); } to { opacity: 1; transform: none; } }

.lb-stage {
  width: 100%;
  height: min(72vh, 680px);
  display: flex; align-items: center; justify-content: center;
}
.lb-media {
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-strong);
  background: #000;
}

.lb-close {
  position: absolute;
  top: -46px; right: 0;
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(253,249,240,0.12);
  color: var(--cream-50);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lb-close:hover { background: rgba(253,249,240,0.25); transform: rotate(90deg); }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(253,249,240,0.14);
  color: var(--cream-50);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 3;
}
.lb-nav:hover { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: var(--maroon-950); }
.lb-prev { left: -8px; }
.lb-next { right: -8px; }

.lb-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--cream-50);
}
.lb-caption { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.lb-counter { color: var(--gold-300); font-size: 0.85rem; letter-spacing: 1px; }

.lb-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  max-width: 90%;
}
.lb-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(253,249,240,0.3);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lb-dot:hover { background: rgba(253,249,240,0.6); }
.lb-dot.active { background: var(--gold-500); transform: scale(1.3); }

@media (max-width: 760px) {
  .lb-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lb-prev { left: 2px; }
  .lb-next { right: 2px; }
  .lb-stage { height: 62vh; }
}

/* ============ DONATE ============ */
.donate {
  background: linear-gradient(160deg, var(--maroon-950), var(--maroon-800));
  text-align: center;
  overflow: hidden;
}
.donate-rays {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(224,184,63,0.15), transparent 60%);
}
.donate-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.donate .section-sub { margin-left: auto; margin-right: auto; }

.donate-card {
  background: var(--cream-50);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-strong);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.qr-frame {
  padding: 10px;
  border: 2px solid var(--gold-500);
  border-radius: 18px;
  background: #fff;
}
.qr-image { width: 260px; max-width: 60vw; border-radius: 10px; }
.donate-note { color: var(--ink-700); font-weight: 500; font-size: 0.95rem; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  max-width: 700px;
}
.contact-card {
  background: var(--cream-100);
  border: 1px solid rgba(169,126,31,0.18);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.contact-label { font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-700); font-weight: 600; }
.contact-value { font-family: var(--font-display); font-size: 1.15rem; color: var(--maroon-900); font-weight: 600; }

/* --- social links --- */
.follow { margin-top: 48px; text-align: center; }
.follow-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-700);
  margin-bottom: 18px;
}
.social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  border: 1px solid rgba(169, 126, 31, 0.25);
  color: var(--maroon-800);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.social-btn svg { width: 22px; height: 22px; }
.social-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-600));
  color: var(--cream-50);
  box-shadow: 0 12px 24px rgba(122, 22, 38, 0.3);
}
.social-btn--wa:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 24px rgba(18, 140, 126, 0.35);
}

/* footer variant — sits on dark maroon */
.social-row--footer { margin: 10px 0 4px; gap: 12px; }
.social-row--footer .social-btn {
  width: 42px;
  height: 42px;
  background: rgba(253, 249, 240, 0.08);
  border-color: rgba(224, 184, 63, 0.3);
  color: var(--gold-300);
  box-shadow: none;
}
.social-row--footer .social-btn svg { width: 19px; height: 19px; }
.social-row--footer .social-btn:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--maroon-950);
}
.social-row--footer .social-btn--wa:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

/* ============ MEMBERSHIP ============ */
.membership {
  background:
    radial-gradient(circle at 85% 15%, rgba(224, 184, 63, 0.1), transparent 45%),
    var(--cream-100);
}
.membership-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.membership-perks {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 14px;
}
.membership-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink-700);
}
.membership-perks li span { font-size: 1.3rem; }

.membership-form {
  background: var(--cream-50);
  border: 1px solid rgba(169, 126, 31, 0.2);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--maroon-800);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  background: var(--cream-100);
  border: 1.5px solid rgba(169, 126, 31, 0.25);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field input::placeholder { color: var(--ink-500); opacity: 0.7; }
.field input:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(224, 184, 63, 0.18);
}
.field input:invalid:not(:placeholder-shown) { border-color: #c0392b; }

.phone-row { display: flex; gap: 10px; }
.phone-code {
  flex: 0 0 auto;
  max-width: 42%;
  padding: 14px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--cream-100);
  border: 1.5px solid rgba(169, 126, 31, 0.25);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.phone-code:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(224, 184, 63, 0.18);
}
.phone-row input { flex: 1 1 auto; min-width: 0; }

/* honeypot — visually hidden but present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  min-height: 1.2em;
}
.form-status.success { color: #1e7a46; }
.form-status.error { color: #c0392b; }

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

/* ============ FOOTER ============ */
.site-footer {
  background: var(--maroon-950);
  color: rgba(253,249,240,0.7);
  padding: 48px 0 36px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { height: 46px; opacity: 0.85; margin-bottom: 6px; }
.footer-motto {
  font-family: var(--font-deva);
  font-size: 1.35rem;
  color: var(--gold-300);
  margin-bottom: 2px;
}
.footer-reg {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 4px 0 6px;
}
.reg-badge {
  font-size: 0.76rem;
  letter-spacing: 0.5px;
  color: var(--gold-100);
  background: rgba(224, 184, 63, 0.12);
  border: 1px solid rgba(224, 184, 63, 0.3);
  padding: 5px 14px;
  border-radius: 999px;
}
.footer-tagline { color: var(--gold-300); font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; }

/* ============ BACK TO TOP ============ */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--maroon-950);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 500;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  section { padding: 80px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream-50);
    padding: 12px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { text-align: center; }
  .brand-text strong { font-size: 0.95rem; }
}
