/* ============================================================
   AANGAN — THE COURTYARD
   Shared Stylesheet · Warm · Editorial · Culturally Grounded
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Scheherazade+New:wght@400;700&family=Marcellus&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── Variables ── */
:root {
  --dark:       #2B2918;
  --dark2:      #3D3820;
  --primary:    #7A6A2E;
  --mid:        #9A8840;
  --warm:       #C4B98A;
  --cream:      #F0EAD4;
  --off-white:  #F8F4EC;
  --text:       #2D2710;
  --text-mid:   #6B5C2E;
  --rule:       rgba(122, 106, 46, 0.2);
  --rule-dark:  rgba(196, 185, 138, 0.12);

  --font-urdu:    'Scheherazade New', serif;
  --font-heading: 'Marcellus', serif;
  --font-body:    'Raleway', sans-serif;

  --max-w: 1160px;
  --ease:  0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); font-weight: 300; line-height: 1.75; color: var(--text); background: var(--off-white); -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; }

/* ── Layout helpers ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.sr-only   { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Typography helpers ── */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm);
  opacity: 0.65;
}
.eyebrow-gold {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  transition: all var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--primary); color: var(--cream); border-color: var(--primary); }
.btn-primary:hover { background: var(--dark2); border-color: var(--warm); color: var(--warm); }
.btn-ghost    { background: transparent; color: var(--warm); border-color: rgba(196,185,138,.35); }
.btn-ghost:hover { background: rgba(196,185,138,.1); border-color: var(--warm); }
.btn-dark     { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark2); border-color: var(--warm); color: var(--warm); }
.btn-outline  { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--cream); }

/* ════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--dark);
  border-bottom: 0.5px solid var(--rule-dark);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
  opacity: 0.6;
  font-weight: 400;
  transition: opacity var(--ease);
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; }

.nav-cta {
  background: var(--primary) !important;
  color: var(--cream) !important;
  opacity: 1 !important;
  padding: 0.55rem 1.5rem !important;
  border-radius: 100px !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.14em !important;
  border: 1px solid transparent !important;
  transition: all var(--ease) !important;
}
.nav-cta:hover {
  background: transparent !important;
  border-color: var(--warm) !important;
  color: var(--warm) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--warm);
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--dark);
  border-top: 0.5px solid var(--rule-dark);
  padding: 1.2rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
  opacity: 0.65;
  font-weight: 400;
  padding: 0.9rem 0;
  border-bottom: 0.5px solid var(--rule-dark);
  transition: opacity var(--ease);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { opacity: 1; }

/* ════════════════════════════════════════
   HOME HERO  (index.html only)
   ════════════════════════════════════════ */
.home-hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 45%, rgba(122,106,46,.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Ghost Urdu watermark */
.hero-watermark {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-urdu);
  font-size: clamp(8rem, 18vw, 18rem);
  color: var(--warm);
  opacity: 0.04;
  direction: rtl;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.home-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  z-index: 1;
}

.hero-text .eyebrow { margin-bottom: 1.4rem; display: block; }

.hero-urdu-main {
  font-family: var(--font-urdu);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--warm);
  opacity: 0.5;
  direction: rtl;
  display: block;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: var(--cream);
  line-height: 1.02;
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--warm);
  opacity: 0.72;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Right: image mosaic */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.mosaic-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.mosaic-item:nth-child(1) { border-radius: 16px 4px 4px 16px; }
.mosaic-item:nth-child(2) { border-radius: 4px 16px 4px 4px; }
.mosaic-item:nth-child(3) { border-radius: 4px 4px 16px 4px; }

/* ════════════════════════════════════════
   PAGE HERO  (inner pages)
   ════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 9.5rem 2rem 5.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(122,106,46,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow { display: block; margin-bottom: 1.2rem; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  max-width: 700px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--warm);
  opacity: 0.72;
  max-width: 520px;
  line-height: 1.65;
}
.page-hero-watermark {
  position: absolute;
  right: 2rem;
  bottom: -1rem;
  font-family: var(--font-urdu);
  font-size: clamp(5rem, 12vw, 10rem);
  color: var(--warm);
  opacity: 0.05;
  direction: rtl;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

/* ════════════════════════════════════════
   SECTIONS — general
   ════════════════════════════════════════ */
.section        { padding: 5.5rem 2rem; }
.section-inner  { max-width: var(--max-w); margin: 0 auto; }
.section-dark   { background: var(--dark); padding: 5.5rem 2rem; }
.section-cream  { background: var(--cream); padding: 5.5rem 2rem; }
.section-off    { background: var(--off-white); padding: 5.5rem 2rem; }

.sec-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.2rem;
  display: block;
}
.sec-label-light {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm);
  opacity: 0.55;
  margin-bottom: 1.2rem;
  display: block;
}

.sec-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.sec-heading-light {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.sec-heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.sec-heading-lg-light {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.sec-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 620px;
}
.sec-body-light {
  font-size: 1rem;
  color: var(--warm);
  opacity: 0.75;
  line-height: 1.8;
  max-width: 620px;
}
.sec-body p + p { margin-top: 1rem; }

/* thin rule divider */
.rule { height: 0.5px; background: var(--rule); }
.rule-dark { height: 0.5px; background: var(--rule-dark); }

/* ════════════════════════════════════════
   WHAT WE DO — 3 cards
   ════════════════════════════════════════ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.pillar-card {
  background: white;
  border: 0.5px solid var(--rule);
  border-radius: 14px;
  padding: 2.2rem;
  transition: box-shadow var(--ease), transform var(--ease);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(43,41,24,.07);
}
.pillar-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.pillar-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* ════════════════════════════════════════
   MISSION STATEMENT  (centred)
   ════════════════════════════════════════ */
.mission-section {
  background: var(--off-white);
  padding: 6rem 2rem;
  text-align: center;
}
.mission-inner {
  max-width: 720px;
  margin: 0 auto;
}
.mission-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.mission-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.mission-rule {
  width: 60px;
  height: 0.5px;
  background: var(--primary);
  margin: 0 auto 1.5rem;
}

/* ════════════════════════════════════════
   TWO-COLUMN  (image + text)
   ════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col-rev {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col-rev .col-img { order: -1; }

.col-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark2);
}
.col-img img { width: 100%; height: 100%; object-fit: cover; }

/* ════════════════════════════════════════
   PULL QUOTE
   ════════════════════════════════════════ */
.pull-quote {
  border-left: 3px solid var(--primary);
  padding: 1.2rem 2rem;
  margin: 2.5rem 0;
}
.pull-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--text);
  line-height: 1.45;
}
.pull-quote-text-light {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--cream);
  line-height: 1.45;
}

/* ════════════════════════════════════════
   URDU ACCENT BLOCK
   ════════════════════════════════════════ */
.urdu-word {
  font-family: var(--font-urdu);
  font-size: 2.4rem;
  color: var(--primary);
  direction: rtl;
  display: block;
  line-height: 1.5;
}
.urdu-word-light {
  font-family: var(--font-urdu);
  font-size: 2.4rem;
  color: var(--warm);
  direction: rtl;
  display: block;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   EVENTS GRID
   ════════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.event-card {
  background: white;
  border: 0.5px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(43,41,24,.09); }
.event-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark2);
}
.event-card-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body { padding: 1.8rem; }
.event-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}
.event-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.event-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.4rem; }
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-bottom: 1.4rem;
}
.event-meta-item { display: flex; align-items: center; gap: 0.4rem; }

.event-placeholder {
  background: var(--cream);
  border: 0.5px solid var(--rule);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
}
.event-placeholder-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.5; }
.event-placeholder-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ════════════════════════════════════════
   GALLERY STRIP
   ════════════════════════════════════════ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════ */
.cta-band {
  background: var(--dark);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(122,106,46,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-urdu);
  font-size: clamp(8rem, 16vw, 14rem);
  color: var(--warm);
  opacity: 0.04;
  direction: rtl;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.cta-band-inner {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-band .eyebrow { display: block; margin-bottom: 1.4rem; }
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.cta-band p {
  font-size: 1.05rem;
  color: var(--warm);
  opacity: 0.72;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   TEAM GRID
   ════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dark2);
  margin: 0 auto 1.2rem;
  border: 2px solid rgba(196,185,138,.3);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--cream);
  background: var(--primary);
  opacity: 1;
}
.team-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text); margin-bottom: 0.25rem; }
.team-role {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.7rem;
}
.team-bio { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* ════════════════════════════════════════
   VALUES PILLARS
   ════════════════════════════════════════ */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  border: 0.5px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
}
.value-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.8rem 2rem;
  border-bottom: 0.5px solid var(--rule);
  transition: background var(--ease);
}
.value-item:last-child { border-bottom: none; }
.value-item:hover { background: rgba(122,106,46,.03); }
.value-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--rule);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.1rem;
}
.value-content {}
.value-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text); margin-bottom: 0.4rem; }
.value-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ════════════════════════════════════════
   GET INVOLVED CARDS
   ════════════════════════════════════════ */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.involve-card {
  background: white;
  border: 0.5px solid var(--rule);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.involve-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(43,41,24,.07); }
.involve-icon { font-size: 2rem; margin-bottom: 1.4rem; }
.involve-title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text); margin-bottom: 0.8rem; }
.involve-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.6rem; }

/* ════════════════════════════════════════
   FORM
   ════════════════════════════════════════ */
.form-wrap {
  background: white;
  border: 0.5px solid var(--rule);
  border-radius: 16px;
  padding: 3rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: var(--off-white);
  border: 0.5px solid rgba(122,106,46,.25);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(122,106,46,.07);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '↓';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-mid);
  font-size: 0.75rem;
  pointer-events: none;
}

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(122,106,46,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-info-label {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.3rem;
}
.contact-info-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.contact-info-link { color: var(--primary); transition: opacity var(--ease); }
.contact-info-link:hover { opacity: 0.7; }

/* Social pills */
.social-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.social-pill {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(122,106,46,.07);
  border: 0.5px solid var(--rule);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  color: var(--text-mid);
  transition: all var(--ease);
}
.social-pill:hover { background: var(--primary); color: var(--cream); border-color: var(--primary); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  padding: 4.5rem 2rem 2.5rem;
  border-top: 0.5px solid var(--rule-dark);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid var(--rule-dark);
}
.footer-brand .footer-logo { height: 44px; width: auto; margin-bottom: 1.2rem; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--warm);
  opacity: 0.5;
  line-height: 1.7;
  max-width: 280px;
}
.footer-urdu {
  font-family: var(--font-urdu);
  font-size: 1.4rem;
  color: var(--warm);
  opacity: 0.25;
  direction: rtl;
  display: block;
  margin-top: 0.8rem;
}
.footer-col-title {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--warm); opacity: 0.4; font-weight: 400; margin-bottom: 1.4rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.85rem; color: var(--warm); opacity: 0.5;
  transition: opacity var(--ease); font-weight: 300;
}
.footer-links a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
}
.footer-copy { font-size: 0.73rem; color: var(--warm); opacity: 0.3; font-weight: 300; }

.social-icons { display: flex; gap: 0.8rem; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 0.5px solid rgba(196,185,138,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  color: var(--warm); opacity: 0.5;
  transition: all var(--ease);
}
.social-icon:hover { opacity: 1; border-color: var(--warm); background: rgba(196,185,138,.08); }

/* ════════════════════════════════════════
   WHAT TO EXPECT  (event info strip)
   ════════════════════════════════════════ */
.expect-strip {
  background: var(--dark2);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 3.5rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}
.expect-icon { font-size: 3rem; flex-shrink: 0; }
.expect-body {}
.expect-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--cream); margin-bottom: 0.7rem; }
.expect-text { font-size: 0.9rem; color: var(--warm); opacity: 0.72; line-height: 1.75; max-width: 560px; }

/* ════════════════════════════════════════
   ANNOUNCEMENT BANNER (Events placeholder)
   ════════════════════════════════════════ */
.announce-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border: 0.5px solid rgba(196,185,138,.15);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.announce-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(122,106,46,.15) 0%, transparent 65%);
  pointer-events: none;
}
.announce-card-inner { position: relative; z-index: 1; }
.announce-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm); opacity: 0.55; margin-bottom: 0.8rem; display: block; }
.announce-title { font-family: var(--font-heading); font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--cream); margin-bottom: 0.8rem; line-height: 1.2; }
.announce-body { font-size: 0.9rem; color: var(--warm); opacity: 0.65; line-height: 1.7; margin-bottom: 1.6rem; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 900px) {
  .home-hero-inner     { grid-template-columns: 1fr; padding: 7rem 0 4rem; }
  .hero-mosaic         { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto; max-width: 460px; }
  .mosaic-item--tall   { grid-row: span 1; aspect-ratio: 1; }
  .two-col, .two-col-rev { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-rev .col-img { order: 0; }
  .footer-top          { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-layout      { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillar-grid         { grid-template-columns: 1fr; }
  .team-grid           { grid-template-columns: 1fr 1fr; }
  .gallery-strip       { grid-template-columns: repeat(3, 1fr); }
  .events-grid         { grid-template-columns: 1fr; }
  .involve-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section, .section-dark, .section-cream, .section-off { padding: 3.5rem 1.5rem; }
  .cta-band { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .hero-urdu-main { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-buttons { flex-direction: column; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .expect-strip { flex-direction: column; gap: 1.5rem; text-align: center; }
  .form-wrap { padding: 2rem 1.5rem; }
}

/* ════════════════════════════════════════
   FADE-IN ANIMATION
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.7s ease both; }
.delay-1   { animation-delay: 0.15s; }
.delay-2   { animation-delay: 0.3s; }
.delay-3   { animation-delay: 0.45s; }
