/* ============================================================
   OXBRIDGE STUDENT INVESTMENT COUNCIL — STYLESHEET
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --clr-primary:    #002147;
  --clr-secondary:  #a3c1ad;
  --clr-accent:     #c8a951;
  --clr-bg:         #f8f7f4;
  --clr-text:       #1a1a2e;
  --clr-white:      #ffffff;
  --clr-dark:       #0a0f1a;
  --clr-muted:      #6b7280;
  --clr-border:     #e2e0db;

  --ff-heading:     'Cormorant Garamond', Georgia, serif;
  --ff-body:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.75rem;
  --fs-4xl:  3.5rem;
  --fs-hero: clamp(2.5rem, 5vw, 4.25rem);

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-section: 100px;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.10);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.14);

  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --container:  1180px;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, select, textarea { font: inherit; }

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.gold { color: var(--clr-accent); }

.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section--dark {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.section--dark .section__label { color: var(--clr-accent); }
.section--dark .section__subtitle { color: rgba(255,255,255,.7); }

/* ---------- SECTION HEADERS ---------- */
.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section__label {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 3px;
}

.section__subtitle {
  font-size: var(--fs-md);
  color: var(--clr-muted);
  line-height: 1.8;
  margin-top: var(--space-lg);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-accent);
  border: 2px solid var(--clr-primary);
}

.btn--primary:hover {
  background: #001a38;
  border-color: #001a38;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
}

.btn--outline:hover {
  background: var(--clr-accent);
  color: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--full { width: 100%; }

.btn svg {
  width: 16px;
  height: 16px;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(0, 33, 71, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--clr-white);
}

.navbar__logo-mark {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  letter-spacing: 2px;
  border: 2px solid var(--clr-accent);
  padding: 2px 10px;
  line-height: 1.3;
}

.navbar__logo-text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.85);
  max-width: 180px;
  line-height: 1.3;
}

.navbar__links {
  display: flex;
  gap: var(--space-xl);
}

.navbar__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.75);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--clr-white);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  padding: 10px 24px;
  font-size: var(--fs-xs);
}

.navbar__hamburger {
  display: none;
  color: var(--clr-white);
}

.navbar__hamburger svg {
  width: 28px;
  height: 28px;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--clr-white);
}

.mobile-menu__close svg {
  width: 32px;
  height: 32px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.mobile-menu__link {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  transition: var(--transition);
}

.mobile-menu__link:hover { color: var(--clr-accent); }

.mobile-menu__cta {
  margin-top: var(--space-lg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px;
  background:
    linear-gradient(160deg, var(--clr-primary) 0%, #001a38 40%, #0d1b2a 100%);
  color: var(--clr-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(163,193,173,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(200,169,81,.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--clr-bg), transparent);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.7);
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  line-height: 1;
}

.hero__stat-prefix,
.hero__stat-plus {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
}

.hero__stat-label {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.6);
  margin-top: var(--space-xs);
  letter-spacing: 0.5px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.3);
  animation: bounce 2s infinite;
}

.hero__scroll-indicator svg {
  width: 28px;
  height: 28px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about__text h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
  color: var(--clr-primary);
}

.about__text h3:first-child { margin-top: 0; }

.about__text p {
  color: var(--clr-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.value-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--clr-primary), #001a38);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.value-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-accent);
}

.value-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
  color: var(--clr-primary);
}

.value-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.7;
}

/* ---------- PROGRAMS ---------- */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.program-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: var(--transition);
}

.program-card:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.program-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--clr-accent), #d4b869);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.program-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--clr-primary);
}

.program-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.program-card__text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.program-card__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.program-card__details li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.5);
}

.program-card__details li svg {
  width: 16px;
  height: 16px;
  color: var(--clr-accent);
  flex-shrink: 0;
}

/* ---------- TEAM ---------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.team-card {
  text-align: center;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}

.team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), #0d1b2a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  border: 3px solid var(--clr-accent);
}

.team-card__avatar svg {
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,.6);
}

.team-card__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  margin-bottom: 4px;
}

.team-card__uni {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  margin-bottom: var(--space-md);
}

.team-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.team-card__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-bg);
  transition: var(--transition);
}

.team-card__social a:hover {
  background: var(--clr-primary);
  color: var(--clr-accent);
}

.team-card__social svg {
  width: 16px;
  height: 16px;
}

/* ---------- EVENTS ---------- */
.events__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 860px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  gap: var(--space-xl);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition);
}

.event-card:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--clr-accent);
  transform: translateX(6px);
}

.event-card__date {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clr-accent), #d4b869);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
}

.event-card__day {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: 1;
}

.event-card__month {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card__body { flex: 1; }

.event-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
}

.event-card__meta {
  display: flex;
  gap: var(--space-lg);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.5);
  margin-bottom: var(--space-sm);
}

.event-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-card__meta svg {
  width: 14px;
  height: 14px;
  color: var(--clr-accent);
}

.event-card__text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.6);
  line-height: 1.8;
}

/* ---------- APPLY ---------- */
.apply__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.apply__info h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  margin-bottom: var(--space-lg);
}

.apply__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.apply__benefits li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.apply__benefits li > svg {
  width: 22px;
  height: 22px;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.apply__benefits strong {
  display: block;
  font-weight: var(--fw-semibold);
  color: var(--clr-primary);
  margin-bottom: 2px;
}

.apply__benefits p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.6;
}

.apply__quote {
  background: var(--clr-primary);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
}

.apply__quote::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: var(--ff-heading);
  font-size: 4rem;
  color: var(--clr-accent);
  opacity: .3;
  line-height: 1;
}

.apply__quote blockquote {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.apply__quote cite {
  font-size: var(--fs-sm);
  color: var(--clr-accent);
  font-style: normal;
}

/* ---------- FORM ---------- */
.apply__form-wrap {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.apply__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  color: var(--clr-text);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(200,169,81,.15);
}

.form-group textarea { resize: vertical; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-note {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  text-align: center;
  margin-top: calc(-1 * var(--space-xs));
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.7);
  padding-top: var(--space-3xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--clr-white);
}

.footer__logo-mark {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  letter-spacing: 2px;
  border: 2px solid var(--clr-accent);
  padding: 2px 8px;
  line-height: 1.3;
}

.footer__logo-text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.7);
  max-width: 180px;
  line-height: 1.3;
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.footer__links a,
.footer__contact a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  padding: 4px 0;
  transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--clr-accent);
  transform: translateX(4px);
}

.footer__contact svg {
  width: 16px;
  height: 16px;
}

.footer__socials {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
}

.footer__socials a:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-primary);
  transform: translateY(-3px);
}

.footer__socials svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.35);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-accent);
  color: var(--clr-primary);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 3000;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-accent);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast svg {
  width: 20px;
  height: 20px;
  color: var(--clr-accent);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .programs__grid {
    grid-template-columns: 1fr;
  }

  .apply__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-section: 72px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Navbar */
  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__logo-text {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero__stats {
    gap: var(--space-xl);
  }

  .hero__stat-number {
    font-size: var(--fs-2xl);
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* About */
  .about__values {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Events */
  .event-card {
    flex-direction: column;
    gap: var(--space-md);
  }

  .event-card__date {
    width: 64px;
    height: 64px;
  }

  .event-card__meta {
    flex-direction: column;
    gap: var(--space-xs);
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn { width: 100%; }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }

  .section__title {
    font-size: var(--fs-2xl);
  }
}
