/* =============================================
   NORTH DALLAS ALPHAS — Main Stylesheet
   Xi Tau Lambda Chapter | Alpha Phi Alpha
============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --black: #0a0a0a;
  --deep-black: #050505;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --gold-pale: #f9f2e0;
  --white: #ffffff;
  --gray-100: #f8f8f8;
  --gray-200: #e8e8e8;
  --gray-400: #999;
  --gray-600: #666;
  --gray-800: #333;
  --nav-height: 80px;
  --radius: 4px;
  --shadow: 0 4px 30px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-black { background: var(--black); }
.bg-dark { background: #111; }
.bg-light { background: var(--gray-100); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
}
.section-sub.light { color: rgba(255,255,255,0.72); }

/* Divider */
.gold-bar {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 28px;
}
.gold-bar.left { margin-left: 0; }

/* ---------- Announcement Bar ---------- */
.announce-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1001;
}
.announce-bar a { color: var(--black); text-decoration: underline; }
.announce-bar a:hover { color: #3a2a00; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-right: 16px;
}
.nav-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
}
.nav-brand-text .chapter {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.nav-brand-text .tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
/* Visiting Brothers link */
.nav-interested {
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  padding: 7px 12px !important;
  border: 1px solid rgba(201,168,76,0.35) !important;
  border-radius: var(--radius) !important;
  transition: var(--transition) !important;
  white-space: nowrap;
}
.nav-interested:hover {
  background: rgba(201,168,76,0.12) !important;
  border-color: var(--gold) !important;
}
/* Member Login button */
.nav-login {
  background: transparent !important;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-login:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--white) !important;
}
/* Mobile menu special links */
.mobile-menu .nav-interested {
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.4) !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  margin: 4px 0 !important;
}
.nav-login-mobile {
  display: block;
  color: var(--white) !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  margin: 4px 0 !important;
  font-weight: 600;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
  transform: scale(1.04);
  transition: transform 12s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-fraternity {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.hero-chapter {
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge span.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 12px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.25);
  padding-top: 36px;
  max-width: 580px;
}
.hero-stat {
  flex: 1;
  min-width: 120px;
  padding-right: 32px;
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- MARQUEE ---------- */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 28px;
}
.marquee-track span::after {
  content: '◆';
  margin-left: 28px;
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- WHAT WE STAND FOR — PHOTO PILLARS ---------- */
.pillars-section {
  background: var(--black);
  padding: 100px 0;
}
.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}
.pillars-header .section-title { color: var(--white); }
.pillars-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}

.pillar-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Per-pillar photo focus points */
.pillar-card.scholarship img { object-position: center 35%; }
.pillar-card.service img      { object-position: center 20%; }
.pillar-card.brotherhood img  { object-position: center 25%; }

.pillar-card:hover img {
  transform: scale(1.08);
}

.pillar-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.88) 100%
  );
  transition: var(--transition);
}

.pillar-card:hover .pillar-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.35) 35%,
    rgba(10,8,2,0.92) 100%
  );
}

.pillar-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  transform: translateY(0);
  transition: var(--transition);
}

.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: -10px;
  transition: var(--transition);
}

.pillar-card:hover .pillar-number {
  color: rgba(201,168,76,0.25);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
  background: var(--gold-light);
  transform: scale(1.08);
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
}

.pillar-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.pillar-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.pillar-card:hover .pillar-desc {
  max-height: 120px;
  opacity: 1;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease 0.1s, opacity 0.3s ease 0.1s;
  opacity: 0;
}

.pillar-card:hover .pillar-link {
  max-height: 40px;
  opacity: 1;
}

.pillar-link::after {
  content: '→';
  font-size: 1rem;
}

/* ---------- IMPACT NUMBERS ---------- */
.impact-section {
  background: var(--gold);
  padding: 60px 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.impact-item {
  padding: 20px;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.impact-item:last-child { border-right: none; }
.impact-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.impact-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-top: 6px;
}

/* ---------- UPCOMING EVENTS ---------- */
.events-section {
  background: var(--gray-100);
  padding: 90px 0;
}
.events-section .section-title { color: var(--gray-800); }
.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.events-feature {
  position: relative;
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
  padding: 48px;
  color: var(--white);
}
/* Background image layer — src set dynamically by JS */
.events-feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transition: background-image 0.3s ease;
}
.events-feature-content { position: relative; z-index: 2; }
.events-feature-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.events-feature h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.events-feature p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.event-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.event-detail i { color: var(--gold); font-size: 0.9rem; width: 16px; }

.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  background: var(--white);
  border-radius: 6px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.event-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.event-date-box {
  text-align: center;
  min-width: 56px;
  background: var(--black);
  border-radius: 4px;
  padding: 8px 10px;
}
.event-date-box .day {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.event-date-box .month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.event-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.event-info p {
  font-size: 0.82rem;
  color: var(--gray-600);
}

/* ---------- PRESIDENT'S MESSAGE ---------- */
.president-section {
  padding: 90px 0;
  background: var(--white);
}
.president-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.president-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-bottom: 40px;
}
.president-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 4px;
}
.president-badge-wrap {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 18px 24px;
  border-radius: 4px;
  text-align: center;
}
.president-badge-wrap .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.president-badge-wrap .label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 2px;
}
.president-text blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gray-800);
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.president-text p {
  color: var(--gray-600);
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.president-sig {
  margin-top: 24px;
}
.president-sig strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
}
.president-sig span {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- SOCIAL FEEDS ---------- */
.social-feeds-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.social-feed-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.social-feed-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}
.social-feed-card-header span { flex: 1; }
.social-follow-btn {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.social-follow-btn:hover { opacity: 0.85; }
.social-feed-iframe-wrap { background: #f0f2f5; }
/* Instagram card */
.social-feed-instagram-card {
  padding: 20px 18px;
}
.ig-profile-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.ig-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ig-profile-info { flex: 1; }
.ig-handle { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.ig-name { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 6px; }
.ig-bio { font-size: 0.8rem; color: var(--gray-600); line-height: 1.5; }
.ig-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 18px;
  transition: opacity 0.2s;
}
.ig-view-btn:hover { opacity: 0.88; }
.ig-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 14px;
}
.ig-ph-cell {
  aspect-ratio: 1;
  background: var(--gray-100);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 1.4rem;
}
.ig-embed-note {
  font-size: 0.76rem;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 860px) {
  .social-feeds-row { grid-template-columns: 1fr; }
}

/* ---------- NEWS PREVIEW ---------- */
.news-section {
  background: var(--gray-100);
  padding: 90px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.news-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.news-card-img {
  min-height: 200px;
  height: auto;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card-img img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.02); }
.news-card.featured .news-card-img { min-height: 280px; }
.news-card.featured .news-card-img img { max-height: 420px; }
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.news-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
  line-height: 1.35;
  flex: 1;
}
.news-card.featured .news-body h3 { font-size: 1.3rem; }
.news-body p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.news-meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: auto;
}

/* ---------- MEMBERSHIP CTA ---------- */
.membership-cta {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.membership-cta::before {
  content: 'α';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 40vw;
  font-weight: 800;
  color: rgba(201,168,76,0.03);
  right: -5vw;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
}
.membership-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.membership-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.membership-cta h2 span { color: var(--gold); }
.membership-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.requirements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.req-chip {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #050505;
  color: var(--white);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.footer-brand-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; min-width: 14px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.footer-social a i { font-size: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-creed {
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(201,168,76,0.5);
  max-width: 400px;
  text-align: right;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: var(--black);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 14px;
}
.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pillar-card {
    height: 420px;
  }
  .pillar-desc {
    max-height: 80px;
    opacity: 1;
  }
  .pillar-link {
    max-height: 40px;
    opacity: 1;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-grid .news-card:first-child {
    grid-column: 1 / -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .events-layout { grid-template-columns: 1fr; }
}

@media (max-width: 1220px) {
  .nav-brand-text .chapter { font-size: 0.92rem; }
  .nav-brand-text .tagline { font-size: 0.58rem; letter-spacing: 0.05em; }
  .nav-links a { font-size: 0.76rem; padding: 8px 8px; }
  .nav-interested { font-size: 0.7rem !important; padding: 7px 9px !important; }
  .nav-login { padding: 8px 12px !important; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { height: 380px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stat { min-width: 100px; }
}

@media (max-width: 480px) {
  .pillar-card { height: 340px; }
  .pillar-card-content { padding: 24px 20px; }
  .pillar-title { font-size: 1.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .impact-grid { grid-template-columns: 1fr; }
}
