/* ─── Harbor Light — Shared Styles ─── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-deep: #0b1a2e; --navy: #122140; --navy-light: #1a3055;
  --teal: #38bfa7; --teal-glow: #2dd4bf; --teal-muted: #1a8a76;
  --amber: #f59e0b; --red: #ef4444; --green: #059669;
  --slate-50: #f8fafc; --slate-100: #f1f5f9; --slate-200: #e2e8f0;
  --slate-300: #cbd5e1; --slate-400: #94a3b8; --slate-500: #64748b;
  --slate-600: #475569; --slate-700: #334155; --white: #fff;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 2px rgba(14,27,42,0.05);
  --shadow-md: 0 4px 12px rgba(14,27,42,0.06);
  --shadow-lg: 0 12px 32px rgba(14,27,42,0.08);
  --radius: 10px; --radius-sm: 6px;
}

html { scroll-behavior: smooth; }

/* ─── Accessibility ─── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

body {
  font-family: var(--font-body);
  background: #E8ECF1;
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Nav Logo (shared across all pages) ─── */
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
}
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(45,212,191,0.2);
  position: relative; overflow: hidden;
  border: 1.5px solid rgba(56,191,167,0.3);
}
.nav-logo-icon svg { width: 30px; height: 30px; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 400;
}
