.drc-social-strip {
  background: #f5f7fa;
  border-bottom: 1px solid #e5e7eb;
}
.drc-social-nav {
  box-sizing: border-box;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.drc-social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  color: #1f2937;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.drc-social-nav a:hover {
  color: #2b57a5;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.drc-social-nav a:focus-visible {
  outline: 2px solid #2b57a5;
  outline-offset: 3px;
  border-radius: 2px;
}
.drc-social-nav svg {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: currentColor;
}
@media (max-width: 600px) {
  .drc-social-nav { padding: 0 16px; gap: 16px; }
}
@media (max-width: 520px) {
  .drc-social-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    gap: 0 16px;
  }
  .drc-social-nav .drc-google-reviews {
    grid-column: 1 / -1;
    justify-self: center;
  }
}
.drc-mobile-phone {
  display: none;
}
@media (max-width: 900px) {
  .drc-mobile-phone {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    max-width: calc(100% - 32px);
    min-height: 44px;
    margin: 0 auto 12px;
    padding: 8px 24px;
    border: 2px solid #2b57a5;
    border-radius: 999px;
    background: #fff;
    color: #2b57a5;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
  }
  .drc-mobile-phone svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: currentColor;
  }
  .drc-mobile-phone:hover { color: #1e3f7a; background: #f5f7fa; }
  .drc-mobile-phone:focus-visible { outline: 2px solid #2b57a5; outline-offset: 3px; }
  .site-header .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 44px;
    align-items: center;
    gap: 8px;
  }
  .site-header .nav > a:first-child {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    margin: 0 !important;
    justify-self: start;
  }
  .site-header .nav .logo-img {
    width: 100% !important;
    max-width: 200px;
    height: 48px !important;
  }
  .site-header .nav .drc-mobile-phone {
    grid-column: 2;
    grid-row: 1;
    order: 1;
    max-width: none;
    margin: 0;
    padding: 8px 10px;
    gap: 5px;
    font-size: 14px;
  }
  .site-header .nav .drc-mobile-phone svg {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }
  .site-header .nav .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .site-header .main-nav {
    max-height: calc(100vh - 180px);
    max-height: calc(100dvh - 180px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
@media (max-width: 600px) {
  .site-header .nav {
    padding: 8px 12px !important;
    gap: 6px;
  }
  .site-header .nav .logo-img {
    max-width: 150px;
    height: 44px !important;
  }
}
