  /* Contact page — local layout only. Uses existing components. */
  .contact-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: var(--space-8);
    align-items: start;
  }
  @media (max-width: 960px) {
    .contact-layout { grid-template-columns: 1fr; gap: var(--space-7); }
  }

  .contact-form-card {
    background: var(--color-surface-2);
    border: 1px solid var(--color-rule);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-8) var(--space-10);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  [data-theme="light"] .contact-form-card {
    background: var(--color-white);
    box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.12), 0 1px 3px rgba(15, 23, 42, 0.04);
  }
  .schedule-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-10) var(--space-7);
    min-height: 420px;
    background:
      radial-gradient(ellipse at top, rgba(14, 165, 233, 0.18), transparent 60%),
      radial-gradient(ellipse at bottom, rgba(14, 165, 233, 0.08), transparent 55%);
    border-radius: inherit;
    overflow: hidden;
  }
  .schedule-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: rgba(14, 165, 233, 0.14);
    color: var(--color-sky);
    margin-bottom: var(--space-1);
  }
  .schedule-cta__eyebrow {
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-sky);
  }
  .schedule-cta__title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin: 0;
    line-height: 1.2;
    max-width: 22ch;
  }
  .schedule-cta__bullets {
    list-style: none;
    margin: var(--space-2) 0 var(--space-3);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    max-width: 36ch;
    text-align: left;
  }
  .schedule-cta__bullets li {
    position: relative;
    padding-left: 1.6em;
    color: var(--color-text-2);
    line-height: 1.45;
  }
  .schedule-cta__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 1.05em;
    height: 1.05em;
    border-radius: var(--radius-full);
    background: rgba(14, 165, 233, 0.18);
    box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.55);
  }
  .schedule-cta__bullets li::after {
    content: "";
    position: absolute;
    left: 0.32em;
    top: 0.72em;
    width: 0.42em;
    height: 0.22em;
    border-left: 2px solid var(--color-sky);
    border-bottom: 2px solid var(--color-sky);
    transform: rotate(-45deg);
  }
  .schedule-cta__footnote {
    font-size: var(--text-sm);
    color: var(--color-text-3, var(--color-text-2));
    opacity: 0.8;
    margin-top: var(--space-1);
  }

  /* Sidebar info panel */
  .contact-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }
  .contact-side__panel {
    background: var(--color-surface-2);
    border: 1px solid var(--color-rule);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
  }
  .contact-side__panel-title {
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-sky);
    margin-bottom: var(--space-4);
  }
  .contact-side__row {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-3) 0;
    border-top: 1px solid var(--color-rule);
  }
  .contact-side__row:first-of-type { border-top: 0; padding-top: 0; }
  .contact-side__row:last-of-type { padding-bottom: 0; }
  .contact-side__label {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-3);
  }
  .contact-side__value {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--color-text-1);
  }
  .contact-side__value a {
    color: var(--color-text-1);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease, color 0.15s ease;
  }
  .contact-side__value a:hover {
    color: var(--color-sky);
    border-bottom-color: var(--color-sky);
  }
  .contact-side__desc {
    font-size: var(--text-sm);
    color: var(--color-text-2);
    line-height: var(--leading-relaxed);
  }

  /* Incident response callout */
  .incident-callout {
    background: linear-gradient(135deg, rgba(239,68,68,0.08) 0%, rgba(245,158,11,0.06) 100%);
    border: 1px solid rgba(239,68,68,0.35);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
  }
  .incident-callout__eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F97316;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.3);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: var(--space-4);
  }
  .incident-callout__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-extrabold);
    letter-spacing: -0.02em;
    color: var(--color-text-1);
    margin-bottom: var(--space-3);
  }
  .incident-callout__phone {
    display: inline-flex;
    align-items: baseline;
    gap: var(--space-3);
    margin: var(--space-3) 0 var(--space-4);
  }
  .incident-callout__phone-label {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-3);
  }
  .incident-callout__phone-number {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-extrabold);
    letter-spacing: -0.01em;
    color: var(--color-text-1);
    text-decoration: none;
  }
  .incident-callout__phone-number:hover { color: var(--color-sky); }
  .incident-callout__body {
    font-size: var(--text-base);
    color: var(--color-text-2);
    line-height: var(--leading-relaxed);
  }
  .incident-callout__body p + p { margin-top: var(--space-3); }

  /* Card grid for support channels */
  .support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }
  @media (max-width: 960px) { .support-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .support-grid { grid-template-columns: 1fr; } }

  .support-card {
    background: var(--color-surface);
    border: 1px solid var(--color-rule);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .support-card__eyebrow {
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-sky);
  }
  .support-card__value {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--color-text-1);
    word-break: break-word;
  }
  .support-card__value a { color: var(--color-text-1); text-decoration: none; }
  .support-card__value a:hover { color: var(--color-sky); }
  .support-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-3);
    line-height: var(--leading-relaxed);
  }

  /* Social links */
  .contact-social {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .contact-social__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--color-text-1);
    text-decoration: none;
    padding: var(--space-2) var(--space-3);
    margin: 0 calc(-1 * var(--space-3));
    border-radius: var(--radius-sm);
    transition: color 0.15s ease, background 0.15s ease;
  }
  .contact-social__link svg { color: var(--color-sky); flex-shrink: 0; }
  .contact-social__link:hover {
    color: var(--color-sky);
    background: var(--color-surface-2);
  }
