/* ============================================================
   ALTER SPERO — style.css
   ============================================================ */

:root {
  --bg:        #080808;
  --bg2:       #0e0e0e;
  --card:      #131313;
  --card-h:    #1a1a1a;
  --gold:      #C8A951;
  --gold-lt:   #E2C97E;
  --gold-dk:   #9A7A2E;
  --fg:        #F0EBE3;
  --fg2:       #9A9282;
  --fg3:       #565050;
  --bdr:       #1e1e1e;
  --bdr2:      #2a2a2a;
  --r:         4px;
  --r2:        8px;
  --ease:      0.3s ease;
  --sh:        0 4px 28px rgba(0,0,0,.45);
  --sh2:       0 8px 48px rgba(0,0,0,.65);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.section-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  margin-top: .5rem;
  color: var(--fg2);
  font-size: 1rem;
}

.section-intro {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--fg2);
  font-size: .95rem;
  line-height: 1.75;
}

.divider {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 1.4rem 0 2.5rem;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--gold   { background: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1.9rem;
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
}
.btn-primary  { background: var(--gold); color: #080808; }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,169,81,.35); }

.btn-outline  { background: transparent; color: var(--fg); border: 1px solid var(--bdr2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-sm       { padding: .55rem 1.25rem; font-size: .82rem; }
.btn-full     { width: 100%; justify-content: center; }

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.15rem;
  border: 1px solid rgba(200,169,81,.35);
  border-radius: var(--r);
  font-size: .82rem;
  font-weight: 500;
  color: var(--gold-lt);
  transition: all var(--ease);
  background: transparent;
}
.btn-outline-sm:hover { border-color: var(--gold); background: rgba(200,169,81,.07); transform: translateY(-1px); }

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.15rem;
  background: var(--gold);
  color: #080808;
  border-radius: var(--r);
  font-size: .82rem;
  font-weight: 600;
  transition: all var(--ease);
  border: none;
}
.btn-gold-sm:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,169,81,.4); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  padding: 1.4rem 0;
  transition: padding var(--ease), background var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: .9rem 0;
  border-bottom-color: var(--bdr);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.logo-main { color: var(--fg); }
.logo-gold { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: .83rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--fg2);
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: #080808 !important;
  padding: .45rem 1.1rem;
  border-radius: var(--r);
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-lt) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  transition: all var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1460661419201-fd4cecdf8a8b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,.72) 0%,
    rgba(8,8,8,.52) 45%,
    rgba(8,8,8,.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp .7s .15s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .7s .35s forwards;
}

.hero-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  color: var(--gold-lt);
  max-width: 680px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
  border: none;
  opacity: 0;
  animation: fadeUp .7s .55s forwards;
}

.hero-beliefs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp .7s .75s forwards;
}
.hero-beliefs li {
  font-size: .875rem;
  color: rgba(240,235,227,.62);
  letter-spacing: .01em;
}

.hero-actions {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .95s forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.1rem;
  z-index: 2;
  animation: bounce 2.2s infinite;
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section      { padding: 5.5rem 0; }
.section-dark { background: var(--bg2); }

/* Warm gold-tinted dark */
.section-warm {
  background: radial-gradient(ellipse at 60% 0%, #100d00 0%, var(--bg) 65%);
  position: relative;
}
.section-warm::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A951' fill-opacity='0.025'%3E%3Cpath d='M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

/* ============================================================
   01 · ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-text p {
  color: var(--fg2);
  font-size: .96rem;
  line-height: 1.82;
  margin-bottom: 1.15rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--bdr2);
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--fg3);
}

.about-image { position: relative; }
.about-image img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: var(--r2);
}
.img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(8,8,8,.88) 0%, transparent 100%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .9rem;
  color: var(--gold-lt);
  border-radius: 0 0 var(--r2) var(--r2);
  text-align: center;
}

/* ============================================================
   02 · MVV
   ============================================================ */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.mvv-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  padding: 2.25rem 1.85rem;
  transition: all var(--ease);
}
.mvv-card:hover {
  border-color: var(--bdr2);
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.mvv-card--accent {
  border-color: var(--gold-dk);
  background: linear-gradient(150deg, #111000 0%, var(--card) 100%);
}

.mvv-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(200,169,81,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 1.35rem;
}

.mvv-card h3 { font-size: 1.2rem; margin-bottom: .85rem; }
.mvv-card p  { color: var(--fg2); font-size: .92rem; line-height: 1.78; }

.values-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .5rem;
}
.values-tags span {
  background: rgba(200,169,81,.09);
  border: 1px solid rgba(200,169,81,.2);
  color: var(--gold-lt);
  padding: .3rem .82rem;
  border-radius: 100px;
  font-size: .77rem;
  font-weight: 500;
}

/* ============================================================
   03 · DIRECTIONS
   ============================================================ */
.dir-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.dir-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--ease);
}
.dir-card:hover {
  border-color: var(--bdr2);
  transform: translateY(-4px);
  box-shadow: var(--sh2);
}

.dir-img { height: 210px; overflow: hidden; }
.dir-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.dir-card:hover .dir-img img { transform: scale(1.06); }

.dir-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dir-icon { color: var(--gold); font-size: 1.4rem; margin-bottom: .85rem; }
.dir-body h3 { font-size: 1.2rem; margin-bottom: .65rem; }
.dir-body p  { color: var(--fg2); font-size: .92rem; flex: 1; }
.dir-body blockquote {
  margin-top: 1.1rem;
  padding-left: .9rem;
  border-left: 2px solid var(--gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .875rem;
  color: var(--gold-lt);
}

/* ============================================================
   04 · INITIATIVES
   ============================================================ */
.init-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.init-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  overflow: hidden;
  transition: all var(--ease);
}
.init-card:hover { border-color: var(--gold-dk); transform: translateY(-3px); box-shadow: var(--sh); }

.init-thumb { height: 165px; overflow: hidden; }
.init-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.init-card:hover .init-thumb img { transform: scale(1.06); }

.init-body {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
}
.init-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(200,169,81,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .95rem;
}
.init-body h3 { font-size: .97rem; margin-bottom: .3rem; }
.init-body p  { font-size: .84rem; color: var(--fg2); line-height: 1.55; }

/* ============================================================
   05 · SUPPORT
   ============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

.support-card {
  grid-column: span 2;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,169,81,.13);
  border-radius: var(--r2);
  padding: 1.85rem 1.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--ease);
}
/* Center the last two cards in the 5-item grid */
.support-card:nth-child(4) { grid-column: 2 / span 2; }
.support-card:nth-child(5) { grid-column: 4 / span 2; }

.support-card:hover {
  background: rgba(200,169,81,.05);
  border-color: rgba(200,169,81,.28);
  transform: translateY(-4px);
}
.support-card--gold {
  border-color: rgba(200,169,81,.3);
  background: rgba(200,169,81,.04);
}

.support-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(200,169,81,.1);
  border: 1px solid rgba(200,169,81,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.support-card h3 { font-size: 1.05rem; margin-bottom: .65rem; }
.support-card p  { font-size: .875rem; color: var(--fg2); line-height: 1.62; flex: 1; margin-bottom: 1.25rem; }

/* ============================================================
   06 · JOURNAL
   ============================================================ */
.journal-tabs {
  display: flex;
  border-bottom: 1px solid var(--bdr2);
  margin-bottom: 2.25rem;
  overflow-x: auto;
  gap: 0;
}
.j-tab {
  background: none;
  border: none;
  padding: .8rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: .83rem;
  color: var(--fg3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--ease);
  white-space: nowrap;
  letter-spacing: .04em;
}
.j-tab:hover    { color: var(--fg2); }
.j-tab.active   { color: var(--gold); border-bottom-color: var(--gold); }

/* Featured article */
.art-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 1.8rem;
  transition: border-color var(--ease);
}
.art-featured:hover { border-color: var(--bdr2); }

.art-featured-img {
  position: relative;
  overflow: hidden;
}
.art-featured-img img {
  width: 100%; height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform .5s ease;
}
.art-featured:hover .art-featured-img img { transform: scale(1.04); }

.art-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: #080808;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 2px;
}

.art-featured-body {
  padding: 2.5rem 2.5rem 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.art-meta {
  display: flex;
  gap: 1.1rem;
  margin-bottom: .9rem;
  font-size: .78rem;
  color: var(--fg3);
}
.art-meta i { margin-right: .35rem; }

.art-featured-body h2 {
  font-size: 1.55rem;
  line-height: 1.35;
  margin-bottom: .9rem;
}
.art-featured-body p {
  font-size: .88rem;
  color: var(--fg2);
  line-height: 1.72;
  margin-bottom: .7rem;
}

/* Secondary grid */
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.art-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  overflow: hidden;
  transition: all var(--ease);
}
.art-card:hover { border-color: var(--bdr2); transform: translateY(-4px); box-shadow: var(--sh); }

.art-card-img { height: 175px; overflow: hidden; }
.art-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.art-card:hover .art-card-img img { transform: scale(1.05); }

.art-card-body { padding: 1.4rem; }

.art-cat {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .45rem;
}

.art-card-body h4 { font-size: .97rem; line-height: 1.4; margin-bottom: .45rem; }
.art-card-body p  { font-size: .83rem; color: var(--fg3); line-height: 1.58; margin-bottom: .9rem; }

.read-more {
  font-size: .8rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 500;
  transition: gap var(--ease);
}
.read-more:hover { gap: .72rem; }

/* ============================================================
   07 · CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { font-size: 1.65rem; margin-bottom: .9rem; line-height: 1.3; }
.contact-info > p { color: var(--fg2); font-size: .93rem; line-height: 1.78; margin-bottom: 1.85rem; }

.contact-details { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.75rem; }
.c-item { display: flex; align-items: center; gap: .7rem; font-size: .88rem; color: var(--fg2); }
.c-item i { color: var(--gold); width: 15px; flex-shrink: 0; }
.c-item a:hover { color: var(--gold); }

.social-row { display: flex; gap: .65rem; flex-wrap: wrap; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--bdr2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--fg2);
  transition: all var(--ease);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,81,.08);
  transform: translateY(-2px);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--fg2);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--bdr2);
  border-radius: var(--r);
  padding: .82rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: var(--fg);
  outline: none;
  transition: border-color var(--ease);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: #131313; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p {
  font-size: .85rem;
  color: var(--fg3);
  line-height: 1.72;
  max-width: 290px;
  margin-top: .75rem;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a {
  font-size: .855rem;
  color: var(--fg3);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-tagline {
  margin-top: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .85rem;
  color: var(--fg3);
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--bdr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .78rem; color: var(--fg3); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-9px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image   { order: -1; }
  .about-image img { height: 320px; }
  .mvv-grid      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .support-grid  { grid-template-columns: repeat(2, 1fr); }
  .support-card,
  .support-card:nth-child(4),
  .support-card:nth-child(5) { grid-column: span 1; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 270px;
    background: rgba(8,8,8,.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.75rem 2rem;
    gap: 1.4rem;
    border-left: 1px solid var(--bdr2);
    transition: right var(--ease);
    z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: .95rem; color: var(--fg); }

  /* Hero */
  .hero-title  { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }

  /* Sections */
  .section { padding: 4rem 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .dir-grid  { grid-template-columns: 1fr; }
  .init-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .art-featured { grid-template-columns: 1fr; }
  .art-featured-img img { min-height: 240px; }
  .art-featured-body { padding: 1.5rem; }
  .art-grid  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  .about-stats { grid-template-columns: 1fr; }
  .mvv-card { padding: 1.5rem 1.25rem; }
}
