/* ============================================================
   NCI03 Alumni & Educational Platform — Static Website
   Design System: Outfit (sans) + Playfair Display (serif)
   Palette: Forest Green (#1b4d35) + Warm Amber (#f2920f)
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --bg:          hsl(40, 33%, 98%);
  --bg-alt:      hsl(40, 33%, 96%);
  --fg:          hsl(160, 20%, 15%);
  --primary:     hsl(150, 45%, 20%);
  --primary-fg:  hsl(0, 0%, 100%);
  --amber:       hsl(35, 90%, 55%);
  --amber-fg:    hsl(160, 20%, 15%);
  --muted:       hsl(150, 15%, 92%);
  --muted-fg:    hsl(150, 15%, 45%);
  --border:      hsl(150, 15%, 85%);
  --card:        hsl(0, 0%, 100%);
  --card-border: hsl(150, 15%, 90%);
  --radius:      0.75rem;
  --radius-lg:   1.25rem;
  --radius-xl:   2rem;
  --sans:        'Outfit', system-ui, sans-serif;
  --serif:       'Playfair Display', Georgia, serif;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.08);
}

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

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

body {
  font-family: var(--sans);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

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

/* ── Fade-in Animation ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────
   NAVBAR
────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ── Skip nav: hidden visually, shown on keyboard focus only ── */
#skip-nav a {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#skip-nav a:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10000;
  overflow: visible;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.navbar__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-family: var(--serif);
  font-weight: 700;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted-fg);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--fg); background: var(--muted); }
.nav-link--active { color: var(--fg); background: var(--muted); }

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--amber);
  color: var(--amber-fg);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius);
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.navbar__cta:hover { opacity: .9; transform: translateY(-1px); }

/* Mobile burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

#mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid var(--border);
}
#mobile-menu.is-open { display: flex; }
#mobile-menu .nav-link { padding: 0.625rem 0.75rem; }
#mobile-menu .navbar__cta { margin-top: 0.5rem; justify-content: center; }

@media (max-width: 767px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
}

/* ──────────────────────────────────
   BUTTONS
────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .2s, background .2s, color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: 0 4px 14px hsla(150,45%,20%,.25);
}
.btn--primary:hover { box-shadow: 0 6px 20px hsla(150,45%,20%,.35); }

.btn--amber {
  background: var(--amber);
  color: var(--amber-fg);
  box-shadow: 0 4px 14px hsla(35,90%,55%,.3);
}
.btn--amber:hover { box-shadow: 0 6px 20px hsla(35,90%,55%,.4); }

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn--outline:hover { background: var(--muted); }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); }

.btn--lg { font-size: 1.0625rem; padding: 0.875rem 2rem; }
.btn--sm { font-size: 0.875rem; padding: 0.5rem 1rem; }

/* ──────────────────────────────────
   BADGES
────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid transparent;
}
.badge--green   { background: hsla(150,45%,20%,.1); color: var(--primary); border-color: hsla(150,45%,20%,.2); }
.badge--amber   { background: hsla(35,90%,55%,.12); color: hsl(35,70%,35%); border-color: hsla(35,90%,55%,.25); }
.badge--blue    { background: hsla(210,90%,55%,.1); color: hsl(210,70%,35%); border-color: hsla(210,90%,55%,.2); }
.badge--muted   { background: var(--muted); color: var(--muted-fg); border-color: var(--border); }
.badge--glass   { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); backdrop-filter: blur(8px); }

/* ──────────────────────────────────
   CARD
────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* ──────────────────────────────────
   HERO SECTIONS
────────────────────────────────── */
.hero {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero--primary {
  background: var(--primary);
  color: var(--primary-fg);
}

.hero--light {
  background: var(--bg-alt);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero--light .hero__eyebrow {
  background: var(--card);
  border-color: var(--border);
  color: var(--muted-fg);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero--primary .hero__title { color: #fff; }

.hero__title .amber { color: var(--amber); }
.hero__title .underline-accent {
  position: relative;
  display: inline-block;
}
.hero__title .underline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 12px;
  background: hsla(35,90%,55%,.3);
  border-radius: 3px;
  transform: rotate(-0.5deg);
  z-index: -1;
}

.hero__desc {
  font-size: 1.1875rem;
  color: rgba(255,255,255,.8);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero--light .hero__desc { color: var(--muted-fg); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ──────────────────────────────────
   STATS BAR
────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 2.5rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stats-bar__item {
  padding: 1rem 0;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stats-bar__item:last-child { border-right: none; }

.stats-bar__num {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stats-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ──────────────────────────────────
   SECTION UTILITIES
────────────────────────────────── */
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }

.section__header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section__header--left { text-align: left; margin: 0 0 3rem; }

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-family: var(--serif);
  margin-bottom: 1rem;
  color: var(--fg);
}

.section__title--white { color: #fff; }

.section__desc {
  font-size: 1.0625rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

.section__header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ──────────────────────────────────
   GRID LAYOUTS
────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ──────────────────────────────────
   PILLAR CARDS
────────────────────────────────── */
.pillar-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.pillar-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: background .2s;
}
.pillar-card:hover .pillar-card__icon { background: var(--primary); color: #fff; }

.pillar-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.625rem;
}

.pillar-card__desc {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* Vision card (2-col flex) */
.vision-card {
  display: flex;
  gap: 1.25rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.vision-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.vision-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  transition: background .2s, transform .2s;
}
.vision-card:hover .vision-card__icon { transform: scale(1.1); }
.vision-card__body h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.vision-card__body p {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ──────────────────────────────────
   PROJECT CARDS
────────────────────────────────── */
.project-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
  overflow: hidden;
}
.project-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }

.project-card__header { padding: 1.625rem 1.625rem 0; }

.project-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.project-card__cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: hsla(150,45%,20%,.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.project-card__title {
  font-family: var(--serif);
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 0.625rem;
  transition: color .2s;
}
.project-card:hover .project-card__title { color: var(--primary); }

.project-card__desc {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card__body {
  flex: 1;
  padding: 1.25rem 1.625rem;
}

/* Progress bar */
.progress-wrap { background: var(--muted); border-radius: var(--radius); padding: 1rem; }
.progress-wrap__top { display: flex; justify-content: space-between; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--fg); }
.progress-pct { color: var(--primary); }
.progress-bar-track {
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 100px;
  width: var(--pct, 0%);
  transition: width 1s ease;
}
.progress-wrap__amounts { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted-fg); margin-top: 0.375rem; }

.project-card__footer {
  padding: 1rem 1.625rem;
  border-top: 1px solid var(--card-border);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-card__footer-lead { font-size: 0.875rem; color: var(--muted-fg); }
.project-card__footer-lead strong { color: var(--fg); }

/* ──────────────────────────────────
   SUBJECT CARDS
────────────────────────────────── */
.subject-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.subject-card:hover { box-shadow: var(--shadow-lg); border-color: hsla(150,45%,20%,.25); transform: translateY(-2px); }

.subject-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1rem;
  transition: background .2s;
}
.subject-card:hover .subject-card__icon { background: var(--primary); color: #fff; }

.subject-card__name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.375rem;
  transition: color .2s;
}
.subject-card:hover .subject-card__name { color: var(--primary); }

.subject-card__desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subject-card__topics {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber);
}

/* ──────────────────────────────────
   VALUES CARD (About page)
────────────────────────────────── */
.values-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.values-card h3 { font-size: 1.625rem; margin-bottom: 2rem; }
.values-list { display: flex; flex-direction: column; gap: 1.5rem; }
.value-item { display: flex; gap: 1rem; }
.value-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.value-item__content h4 { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 0.25rem; }
.value-item__content p { font-size: 0.875rem; color: var(--muted-fg); }

/* ──────────────────────────────────
   CONTACT FORM
────────────────────────────────── */
.contact-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--serif);
  font-size: 1.625rem;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6875rem 0.875rem;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(150,45%,20%,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-fg); }

.form-submit { margin-top: 0.5rem; width: 100%; }

#form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
#form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
#form-success h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--fg); }
#form-success p { color: var(--muted-fg); }

/* ──────────────────────────────────
   CTA BANNER
────────────────────────────────── */
.cta-banner {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--primary-fg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, hsla(35,90%,55%,.15), transparent 60%);
  pointer-events: none;
}

.cta-banner__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-banner__icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.cta-banner__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
  position: relative;
}
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* Join Us Banner */
.join-banner {
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.join-banner__body { flex: 1; min-width: 280px; }
.join-banner__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.join-banner__title { font-family: var(--serif); font-size: 1.75rem; font-weight: 700; color: var(--fg); margin-bottom: 0.75rem; }
.join-banner__desc { color: var(--muted-fg); font-size: 1.0625rem; line-height: 1.75; }
.join-banner__action { flex-shrink: 0; }

/* ──────────────────────────────────
   STORY SECTION (About)
────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-text h2 { font-size: 2.25rem; margin-bottom: 1.5rem; color: var(--fg); }
.story-text p { font-size: 1.0625rem; color: var(--muted-fg); line-height: 1.8; margin-bottom: 1.25rem; }
.story-text p:last-child { margin-bottom: 0; }

.story-card-wrap { position: relative; }
.story-card-wrap::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: hsla(150,45%,20%,.05);
  border-radius: 1.75rem;
  transform: rotate(3deg);
  z-index: 0;
}
.story-card-wrap::after {
  content: '';
  position: absolute;
  inset: -1rem;
  background: hsla(35,90%,55%,.08);
  border-radius: 1.75rem;
  transform: rotate(-3deg);
  z-index: 0;
}
.story-card-wrap .values-card { position: relative; z-index: 1; }

/* ──────────────────────────────────
   CONTACT PAGE LAYOUT
────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.75rem; color: var(--fg); margin-bottom: 1rem; }
.contact-info p { color: var(--muted-fg); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 2rem; }

.areas-list { display: flex; flex-direction: column; gap: 0.75rem; }
.area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--fg);
}
.area-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ──────────────────────────────────
   FOOTER
────────────────────────────────── */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

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

.footer__brand { max-width: 280px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.footer__desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,.55); }

.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col li a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer__col li a:hover { color: #fff; }

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

.footer__bottom a {
  color: var(--amber);
  transition: opacity .2s;
}
.footer__bottom a:hover { opacity: .8; }

/* ──────────────────────────────────
   NOTICE BANNER (platform status)
────────────────────────────────── */
.notice-banner {
  background: hsla(35,90%,55%,.12);
  border-bottom: 1px solid hsla(35,90%,55%,.25);
  padding: 0.625rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: hsl(35,70%,30%);
}

/* ──────────────────────────────────
   RESPONSIVE
────────────────────────────────── */
@media (max-width: 900px) {
  .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr; gap: 0; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 1.25rem 0; }
  .stats-bar__item:last-child { border-bottom: none; }
  .join-banner { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 3.5rem 0 4.5rem; }
  .section { padding: 3.5rem 0; }
  .cta-banner { padding: 3.5rem 0; }
  .contact-form { padding: 1.75rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .join-banner { padding: 2rem; }
}
