:root {
  --ink:    #0d1b2a;
  --ink2:   #1a2e45;
  --blue:   #1256a0;
  --blue2:  #1a6ec8;
  --teal:   #0a8a96;
  --gold:   #b8922a;
  --gold2:  #d4aa40;
  --cream:  #f7f3ec;
  --offwhite: #faf8f4;
  --gray:   #8a96a3;
  --lgray:  #e4e8ed;
  --white:  #ffffff;
  --red:    #c0392b;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  /* font-family: 'Outfit', sans-serif; */
  background: var(--offwhite);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--ink);
  color: #aab3be;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  padding: 8px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--gold2); text-decoration: none; margin-left: 20px; }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; gap: 20px; }
.topbar-right { display: flex; }

/* ─── NAVBAR ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--lgray);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(13,27,42,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 201;
}
.nav-logo-mark {
  /* width: 75px; */
  height: 80px;
  /* background: var(--ink); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-mark.has-image::before,
.nav-logo-mark.has-image::after { display: none; }
.nav-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav-logo-mark::before {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 2px solid var(--gold2);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.nav-logo-mark::after {
  content: 'SA';
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold2);
  position: relative;
  z-index: 1;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.nav-logo-text span {
  font-size: 10px;
  color: var(--gray);
  font-family: 'DM Mono', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── DESKTOP NAV LINKS ─── */
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}
.nav-links li { position: relative; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  display: block;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--cream); color: var(--blue); }

/* ─── DESKTOP DROPDOWN ─── */
.has-drop:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--lgray);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(13,27,42,0.14);
  min-width: 200px;
  padding: 8px;
  z-index: 300;
}
.dropdown a {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--ink2);
  white-space: nowrap;
}
.dropdown a:hover { background: var(--cream); color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--blue2) !important; color: var(--white) !important; }

/* ─── HAMBURGER BUTTON ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 201;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.15s;
}
.hamburger:hover { background: var(--cream); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
/* animated X state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE DRAWER ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 199;
  background: var(--white);
  padding: 100px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.mobile-nav-list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-list > li > a:hover { background: var(--cream); color: var(--blue); }
.mobile-nav-list > li > a .arrow {
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--gray);
  transition: transform 0.2s;
}
.mobile-nav-list > li.open > a .arrow { transform: rotate(90deg); }
/* mobile sub-links */
.mobile-sub {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 8px 16px;
}
.mobile-nav-list > li.open .mobile-sub { display: flex; }
.mobile-sub a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  display: block;
}
.mobile-sub a:hover { background: var(--cream); color: var(--blue); }

.mobile-divider {
  border: none;
  border-top: 1px solid var(--lgray);
  margin: 16px 0;
}
.mobile-cta {
  display: block;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background 0.15s;
}
.mobile-cta:hover { background: var(--blue2); }
.mobile-cta-secondary {
  display: block;
  background: var(--cream);
  color: var(--ink);
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.mobile-cta-secondary:hover { background: var(--lgray); }
.mobile-contact {
  margin-top: 28px;
  padding: 16px;
  background: var(--cream);
  border-radius: 12px;
}
.mobile-contact p {
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  color: var(--gray);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.mobile-contact a {
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

/* overlay backdrop */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.5);
  z-index: 198;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

/* ─── RESPONSIVE BREAKPOINTS ─── */

/* Tablet — hide some topbar text, shrink nav padding */
@media (max-width: 1024px) {
  .topbar { padding: 8px 24px; }
  .topbar-left span:last-child { display: none; }
  nav { padding: 0 24px; }
  .nav-links a { font-size: 12.5px; padding: 8px 10px; }
}

/* Mobile — hide desktop nav, show hamburger */
@media (max-width: 768px) {
  .topbar { display: none; }
  nav { padding: 0 20px; height: 64px; }
  .nav-logo-text strong { font-size: 15px; }
  .nav-logo-text span { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Small mobile */
@media (max-width: 480px) {
  nav { padding: 0 16px; }
  .nav-logo-mark {  height: 80px; }
  .nav-logo-text strong { font-size: 14px; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(18,86,160,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(10,138,150,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 90% 10%, rgba(184,146,42,0.12) 0%, transparent 70%),
    linear-gradient(145deg, #0d1b2a 0%, #0f2236 50%, #0d1b2a 100%);
}
/* molecular hex grid decoration */
.hero-grid {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 600px;
  height: 600px;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(60deg, rgba(255,255,255,0.8) 0, rgba(255,255,255,0.8) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.8) 0, rgba(255,255,255,0.8) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.8) 0, rgba(255,255,255,0.8) 1px, transparent 0, transparent 50%);
  background-size: 60px 60px;
}
.hero-ring {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  border: 1px solid rgba(212,170,64,0.15);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.hero-ring::before {
  content: '';
  position: absolute;
  top: 30px; left: 30px; right: 30px; bottom: 30px;
  border: 1px solid rgba(18,86,160,0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite reverse;
}
.hero-ring::after {
  content: '';
  position: absolute;
  top: 80px; left: 80px; right: 80px; bottom: 80px;
  border: 2px solid rgba(10,138,150,0.25);
  border-radius: 50%;
}
@keyframes rotate { to { transform: translateY(-50%) rotate(360deg); } }

/* molecule dots */
.mol-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold2);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212,170,64,0.6);
}
.mol-dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.mol-dot:nth-child(2) { bottom: 60px; right: 30px; }
.mol-dot:nth-child(3) { top: 30%; left: 10px; background: var(--teal); box-shadow: 0 0 16px rgba(10,138,150,0.6); }

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,170,64,0.12);
  border: 1px solid rgba(212,170,64,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold2);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold2);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--gold2);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: #e0b845; transform: translateY(-1px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* hero stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  padding: 24px 48px;
  gap: 0;
  z-index: 2;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat {
  flex: 1;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.5px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION LAYOUT ─── */
section { padding: 88px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-lead {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ─── NEWS SECTION ─── */
.news-section { background: var(--offwhite); }
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.news-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--lgray);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,27,42,0.12); }
.news-img {
  height: 200px;
  background: linear-gradient(135deg, var(--ink2) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.news-img-sm { height: 120px; }
.news-img-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gold2);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
/* placeholder pattern fills */
.news-img.p1 { background: linear-gradient(135deg, #0a2a4a 0%, #1256a0 100%); }
.news-img.p2 { background: linear-gradient(135deg, #0a3a3a 0%, #0a8a96 100%); }
.news-img.p3 { background: linear-gradient(135deg, #2a1a00 0%, #b8922a 100%); }
.news-img.p4 { background: linear-gradient(135deg, #1a0a2a 0%, #6741d9 100%); }
/* hex pattern overlay */
.news-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(60deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 0, transparent 40px),
                    repeating-linear-gradient(120deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 0, transparent 40px);
}
.news-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-date {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: var(--gray);
  margin-bottom: 8px;
}
.news-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}
.news-headline-sm { font-size: 16px; }
.news-excerpt {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.news-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--lgray);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-footer::after { content: '→'; }

/* ─── FEATURED EVENT ─── */
.event-section {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%);
  position: relative;
  overflow: hidden;
}
.event-section::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(18,86,160,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.event-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.event-label {
  display: inline-block;
  background: var(--gold2);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.event-title em { color: var(--gold2); font-style: italic; }
.event-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}
.event-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.event-meta-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
}
.event-meta-item .em-label {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.event-meta-item .em-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.event-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card-preview {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 380px;
  position: relative;
}
.event-card-preview::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(212,170,64,0.3), transparent, rgba(18,86,160,0.3));
  z-index: -1;
}
.ecp-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
}
.ecp-month {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.ecp-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 20px 0; }
.ecp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}
.ecp-loc {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ecp-loc::before { content: '📍'; font-size: 12px; }
.ecp-badges {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.ecp-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Mono', monospace;
}

/* ─── MEMBERSHIP SECTION ─── */
.membership-section { background: var(--cream); }
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mem-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--lgray);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mem-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,27,42,0.1); }
.mem-card.featured {
  background: var(--ink);
  border-color: var(--gold2);
}
.mem-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--lgray);
  opacity: 0.5;
}
.mem-card.featured::before { background: rgba(212,170,64,0.1); }
.mem-card-badge {
  display: inline-block;
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
  background: var(--cream);
  color: var(--blue);
  border: 1px solid var(--lgray);
}
.mem-card.featured .mem-card-badge {
  background: rgba(212,170,64,0.15);
  color: var(--gold2);
  border-color: rgba(212,170,64,0.3);
}
.mem-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.mem-card.featured .mem-type { color: var(--white); }
.mem-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.mem-card.featured .mem-desc { color: rgba(255,255,255,0.55); }
.mem-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.mem-features li {
  font-size: 13.5px;
  color: var(--ink2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mem-card.featured .mem-features li { color: rgba(255,255,255,0.8); }
.mem-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.mem-card.featured .mem-features li::before { color: var(--gold2); }
.btn-mem {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  background: var(--cream);
  color: var(--blue);
  border: 1px solid var(--lgray);
}
.btn-mem:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.mem-card.featured .btn-mem {
  background: var(--gold2);
  color: var(--ink);
  border-color: var(--gold2);
}
.mem-card.featured .btn-mem:hover { background: #e0b845; }

/* ─── DIVISIONS SECTION ─── */
.divisions-section { background: var(--white); }
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.div-card {
  background: var(--offwhite);
  border: 1px solid var(--lgray);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.div-card:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,42,0.15);
}
.div-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--lgray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.2s;
}
.div-card:hover .div-icon { background: rgba(255,255,255,0.1); }
.div-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

/* ─── PATRON LOGOS MARQUEE ─── */
.patrons-section { background: var(--cream); padding: 56px 0; overflow: hidden; }
.patrons-label {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
  padding: 0 48px;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.patron-logo {
  min-width: 180px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  background: var(--white);
  border: 1px solid var(--lgray);
  border-radius: 12px;
  padding: 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink2);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.patron-logo:hover { border-color: var(--gold2); box-shadow: 0 4px 20px rgba(13,27,42,0.1); }

/* ─── AWARDS STRIP ─── */
.awards-section { background: var(--ink); padding: 80px 48px; }
.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.awards-content .section-eyebrow { color: var(--gold2); }
.awards-content .section-title { color: var(--white); }
.awards-content .section-title span { color: var(--gold2); }
.awards-content .section-lead { color: rgba(255,255,255,0.55); }
.awards-list { display: flex; flex-direction: column; gap: 12px; }
.award-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.award-item:hover { background: rgba(255,255,255,0.08); }
.award-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(212,170,64,0.15);
  border: 1px solid rgba(212,170,64,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.award-info { flex: 1; }
.award-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.award-desc { font-size: 12px; color: rgba(255,255,255,0.45); }
.award-arrow { color: var(--gold2); font-size: 18px; }

/* ─── JOURNAL SECTION ─── */
.journal-section { background: var(--offwhite); }
.journal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.journal-cover {
  background: linear-gradient(150deg, var(--blue) 0%, var(--ink) 100%);
  border-radius: 20px;
  aspect-ratio: 3/4;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(13,27,42,0.25), -4px -4px 20px rgba(255,255,255,0.3);
}
.journal-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 30px);
}
.journal-cover-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.journal-cover-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.journal-cover-issue {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.jci-vol {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gold2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.jci-title {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* ─── CONTACT / FOOTER ─── */
.footer-top {
  background: var(--ink2);
  padding: 64px 48px;
}
.footer-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-logo span { color: var(--gold2); }
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.social-btn:hover { background: rgba(255,255,255,0.12); }

.footer-col h4 {
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  background: var(--ink);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: 'DM Mono', monospace;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ─── AFFILIATIONS STRIP ─── */
.affiliations-section { background: var(--white); padding: 56px 0; overflow: hidden; border-top: 1px solid var(--lgray); border-bottom: 1px solid var(--lgray); }
.affiliations-label {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
  padding: 0 48px;
}
.marquee-track2 {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite reverse;
  width: max-content;
}
.affil-logo {
  min-width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
  border: 1px solid var(--lgray);
  border-radius: 10px;
  padding: 0 20px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.affil-logo:hover { border-color: var(--teal); color: var(--teal); }

/* utility */
.flex-between { display: flex; justify-content: space-between; align-items: flex-start; }
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.view-all:hover { text-decoration: underline; }
.view-all::after { content: '→'; }

/* extracted inline styles */
.section-head-spacing { margin-bottom: 40px; }
.cta-row { display: flex; gap: 12px; }
.section-lead-tight { margin-bottom: 32px; }
.btn-inline-flex { display: inline-flex; }
.cta-row-wrap { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-submit-paper {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  background: var(--cream);
  color: var(--blue);
  border: 1px solid var(--lgray);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}
.footer-quote {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin-bottom: 16px;
}
.footer-links-row { display: flex; gap: 24px; }
