/* ============================================================
   FIRST SERVE CHARITY — WEBSITE STYLES
   Color palette: Navy Blue (#0d1b3e), Gold (#c9a227), Amber (#f0a830)
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root,
[data-theme='light'] {
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand palette */
  --navy:          #0d1b3e;
  --navy-light:    #162347;
  --navy-deep:     #080f22;
  --gold:          #c9a227;
  --gold-light:    #d4af37;
  --gold-muted:    #a8892a;
  --amber:         #f0a830;

  /* Surfaces */
  --color-bg:             #f8f7f3;
  --color-surface:        #ffffff;
  --color-surface-offset: #f0ede6;
  --color-border:         #e2ddd4;
  --color-divider:        #ede9e1;

  /* Text */
  --color-text:       #1a1a2e;
  --color-text-muted: #6b6a65;
  --color-text-faint: #b8b5ae;

  /* Accent */
  --color-primary:       var(--gold);
  --color-primary-hover: var(--gold-muted);

  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(13,27,62,0.08);
  --shadow-md: 0 4px 16px rgba(13,27,62,0.1);
  --shadow-lg: 0 16px 40px rgba(13,27,62,0.14);

  --content-default: 1100px;
  --content-narrow:  640px;
  --content-wide:    1280px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  --transition-fast: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme='dark'] {
  --color-bg:             #0e0e18;
  --color-surface:        #13131f;
  --color-surface-offset: #18182a;
  --color-border:         #2a2a3e;
  --color-divider:        #1f1f30;
  --color-text:           #e8e6e0;
  --color-text-muted:     #8a8890;
  --color-text-faint:     #4a4858;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0e0e18;
    --color-surface:        #13131f;
    --color-surface-offset: #18182a;
    --color-border:         #2a2a3e;
    --color-divider:        #1f1f30;
    --color-text:           #e8e6e0;
    --color-text-muted:     #8a8890;
    --color-text-faint:     #4a4858;
  }
}

/* --- BASE RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(201,162,39,0.2);
  color: var(--color-text);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-16));
}
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

/* --- TYPOGRAPHY HELPERS --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.section-label.light { color: rgba(255,255,255,0.7); }
.section-heading {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}
.section-heading.light { color: #fff; }
.section-header.center { text-align: center; max-width: 600px; margin-inline: auto; }
.section-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-inline: auto;
  margin-top: var(--space-2);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75em 1.6em;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-interactive);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-muted);
  border-color: var(--gold-muted);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--color-border);
}
[data-theme='dark'] .btn-outline { color: var(--color-text); }
.btn-outline:hover {
  background: var(--color-surface-offset);
  border-color: var(--gold);
  color: var(--gold);
}
.btn.full-width { width: 100%; justify-content: center; }

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,27,62,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  transition: box-shadow var(--transition-interactive);
}
.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-4) clamp(var(--space-4), 5vw, var(--space-12));
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(201,162,39,0.35);
}
.logo-img--sm {
  width: 36px;
  height: 36px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--gold); }
.nav { margin-left: auto; }
.nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}
.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition-fast);
  padding: var(--space-1) 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-interactive);
  transform-origin: left;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.45em 1.2em !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-muted) !important;
  transform: translateY(-1px);
}
.nav-utr {
  border: 1px solid rgba(201,162,39,0.35) !important;
  padding: 0.35em 1em !important;
  border-radius: var(--radius-full);
  color: var(--gold) !important;
  font-weight: 500 !important;
}
.nav-utr::after { display: none !important; }
.nav-utr:hover {
  background: rgba(201,162,39,0.12) !important;
  border-color: var(--gold) !important;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: var(--space-4);
}
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}
.theme-toggle:hover { color: var(--gold); background: rgba(255,255,255,0.08); }
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--transition-interactive);
}
.mobile-nav {
  display: none;
  padding: var(--space-4) clamp(var(--space-4), 5vw, var(--space-12));
  border-top: 1px solid rgba(201,162,39,0.12);
}
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-1); }
.mobile-link {
  display: block;
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.mobile-link:hover { color: var(--gold); background: rgba(255,255,255,0.06); }
.mobile-nav.open { display: block; }

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-inner { gap: var(--space-4); }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,15,34,0.55) 0%,
    rgba(13,27,62,0.75) 50%,
    rgba(8,15,34,0.9) 100%
  );
}

/* Decorative court lines */
.hero-court-lines {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}
.court-baseline {
  position: absolute;
  bottom: 15%;
  left: 10%; right: 10%;
  height: 2px;
  background: var(--gold);
}
.court-service-line {
  position: absolute;
  bottom: 36%;
  left: 20%; right: 20%;
  height: 1.5px;
  background: var(--gold);
}
.court-center {
  position: absolute;
  top: 20%; bottom: 15%;
  left: 50%;
  width: 1.5px;
  background: var(--gold);
}
.court-net {
  position: absolute;
  top: 35%; bottom: 35%;
  left: 10%; right: 10%;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
}

/* Animated gradient radials */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(240,168,48,0.09) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}
@keyframes pulseGlow {
  from { transform: scale(1); opacity: 0.8; }
  to   { transform: scale(1.15); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: var(--space-8) clamp(var(--space-4), 6vw, var(--space-16));
}
.hero-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
  padding: 0.4em 1em;
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: var(--radius-full);
}
.hero-heading {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}
.hero-heading em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}
.hero-stats {
  display: flex;
  gap: var(--space-8);
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
@media (max-width: 480px) {
  .stat-divider { display: none; }
  .hero-stats { gap: var(--space-6); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  z-index: 2;
  animation: bounce 2.5s ease-in-out infinite;
  transition: color var(--transition-fast);
}
.hero-scroll-hint:hover { color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* === ABOUT === */
.about-section { background: var(--color-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
}
.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  max-width: 60ch;
}
.about-text p strong { color: var(--color-text); }
.about-text .btn { margin-top: var(--space-4); }
.about-visual { display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.about-badge-svg { width: 100%; max-width: 280px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-badge-card { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.about-badge-info { display: flex; gap: var(--space-4); }
.badge-year, .badge-loc {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.badge-year::before { content: '📅 '; }
.badge-loc::before  { content: '📍 '; }

/* === WHAT WE DO === */
.what-section { background: var(--color-surface-offset); }
[data-theme='dark'] .what-section { background: var(--color-surface); }
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.what-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-interactive);
  position: relative;
  overflow: hidden;
}
[data-theme='dark'] .what-card { background: var(--color-surface-offset); }
.what-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-interactive);
}
.what-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.what-card:hover::before { transform: scaleX(1); }
.what-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(240,168,48,0.08));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: var(--space-5);
}
.what-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.what-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.what-card p strong { color: var(--color-text); }

/* === PARTNER SECTION === */
.partner-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.partner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.partner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 700px) {
  .partner-inner { grid-template-columns: 1fr; }
  .partner-visual { justify-self: center; }
}
.partner-text p {
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
  margin-bottom: var(--space-4);
}
.partner-text p strong { color: var(--amber); }
.partner-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}
.partner-icon-wrap {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
}
.raised-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--gold);
}
.raised-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === IMPACT === */
.impact-section { background: var(--color-bg); }
.impact-timeline {
  margin-top: var(--space-12);
  max-width: 720px;
  margin-inline: auto;
  position: relative;
}
.impact-timeline::before {
  content: '';
  position: absolute;
  top: 16px; bottom: 16px;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--amber), rgba(201,162,39,0.2));
  border-radius: 2px;
}
.timeline-item {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  position: relative;
}
.timeline-marker {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.1);
  position: relative;
  z-index: 1;
}
.timeline-marker::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-content {
  padding-top: var(--space-2);
  flex: 1;
}
.timeline-date {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-2);
}
.timeline-content h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.timeline-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 55ch;
}

/* === TEAM === */
.team-section { background: var(--color-surface-offset); }
[data-theme='dark'] .team-section { background: var(--color-surface); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.member-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-interactive);
}
[data-theme='dark'] .member-card { background: var(--color-surface-offset); }
.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.member-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}
.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.member-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: rgba(201,162,39,0.5);
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(201,162,39,0.03) 20px,
      rgba(201,162,39,0.03) 40px
    ),
    linear-gradient(135deg, #0d1b3e, #162347);
  border: 2px dashed rgba(201,162,39,0.25);
  margin: var(--space-4);
  border-radius: var(--radius-lg);
  cursor: default;
}
.photo-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.4);
}
.member-info { padding: var(--space-6); }
.member-name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.member-role {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.member-bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  font-style: normal;
}

.member-socials { display: flex; gap: var(--space-3); }
.member-socials a {
  width: 34px; height: 34px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}
.member-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,162,39,0.08);
}

/* === CONTACT === */
.contact-section { background: var(--color-bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
}
.contact-text p {
  color: var(--color-text-muted);
  max-width: 55ch;
  margin-bottom: var(--space-6);
}
.contact-ways {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-ways li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-ways strong {
  display: block;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.contact-ways p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.contact-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.contact-card > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.contact-divider {
  text-align: center;
  margin: var(--space-4) 0;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}
.contact-divider::before, .contact-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--color-border);
}
.contact-divider::before { left: 0; }
.contact-divider::after  { right: 0; }
.contact-location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  justify-content: center;
  margin-top: var(--space-3);
}

/* === FOOTER === */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,162,39,0.12);
  padding-block: var(--space-12) var(--space-8);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.footer-brand .logo { margin-bottom: var(--space-4); }
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-2);
  font-style: italic;
}
.footer-legal {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--gold); }
.social-link {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201,162,39,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-interactive);
}
.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,162,39,0.08);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--space-6);
  text-align: center;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}

/* === SCROLL-IN ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
