/* Homepage-only layout. Shared navigation, footer, and other pages stay unchanged. */
.home-page .hero { padding: 48px 0; }
.home-page .hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  grid-template-areas: "intro care" "entry care";
  gap: 18px 60px;
  align-items: start;
}
.home-page .home-intro { grid-area: intro; }
.home-page .home-intro .lead { margin-bottom: 0; }
.home-page .hero-panel { grid-area: care; align-self: center; }
.home-page .home-entry-actions { grid-area: entry; }
.home-page .home-entry-actions .actions { margin-top: 0; }
.home-page .home-entry-actions p { margin: 14px 0 0; }
.home-page .language-note { color: var(--muted); font-size: 14px; }
.home-page .language-note a { color: var(--green); text-decoration: underline; }
.home-page .hero-panel .walkin-welcome {
  color: var(--green); font-size: 21px; font-weight: 800; margin: 16px 0 4px;
}
.home-page .office-phone a { color: var(--green); font-weight: 700; text-decoration: underline; }
.home-page .section { padding: 48px 0; }
.home-page .section-head { margin-bottom: 24px; }
.home-page .home-services .card { display: flex; flex-direction: column; }
.home-page .home-services .card > a { margin-top: auto; }
.home-page .home-visit h2 { font-size: clamp(32px, 4vw, 42px); margin: 8px 0 24px; }
.home-page .hours-three tbody th {
  background: transparent; color: var(--ink); font-size: inherit;
  letter-spacing: normal; padding: 13px 8px;
}
.home-page .visit-address { color: var(--muted); margin: 20px 0 0; }
.home-page .callout .btn.secondary { color: #fff; border-color: #fff; }
.home-page .callout .btn.secondary:hover { color: var(--green); background: #fff; }
.home-page .callout .btn:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.home-page .updates-grid { grid-template-columns: 1fr; }
.home-page .update-card { padding: 24px; }
.home-page .update-card h3 { margin: 10px 0 8px; }
.home-page .update-card p { margin: 0 0 14px; max-width: 78ch; }
.home-page .update-card .text-link { align-self: flex-start; }
@media (max-width: 900px) {
  .home-page .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "care" "entry";
    gap: 24px;
  }
  .home-page .hero-panel { width: 100%; }
}
@media (max-width: 600px) {
  .home-page .hero { padding: 28px 0 32px; }
  .home-page .hero h1 { font-size: 42px; margin: 12px 0 16px; }
  .home-page .hero .lead { font-size: 17px; }
  .home-page .hero-panel { padding: 22px; }
  .home-page .hero-panel hr { margin: 16px 0; }
  .home-page .home-entry-actions .btn { width: 100%; min-height: 48px; }
  .home-page .section { padding: 34px 0; }
  .home-page .section-head h2 { font-size: 34px; }
  .home-page .home-visit .split { gap: 30px; }
  .home-page .callout { padding: 26px; }
  .home-page .home-visit h2 { font-size: 32px; }
  .home-page .hours-three { display: table; width: 100%; min-width: 0; table-layout: fixed; font-size: 13px; }
  .home-page .hours-three thead {
    display: table-header-group; position: static; width: auto; height: auto;
    margin: 0; overflow: visible; clip: auto; white-space: normal;
  }
  .home-page .hours-three tbody { display: table-row-group; width: auto; }
  .home-page .hours-three tr, .home-page .hours-three tbody tr {
    display: table-row; width: auto; margin: 0; border: 0; border-radius: 0;
    overflow: visible; background: transparent;
  }
  .home-page .hours-three th, .home-page .hours-three td {
    display: table-cell; width: auto; padding: 12px 6px; vertical-align: top;
    text-align: left; overflow-wrap: break-word;
  }
  .home-page .hours-three tbody th, .home-page .hours-three tbody td { border-bottom: 1px solid var(--line); }
  .home-page .hours-three tbody td::before { content: none; }
  .home-page .update-card { padding: 22px; }
}
@media print {
  .home-page .hero, .home-page .section { padding: 18px 0; }
  .home-page .hero-grid { display: block; }
  .home-page .home-entry-actions { display: none; }
}
