/* ============================================
   Northwest Psychiatric Associates Ltd. (NWPA)
   Design tokens
   ============================================ */

:root {
  /* Brand colors */
  --navy-900: #0b1d3a;
  --navy-800: #0f2545;
  --navy-700: #173357;
  --navy-600: #234168;
  --navy-500: #3a5680;

  --gold: #c9a24a;
  --gold-soft: #e3c98a;
  --gold-deep: #a98424;

  --off-white: #f7f4ec;
  --cream: #fbf8f1;
  --paper: #ffffff;

  --slate-50: #f4f6f9;
  --slate-100: #e6eaf0;
  --slate-200: #d2d9e3;
  --slate-300: #a9b3c1;
  --slate-500: #5d6a7d;
  --slate-700: #36425a;

  --ink: #1a2336;
  --ink-muted: #4a5468;
  --ink-faint: #8d96a8;

  --success: #2f7a4d;
  --danger: #a13544;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Scale */
  --text-xs: 0.78rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  --text-2xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --text-hero: clamp(2.4rem, 1.8rem + 3vw, 4rem);

  /* Spacing */
  --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;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(11, 29, 58, 0.05),
    0 1px 3px rgba(11, 29, 58, 0.06);
  --shadow-md: 0 4px 10px rgba(11, 29, 58, 0.06),
    0 8px 22px rgba(11, 29, 58, 0.07);
  --shadow-lg: 0 10px 24px rgba(11, 29, 58, 0.09),
    0 24px 48px rgba(11, 29, 58, 0.11);

  --container: 1180px;
  --container-narrow: 940px;
}

/* ============================================
   Reset & base
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--navy-700);
  text-decoration-color: rgba(23, 51, 87, 0.25);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 150ms ease, text-decoration-color 150ms ease;
}
a:hover {
  color: var(--gold-deep);
  text-decoration-color: var(--gold-deep);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
  line-height: 1.15;
}

p {
  margin: 0 0 var(--space-4);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: var(--paper);
  padding: var(--space-3) var(--space-4);
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 180ms ease,
    background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 0.6rem 0.9rem;
  font-size: var(--text-xs);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--navy-800);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(11, 29, 58, 0.2),
    0 2px 8px rgba(11, 29, 58, 0.15);
}
.btn-primary:hover {
  background: var(--navy-900);
  color: var(--paper);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(11, 29, 58, 0.22);
}

.btn-secondary {
  background: var(--paper);
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-secondary:hover {
  background: var(--navy-800);
  color: var(--paper);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(15, 37, 69, 0.2);
}
.btn-ghost:hover {
  background: rgba(15, 37, 69, 0.06);
  color: var(--navy-900);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--paper);
  text-decoration: none;
}

.btn-outline-light {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(247, 244, 236, 0.45);
}
.btn-outline-light:hover {
  background: rgba(247, 244, 236, 0.1);
  border-color: var(--off-white);
  color: var(--paper);
  text-decoration: none;
}

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease,
    box-shadow 200ms ease;
}
.site-header.is-scrolled {
  background: rgba(247, 244, 236, 0.95);
  border-bottom-color: rgba(11, 29, 58, 0.08);
  box-shadow: 0 1px 0 rgba(11, 29, 58, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-800);
  text-decoration: none;
  font-family: var(--font-body);
}
.brand:hover {
  color: var(--navy-900);
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--navy-800);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--navy-900);
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.nav-list a {
  font-size: var(--text-sm);
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0;
  position: relative;
}
.nav-list a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.nav-list a:not(.btn):hover {
  color: var(--navy-900);
}
.nav-list a:not(.btn):hover::after {
  transform: scaleX(1);
}
.nav-cta {
  margin-left: var(--space-1);
}
.nav-cta span {
  color: #4fc97f;
  font-size: 0.6rem;
  line-height: 1;
}
.nav-cta.btn-primary {
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11, 29, 58, 0.18);
  background: transparent;
  border-radius: var(--radius-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--navy-800);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 7vw, 7rem);
  background:
    radial-gradient(
      1100px 480px at 100% 0%,
      rgba(201, 162, 74, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 400px at 0% 100%,
      rgba(15, 37, 69, 0.08),
      transparent 60%
    ),
    var(--off-white);
  color: var(--navy-800);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 var(--space-4);
}
.eyebrow-light {
  color: var(--gold-soft);
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  max-width: 18ch;
}

.lede {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  max-width: 56ch;
  margin-bottom: var(--space-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  font-size: var(--text-sm);
  color: var(--ink-muted);
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6) var(--space-5);
  box-shadow: var(--shadow-md);
}
.card-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin: 0 0 var(--space-4);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-5);
  margin: 0 0 var(--space-5);
}
.info-grid dt {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.info-grid dd {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.5;
}
.card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
}
.card-link:hover {
  color: var(--gold-deep);
}

.hero-arc {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  color: var(--paper);
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: var(--paper);
}
.section-tinted {
  background: var(--cream);
}
.section-dark {
  background: var(--navy-900);
  color: var(--off-white);
}
.section-dark h2,
.section-dark h3 {
  color: var(--paper);
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-10);
}
.section-head h2 {
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.section-lede {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  margin: 0;
}
.section-dark .section-lede {
  color: rgba(247, 244, 236, 0.8);
}

/* Approach */
.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.approach .section-head {
  margin-bottom: 0;
}
.approach-body p {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  max-width: 60ch;
  margin-bottom: var(--space-8);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.card {
  background: var(--cream);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: var(--space-5);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
}
.card p {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin: 0 0 var(--space-12);
}
.steps li {
  background: var(--paper);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: var(--space-6) var(--space-5);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-3);
}
.steps h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
}
.steps p {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin: 0;
}

/* Downloads */
.downloads {
  background: var(--paper);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.downloads-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 var(--space-2);
}
.downloads-note {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin: 0 0 var(--space-6);
  padding: var(--space-3) var(--space-4);
  background: rgba(201, 162, 74, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}
.download-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.download-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--cream);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 150ms ease, transform 150ms ease,
    box-shadow 150ms ease, background-color 150ms ease;
}
.download-item:hover {
  border-color: var(--gold);
  background: var(--paper);
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-soft);
  flex-shrink: 0;
}
.download-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.download-name {
  font-weight: 600;
  font-size: var(--text-sm);
}
.download-sub {
  font-size: var(--text-xs);
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Telehealth */
.telehealth-grid .section-head {
  margin-bottom: var(--space-10);
}
.tele-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
.tele-card {
  background: var(--paper);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.tele-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
}
.tele-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
}
.tele-card p {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin: 0;
}
.tele-card .btn {
  margin-top: auto;
}
.tele-note {
  font-size: var(--text-xs) !important;
  color: var(--ink-faint) !important;
  font-style: italic;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  background: rgba(15, 37, 69, 0.08);
  color: var(--navy-700);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tele-tips {
  background: var(--cream);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.tele-tips h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 var(--space-3);
}
.tele-tips ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2) var(--space-6);
}
.tele-tips li {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  padding-left: 1.2em;
  position: relative;
}
.tele-tips li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Insurance */
.ins-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.ins-subhead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 var(--space-4);
}
.ins-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2) var(--space-4);
  margin-bottom: var(--space-5);
}
.ins-list li {
  padding: var(--space-3) var(--space-4);
  background: var(--paper);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--ink);
}
.ins-disclaimer {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  border-left: 3px solid var(--navy-700);
  padding: var(--space-2) var(--space-4);
  margin: 0;
}

.ins-upload {
  background: var(--navy-900);
  color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}
.ins-upload h3 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 var(--space-3);
}
.ins-upload p {
  font-size: var(--text-sm);
  color: rgba(247, 244, 236, 0.85);
}
.upload-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}
.hipaa-note {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: var(--text-xs);
  color: rgba(247, 244, 236, 0.7) !important;
  background: rgba(247, 244, 236, 0.06);
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  margin: 0;
  line-height: 1.5;
}
.hipaa-note .lock {
  flex-shrink: 0;
  color: var(--gold-soft);
  margin-top: 2px;
}

/* Providers */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.provider {
  background: var(--paper);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.provider-portrait {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 30%,
      var(--gold-soft) 0%,
      var(--gold) 60%,
      var(--gold-deep) 100%
    );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 4px rgba(247, 244, 236, 0.5),
    0 6px 18px rgba(201, 162, 74, 0.25);
}
.initials {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.04em;
}
.provider h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 var(--space-1);
}
.credentials {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 var(--space-3);
}
.provider-bio {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin: 0;
}
.provider-bio + .provider-bio {
  margin-top: var(--space-3);
}
.provider-more {
  margin-top: var(--space-4);
  text-align: left;
  border-top: 1px solid var(--slate-100);
  padding-top: var(--space-3);
}
.provider-more summary {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy-700);
  font-size: var(--text-sm);
  font-weight: 700;
  list-style: none;
}
.provider-more summary::-webkit-details-marker {
  display: none;
}
.provider-more summary::after {
  content: "+";
  color: var(--gold-deep);
  font-weight: 700;
}
.provider-more[open] summary::after {
  content: "−";
}
.provider-more summary:hover {
  color: var(--navy-900);
}
.provider-more .provider-bio {
  margin-top: var(--space-3);
}

/* Contact / Hours (dark) */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-grid h2 {
  font-size: var(--text-2xl);
  font-weight: 500;
}
.contact-lede {
  font-size: var(--text-lg);
  color: rgba(247, 244, 236, 0.8);
  margin-bottom: var(--space-6);
  max-width: 52ch;
}
.contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin: 0 0 var(--space-6);
}
.contact-list dt {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 4px;
}
.contact-list dd {
  margin: 0;
  color: var(--off-white);
  font-size: var(--text-base);
  line-height: 1.6;
}
.contact-list dd a {
  color: var(--off-white);
  text-decoration-color: rgba(247, 244, 236, 0.4);
}
.contact-list dd a:hover {
  color: var(--gold-soft);
}
.muted-light {
  color: rgba(247, 244, 236, 0.55);
  font-size: var(--text-sm);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.contact-aside {
  background: rgba(247, 244, 236, 0.04);
  border: 1px solid rgba(247, 244, 236, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.contact-aside h3 {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: 1.2rem;
  margin: 0 0 var(--space-3);
}
.contact-aside p {
  font-size: var(--text-sm);
  color: rgba(247, 244, 236, 0.78);
}

.emergency {
  font-size: var(--text-sm);
  color: rgba(247, 244, 236, 0.85) !important;
  background: rgba(161, 53, 68, 0.18);
  border-left: 3px solid #d36b76;
  padding: var(--space-3) var(--space-4);
  margin: var(--space-5) 0 0;
  border-radius: 4px;
}
.emergency a {
  color: var(--gold-soft);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(247, 244, 236, 0.75);
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(247, 244, 236, 0.08);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-6);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--off-white);
}
.footer-name {
  font-family: var(--font-display);
  color: var(--paper);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}
.footer-addr {
  font-size: var(--text-sm);
  margin: 2px 0 0;
  color: rgba(247, 244, 236, 0.6);
}
.footer-meta {
  text-align: right;
  font-size: var(--text-xs);
  max-width: 460px;
}
.footer-meta p {
  margin: 0 0 4px;
}
.muted {
  color: rgba(247, 244, 236, 0.5);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .nav-list {
    gap: var(--space-4);
  }
  .nav-list a {
    font-size: 0.82rem;
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .tele-cards {
    grid-template-columns: 1fr;
  }
  .tele-tips ul {
    grid-template-columns: 1fr;
  }
  .ins-grid {
    grid-template-columns: 1fr;
  }
  .providers-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .download-list {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 1.25rem;
    background: var(--off-white);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease, padding 280ms ease,
      border-color 280ms ease, box-shadow 280ms ease;
    visibility: hidden;
  }
  .site-nav.is-open .nav-list {
    max-height: 80vh;
    padding: var(--space-3) 1.25rem var(--space-5);
    border-bottom-color: rgba(11, 29, 58, 0.08);
    box-shadow: var(--shadow-md);
    visibility: visible;
  }
  .nav-list li {
    border-top: 1px solid rgba(11, 29, 58, 0.06);
  }
  .nav-list li:first-child {
    border-top: 0;
  }
  .nav-list a:not(.btn) {
    display: block;
    padding: var(--space-3) var(--space-2);
    font-size: var(--text-base);
  }
  .nav-list a:not(.btn)::after {
    display: none;
  }
  .nav-cta {
    margin: var(--space-3) 0 0;
    justify-content: center;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .ins-list {
    grid-template-columns: 1fr;
  }
  .contact-list {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .brand-sub {
    display: none;
  }
}
