/* Approved conventional.html shell. Load after page/inline CSS on every route. */
.shared-header.topbar,
.shared-footer,
.shared-mobilebar.mobilebar {
  --paper: #f4f1ea;
  --paper-deep: #ece8de;
  --ink: #1a1917;
  --muted: #6b675e;
  --blue: #2456a0;
  --blue-dark: #1a4076;
  --wa: #1e7a4f;
  --wa-dark: #16603d;
  box-sizing: border-box;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
}
.shared-header *, .shared-footer *, .shared-mobilebar * { box-sizing: border-box; margin: 0; }
.shared-header.topbar { position: sticky; top: 0; z-index: 40; background: var(--paper); color: var(--ink); padding: 0; border: 0; }
.shared-header .topbar-inner {
  max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 0; border: 0;
}
.shared-header .brand { display: flex; align-items: center; text-decoration: none; flex: 0 1 auto; min-width: auto; }
.shared-header .brand img { display: block; height: 38px; width: auto; max-width: none; max-height: none; }
.shared-header .mainnav { display: flex; gap: 28px; margin-left: auto; margin-right: 32px; align-items: center; }
.shared-header .mainnav a {
  font-family: "Work Sans", sans-serif; font-size: 12.5px; font-weight: 600; line-height: normal;
  letter-spacing: .08em; text-transform: uppercase; color: #45423a; text-decoration: none;
  white-space: nowrap; transition: color .15s ease;
}
.shared-header .mainnav a:hover { color: var(--blue); }
.shared-header .mainnav .chev { display: inline; font-size: 9px; margin-left: 3px; color: var(--muted); vertical-align: baseline; }
.shared-header .mainnav .nav-group { position: relative; display: flex; align-items: center; padding: 0; margin: 0; line-height: normal; }
.shared-header .mainnav .nav-group > a::after { content: none; }
.shared-header .mainnav .submenu {
  display: none; position: absolute; top: 100%; right: 0; width: 320px;
  list-style: none; margin: 0; padding: 16px 0 10px; background: var(--paper);
  box-shadow: 0 10px 24px -8px rgba(26,25,23,.2); z-index: 45;
}
.shared-header .mainnav .submenu a { display: block; padding: 11px 20px; font-size: 14px; line-height: 1.5; white-space: normal; text-transform: none; letter-spacing: 0; }
.shared-header .mainnav .nav-group:not(.is-dismissed):hover > .submenu,
.shared-header .mainnav .nav-group:not(.is-dismissed):focus-within > .submenu { display: block; }
.shared-header .burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; min-width: 0; min-height: 0; }
.shared-header .burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }
.shared-header .m-menu {
  display: none; background: var(--paper); border-bottom: 1px solid rgba(26,25,23,.14);
  padding: 6px 22px 18px; max-height: none; overflow: visible;
}
.shared-header .m-menu a {
  display: block; padding: 13px 0; font-family: "Work Sans", sans-serif; font-size: 15px; font-weight: 600;
  line-height: normal; letter-spacing: .05em; text-transform: uppercase; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid rgba(26,25,23,.08);
}
.shared-header .m-menu > a:last-child { border-bottom: 0; }
.shared-header .m-menu .submenu { display: block; position: static; list-style: none; margin: 0; padding: 0 0 4px 16px; box-shadow: none; width: auto; }
.shared-header .m-menu .submenu a { font-size: 14px; font-weight: 400; line-height: 1.5; letter-spacing: 0; text-transform: none; padding: 10px 0; }
.shared-header .phone {
  font-family: "Work Sans", sans-serif; font-size: 14.5px; font-weight: 600; line-height: normal;
  text-decoration: none; color: var(--paper); white-space: nowrap; display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 999px; background: var(--blue); transition: background .15s ease; flex-shrink: 1;
}
.shared-header .phone:hover { background: var(--blue-dark); color: var(--paper); }
.shared-header .phone .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--paper); animation: shared-shell-pulse 2.4s ease-in-out infinite; }
@keyframes shared-shell-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.shared-header :focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.shared-footer { background: var(--ink); color: var(--paper); padding: 72px 24px 0; }
.shared-footer .footer-inner { max-width: 1160px; margin: 0 auto; }
.shared-footer .footer-grid { display: grid; grid-template-columns: minmax(0,8fr) minmax(0,4fr); gap: 56px; align-items: start; }
.shared-footer .f-brand { font-family: "Bona Nova", serif; font-weight: 700; font-size: 24px; line-height: normal; letter-spacing: -.01em; }
.shared-footer .f-blurb { font-family: "Work Sans", sans-serif; font-size: 14.5px; line-height: 1.6; color: #c9c4b8; margin-top: 14px; max-width: 40ch; }
.shared-footer .f-head { font-family: "Work Sans", sans-serif; font-size: 12px; font-weight: 600; line-height: normal; letter-spacing: .1em; text-transform: uppercase; color: #8f8a7e; margin-bottom: 16px; }
.shared-footer .f-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.shared-footer .f-list a, .shared-footer .f-list li { font-family: "Work Sans", sans-serif; font-size: 15px; font-weight: 400; line-height: normal; color: var(--paper); text-decoration: none; }
.shared-footer .f-list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.shared-footer .f-addr { font-family: "Work Sans", sans-serif; font-size: 14.5px; line-height: 1.6; font-style: normal; color: #c9c4b8; margin-top: 22px; }
.shared-footer .f-addr strong { color: var(--paper); }
.shared-footer .f-service { margin-top: 12px; font-family: "Work Sans", sans-serif; font-size: 14.5px; line-height: 1.6; }
.shared-footer .f-service a { color: var(--paper); text-decoration: none; }
.shared-footer .f-service a:hover { text-decoration: underline; text-underline-offset: 3px; }
.shared-footer .footer-bottom {
  margin-top: 56px; padding: 22px 0; border-top: 1px solid rgba(244,241,234,.14);
  font-family: "Work Sans", sans-serif; font-size: 13px; line-height: normal; color: #8f8a7e;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.shared-footer .footer-bottom a { color: #c9c4b8; text-decoration: none; }
.shared-footer .footer-bottom a:hover { text-decoration: underline; }
.shared-footer .privacy-settings-link { padding: 0; border: 0; background: none; color: #c9c4b8; font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.shared-footer :focus-visible { outline: 3px solid var(--paper); outline-offset: 4px; }
.shared-mobilebar.mobilebar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  box-shadow: 0 -6px 24px rgba(26,25,23,.16); padding: 0 0 env(safe-area-inset-bottom); background: var(--paper);
}
.shared-mobilebar a {
  flex: 1; text-align: center; padding: 17px 8px; min-height: 0;
  font-family: "Work Sans", sans-serif; font-size: 15px; font-weight: 600; line-height: normal;
  text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 9px;
}
.shared-mobilebar .mb-call { background: var(--blue); color: var(--paper); }
.shared-mobilebar .mb-wa { background: var(--wa); color: var(--paper); }
.shared-mobilebar :focus-visible { outline: 3px solid var(--paper); outline-offset: -5px; }
@media (min-width: 901px) and (max-width: 1150px) {
  .shared-header .brand img { height: 32px; }
  .shared-header .mainnav { gap: 16px; margin-right: 18px; }
  .shared-header .mainnav a { font-size: 11.5px; letter-spacing: .05em; }
  .shared-header .phone { padding: 9px 14px; font-size: 13.5px; }
}
@media (min-width: 901px) and (max-width: 980px) {
  .shared-header .brand { margin-right: 16px; }
  .shared-header .brand img { height: 28px; }
  .shared-header .mainnav { gap: 12px; }
  .shared-header .mainnav a { font-size: 11px; }
}
@media (max-width: 900px) {
  body:has(> .shared-mobilebar) { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .shared-header .topbar-inner { display: flex; gap: 0; padding: 14px 24px; }
  .shared-header .phone, .shared-header .mainnav { display: none; }
  .shared-header .burger { display: block; }
  .shared-header .brand img { height: 38px; }
  .shared-header .m-menu.open { display: block; max-height: calc(100dvh - 140px - env(safe-area-inset-bottom)); overflow-y: auto; }
  .shared-footer { padding-top: 56px; }
  .shared-footer .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .shared-mobilebar.mobilebar { display: flex; }
}
@media (max-width: 360px) {
  .shared-header .brand { min-width: 0; }
  .shared-header .brand img { height: auto; width: 100%; max-width: 244px; }
  .shared-header .burger { flex: 0 0 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .shared-header .phone .dot { animation: none; }
  .shared-header .phone, .shared-header .mainnav a { transition: none; }
}
