/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1B3A5C;
  --primary-light: #2D5F8A;
  --primary-bright: #3B82C4;
  --primary-glow: #6BB5E8;
  --accent: #D4956A;
  --accent-light: #E8B899;
  --bg: #FAFBFD;
  --fg: #1A2332;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --green-600: #16a34a;
  --amber-400: #fbbf24;
  --amber-600: #d97706;
  --white: #ffffff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 2px 8px rgba(27,58,92,0.06);
  --shadow-md: 0 8px 30px rgba(27,58,92,0.08);
  --shadow-lg: 0 20px 60px rgba(27,58,92,0.12);
  --shadow-glow: 0 8px 40px rgba(59,130,196,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ===== Utility ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27,58,92,0.06);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.625rem;
}
.nav-brand img {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(27,58,92,0.1);
}
.nav-brand span {
  font-family: var(--font-sans); font-size: 1.25rem; font-weight: 700;
  color: var(--primary); letter-spacing: 0.08em;
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--slate-500);
  transition: all var(--transition); padding: 0.5rem 0.875rem;
  border-radius: 8px;
}
.nav-links a:hover { color: var(--primary); background: rgba(27,58,92,0.04); }
.nav-links a.active { color: var(--primary); background: rgba(27,58,92,0.06); font-weight: 600; }

.nav-cta {
  display: inline-flex; align-items: center; padding: 0.5rem 1.25rem;
  background: var(--primary); color: var(--white);
  font-family: var(--font-sans); font-size: 0.8125rem; font-weight: 600;
  border: none; border-radius: 100px; transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--primary-light); box-shadow: var(--shadow-glow); transform: translateY(-1px); }

.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--slate-500); font-size: 1.5rem; padding: 0.5rem;
}

.mobile-nav {
  display: none; flex-direction: column; gap: 0.25rem;
  padding: 0.75rem 1rem 1rem; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
}
.mobile-nav a {
  font-size: 1rem; font-weight: 500; color: var(--slate-600);
  padding: 0.75rem 1rem; border-radius: 10px;
}
.mobile-nav a:hover { color: var(--primary); background: rgba(27,58,92,0.04); }
.mobile-nav.open { display: flex; }

@media (max-width: 767px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8125rem 2rem; gap: 0.5rem;
  font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 600;
  border: none; cursor: pointer; transition: all var(--transition);
  text-align: center; border-radius: 100px; letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--primary); color: var(--white);
}
.btn-primary:hover { background: var(--primary-light); box-shadow: var(--shadow-glow); transform: translateY(-2px); }

.btn-outline {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

.btn-outline-dark {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--slate-200);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.btn-secondary {
  background: var(--white); color: var(--primary);
  font-weight: 600; border: 1.5px solid transparent;
}
.btn-secondary:hover { background: var(--slate-50); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.8125rem; border-radius: 8px; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-destructive { background: var(--red-600); color: var(--white); border-radius: 8px; }
.btn-destructive:hover { background: var(--red-500); }
.btn-ghost { background: transparent; color: var(--slate-600); padding: 0.5rem; border-radius: 8px; }
.btn-ghost:hover { background: var(--slate-100); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== Hero Section ===== */
.hero {
  position: relative; min-height: 80vh; display: flex; align-items: center;
  overflow: hidden; background: var(--slate-900);
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(27,58,92,0.5) 50%, rgba(15,23,42,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; max-width: 700px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem); font-weight: 700; color: var(--white);
  margin-bottom: 1.5rem; line-height: 1.08;
}
.hero p {
  font-size: 1.125rem; color: rgba(255,255,255,0.75); max-width: 540px;
  margin-bottom: 2.5rem; font-weight: 400; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* ===== Page Banner ===== */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 5rem 0 3.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
                     radial-gradient(circle at 80% 50%, rgba(255,255,255,0.2) 0%, transparent 50%);
}
.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--white);
  margin-bottom: 1rem; position: relative;
}
.page-banner p {
  font-size: 1.125rem; color: rgba(255,255,255,0.7);
  max-width: 560px; margin: 0 auto; font-weight: 300; position: relative;
}

/* ===== Section ===== */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section-light { background: var(--bg); }
.section-alt {
  background: var(--white);
  border-top: 1px solid rgba(27,58,92,0.04);
  border-bottom: 1px solid rgba(27,58,92,0.04);
}
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2 { color: var(--white); }

.section-header {
  text-align: center; max-width: 640px; margin: 0 auto 3.5rem;
}
.section-header h2 { font-size: 2rem; margin-bottom: 1rem; }
.section-header p { font-size: 1.0625rem; color: var(--slate-500); line-height: 1.7; }

/* ===== Grid Layouts ===== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Who We Are (Home) ===== */
.who-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) {
  .who-grid { grid-template-columns: 5fr 7fr; }
}
.who-grid .divider-line {
  width: 3rem; height: 3px;
  background: linear-gradient(90deg, var(--primary-bright), var(--primary-glow));
  border-radius: 2px; margin-bottom: 1.5rem;
}
.who-grid p { font-size: 1.0625rem; color: var(--slate-600); line-height: 1.8; margin-bottom: 1rem; }
.who-grid .read-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--primary-bright); font-weight: 600; margin-top: 0.75rem;
  transition: gap var(--transition);
}
.who-grid .read-more:hover { gap: 0.75rem; }
.who-right { padding-left: 0; border-left: none; }
@media (min-width: 1024px) {
  .who-right { padding-left: 3rem; border-left: 1px solid var(--slate-100); }
}
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.approach-grid h3 { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.approach-grid p { color: var(--slate-500); font-size: 0.9375rem; line-height: 1.6; }

/* ===== Division Cards ===== */
.division-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column; height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,58,92,0.04);
}
.division-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.division-card .card-img {
  height: 13rem; overflow: hidden; position: relative;
}
.division-card .card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27,58,92,0.08) 100%);
  transition: opacity var(--transition); z-index: 1;
}
.division-card:hover .card-img-overlay { opacity: 0; }
.division-card .card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.division-card:hover .card-img img { transform: scale(1.08); }
.division-card .card-body {
  padding: 1.75rem; flex: 1; display: flex; flex-direction: column;
}
.division-card .card-body h3 {
  font-size: 1.375rem; font-weight: 700; margin-bottom: 0.625rem;
  transition: color var(--transition);
}
.division-card:hover .card-body h3 { color: var(--primary-bright); }
.division-card .card-body p {
  color: var(--slate-500); margin-bottom: 1.5rem; flex: 1;
  font-size: 0.9375rem; line-height: 1.6;
}
.division-card .card-link {
  font-size: 0.8125rem; font-weight: 700; color: var(--primary-bright);
  text-transform: uppercase; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 0.375rem;
  transition: gap var(--transition);
}
.division-card:hover .card-link { gap: 0.625rem; }

/* ===== Vision / Quote Banner ===== */
.quote-banner {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #3B6B8A 100%);
  color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.quote-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.4) 0%, transparent 60%);
}
.quote-banner h2 {
  font-size: clamp(1.375rem, 3.5vw, 2.25rem); color: var(--white);
  max-width: 750px; margin: 0 auto 1.5rem; font-weight: 600;
  position: relative; z-index: 1; line-height: 1.45;
  font-style: italic;
}
.quote-line {
  width: 4rem; height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.5), rgba(255,255,255,0.2));
  margin: 0 auto; position: relative; z-index: 1; border-radius: 2px;
}

/* ===== About Page ===== */
.about-intro { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.about-intro h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); margin-bottom: 1.5rem; }
.about-intro p { font-size: 1.125rem; color: var(--slate-500); font-weight: 300; line-height: 1.8; }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: start; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-img img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.about-img:hover img { transform: scale(1.02); }
.about-img .caption {
  margin-top: 1rem; font-size: 0.875rem; color: var(--slate-500); font-style: italic;
}

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.value-box {
  padding: 1rem; background: linear-gradient(135deg, rgba(27,58,92,0.03), rgba(59,130,196,0.06));
  border: 1px solid rgba(27,58,92,0.06);
  border-radius: var(--radius-sm);
  text-align: center; font-family: var(--font-serif); font-weight: 600;
  color: var(--primary); font-size: 0.9375rem;
}

.about-section { margin-bottom: 2.5rem; }
.about-section h2 { font-size: 1.5rem; margin-bottom: 0.875rem; }
.about-section p { color: var(--slate-600); line-height: 1.8; margin-bottom: 0.875rem; }

/* ===== Division Detail Page ===== */
.division-hero {
  position: relative; height: 55vh; min-height: 340px; overflow: hidden;
  background: var(--slate-900);
  display: flex; align-items: flex-end;
}
.division-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.45;
}
.division-hero .hero-inner {
  position: relative; z-index: 2; padding-bottom: 3.5rem;
}
.division-hero .back-link {
  color: rgba(255,255,255,0.55); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700;
  margin-bottom: 1rem; display: inline-flex; align-items: center; gap: 0.375rem;
  transition: color var(--transition);
}
.division-hero .back-link:hover { color: var(--white); }
.division-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem); color: var(--white);
  max-width: 650px; line-height: 1.15;
}

.division-content { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .division-content { grid-template-columns: 1fr 1fr; } }

.division-overview h2 { font-size: 1.375rem; margin-bottom: 1.25rem; }
.division-overview p { color: var(--slate-600); line-height: 1.85; white-space: pre-line; }

.division-features {
  background: var(--white); padding: 2rem;
  border: 1px solid rgba(27,58,92,0.06);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .division-features { padding: 2.5rem; } }
.division-features h3 { font-size: 1.125rem; margin-bottom: 1.75rem; color: var(--fg); }
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.feature-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-bright), var(--primary-glow));
  margin-top: 0.55rem; flex-shrink: 0;
}
.feature-item span { color: var(--slate-600); font-size: 0.9375rem; }

.division-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white); text-align: center;
}
.division-cta h2 { color: var(--white); font-size: 1.625rem; margin-bottom: 1.25rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.division-cta p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; }

/* ===== Leadership ===== */
.leader-card {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start;
}
@media (min-width: 768px) { .leader-card { grid-template-columns: 1fr 2fr; } }
.leader-card img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.leader-placeholder {
  background: linear-gradient(135deg, rgba(27,58,92,0.06), rgba(59,130,196,0.08));
  height: 16rem; display: flex;
  align-items: center; justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-serif); font-size: 2.5rem; color: var(--slate-300);
}
.leader-card h2 { font-size: 1.625rem; margin-bottom: 0.375rem; }
.leader-card h3 {
  font-family: var(--font-sans); font-size: 0.875rem; color: var(--primary-bright);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  margin-bottom: 1.5rem;
}
.leader-card p { color: var(--slate-600); line-height: 1.8; }
.leader-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
  margin: 3.5rem 0;
}

/* ===== Contact Page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info h2 { font-size: 1.625rem; margin-bottom: 1.5rem; }
.contact-info > p { font-size: 1.0625rem; color: var(--slate-500); margin-bottom: 2.5rem; line-height: 1.7; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 2.75rem; height: 2.75rem;
  background: linear-gradient(135deg, rgba(27,58,92,0.06), rgba(59,130,196,0.08));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-bright); flex-shrink: 0;
  border-radius: var(--radius-sm);
}
.contact-detail h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-detail p { color: var(--slate-500); line-height: 1.6; font-size: 0.9375rem; }

.contact-form-wrap {
  background: var(--white); padding: 2rem;
  border: 1px solid rgba(27,58,92,0.06);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .contact-form-wrap { padding: 2.5rem; } }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.8125rem; font-weight: 600; color: var(--slate-600); letter-spacing: 0.02em; }
.form-group input, .form-group textarea {
  padding: 0.75rem 1rem; border: 1.5px solid var(--slate-200);
  background: var(--bg); font-family: var(--font-sans);
  font-size: 0.9375rem; color: var(--fg); outline: none;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-bright);
  box-shadow: 0 0 0 3px rgba(59,130,196,0.1);
  background: var(--white);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--slate-400);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-error {
  color: var(--red-600); font-size: 0.8125rem; margin-bottom: 1rem;
  padding: 0.625rem 1rem; background: rgba(239,68,68,0.05);
  border-radius: var(--radius-xs); border: 1px solid rgba(239,68,68,0.1);
}

.form-success {
  text-align: center; padding: 3.5rem 0;
}
.form-success .check-icon {
  width: 3.5rem; height: 3.5rem; color: var(--green-600); margin: 0 auto 1.25rem;
}
.form-success h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--slate-500); margin-bottom: 1.75rem; }

/* ===== Admin ===== */
.admin-stats { color: var(--slate-400); margin-top: 0.5rem; font-size: 0.9375rem; }
.admin-stats .unread { color: var(--amber-400); margin-left: 0.5rem; }

.contact-list { display: flex; flex-direction: column; gap: 0.625rem; }

.contact-row {
  background: var(--white); border: 1px solid rgba(27,58,92,0.06);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; cursor: pointer;
  transition: all var(--transition); display: flex;
  flex-direction: column; gap: 0.625rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .contact-row { flex-direction: row; align-items: center; justify-content: space-between; }
}
.contact-row:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-row.unread { border-left: 3px solid var(--primary-bright); }

.contact-row-info { flex: 1; min-width: 0; }
.contact-row-name { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.25rem; }
.unread-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-bright), var(--primary-glow));
  flex-shrink: 0;
}
.contact-row-name h3 { font-family: var(--font-sans); font-weight: 600; font-size: 0.9375rem; color: var(--fg); }
.contact-row.unread .contact-row-name h3 { color: var(--fg); }
.contact-row:not(.unread) .contact-row-name h3 { color: var(--slate-500); }
.contact-row-preview {
  font-size: 0.8125rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.contact-row.unread .contact-row-preview { color: var(--slate-600); }
.contact-row:not(.unread) .contact-row-preview { color: var(--slate-400); }

.contact-row-meta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.contact-row-date { font-size: 0.75rem; color: var(--slate-400); }

.admin-empty {
  text-align: center; padding: 5rem 0; color: var(--slate-400);
}
.admin-empty h3 { font-size: 1.125rem; color: var(--slate-400); margin-top: 1rem; }
.admin-empty p { color: var(--slate-500); margin-top: 0.5rem; font-size: 0.9375rem; }

/* Admin Detail View */
.admin-detail-header { margin-bottom: 1.5rem; }
.admin-detail-header .back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); margin-bottom: 1rem; font-size: 0.875rem;
  transition: color var(--transition);
}
.admin-detail-header .back-link:hover { color: var(--white); }
.admin-detail-header h1 { font-size: 1.5rem; color: var(--white); }
.admin-detail-header p { color: rgba(255,255,255,0.6); margin-top: 0.5rem; font-size: 0.9375rem; }

.detail-card {
  background: var(--white); padding: 2rem;
  border: 1px solid rgba(27,58,92,0.06);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .detail-card { padding: 2.5rem; } }

.detail-meta {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem;
  font-size: 0.8125rem; color: var(--slate-500);
}
.detail-meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.status-read { color: var(--green-600); }
.status-unread { color: var(--amber-600); }

.detail-fields { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .detail-fields { grid-template-columns: 1fr 1fr; } }
.detail-fields label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--slate-400);
}
.detail-fields .value { font-size: 1rem; margin-top: 0.25rem; }
.detail-fields a { color: var(--primary-bright); }
.detail-fields a:hover { text-decoration: underline; }

.detail-message { margin-bottom: 2rem; }
.detail-message label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--slate-400); display: block; margin-bottom: 0.5rem;
}
.detail-message-body {
  padding: 1.25rem; background: var(--bg);
  border: 1px solid rgba(27,58,92,0.06);
  border-radius: var(--radius-sm); color: var(--slate-700); line-height: 1.7;
  white-space: pre-wrap; font-size: 0.9375rem;
}

.detail-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer {
  background: var(--slate-900); color: var(--slate-300);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.footer-brand img {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover;
}
.footer-brand span {
  font-family: var(--font-sans); font-size: 1.125rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.08em;
}
.footer-desc { font-size: 0.875rem; color: var(--slate-400); line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-sans); font-weight: 700; color: var(--white);
  margin-bottom: 1.25rem; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem; color: var(--slate-400);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary-glow); }
.footer-col address { font-size: 0.875rem; color: var(--slate-400); }
.footer-col address p { margin-bottom: 0.25rem; }

.footer-canadian {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem;
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate-500);
}

.footer-bottom {
  margin-top: 3rem; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem; color: var(--slate-500); text-align: center;
}
@media (min-width: 768px) { .footer-bottom { text-align: left; } }

/* ===== Login Card ===== */
.login-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27,58,92,0.04);
}
.login-card .form-group { margin-bottom: 1.25rem; }
.login-card .form-group label {
  display: block; font-weight: 600; margin-bottom: 0.375rem;
  color: var(--slate-600); font-size: 0.8125rem;
}
.login-card .form-group input {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm); font-size: 0.9375rem;
  font-family: var(--font-sans); background: var(--bg);
  transition: all var(--transition);
}
.login-card .form-group input:focus {
  outline: none; border-color: var(--primary-bright);
  box-shadow: 0 0 0 3px rgba(59,130,196,0.1);
  background: var(--white);
}

/* ===== SVG Icons (inline) ===== */
.icon { width: 1rem; height: 1rem; display: inline-block; vertical-align: middle; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 4rem; height: 4rem; }

/* ===== Animations ===== */
@media (prefers-reduced-motion: no-preference) {
  .division-card,
  .value-box,
  .leader-card,
  .contact-row {
    animation: fadeUp 0.5s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .grid-3 .division-card:nth-child(1) { animation-delay: 0s; }
  .grid-3 .division-card:nth-child(2) { animation-delay: 0.1s; }
  .grid-3 .division-card:nth-child(3) { animation-delay: 0.2s; }
  .grid-3 .division-card:nth-child(4) { animation-delay: 0.3s; }
  .grid-3 .division-card:nth-child(5) { animation-delay: 0.4s; }
  .grid-3 .division-card:nth-child(6) { animation-delay: 0.5s; }
}
