/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #003399;
  --primary-light: #1a4dbf;
  --primary-dark: #002266;
  --primary-fg: #f0f4f8;
  --bg: #f7f8fa;
  --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: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
}

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 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.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.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-200);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-brand img {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(0,51,153,0.2);
  object-fit: cover; padding: 2px;
}
.nav-brand span {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--primary); letter-spacing: -0.02em;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--slate-500);
  transition: color 0.2s; position: relative; padding: 0.25rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--primary);
}

.nav-cta {
  display: inline-block; padding: 0.5rem 1.25rem;
  background: var(--primary); color: var(--white);
  font-family: var(--font-serif); font-size: 0.875rem; font-weight: 500;
  border: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--primary-light); }

.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: 1rem;
  padding: 1rem; border-top: 1px solid var(--slate-200); background: var(--white);
}
.mobile-nav a {
  font-size: 1.125rem; font-weight: 500; color: var(--slate-600);
  padding: 0.5rem 0;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav.open { display: flex; }

@media (max-width: 767px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: 0.75rem 2rem;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 500;
  border: none; cursor: pointer; transition: all 0.2s; text-align: center;
}
.btn-primary {
  background: var(--primary); color: var(--white);
}
.btn-primary:hover { background: var(--primary-light); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-outline-dark {
  background: transparent; color: var(--primary);
  border: 1px solid var(--slate-300);
}
.btn-outline-dark:hover { background: var(--slate-50); }

.btn-secondary {
  background: var(--white); color: var(--primary);
  font-weight: 600;
}
.btn-secondary:hover { background: var(--slate-100); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-block { display: block; width: 100%; }
.btn-destructive { background: var(--red-600); color: var(--white); }
.btn-destructive:hover { background: var(--red-500); }
.btn-ghost { background: transparent; color: var(--slate-600); padding: 0.5rem; }
.btn-ghost:hover { background: var(--slate-100); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ===== Hero Section ===== */
.hero {
  position: relative; height: 90vh; display: flex; align-items: center;
  overflow: hidden; background: var(--slate-900);
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.8), rgba(15,23,42,0.2));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; max-width: 800px; padding-top: 5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; color: var(--white);
  margin-bottom: 1.5rem; line-height: 1.1;
}
.hero p {
  font-size: 1.25rem; color: var(--slate-300); max-width: 600px;
  margin-bottom: 2.5rem; font-weight: 300; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Page Banner ===== */
.page-banner {
  background: var(--slate-900); padding: 6rem 0; text-align: center;
}
.page-banner h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 1.5rem; }
.page-banner p { font-size: 1.25rem; color: var(--slate-300); max-width: 600px; margin: 0 auto; font-weight: 300; }

/* ===== Section ===== */
.section { padding: 6rem 0; }
.section-light { background: var(--bg); }
.section-alt { background: var(--slate-50); border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2 { color: var(--white); }

.section-header {
  text-align: center; max-width: 700px; margin: 0 auto 4rem;
}
.section-header h2 { font-size: 2rem; margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--slate-500); }

/* ===== Grid Layouts ===== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 4rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@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: 5rem; height: 4px; background: var(--primary); margin-bottom: 2rem; }
.who-grid p { font-size: 1.125rem; color: var(--slate-600); line-height: 1.7; margin-bottom: 1rem; }
.who-grid .read-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--primary); font-weight: 600; margin-top: 1rem;
}
.who-grid .read-more:hover { opacity: 0.8; }
.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.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.approach-grid p { color: var(--slate-500); font-size: 0.95rem; }

/* ===== Division Cards ===== */
.division-card {
  background: var(--white); border: 1px solid var(--slate-100);
  overflow: hidden; transition: box-shadow 0.3s;
  display: flex; flex-direction: column; height: 100%;
}
.division-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.division-card .card-img {
  height: 14rem; overflow: hidden; position: relative;
}
.division-card .card-img-overlay {
  position: absolute; inset: 0; background: rgba(0,51,153,0.1);
  transition: background 0.3s; z-index: 1;
}
.division-card:hover .card-img-overlay { background: transparent; }
.division-card .card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.division-card:hover .card-img img { transform: scale(1.05); }
.division-card .card-body {
  padding: 2rem; flex: 1; display: flex; flex-direction: column;
}
.division-card .card-body h3 {
  font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.division-card:hover .card-body h3 { color: var(--primary-light); }
.division-card .card-body p {
  color: var(--slate-600); margin-bottom: 1.5rem; flex: 1;
}
.division-card .card-link {
  font-size: 0.8rem; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: transform 0.2s;
}
.division-card:hover .card-link { transform: translateX(0.5rem); }

/* ===== Vision / Quote Banner ===== */
.quote-banner {
  padding: 8rem 0; background: var(--primary); color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.quote-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.06;
  background-image: 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='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.quote-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem); color: var(--white);
  max-width: 800px; margin: 0 auto 2rem; font-weight: 700;
  position: relative; z-index: 1; line-height: 1.4;
}
.quote-line { width: 6rem; height: 4px; background: rgba(255,255,255,0.3); margin: 0 auto; position: relative; z-index: 1; }

/* ===== About Page ===== */
.about-intro { text-align: center; max-width: 800px; margin: 0 auto 5rem; }
.about-intro h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 2rem; }
.about-intro p { font-size: 1.25rem; color: var(--slate-500); font-weight: 300; line-height: 1.7; }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-img img {
  width: 100%; filter: grayscale(100%); transition: filter 0.7s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.about-img:hover img { filter: grayscale(0); }
.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: 1rem; }
.value-box {
  padding: 1rem; background: var(--slate-50); border: 1px solid var(--slate-100);
  text-align: center; font-family: var(--font-serif); font-weight: 600;
  color: var(--primary);
}

.about-section { margin-bottom: 3rem; }
.about-section h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.about-section p { color: var(--slate-600); line-height: 1.7; margin-bottom: 1rem; }

/* ===== Division Detail Page ===== */
.division-hero {
  position: relative; height: 60vh; 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.5;
}
.division-hero .hero-inner {
  position: relative; z-index: 2; padding-bottom: 4rem;
}
.division-hero .back-link {
  color: rgba(255,255,255,0.6); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700;
  margin-bottom: 1rem; display: inline-block;
}
.division-hero .back-link:hover { color: var(--white); }
.division-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white);
  max-width: 700px; line-height: 1.15;
}

.division-content { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .division-content { grid-template-columns: 1fr 1fr; } }

.division-overview h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.division-overview p { color: var(--slate-600); line-height: 1.8; white-space: pre-line; }

.division-features {
  background: var(--slate-50); padding: 2rem; border: 1px solid var(--slate-100);
  border-radius: 0.5rem;
}
@media (min-width: 768px) { .division-features { padding: 3rem; } }
.division-features h3 { font-size: 1.25rem; margin-bottom: 2rem; color: var(--fg); }
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.feature-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--primary); margin-top: 0.5rem; flex-shrink: 0;
}
.feature-item span { color: var(--slate-600); }

.division-cta {
  padding: 5rem 0; background: var(--primary); color: var(--white); text-align: center;
}
.division-cta h2 { color: var(--white); font-size: 1.75rem; margin-bottom: 1.5rem; }
.division-cta p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2rem; }

/* ===== Leadership ===== */
.leader-card {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start;
}
@media (min-width: 768px) { .leader-card { grid-template-columns: 1fr 2fr; } }
.leader-card img { width: 100%; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.leader-placeholder {
  background: var(--slate-100); height: 16rem; display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 2.5rem; color: var(--slate-300);
}
.leader-card h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.leader-card h3 {
  font-family: var(--font-sans); font-size: 1rem; color: var(--slate-500);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
  margin-bottom: 1.5rem;
}
.leader-card p { color: var(--slate-600); line-height: 1.7; }
.leader-divider { height: 1px; background: var(--slate-100); margin: 4rem 0; }

/* ===== Contact Page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info h2 { font-size: 1.75rem; margin-bottom: 2rem; }
.contact-info > p { font-size: 1.125rem; color: var(--slate-600); margin-bottom: 3rem; line-height: 1.7; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 3rem; height: 3rem; background: var(--slate-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.contact-detail h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.contact-detail p { color: var(--slate-600); line-height: 1.6; }

.contact-form-wrap {
  background: var(--slate-50); padding: 2rem; border: 1px solid var(--slate-100);
  border-radius: 0.5rem;
}
@media (min-width: 768px) { .contact-form-wrap { padding: 3rem; } }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--slate-700); }
.form-group input, .form-group textarea {
  padding: 0.75rem 1rem; border: 1px solid var(--slate-200);
  background: var(--white); font-family: var(--font-sans);
  font-size: 1rem; color: var(--fg); outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea { min-height: 150px; resize: vertical; }

.form-error { color: var(--red-600); font-size: 0.875rem; margin-bottom: 1rem; }

.form-success {
  text-align: center; padding: 4rem 0;
}
.form-success .check-icon {
  width: 4rem; height: 4rem; color: var(--green-600); margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.form-success p { color: var(--slate-600); margin-bottom: 2rem; }

/* ===== Admin ===== */
.admin-stats { color: var(--slate-400); margin-top: 0.5rem; }
.admin-stats .unread { color: var(--amber-400); margin-left: 0.5rem; }

.contact-list { display: flex; flex-direction: column; gap: 0.75rem; }

.contact-row {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: 0.5rem; padding: 1.5rem; cursor: pointer;
  transition: box-shadow 0.2s; display: flex;
  flex-direction: column; gap: 0.75rem;
}
@media (min-width: 768px) {
  .contact-row { flex-direction: row; align-items: center; justify-content: space-between; }
}
.contact-row:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.contact-row.unread { border-left: 4px solid var(--primary); }

.contact-row-info { flex: 1; min-width: 0; }
.contact-row-name { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.25rem; }
.unread-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.contact-row-name h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1rem; 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.875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.contact-row.unread .contact-row-preview { color: var(--slate-700); }
.contact-row:not(.unread) .contact-row-preview { color: var(--slate-400); }

.contact-row-meta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.contact-row-date { font-size: 0.75rem; color: var(--slate-400); }

.admin-empty {
  text-align: center; padding: 6rem 0; color: var(--slate-400);
}
.admin-empty h3 { font-size: 1.25rem; color: var(--slate-400); margin-top: 1rem; }
.admin-empty p { color: var(--slate-500); margin-top: 0.5rem; }

/* Admin Detail View */
.admin-detail-header { margin-bottom: 2rem; }
.admin-detail-header .back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--slate-300); margin-bottom: 1rem; font-size: 0.875rem;
}
.admin-detail-header .back-link:hover { color: var(--white); }
.admin-detail-header h1 { font-size: 1.75rem; color: var(--white); }
.admin-detail-header p { color: var(--slate-400); margin-top: 0.5rem; }

.detail-card {
  background: var(--white); padding: 2rem; border: 1px solid var(--slate-100);
  border-radius: 0.5rem; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
@media (min-width: 768px) { .detail-card { padding: 3rem; } }

.detail-meta {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
  font-size: 0.875rem; 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.5rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .detail-fields { grid-template-columns: 1fr 1fr; } }
.detail-fields label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--slate-400);
}
.detail-fields .value { font-size: 1.125rem; margin-top: 0.25rem; }
.detail-fields a { color: var(--primary); }
.detail-fields a:hover { text-decoration: underline; }

.detail-message {
  margin-bottom: 2.5rem;
}
.detail-message label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--slate-400); display: block; margin-bottom: 0.5rem;
}
.detail-message-body {
  padding: 1.5rem; background: var(--slate-50); border: 1px solid var(--slate-100);
  border-radius: 0.375rem; color: var(--slate-700); line-height: 1.7;
  white-space: pre-wrap;
}

.detail-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer {
  background: var(--slate-900); color: var(--slate-200);
  padding: 3rem 0 0; border-top: 1px solid var(--slate-800);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@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.5rem; }
.footer-brand img {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); padding: 2px; object-fit: cover;
}
.footer-brand span {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--white);
}
.footer-desc { font-size: 0.875rem; color: var(--slate-400); line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-serif); font-weight: 600; color: var(--white);
  margin-bottom: 1.5rem; font-size: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.875rem; color: var(--slate-400); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.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.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate-500);
}

.footer-bottom {
  margin-top: 3rem; padding: 2rem 0; border-top: 1px solid var(--slate-800);
  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: #fff; border-radius: 12px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.login-card .form-group { margin-bottom: 1.25rem; }
.login-card .form-group label { display: block; font-weight: 500; margin-bottom: 0.4rem; color: var(--slate-700); font-size: 0.875rem; }
.login-card .form-group input {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--slate-200);
  border-radius: 8px; font-size: 1rem; font-family: var(--font-sans);
  transition: border-color 0.2s;
}
.login-card .form-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,51,153,0.1); }

/* ===== 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; }
