/* ============================================
   DRY MEMORIAL ACADEMY — STYLES
   Palette: Indigo Ink + Gold
   Fonts: Cormorant Garamond + Manrope
============================================ */

:root {
  --ink-deep:    #1B0A3C;
  --ink-mid:     #3D1E7C;
  --ink-light:   #7B68EE;
  --ink-pale:    #E8E0F0;
  --gold:        #C9A87C;
  --gold-light:  #E8D5B0;
  --gold-dark:   #9A7A50;
  --white:       #FAFAF8;
  --off-white:   #F4F0F9;
  --text-dark:   #1B0A3C;
  --text-mid:    #4A3570;
  --text-light:  #8B7BAA;
  --border:      rgba(201,168,124,0.2);
  --shadow:      0 20px 60px rgba(27,10,60,0.15);
  --shadow-sm:   0 4px 20px rgba(27,10,60,0.08);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink-deep);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--ink-mid); }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold-light); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}
.section-sub--light { color: rgba(232,224,240,0.85); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-sub { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink-deep);
  box-shadow: 0 4px 20px rgba(201,168,124,0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,124,0.5);
}
.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--ink-mid);
  border: 1.5px solid var(--ink-mid);
}
.btn--outline:hover {
  background: var(--ink-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ---- SCROLL REVEAL ---- */
.reveal, .reveal-left {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-30px); }
.reveal.visible, .reveal-left.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   NAV
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(27,10,60,0.97);
  backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__crest { width: 36px; height: 36px; flex-shrink: 0; }
.nav__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--ink-deep) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--ink-deep) 0%, #2A0E5C 50%, #1B0A3C 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--ink-light), transparent);
  top: -200px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold), transparent);
  bottom: -100px; left: 10%;
  opacity: 0.2;
  animation: float2 10s ease-in-out infinite;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #9B59B6, transparent);
  top: 40%; left: 40%;
  opacity: 0.2;
  animation: float1 12s ease-in-out infinite reverse;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,124,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,124,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,124,0.4);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  background: rgba(201,168,124,0.08);
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
.hero__title--light { font-weight: 300; opacity: 0.7; }
.hero__title em { font-style: italic; font-weight: 300; color: var(--ink-pale); }
.hero__title--accent {
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(232,224,240,0.8);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__stats {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2.5rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,124,0.2);
  border-radius: var(--radius-lg);
  width: fit-content;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-sym { font-size: 1.5rem; }
.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(232,224,240,0.7);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,124,0.3);
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201,168,124,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   ABOUT
============================================ */
.about {
  padding: 7rem 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__visual {
  position: relative;
  height: 560px;
}
.about__img-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}
.about__img-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink-deep);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,124,0.4);
  z-index: 2;
}
.about__img-badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about__img-badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.about__body {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.about__pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.about__pillar:hover {
  background: var(--ink-pale);
  transform: translateX(4px);
}
.about__pillar-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--ink-mid);
  margin-top: 2px;
}
.about__pillar strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-deep);
  margin-bottom: 0.25rem;
}
.about__pillar p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   PROGRAMS
============================================ */
.programs {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--ink-deep) 0%, #2A0E5C 100%);
  position: relative;
  overflow: hidden;
}
.programs__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.programs__orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(123,104,238,0.2), transparent);
  top: -200px; right: -200px;
  border-radius: 50%;
  filter: blur(60px);
}
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.program-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,124,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.program-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,124,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.program-card:hover::before { opacity: 1; }
.program-card__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.program-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.program-card p {
  font-size: 0.9rem;
  color: rgba(232,224,240,0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.program-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,124,0.12);
  border: 1px solid rgba(201,168,124,0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* ============================================
   QUOTE BANNER
============================================ */
.quote-banner {
  padding: 5rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.quote-banner__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-deep);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.quote-banner__mark {
  font-size: 4rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.5rem;
  font-style: normal;
}
.quote-banner__cite {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

/* ============================================
   VALUES
============================================ */
.values {
  padding: 7rem 0;
  background: var(--white);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-item {
  padding: 2.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  background: var(--white);
}
.value-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.value-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ink-pale);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.value-item:hover .value-item__num { color: var(--gold-light); }
.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink-deep);
  margin-bottom: 0.75rem;
}
.value-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   NEWS
============================================ */
.news {
  padding: 7rem 0;
  background: var(--off-white);
}
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.news__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.news-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-card--featured .news-card__img { height: 280px; }
.news-card__img img { transition: transform 0.6s ease; }
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__cat {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink-deep);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.news-card__body {
  padding: 1.5rem;
}
.news-card__body time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}
.news-card__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink-deep);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.news-card--featured .news-card__body h3 { font-size: 1.5rem; }
.news-card__body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.news-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
  transition: color 0.3s, gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.news-card__link:hover { color: var(--gold-dark); }

/* ============================================
   CONTACT
============================================ */
.contact {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--ink-deep) 0%, #2A0E5C 100%);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,104,238,0.15), transparent);
  top: -100px; left: -100px;
  border-radius: 50%;
  filter: blur(60px);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__sub {
  color: rgba(232,224,240,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(232,224,240,0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}
.contact__detail svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.contact__form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,124,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(232,224,240,0.7);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,124,0.2);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--ink-deep); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(201,168,124,0.15);
  border: 1px solid rgba(201,168,124,0.4);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #0D0520;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201,168,124,0.15);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__logo svg { width: 36px; height: 36px; }
.footer__logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--gold-light); }
.footer__director {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
  padding: 0.85rem 1.1rem;
  background: rgba(201,168,124,0.08);
  border: 1px solid rgba(201,168,124,0.25);
  border-radius: var(--radius);
  width: fit-content;
}
.footer__director-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.footer__director-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(27,10,60,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.25rem; }
  .nav__toggle { display: flex; z-index: 1001; }

  .hero { padding: 7rem 1.5rem 5rem; }
  .hero__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
  }
  .hero__stat-divider { display: none; }
  .hero__scroll { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .about__visual { height: 350px; }

  .programs__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }

  .news__header { flex-direction: column; align-items: flex-start; }
  .news__grid { grid-template-columns: 1fr; }

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

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .values__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}