/* ─── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  /* AAF Official Brand Colors */
  --aaf-light-blue: #2FC3E5;
  --aaf-dark-blue:  #26467D;
  --aaf-dark-red:   #B43449;
  --aaf-red:        #E92729;

  /* Semantic aliases — keep these so existing var() refs still resolve */
  --aaf-pink:       #E92729;
  --aaf-purple:     #B43449;
  --aaf-teal:       #2FC3E5;

  /* Official 40° brand gradient */
  --aaf-gradient:   linear-gradient(40deg, #2FC3E5 0%, #26467D 28.5%, #B43449 78.2%, #E92729 100%);
  --aaf-gradient-h: linear-gradient(90deg, #2FC3E5 0%, #26467D 28.5%, #B43449 78.2%, #E92729 100%);
  --aaf-gradient-r: linear-gradient(40deg, #E92729 0%, #B43449 21.8%, #26467D 71.5%, #2FC3E5 100%);

  /* Accent tokens */
  --gold:        #2FC3E5;
  --gold-light:  #6DD4F0;
  --gold-pale:   #D8F2FC;

  --navy:        #26467D;
  --navy-mid:    #1D3A6B;
  --navy-light:  #2E5090;
  --cream:       #FAF8F3;
  --white:       #FFFFFF;
  --charcoal:    #1C2B3A;
  --text:        #2C3A47;
  --text-muted:  #6B7A8D;
  --border:      #E2E6EA;
  --border-dark: #D0D6DC;
  --section-alt: #F3F1EC;

  --font-serif: 'Poppins', system-ui, sans-serif;
  --font-sans:  'Poppins', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(38,70,125,.08), 0 1px 2px rgba(38,70,125,.06);
  --shadow-md:  0 4px 12px rgba(38,70,125,.10), 0 2px 6px rgba(38,70,125,.06);
  --shadow-lg:  0 12px 32px rgba(38,70,125,.14), 0 4px 12px rgba(38,70,125,.08);
  --shadow-xl:  0 24px 64px rgba(38,70,125,.18);

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:cubic-bezier(0.45, 0, 0.55, 1);

  --container:  1200px;
  --container-narrow: 800px;
  --nav-h:      72px;
}

/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--aaf-teal); outline-offset: 3px; }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }
p { max-width: 68ch; }
strong { font-weight: 600; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aaf-pink);
}
/* Eyebrow on dark backgrounds uses teal */
.section--navy .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow,
.awards-section .eyebrow { color: var(--aaf-teal); }
.lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── Layout ──────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.container--narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section--sm { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--lg { padding-block: clamp(6rem, 10vw, 10rem); }
.section--cream    { background: var(--cream); }
.section--alt      { background: var(--section-alt); }
.section--navy     { background: var(--navy); color: var(--white); }
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--white); }
.section--navy .eyebrow { color: var(--gold-light); }
.section--navy p,
.section--navy .lead { color: rgba(255,255,255,.72); }

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

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.stack { display: flex; flex-direction: column; }
.stack--sm { gap: 0.75rem; }
.stack--md { gap: 1.5rem; }
.stack--lg { gap: 2.5rem; }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.22s;
}
.btn:hover::after { background: rgba(255,255,255,.08); }
.btn--primary {
  background: var(--aaf-gradient);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  color: var(--white);
  box-shadow: 0 2px 12px rgba(212,51,90,.35);
  transition: all 0.28s var(--ease-out), background-position 0.5s;
}
.btn--primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139,58,184,.45);
}
.btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}
.btn--outline-gold {
  background: transparent;
  color: var(--aaf-teal);
  border: 1.5px solid var(--aaf-teal);
}
.btn--outline-gold:hover {
  background: var(--aaf-teal);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn--lg { padding: 0.9rem 2.25rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-group { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* ─── Cards ──────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card__image { aspect-ratio: 3/2; overflow: hidden; }
.card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.card:hover .card__image img { transform: scale(1.04); }
.card__body { padding: 1.5rem; }
.card__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.card__excerpt { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.card__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ─── Badges ─────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge--gold    { background: var(--gold-pale); color: #7a5a0a; }
.badge--navy    { background: #e0e7f0; color: var(--navy); }
.badge--green   { background: #e4f5ea; color: #1a6631; }
.badge--muted   { background: var(--border); color: var(--text-muted); }

/* ─── Date Block ─────────────────────────────────────────────────────────────── */
.date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  flex-shrink: 0;
}
.date-block__month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 1px;
}
.date-block__day { font-size: 1.5rem; font-weight: 700; line-height: 1; }

/* ─── Section Header ─────────────────────────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.section-header--center { text-align: center; }
.section-header--center p { margin-inline: auto; }
.section-header .eyebrow { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

/* ─── Divider ────────────────────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--aaf-gradient-h);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.divider--center { margin-inline: auto; }

/* ─── Skip Link ──────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ─── Site Header / Navigation ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.site-header.is-transparent { background: transparent; }
.site-header.is-scrolled {
  background: rgba(11, 29, 53, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { max-height: 44px; width: auto; }
.site-logo__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}
.site-logo__text span { display: block; font-size: 0.65rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-link.active { color: var(--gold-light); }
.nav-arrow { width: 12px; height: 12px; transition: transform 0.2s; opacity: .7; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  /* transparent top padding bridges the gap so hover doesn't break mid-travel */
  padding: 8px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  z-index: 100;
}
.dropdown__inner {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 0.5rem;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown__inner a {
  display: block;
  padding: 0.55rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.dropdown__inner a:hover { background: var(--cream); color: var(--navy); }

/* Header CTA */
.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav: Fullscreen ──────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #05080c;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.mobile-nav.is-open { display: flex; }

/* Ambient gradient glows */
.mobile-nav::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(ellipse at center,
    rgba(47,195,229,.22) 0%,
    rgba(38,70,125,.12) 45%,
    transparent 70%);
  pointer-events: none;
}
.mobile-nav::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -20%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(ellipse at center,
    rgba(228,39,41,.18) 0%,
    rgba(180,52,73,.10) 45%,
    transparent 70%);
  pointer-events: none;
}

.mobile-nav__overlay { display: none; }

.mobile-nav__drawer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 1.5rem clamp(1.5rem, 7vw, 3rem) 2.5rem;
  overflow-y: auto;
  transform: none;
  background: transparent;
  box-shadow: none;
  border: none;
}

.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(2.5rem, 8vw, 4rem);
  padding-bottom: 0;
  border-bottom: none;
}

.mobile-nav__close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.mobile-nav__close:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }

.mobile-nav__links { display: flex; flex-direction: column; gap: 0; flex: 1; }

.mobile-nav__links .mobile-nav__group-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--aaf-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: clamp(1.25rem, 4vw, 2rem) 0 0.5rem;
  display: block;
}
.mobile-nav__links .mobile-nav__group-title:first-child { padding-top: 0; }

.mobile-nav__links a {
  display: block;
  padding: 0.7rem 0;
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  font-weight: 700;
  color: rgba(255,255,255,.82);
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color 0.18s;
  position: relative;
  overflow: hidden;
}
.mobile-nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px; width: 0;
  background: var(--aaf-gradient-h);
  transition: width 0.35s var(--ease-out);
}
.mobile-nav__links a:hover { color: var(--white); background: transparent; }
.mobile-nav__links a:hover::after { width: 40%; }

.mobile-nav__footer {
  margin-top: 2.5rem;
  padding-top: 0;
  border-top: none;
}
.mobile-nav__footer .btn { width: 100%; justify-content: center; }

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .22;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38,70,125,.85) 0%, rgba(38,70,125,.55) 60%, rgba(46,80,144,.4) 100%);
}
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: .4;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  opacity: 0;
}
.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 16ch;
  opacity: 0;
}
/* First word of heading — teal, italic, smaller */
.hero__heading-accent {
  display: block;
  font-size: 0.62em;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.05em;
}
/* "Creative Community" line — matches accent size, stays on one line */
.hero__heading em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.62em;
  white-space: nowrap;
  line-height: 1.3;
  margin-top: 0.1em;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 54ch;
  margin-bottom: 2.25rem;
  opacity: 0;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}
/* Gold accent line in hero */
.hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #E92729 20%, #B43449 40%, #26467D 60%, #2FC3E5 80%, transparent 100%);
  z-index: 2;
  opacity: .85;
}

/* ─── Hero Photo Stack ───────────────────────────────────────────────────────── */
.hero__photos {
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: clamp(300px, 34vw, 460px);
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  pointer-events: none;
}
.hero__photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.35);
  will-change: transform;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Each photo floats on its own path — base offset baked into every keyframe */
.hero__photo--1 { grid-column:1; grid-row:1; z-index:2; animation: float-1 9s ease-in-out infinite; }
.hero__photo--2 { grid-column:2; grid-row:1; z-index:3; animation: float-2 7s ease-in-out infinite; }
.hero__photo--3 { grid-column:1; grid-row:2; z-index:3; animation: float-3 11s ease-in-out infinite; }
.hero__photo--4 { grid-column:2; grid-row:2; z-index:2; animation: float-4 8s ease-in-out infinite; }

@keyframes float-1 {
  0%   { transform: translate(14px, 14px); }
  25%  { transform: translate(20px,  8px); }
  55%  { transform: translate( 9px, 22px); }
  80%  { transform: translate(18px, 16px); }
  100% { transform: translate(14px, 14px); }
}
@keyframes float-2 {
  0%   { transform: translate(-14px, 14px); }
  30%  { transform: translate( -8px, 22px); }
  60%  { transform: translate(-20px,  8px); }
  85%  { transform: translate(-12px, 18px); }
  100% { transform: translate(-14px, 14px); }
}
@keyframes float-3 {
  0%   { transform: translate(14px, -14px); }
  20%  { transform: translate( 8px, -20px); }
  50%  { transform: translate(22px,  -8px); }
  75%  { transform: translate(10px, -18px); }
  100% { transform: translate(14px, -14px); }
}
@keyframes float-4 {
  0%   { transform: translate(-14px, -14px); }
  35%  { transform: translate(-20px, -20px); }
  65%  { transform: translate( -8px,  -8px); }
  90%  { transform: translate(-16px, -12px); }
  100% { transform: translate(-14px, -14px); }
}

@media (max-width: 900px) {
  .hero__photos { display: none; }
}

/* ─── Stats Bar ──────────────────────────────────────────────────────────────── */
.stats-bar {
  background: #000;
  padding-block: 2.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 48px rgba(0,0,0,.35), 0 4px 16px rgba(0,0,0,.2);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.stat {
  text-align: center;
  padding: 1.25rem 1rem;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  background: var(--aaf-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ─── Events Preview ─────────────────────────────────────────────────────────── */
.events-preview {}
.event-card {
  display: flex;
  flex-direction: column;
}
.event-card .card__body { flex: 1; display: flex; flex-direction: column; }
.event-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.event-card__info { flex: 1; }
.event-card__time { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }
.event-card__venue {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.event-card__venue svg { flex-shrink: 0; opacity: .6; }
.event-card__price {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border-dark);
}
.empty-state h3 { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 1.25rem; }
.empty-state p  { color: var(--text-muted); font-size: 0.95rem; }

/* ─── About Preview ──────────────────────────────────────────────────────────── */
.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about-preview__text .divider { margin-bottom: 1.5rem; }
.about-preview__text h2 { margin-bottom: 1rem; }
.about-preview__text p { margin-bottom: 1.25rem; }
.about-preview__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-preview__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-preview__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.about-preview__badge-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
}
.about-preview__badge-text strong { display: block; font-size: 0.95rem; color: var(--navy); }
.about-preview__badge-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Awards Section ─────────────────────────────────────────────────────────── */
.awards-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.awards-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,150,46,.12) 0%, transparent 70%);
  pointer-events: none;
}
.awards-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.awards-section__text .eyebrow { color: var(--gold-light); }
.awards-section__text h2 { color: var(--white); }
.awards-section__text p { color: rgba(255,255,255,.7); margin-bottom: 1.25rem; }
.awards-section__tiers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.awards-tier {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, background 0.2s;
}
.awards-tier:hover {
  background: rgba(201,150,46,.08);
  border-color: rgba(201,150,46,.3);
}
.awards-tier__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--aaf-gradient);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.awards-tier__info strong { display: block; font-size: 0.92rem; color: var(--white); }
.awards-tier__info span { font-size: 0.8rem; color: rgba(255,255,255,.5); }
.awards-section__visual {
  position: relative;
}
.awards-trophy {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.awards-trophy svg { width: 100%; max-width: 300px; }
.awards-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.awards-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.awards-stat-card__number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  background: var(--aaf-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.awards-stat-card__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ─── Membership Preview ─────────────────────────────────────────────────────── */
.membership-preview { overflow: visible; }
.membership-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; align-items: start; }
.membership-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.membership-card:hover {
  border-color: var(--aaf-purple);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--aaf-purple);
  transform: translateY(-4px);
}
.membership-card--featured {
  border-color: transparent;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-xl), 0 0 0 2px transparent;
  transform: translateY(-2rem) scale(1.02);
  position: relative;
}
.membership-card--featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--aaf-gradient);
  z-index: -1;
}
.membership-card--featured:hover { transform: translateY(calc(-2rem - 4px)) scale(1.02); }
.membership-card--featured h3 { color: var(--white); }
.membership-card--featured p  { color: rgba(255,255,255,.65); }
.membership-card--featured .membership-card__feature { color: rgba(255,255,255,.8); }
.membership-card--featured .membership-card__feature::before { color: var(--gold-light); }
.membership-card__popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aaf-gradient);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.membership-card__type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.membership-card--featured .membership-card__type { color: var(--gold-light); }
.membership-card h3 { margin-bottom: 0.25rem; font-size: 1.25rem; }
.membership-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 1.25rem 0;
  padding-block: 1.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.membership-card--featured .membership-card__price { border-color: rgba(255,255,255,.15); }
.membership-card__price-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.membership-card--featured .membership-card__price-num { color: var(--white); }
.membership-card__price-per { font-size: 0.85rem; color: var(--text-muted); }
.membership-card--featured .membership-card__price-per { color: rgba(255,255,255,.5); }
.membership-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.membership-card__feature {
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.membership-card__feature::before {
  content: '✓';
  color: var(--aaf-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ─── Membership "Also Available" stacked list ───────────────────────────────── */
.membership-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2.5rem;
}
.membership-also {
  display: flex;
  flex-direction: column;
  min-width: min(340px, 100%);
  max-width: 480px;
  text-align: left;
}
.membership-also__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0.875rem;
}
.membership-also__item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.membership-also__item:first-of-type { border-top: 1px solid var(--border); }
.membership-also__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.membership-also__dots {
  flex: 1;
  border-bottom: 1px dotted var(--border-dark);
  margin-bottom: 0.22em;
}
.membership-also__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.membership-also__price small {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ─── Sponsorship CTA ────────────────────────────────────────────────────────── */
.sponsor-cta {
  background: var(--aaf-gradient);
  position: relative;
  overflow: hidden;
}
.sponsor-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38,70,125,.15) 0%, transparent 60%);
}
.sponsor-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.sponsor-cta h2 { color: var(--white); max-width: 32ch; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.sponsor-cta p { color: rgba(255,255,255,.85); max-width: 44ch; }
.sponsor-cta .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.6); }
.sponsor-cta .btn--ghost:hover { background: rgba(255,255,255,.15); }

/* ─── Interior Page Hero ─────────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #E92729 20%, #B43449 40%, #26467D 60%, #2FC3E5 80%, transparent 100%);
  opacity: .8;
  z-index: 5;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 80% 50%, rgba(201,150,46,.1) 0%, transparent 65%);
}
.page-hero__content { position: relative; z-index: 3; }
.page-hero .eyebrow { margin-bottom: 0.75rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.15rem; max-width: 58ch; }

/* ─── About / Why We Exist ───────────────────────────────────────────────────── */
.about-goals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.goal-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.goal-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.goal-item__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--aaf-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.goal-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.25rem; font-family: var(--font-sans); font-weight: 600; }
.goal-item p { font-size: 0.875rem; color: var(--text-muted); max-width: none; }

/* ─── Board Members ──────────────────────────────────────────────────────────── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.board-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}
.board-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.board-card__photo {
  aspect-ratio: 1;
  background: var(--section-alt);
  overflow: hidden;
  position: relative;
}
.board-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease-out); }
.board-card:hover .board-card__photo img { transform: scale(1.05); }
.board-card__photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: rgba(255,255,255,.3);
  font-size: 3rem;
  font-family: var(--font-serif);
}
.board-card__body { padding: 1.25rem 1rem; }
.board-card__name { font-size: 1rem; color: var(--navy); font-family: var(--font-serif); margin-bottom: 0.2rem; }
.board-card__title {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--aaf-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.board-card__bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.875rem; }
.board-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.board-card__linkedin:hover { color: var(--aaf-teal); }

/* ─── Committees ─────────────────────────────────────────────────────────────── */
.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.committee-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.committee-card:hover { border-color: var(--aaf-purple); box-shadow: var(--shadow-md), 0 0 0 1px var(--aaf-purple); transform: translateY(-3px); }
.committee-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--aaf-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.committee-card h3 { font-size: 1.125rem; color: var(--navy); }
.committee-card p { font-size: 0.875rem; color: var(--text-muted); flex: 1; }
.committee-card__roles {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--aaf-purple);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.committee-card__members {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0.25rem 0;
}
.committee-member {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.committee-member__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.committee-member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.committee-member__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.committee-member__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.committee-member__title {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Instagram Feed ─────────────────────────────────────────────────────────── */
.instagram-section { background: var(--white); }
.instagram-section .section-header { margin-bottom: 2rem; }
.instagram-handle {
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.instagram-handle:hover { color: var(--gold); }
.instagram-feed-embed {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.instagram-feed-embed iframe,
.instagram-feed-embed > * { width: 100% !important; }
.instagram-feed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
  color: var(--text-muted);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.instagram-feed-placeholder a { color: var(--navy); font-weight: 600; }

/* ─── Memberships Page ───────────────────────────────────────────────────────── */
.memberships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.memberships-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.benefit-item {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
}
.benefit-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--aaf-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--white);
}
.benefit-item h4 { font-size: 1rem; color: var(--navy); font-family: var(--font-sans); font-weight: 600; margin-bottom: 0.25rem; }
.benefit-item p { font-size: 0.875rem; color: var(--text-muted); max-width: none; }

/* ─── Awards Page ────────────────────────────────────────────────────────────── */
.awards-hero { background: var(--navy); }
.awards-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.awards-process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: background 0.25s, border-color 0.25s;
}
.process-step:hover .process-step__num {
  background: var(--aaf-gradient);
  border-color: var(--aaf-purple);
  color: var(--white);
}
.process-step h4 { font-size: 0.95rem; color: var(--navy); font-family: var(--font-sans); font-weight: 600; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); max-width: 22ch; }

.awards-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.awards-tier-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.awards-tier-card:hover { border-color: var(--aaf-purple); transform: translateY(-4px); box-shadow: var(--shadow-lg), 0 0 0 1px var(--aaf-purple); }
.awards-tier-card .eyebrow { margin-bottom: 0.5rem; }
.awards-tier-card h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.awards-tier-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.awards-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sponsor-tier-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  background: var(--white);
}
.sponsor-tier-card h4 { font-family: var(--font-sans); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.sponsor-tier-card .sponsor-tier-price {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  background: var(--aaf-gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.sponsor-tier-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.sponsor-tier-card li { font-size: 0.82rem; color: var(--text-muted); display: flex; gap: 0.4rem; }
.sponsor-tier-card li::before { content: '→'; color: var(--aaf-teal); flex-shrink: 0; }

/* ─── Events Archive ─────────────────────────────────────────────────────────── */
.events-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }

/* ─── Single Event ───────────────────────────────────────────────────────────── */
.single-event__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}
.single-event__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.single-event__meta-item strong { color: var(--text); font-weight: 600; }
.single-event__meta-item svg { color: var(--gold); flex-shrink: 0; }
.single-event__content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: flex-start;
}
.single-event__sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.event-sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.event-sidebar-card h3 { font-size: 1.1rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.event-sidebar-card .btn { width: 100%; justify-content: center; margin-top: 1.25rem; }

/* ─── Jobs Archive ───────────────────────────────────────────────────────────── */
.jobs-list { display: flex; flex-direction: column; gap: 1rem; }
.job-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s var(--ease-out);
  text-decoration: none;
}
.job-card:hover {
  border-color: var(--aaf-purple);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--aaf-purple);
  transform: translateX(4px);
}
.job-card__logo {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
}
.job-card__info { flex: 1; min-width: 0; }
.job-card__title { font-weight: 600; color: var(--navy); font-size: 1rem; margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.job-card__company { font-size: 0.875rem; color: var(--text-muted); }
.job-card__tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.job-card__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; flex-shrink: 0; }
.job-card__deadline { font-size: 0.78rem; color: var(--text-muted); }

/* ─── Contact Page ───────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: flex-start;
}
.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-info__icon-text { font-size: 1rem; font-weight: 700; }
.contact-info h4 { font-size: 0.95rem; font-family: var(--font-sans); font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.contact-info a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.2s; }
.contact-info a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; padding-top: 1.25rem; }
.social-link {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}
.social-link:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateY(-2px); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 1.75rem; font-size: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--aaf-purple);
  box-shadow: 0 0 0 3px rgba(139,58,184,.15);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 0.25rem; }
.form-message { margin-top: 1rem; padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; display: none; }
.form-message.success { background: #e4f5ea; color: #1a6631; border: 1px solid #b6e0c3; }
.form-message.error { background: #fde8e8; color: #9b1c1c; border: 1px solid #f5c0c0; }

/* ─── 404 ────────────────────────────────────────────────────────────────────── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 6rem;
}
.page-404__number {
  font-family: var(--font-serif);
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 1;
  color: var(--gold-pale);
  margin-bottom: 0;
}
.page-404 h1 { margin-bottom: 1rem; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: #000;
  color: rgba(255,255,255,.65);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-block: clamp(3.5rem, 6vw, 5rem);
}
.footer-brand .site-logo__text { color: var(--white); }
.footer-brand__desc { font-size: 0.875rem; line-height: 1.65; margin-top: 1rem; margin-bottom: 1.5rem; max-width: 28ch; }
.footer-social { display: flex; gap: 0.625rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--aaf-teal); color: var(--aaf-teal); background: rgba(47,195,229,.1); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.footer-bottom__links { display: flex; gap: 1.5rem; flex-wrap: wrap; overflow-wrap: break-word; }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }
.footer-gold-line {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #E92729 20%, #B43449 40%, #26467D 60%, #2FC3E5 80%, transparent 100%);
  opacity: .7;
}

/* ─── Entry Content (WP editor output) ───────────────────────────────────────── */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 { margin-bottom: 0.75rem; margin-top: 2rem; }
.entry-content h2 { font-size: 1.75rem; }
.entry-content h3 { font-size: 1.375rem; }
.entry-content p { margin-bottom: 1.25rem; max-width: 72ch; }
.entry-content ul,
.entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.4rem; }
.entry-content a { color: var(--aaf-purple); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--aaf-teal); }
.entry-content strong { font-weight: 600; }
.entry-content blockquote {
  border-left: 3px solid var(--aaf-purple);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}
.entry-content img { border-radius: var(--radius-md); margin-block: 1.5rem; }
.entry-content hr { border: none; border-top: 1px solid var(--border); margin-block: 2rem; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .9rem; }
.entry-content th { background: var(--navy); color: var(--white); padding: .6rem 1rem; text-align: left; font-weight: 600; }
.entry-content td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); }
.entry-content tr:nth-child(even) td { background: var(--cream); }

/* ─── Member Directory ───────────────────────────────────────────────────────── */
.directory-controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.directory-search {
  position: relative;
  max-width: 520px;
}
.directory-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.directory-search input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.directory-search input:focus {
  outline: none;
  border-color: var(--aaf-teal);
  box-shadow: 0 0 0 3px rgba(47,195,229,.15);
}
.directory-search input::placeholder { color: var(--text-muted); }
.directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-pill {
  padding: 0.375rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.filter-pill:hover { border-color: var(--navy); color: var(--navy); }
.filter-pill.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.directory-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.directory-meta strong { color: var(--navy); }
.member-grid {
  border-top: 1.5px solid var(--border);
}
.member-letter-heading {
  padding: 0.75rem 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  margin-top: 0.5rem;
  user-select: none;
}
.member-letter-heading:first-child { margin-top: 0; }
.member-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  border-radius: 0;
  background: transparent;
}
.member-card:hover { background: rgba(30,49,97,0.03); }
.member-card[data-hidden="true"] { display: none; }
.member-row__avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--aaf-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  overflow: hidden;
  flex-shrink: 0;
}
.member-row__avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-row__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.member-row__name {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.member-row__sub {
  font-size: 0.775rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.member-row__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: rgba(30,49,97,0.08);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.member-row__links {
  display: flex;
  gap: 0.375rem;
  flex-shrink: 0;
}
.member-row__link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}
.member-row__link:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.member-row__link--website {
  width: auto;
  border-radius: 100px;
  padding: 0 0.6rem 0 0.45rem;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.directory-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.directory-empty h3 { color: var(--navy); margin-bottom: 0.75rem; }
.directory-empty p { color: var(--text-muted); }
@media (max-width: 640px) {
  .member-row__badge { display: none; }
  .member-row__sub { display: none; }
  .member-row__name { font-size: 0.875rem; }
}

/* ─── GSAP Animation Classes ─────────────────────────────────────────────────── */
.anim-fade-up { opacity: 0; transform: translateY(32px); }
.anim-fade-in { opacity: 0; }
.anim-fade-left { opacity: 0; transform: translateX(-32px); }
.anim-fade-right { opacity: 0; transform: translateX(32px); }
.anim-scale { opacity: 0; transform: scale(0.92); }
.anim-stagger > * { opacity: 0; transform: translateY(24px); }

@media (max-width: 768px) {
  .anim-fade-up, .anim-fade-in, .anim-fade-left, .anim-fade-right, .anim-scale,
  .anim-stagger > * { opacity: 1; transform: none; }
}

/* ─── Bold Section Transitions ───────────────────────────────────────────────── */

/* Diagonal top — sweeps from top-right down to lower-left (cream over dark) */
.section--diagonal-in {
  clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(4rem, 8vw, 7rem) + 80px);
  margin-top: -80px;
  position: relative;
  z-index: 2;
}
/* Diagonal top — sweeps from top-left down to lower-right (dark over light) */
.section--diagonal-in-alt {
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 100%);
  padding-top: calc(clamp(4rem, 8vw, 7rem) + 80px);
  margin-top: -80px;
  position: relative;
  z-index: 3;
}
/* Diagonal top for section--sm sections */
.section--diagonal-in-sm {
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(2.5rem, 5vw, 4rem) + 60px);
  margin-top: -60px;
  position: relative;
  z-index: 4;
}

/* ─── Oversized decorative background type ────────────────────────────────────── */
.section-deco {
  position: absolute;
  right: -0.02em;
  bottom: -0.08em;
  font-size: clamp(8rem, 20vw, 18rem);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  color: rgba(38, 70, 125, .05);
}
.awards-section .section-deco { color: rgba(255, 255, 255, .04); }
.sponsor-cta .section-deco {
  color: rgba(255, 255, 255, .09);
  font-size: clamp(4rem, 13vw, 13rem);
  right: auto;
  left: 50%;
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ─── Events editorial layout ─────────────────────────────────────────────────── */
.events-preview__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.75rem;
}
.events-preview__grid > article:first-child { grid-row: span 2; }
.events-preview__grid > article:first-child .card__image { aspect-ratio: 16 / 10; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .memberships-grid,
  .membership-cards { grid-template-columns: repeat(2, 1fr); }
  .awards-process { grid-template-columns: repeat(2, 1fr); }
  .awards-process::before { display: none; }
  .awards-tiers-grid,
  .awards-sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero__content { padding-top: calc(var(--nav-h) + 2rem); }
  .about-preview__inner,
  .awards-section__inner,
  .single-event__content,
  .contact-layout { grid-template-columns: 1fr; }
  .awards-section__inner { gap: 2.5rem; }
  .sponsor-cta__inner { flex-direction: column; align-items: flex-start; }
  .sponsor-cta .btn-group { flex-direction: column; width: 100%; }
  .membership-card--featured { transform: none; }
  .memberships-grid { grid-template-columns: 1fr; }
  .membership-cards { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .events-preview__grid { grid-template-columns: 1fr; }
  .events-preview__grid > article:first-child { grid-row: auto; }
  .events-preview__grid > article:first-child .card__image { aspect-ratio: 3/2; }

  .section--diagonal-in,
  .section--diagonal-in-alt {
    clip-path: polygon(0 44px, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(clamp(4rem, 8vw, 7rem) + 44px);
    margin-top: -44px;
  }
  .section--diagonal-in-sm {
    clip-path: polygon(0 32px, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(clamp(2.5rem, 5vw, 4rem) + 32px);
    margin-top: -32px;
  }
  .section-deco { display: none; }
}
@media (max-width: 640px) {
  .stats-bar__inner { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat { border-top: 1px solid rgba(255,255,255,.1); }
  .awards-tiers-grid,
  .awards-sponsor-grid,
  .awards-process { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: fit-content; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-footer { flex-direction: column; align-items: stretch; }
  .membership-also { min-width: 0; max-width: 100%; }
}
@media (max-width: 400px) {
  .board-grid { grid-template-columns: 1fr; }
}
