/* ============================================================
   DANCESEQUENCES INC. — Main Stylesheet
   Colors: Black · Lavender · Teal
   Fonts: Playfair Display + Inter
   ============================================================ */

:root {
  --black:           #0f0f0f;
  --black-soft:      #1a1a1a;
  --black-card:      #141414;
  --lavender:        #b8a4d8;
  --lavender-mid:    #c9bae6;
  --lavender-light:  #ede8f5;
  --lavender-faint:  #f7f4fc;
  --lavender-dim:    rgba(184, 164, 216, 0.12);
  --teal:            #1a8a8a;
  --teal-dark:       #0d5a5a;
  --teal-light-bg:   rgba(26, 138, 138, 0.08);
  --white:           #ffffff;
  --text-dark:       #1a1a1a;
  --text-muted:      #6b7280;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --nav-height:   72px;
  --max-width:    1200px;
  --section-pad:  clamp(5rem, 10vw, 9rem);

  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Typography ─────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-label.on-dark { color: var(--lavender); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 138, 138, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-teal {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-teal:hover {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── Navigation ─────────────────────────────────────────────── */
/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
  margin-top: 1px;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s var(--ease), visibility 0.18s;
  pointer-events: none;
  padding-top: 10px;
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 10px; left: 0; right: 0; bottom: 0;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(184, 164, 216, 0.15);
  z-index: -1;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-menu li { list-style: none; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  transition: color 0.15s, padding-left 0.15s, background 0.15s;
}

.nav-dropdown-menu a:hover {
  color: var(--lavender);
  padding-left: 1.75rem;
  background: rgba(184, 164, 216, 0.06);
}

.nav-dropdown-menu a::after { display: none; }

.nav-mobile-sub {
  padding-left: 2rem !important;
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.42) !important;
  border-bottom-color: rgba(255, 255, 255, 0.03) !important;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--black);
  z-index: 1000;
  border-bottom: 1px solid rgba(184, 164, 216, 0.1);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(15, 15, 15, 0.96);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-logo-mark {
  height: 5rem;
  width: auto;
  display: block;
  flex-shrink: 0;
  margin-left: 3.15rem;
}
.nav-logo span { color: var(--lavender); }
.nav-logo:hover { color: var(--lavender-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--lavender);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--lavender); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid rgba(184, 164, 216, 0.12);
  padding: 0.5rem 1.5rem 1.5rem;
  z-index: 999;
  flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.05em;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile a:hover { color: var(--lavender); padding-left: 0.5rem; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--black-soft);
  color: rgba(255, 255, 255, 0.55);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(184, 164, 216, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.85rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s;
}
.social-link:hover {
  border-color: var(--lavender);
  color: var(--lavender);
  transform: translateY(-3px);
}
.social-link svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer-credit {
  margin-top: 0.4rem;
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--white); }

/* ────────────────────────────────────────────────────────────
   HOME PAGE
   ──────────────────────────────────────────────────────────── */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184, 164, 216, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 55vw; height: 55vw;
  background: radial-gradient(ellipse, rgba(26, 138, 138, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.3s forwards;
}
.hero-line-1 {
  display: block;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
  margin-bottom: 0.15em;
}
.hero-line-2 {
  display: block;
  font-size: clamp(4rem, 12vw, 10.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.hero-line-3 {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--lavender);
  letter-spacing: 0.06em;
  margin-top: 0.4em;
}

.hero-rule {
  width: 100px; height: 2px;
  background: linear-gradient(90deg, var(--lavender), var(--teal));
  margin: 2.5rem 0;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--lavender));
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 0.6; }
}

/* Mission Strip */
.mission-strip {
  background: var(--lavender-light);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-strip::before {
  content: '\201C';
  position: absolute;
  top: -0.25em; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 22rem; line-height: 1;
  color: rgba(184, 164, 216, 0.1);
  pointer-events: none;
  user-select: none;
}
.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.mission-quote em {
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
}

/* Programs Section */
.programs { padding: var(--section-pad) 0; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.program-card {
  border-top: 3px solid var(--teal);
  padding: 2.5rem 2rem 2.5rem;
  background: var(--white);
  border: 1px solid rgba(26, 138, 138, 0.1);
  border-top: 3px solid var(--teal);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
}
.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.09);
}
.program-icon {
  width: 46px; height: 46px;
  color: var(--teal);
  margin-bottom: 1.5rem;
  stroke-width: 1.5;
}
.program-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.program-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 1.75rem;
}
.program-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.program-link:hover { gap: 0.75rem; }

/* Events Section */
.events-section {
  background: var(--black);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.events-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40%; height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.overline {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1rem;
}
.events-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.events-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.72;
}
.dates-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 0.5rem;
}
.date-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background: rgba(184, 164, 216, 0.1);
  border: 1px solid rgba(184, 164, 216, 0.2);
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
}
.date-chip:hover {
  background: rgba(184, 164, 216, 0.2);
  border-color: var(--lavender);
}

/* Testimonials */
.testimonials-section {
  background: var(--lavender-light);
  padding: var(--section-pad) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--white);
  padding: 3rem;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem; line-height: 0.65;
  color: var(--lavender);
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

/* CTA Banner */
.cta-banner {
  background: var(--lavender);
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  text-align: center;
}
.cta-banner-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(15, 15, 15, 0.6);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  line-height: 1.65;
}

/* ────────────────────────────────────────────────────────────
   ABOUT PAGE
   ──────────────────────────────────────────────────────────── */
.about-hero {
  min-height: 70vh;
  padding-top: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-hero-left {
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 6rem clamp(2rem, 6vw, 5rem);
}
.about-hero-right {
  background: linear-gradient(140deg, var(--teal) 0%, var(--teal-dark) 40%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}
.about-hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 38px,
    rgba(255, 255, 255, 0.03) 38px,
    rgba(255, 255, 255, 0.03) 39px
  );
}
.about-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.about-headline span { color: var(--lavender); }

.mission-section {
  background: var(--lavender-light);
  padding: var(--section-pad) 0;
  text-align: center;
}
.mission-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.mission-big em { color: var(--teal); font-style: normal; }
.mission-section p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.72;
}

.visibility-section {
  background: var(--black);
  padding: var(--section-pad) 0;
}
.visibility-inner { max-width: 760px; }
.visibility-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.visibility-section p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}
.topic-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(26, 138, 138, 0.3);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.topic-tag:hover { border-color: var(--teal); color: var(--white); }
.topic-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.methodology-section {
  background: var(--white);
  padding: var(--section-pad) 0;
}
.method-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.method-aside {
  padding-top: 0.5rem;
}
.method-aside .section-label { margin-bottom: 0.75rem; }
.method-label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}
.method-body .section-heading { margin-bottom: 1.25rem; }
.method-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.board-section {
  background: var(--lavender-light);
  padding: var(--section-pad) 0;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.board-card {
  padding: 2.25rem 2rem;
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.board-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}
.board-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--lavender));
  margin: 0 0 1.25rem;
  flex-shrink: 0;
}
.board-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.board-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}
.board-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(26, 138, 138, 0.12);
  padding-top: 0.85rem;
  margin-top: auto;
}

.advisory-section {
  background: var(--white);
  padding: var(--section-pad) 0;
}
.advisory-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 620px;
  margin-top: 2.5rem;
}
.advisory-item {
  padding: 1.1rem 0 1.1rem 1.5rem;
  border-left: 3px solid var(--teal);
  background: var(--lavender-faint);
}
.advisory-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.advisory-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.advisory-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Leadership teaser (about.html) */
.leadership-teaser {
  background: var(--white);
  padding: var(--section-pad) 0;
}
.leadership-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 700px;
  margin-top: 2rem;
}
.leadership-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(26, 138, 138, 0.12);
  border-top: 3px solid var(--teal);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  color: inherit;
}
.leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}
.leadership-card-count {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.leadership-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.leadership-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.leadership-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}
.leadership-card:hover .leadership-card-link { gap: 0.65rem; }

/* ────────────────────────────────────────────────────────────
   OUR WORK PAGE
   ──────────────────────────────────────────────────────────── */
.page-hero {
  min-height: 55vh;
  background: var(--black);
  padding-top: var(--nav-height);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 138, 138, 0.1) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  padding: 4rem 0;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.48);
  max-width: 540px;
  line-height: 1.65;
}

.work-block { padding: var(--section-pad) 0; }
.work-block--white { background: var(--white); }
.work-block--soft   { background: var(--lavender-light); }
.work-block--dark   { background: var(--black); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.img-placeholder {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.img-placeholder--teal {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, rgba(26, 138, 138, 0.5) 100%);
}
.img-placeholder--lavender {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-mid) 60%, rgba(184, 164, 216, 0.5) 100%);
}
.img-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 20px,
    rgba(255, 255, 255, 0.04) 20px, rgba(255, 255, 255, 0.04) 21px
  );
}

.work-overline { color: var(--teal); }
.work-overline--light { color: var(--lavender); }

.work-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}
.work-title--dark { color: var(--white); }

.work-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.work-body--dark { color: rgba(255, 255, 255, 0.52); }

.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}
.prog-tag {
  padding: 0.4rem 1rem;
  background: var(--teal-light-bg);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.equinimity-block {
  background: var(--black);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.equinimity-block::before {
  content: 'EQUINIMITY';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(10vw, 16vw, 18rem);
  font-weight: 800;
  color: rgba(184, 164, 216, 0.04);
  white-space: nowrap;
  pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}
.equinimity-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.intl-block {
  background: var(--white);
  padding: var(--section-pad) 0;
}
.intl-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 3.5rem;
  border: 2px solid var(--teal);
  text-align: center;
}
.intl-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.intl-card p {
  color: var(--text-muted);
  line-height: 1.72;
}

.collab-cta {
  background: var(--teal);
  padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center;
}
.collab-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ────────────────────────────────────────────────────────────
   REPERTORY PAGE
   ──────────────────────────────────────────────────────────── */
.overview-block {
  background: var(--lavender-light);
  padding: var(--section-pad) 0;
  text-align: center;
}
.overview-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.overview-block p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.72;
}
.venue-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.venue-tag {
  padding: 0.4rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(26, 138, 138, 0.15);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 500;
}

.dancers-block {
  background: var(--white);
  padding: var(--section-pad) 0;
}
.dancers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.dancer-card {
  text-align: center;
  padding: 2rem 1rem;
  transition: transform 0.3s;
}
.dancer-card:hover { transform: translateY(-5px); }
.dancer-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--lavender-mid));
  margin: 0 auto 1.25rem;
}
.dancer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.dancer-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.dancer-bio-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 3rem;
}
.dancer-bio-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(26, 138, 138, 0.1);
  border-left: 3px solid var(--teal);
  transition: box-shadow 0.3s;
}
.dancer-bio-card:hover { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07); }
.dancer-bio-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--lavender-mid));
  flex-shrink: 0;
}
.dancer-bio-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.dancer-bio-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}
.dancer-bio-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.dancer-bio-quote {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--lavender);
  background: var(--lavender-faint);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-dark);
}
.dancer-bio-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  transition: color 0.2s;
}
.dancer-bio-link:hover { color: var(--teal-dark); }
.dancer-memorial {
  border-left-color: var(--lavender);
  background: var(--lavender-faint);
}
.dancer-memorial-avatar {
  background: linear-gradient(135deg, var(--lavender), var(--lavender-mid));
}
.dancer-memorial-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 0.3rem;
}

.sharings-block {
  background: var(--black);
  padding: var(--section-pad) 0;
}
.sharings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.sharing-card {
  padding: 2.5rem;
  border-top: 3px solid var(--lavender);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.25s;
}
.sharing-card:hover { background: rgba(184, 164, 216, 0.07); }
.sharing-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(184, 164, 216, 0.12);
  color: var(--lavender);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.sharing-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.sharing-location {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.sharing-location::before {
  content: '◎';
  font-size: 0.7rem;
  color: var(--teal);
}

.videos-block {
  background: var(--lavender-light);
  padding: var(--section-pad) 0;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.video-item { cursor: pointer; }
.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--black-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
}
.video-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 138, 138, 0.12) 0%,
    transparent 50%,
    rgba(184, 164, 216, 0.08) 100%
  );
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.video-item:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: var(--lavender);
  background: rgba(184, 164, 216, 0.15);
}
.play-btn svg {
  width: 20px; height: 20px;
  fill: var(--white);
  margin-left: 3px;
}
.video-label {
  padding: 0.85rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.video-sublabel {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.videos-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
}

.donate-why-header {
  max-width: 700px;
  margin-bottom: 2.5rem;
}
.donate-why-header p {
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 1rem;
  margin-top: 0.75rem;
}
.donate-goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.donate-goal-card {
  padding: 2.25rem 2rem;
  background: var(--white);
  border-top: 3px solid var(--teal);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
}
.donate-goal-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.85rem;
}
.donate-goal-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
}

/* Circle of Support */
.supporters-section {
  background: var(--black);
  padding: var(--section-pad) 0;
}
.supporters-section .section-header { color: var(--white); }
.supporters-section .section-label { color: var(--lavender); }
.supporters-section .section-heading { color: var(--white); }

.supporters-intro {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}
.supporters-bridge {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin: 2.5rem 0 1.5rem;
  letter-spacing: 0.01em;
}

.supporters-org-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.supporters-org-grid--sm { max-width: 600px; }

.supporter-org-card {
  padding: 1.1rem 1.75rem;
  border: 1px solid rgba(184, 164, 216, 0.2);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: border-color 0.2s, background 0.2s;
}
.supporter-org-card:hover {
  border-color: var(--lavender);
  background: rgba(184, 164, 216, 0.06);
}
.supporter-org-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

.supporters-names {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  max-width: 860px;
}

.supporters-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 860px;
}
.supporter-partner {
  padding: 0.85rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  color: var(--lavender);
  border-left: 2px solid rgba(184, 164, 216, 0.25);
  transition: border-color 0.2s, color 0.2s;
}
.supporter-partner:hover {
  border-color: var(--lavender);
  color: var(--white);
}

.donate-other {
  background: var(--lavender-faint);
  padding: var(--section-pad) 0;
}
.donate-other-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 820px;
  margin: 0 auto;
}
.donate-other-card {
  padding: 2.25rem 2rem;
  background: var(--white);
  border-left: 3px solid var(--teal);
}
.donate-other-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.4rem 0 0.85rem;
  color: var(--text-dark);
}
.donate-other-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.68;
}
.donate-other-card strong { color: var(--text-dark); }
.donate-other-card address {
  font-style: normal;
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 500;
}
.donate-other-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: color 0.2s;
}
.donate-other-link:hover { color: var(--teal-dark); }

/* ────────────────────────────────────────────────────────────
   CONTACT PAGE
   ──────────────────────────────────────────────────────────── */
.contact-intro {
  background: var(--lavender-faint);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.contact-questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 860px;
}
.contact-question {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  background: var(--white);
  border-left: 3px solid var(--teal);
}
.contact-q-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.05rem;
}
.contact-question p {
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--text-dark);
}
.contact-question strong { color: var(--teal-dark); font-weight: 600; }
.contact-section {
  padding: var(--section-pad) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.form-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input::placeholder { color: rgba(107, 114, 128, 0.6); }
.form-input:focus { outline: none; border-color: var(--teal); }
.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  cursor: pointer;
}
.contact-info {
  background: var(--black);
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-detail p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.contact-detail a { color: var(--lavender); transition: color 0.2s; }
.contact-detail a:hover { color: var(--white); }
.contact-social { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.contact-note {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
}
.contact-note p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
}

/* ────────────────────────────────────────────────────────────
   DONATE PAGE
   ──────────────────────────────────────────────────────────── */
.donate-intro {
  padding: var(--section-pad) 0;
  background: var(--lavender-faint);
}
.donate-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.donate-intro-layout p { color: var(--text-muted); line-height: 1.75; }
.donate-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
.donate-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.donate-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.donate-tiers-section {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.tier-card {
  background: var(--black-card);
  padding: 2rem 1.5rem 1.75rem;
  border: 1px solid rgba(184, 164, 216, 0.08);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.tier-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}
.tier-card.featured { border-color: rgba(184, 164, 216, 0.35); }
.tier-card.featured:hover { border-color: var(--lavender); }
.tier-amount {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
  line-height: 1;
}
.tier-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.tier-card.featured .tier-name { color: var(--lavender); }
.tier-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  flex: 1;
}

.donate-impact-section {
  padding: var(--section-pad) 0;
  background: var(--lavender-faint);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.impact-card {
  padding: 2.25rem 2rem;
  background: var(--white);
  border-left: 3px solid var(--teal);
}
.impact-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.impact-card-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.impact-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.donate-custom-section {
  padding: var(--section-pad) 0;
  text-align: center;
}
.donate-custom-box {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
.donate-input-wrap {
  display: flex;
  border: 1px solid rgba(26, 26, 26, 0.2);
}
.donate-currency {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  background: var(--lavender-faint);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-muted);
  border-right: 1px solid rgba(26, 26, 26, 0.15);
  user-select: none;
}
.donate-amount-input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-dark);
  -moz-appearance: textfield;
}
.donate-amount-input::-webkit-outer-spin-button,
.donate-amount-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.donate-amount-input:focus { outline: none; }
.donate-fine-print {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-line-1 { font-size: clamp(1.5rem, 5vw, 2.5rem); }
  .hero-line-2 { font-size: clamp(3.5rem, 14vw, 7rem); }
  .hero-line-3 { font-size: clamp(1.4rem, 4.5vw, 2.5rem); }

  .programs-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .events-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .about-hero { grid-template-columns: 1fr; min-height: auto; }
  .about-hero-right { display: none; }
  .method-layout { grid-template-columns: 1fr; gap: 2rem; }
  .board-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .leadership-cards { grid-template-columns: 1fr; max-width: 100%; }

  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }
  .img-placeholder { order: -1; }

  .dancers-grid { grid-template-columns: repeat(2, 1fr); }
  .dancer-bio-card { grid-template-columns: 1fr; }
  .dancer-bio-avatar { margin: 0 auto; }
  .dancer-bio-content { text-align: left; }
  .sharings-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-questions { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .donate-intro-layout { grid-template-columns: 1fr; gap: 3rem; }
  .donate-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .donate-goals-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .donate-other-grid { grid-template-columns: 1fr; }
  .supporters-partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .supporters-partners-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .intl-card { padding: 2rem 1.5rem; }
  .tier-grid { grid-template-columns: 1fr; }
}
