/*
 * ====================================================
 * Orca Courier — style-additions.css
 * PASTE THIS AT THE END OF style.css
 * (or @import it after the main stylesheet)
 * ====================================================
 */

/* ===== SKIP NAVIGATION ===== */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--primary); color: #fff;
  padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .9rem; font-weight: 600; z-index: 9999;
  transition: top .15s; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ===== FOCUS STATES ===== */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .825rem; color: var(--muted-foreground);
  padding: .75rem 0; flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--muted-foreground); }

/* ===== FAQ ACCORDION ===== */
.faq-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.125rem 1.375rem; background: var(--card);
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  text-align: left; cursor: pointer; border: none; transition: background .15s;
}
.faq-btn:hover { background: var(--muted); }
.faq-btn[aria-expanded="true"] { background: var(--secondary); }
.faq-icon {
  width: 1.25rem; height: 1.25rem; flex-shrink: 0;
  stroke: var(--primary); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; transition: transform .25s;
}
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-body { display: none; padding: 0 1.375rem 1.25rem; color: var(--muted-foreground); line-height: 1.65; }
.faq-body.open { display: block; }
.faq-body a { color: var(--primary); text-decoration: underline; }

/* ===== SERVICE AREA CHIPS ===== */
.area-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--secondary); border: 1px solid var(--border);
  border-radius: 99px; padding: .35rem .875rem;
  font-size: .8125rem; font-weight: 500; color: var(--foreground);
}
.area-chip svg {
  width: .9em; height: .9em; stroke: var(--primary); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ===== HOURS TABLE ===== */
.hours-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.hours-table tr + tr td { border-top: 1px solid var(--border); }
.hours-table td { padding: .45rem 0; }
.hours-table td:last-child { text-align: right; font-weight: 500; }
.hours-open { color: #16a34a; }

/* ===== TEXT CENTER ===== */
.text-center { text-align: center; }

/* ===== 404 POPULAR LINKS ===== */
.error-page-popular { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.5rem; }
.error-page-popular a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .875rem;
  transition: border-color .15s, background .15s;
}
.error-page-popular a:hover { border-color: var(--primary); background: var(--secondary); }