:root {
  --navy-950: #102a3d;
  --navy-800: #1d465f;
  --blue-650: #2f6f91;
  --blue-100: #e9f2f6;
  --teal-600: #357f7a;
  --teal-100: #e7f2f0;
  --stone-50: #f8faf9;
  --stone-100: #f0f3f2;
  --stone-300: #cbd4d1;
  --stone-600: #5f6d69;
  --ink: #192523;
  --white: #ffffff;
  --danger: #9b3a39;
  --max-width: 1180px;
  --radius-small: 6px;
  --radius-medium: 12px;
  --shadow-soft: 0 10px 30px rgba(16, 42, 61, 0.09);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--stone-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue-650);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--teal-600);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy-950);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.util-bar {
  background: var(--navy-950);
  color: var(--stone-300);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  text-align: center;
}

.util-bar strong {
  color: var(--white);
  font-weight: normal;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--stone-300);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 48px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

nav a {
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

nav a:hover {
  color: var(--teal-600);
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--teal-600);
  border-bottom-color: var(--teal-600);
}

.nav-cta {
  background: var(--navy-950);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-small);
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--navy-800);
  text-decoration: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16, 42, 61, 0.92) 45%, rgba(16, 42, 61, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--stone-300);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-small);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  min-height: 44px;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--teal-600);
  color: var(--white);
}

.btn-primary:hover {
  background: #2d6e6a;
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-950);
}

.btn-secondary:hover {
  background: var(--stone-100);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--stone-600);
  font-size: 1.0625rem;
}

.intro {
  background: var(--white);
  padding: 3.5rem 0;
}

.intro h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 1rem;
}

.intro p {
  color: var(--stone-600);
  max-width: 680px;
  font-size: 1.0625rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--stone-50);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-medium);
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--stone-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-layout img {
  border-radius: var(--radius-medium);
  object-fit: cover;
  width: 100%;
  height: auto;
}

.split-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 1rem;
}

.split-content p {
  color: var(--stone-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.split-content ul {
  list-style: none;
  color: var(--stone-600);
}

.split-content li {
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.split-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: var(--teal-600);
  border-radius: 50%;
}

.util-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.util-card {
  background: var(--blue-100);
  border: 1px solid var(--blue-650);
  border-radius: var(--radius-small);
  padding: 1.25rem;
}

.util-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.375rem;
}

.util-card p {
  font-size: 0.875rem;
  color: var(--stone-600);
}

.callout {
  background: var(--teal-100);
  border-radius: var(--radius-medium);
  padding: 2.5rem;
  text-align: center;
}

.callout h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.75rem;
}

.callout p {
  color: var(--stone-600);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.alert {
  background: var(--danger);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-small);
  font-size: 0.9375rem;
}

.alert strong {
  font-weight: 600;
}

.page-banner {
  background: var(--navy-950);
  color: var(--white);
  padding: 3rem 0;
}

.page-banner h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: var(--stone-300);
  font-size: 1.0625rem;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.provider-card {
  background: var(--white);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-medium);
  padding: 2rem;
}

.provider-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.provider-avatar span {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

.provider-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-950);
}

.provider-title {
  color: var(--teal-600);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.provider-interests {
  color: var(--stone-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.provider-bio {
  color: var(--stone-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.team-section {
  background: var(--stone-100);
  border-radius: var(--radius-medium);
  padding: 2rem;
  margin-top: 3rem;
}

.team-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
}

.checklist li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--stone-600);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  background: var(--teal-600);
  border-radius: 50%;
}

.text-block {
  max-width: 680px;
}

.text-block h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 1rem;
}

.text-block h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-950);
  margin: 1.5rem 0 0.75rem;
}

.text-block p {
  color: var(--stone-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.text-block ul {
  color: var(--stone-600);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.text-block li {
  margin-bottom: 0.375rem;
}

.directions-panel {
  background: var(--stone-100);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-medium);
  padding: 2rem;
  margin-top: 2rem;
}

.directions-panel h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 1rem;
}

address {
  font-style: normal;
  color: var(--stone-600);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.375rem;
}

.contact-item p {
  color: var(--stone-600);
}

footer {
  background: var(--navy-950);
  color: var(--stone-300);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--stone-300);
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--stone-300);
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--stone-600);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--stone-300);
  font-size: 0.875rem;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-page h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 0.5rem;
}

.error-page p {
  color: var(--stone-600);
  margin-bottom: 2rem;
}

.error-page .btn {
  margin: 0 0.5rem;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .split-layout {
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  nav ul {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  nav {
    position: relative;
  }
  
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--stone-300);
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
  }
  
  .mobile-menu.open {
    display: block;
  }
  
  .mobile-menu ul {
    list-style: none;
  }
  
  .mobile-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--ink);
    font-weight: 500;
  }
  
  .mobile-menu a:hover {
    background: var(--stone-50);
    text-decoration: none;
  }
  
  .hero {
    min-height: 480px;
  }
  
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(16, 42, 61, 0.85) 0%, rgba(16, 42, 61, 0.7) 100%);
  }
  
  .hero-content {
    padding: 3rem 1.5rem;
    text-align: center;
  }
  
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .split-layout {
    grid-template-columns: 1fr;
  }
  
  .split-layout img {
    order: -1;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  html {
    font-size: 15px;
  }
  
  .header-inner {
    min-height: 64px;
  }
  
  .hero {
    min-height: 420px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .util-grid {
    grid-template-columns: 1fr;
  }
  
  .provider-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  .util-bar,
  header,
  .mobile-toggle,
  .hero-actions,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    min-height: auto;
    background: var(--stone-100);
  }
  
  .hero-overlay {
    display: none;
  }
  
  .hero-content {
    padding: 2rem 0;
    color: black;
  }
  
  .hero h1,
  .hero-sub {
    color: black;
  }
  
  footer {
    background: var(--stone-100);
    color: black;
  }
  
  .footer-col h4,
  .footer-links a {
    color: black;
  }
}
