/* ==========================================================================
   Bold — citywide-bold-usa
   site.css: design tokens, reset, layout primitives, buttons, header/nav,
   footer, sticky call rail (desktop) / call bar (mobile), breadcrumbs.

   Color tokens --primary/--primary-light/--primary-dark/--accent/
   --accent-light/--accent-dark/--secondary/--secondary-light/--dark/--brand/
   --brand2/--hero-gradient are injected by templateHead.ejs's own <style>
   block AFTER this file loads, from site.theme.* (lib/generation/palettes.ts).
   Every color in this design system consumes those custom properties —
   never a hardcoded palette hex.
   ========================================================================== */

:root {
  /* Structural tokens — independent of the selected color palette. */
  --container: 1240px;
  --container-narrow: 860px;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 64px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.20);
  --ink: #0b1220;
  --ink-soft: #4b5568;
  --ink-faint: #7b8598;
  --paper: #ffffff;
  --paper-alt: #f4f6fb;
  --border-soft: rgba(15, 23, 42, 0.10);
  --border-strong: rgba(15, 23, 42, 0.18);
  --font-display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --callbar-h: 68px;
  --nav-h: 76px;
  --topbar-h: 40px;

  /* Fallbacks only — the real values arrive via templateHead.ejs's inline
     :root block right after this stylesheet; these keep the page usable if
     that block is ever missing (e.g. this file previewed standalone). */
  --primary: #1b2e5c;
  --primary-light: #2a4080;
  --primary-dark: #0f1d3d;
  --accent: #0eb77a;
  --accent-light: #e6f9f0;
  --accent-dark: #0a9663;
  --secondary: #ff7a30;
  --secondary-light: #fff0e6;
  --dark: #0f172a;
  --brand: #0b5cff;
  --brand2: #0747c9;
  --hero-gradient: linear-gradient(135deg, rgba(15, 29, 61, 0.92) 0%, rgba(27, 46, 92, 0.85) 40%, rgba(10, 150, 99, 0.35) 100%);
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  /* Room for the fixed mobile call bar (responsive.css turns this on). */
  padding-bottom: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

button {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -------------------------------------------------------------------------
   Skip link
   ------------------------------------------------------------------------- */

.skipLink {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skipLink:focus {
  top: 12px;
}

/* -------------------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.92);
}

.section--primary {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.94);
}

.section--alt {
  background: var(--paper-alt);
}

.section__head {
  max-width: 720px;
  margin: 0 0 40px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section--dark .section__eyebrow,
.section--primary .section__eyebrow {
  color: var(--accent-light);
}

.section__eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--accent);
}

.section__title {
  font-size: clamp(28px, 4vw, 44px);
}

.section__subtitle {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
}

.section--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section--dark .section__subtitle,
.section--primary .section__subtitle {
  color: rgba(255, 255, 255, 0.78);
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  min-height: 54px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  box-shadow: var(--shadow-lg);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--sm {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

.btn__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* -------------------------------------------------------------------------
   Chips / badges
   ------------------------------------------------------------------------- */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.chip--light {
  background: var(--paper-alt);
  border-color: var(--border-soft);
  color: var(--ink);
}

.chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

/* -------------------------------------------------------------------------
   Top bar
   ------------------------------------------------------------------------- */

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar__group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.topbar__item--accent {
  color: var(--accent-light, #fff);
  font-weight: 700;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__location {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* -------------------------------------------------------------------------
   Main nav
   ------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.nav.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav__logo img {
  height: 46px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0 auto 0 32px;
}

.nav__links > li {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  transition: color 0.18s ease, background 0.18s ease;
}

.nav__link:hover {
  color: var(--primary);
  background: var(--paper-alt);
}

.nav__link svg {
  width: 14px;
  height: 14px;
}

.nav__dropdown {
  position: relative;
}

.nav__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  max-width: 360px;
  max-height: 70vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 250;
}

.nav__dropdown:hover > .nav__panel,
.nav__dropdown:focus-within > .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.nav__panelItem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.nav__panelItem:hover {
  background: var(--paper-alt);
  color: var(--primary);
}

.nav__cta {
  flex: 0 0 auto;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: #fff;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------------------------
   Mobile nav overlay
   ------------------------------------------------------------------------- */

.mobileNav {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(11, 18, 32, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobileNav.is-active {
  opacity: 1;
  visibility: visible;
}

.mobileNav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobileNav.is-active .mobileNav__panel {
  transform: translateX(0);
}

.mobileNav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-soft);
}

.mobileNav__head img {
  height: 36px;
  width: auto;
}

.mobileNav__close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobileNav__links {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 24px;
  gap: 2px;
}

.mobileNav__links > a {
  padding: 14px 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-sm);
}

.mobileNav__links > a:hover {
  background: var(--paper-alt);
}

.mobileAccordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.mobileAccordion__btn:hover {
  background: var(--paper-alt);
}

.mobileAccordion__btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.mobileAccordion__btn.is-active svg {
  transform: rotate(180deg);
}

.mobileAccordion__content {
  display: none;
  flex-direction: column;
  padding: 4px 10px 12px 20px;
  gap: 2px;
  max-height: 50vh;
  overflow-y: auto;
}

.mobileAccordion__content.is-active {
  display: flex;
}

.mobileAccordion__content a {
  padding: 10px 10px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.mobileAccordion__content a:hover {
  background: var(--paper-alt);
  color: var(--primary);
}

.mobileNav__footer {
  margin-top: auto;
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border-soft);
}

/* -------------------------------------------------------------------------
   Sticky call rail (desktop) / call bar (mobile)
   ------------------------------------------------------------------------- */

.callRail {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 320;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  height: 58px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.18s ease;
}

.callRail:hover {
  transform: translateY(-3px);
}

.callRail__icon {
  width: 20px;
  height: 20px;
  animation: callRailRing 2.4s ease-in-out infinite;
}

@keyframes callRailRing {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-14deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  .callRail__icon { animation: none; }
}

.callBar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 350;
  height: var(--callbar-h);
  background: var(--primary);
  color: #fff;
}

.callBar__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.callBar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  font-family: var(--font-display);
}

.callBar__btn--accent {
  background: var(--accent);
}

.callBar__btn svg {
  width: 18px;
  height: 18px;
}

/* -------------------------------------------------------------------------
   Breadcrumbs
   ------------------------------------------------------------------------- */

.breadcrumbs {
  background: var(--paper-alt);
  border-bottom: 1px solid var(--border-soft);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  font-size: 13px;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-faint);
}

.breadcrumbs__item:not(:first-child)::before {
  content: "/";
  color: var(--ink-faint);
  opacity: 0.6;
}

.breadcrumbs__link {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

.breadcrumbs__link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumbs__current {
  font-weight: 700;
  color: var(--ink);
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer__cta {
  background: var(--primary);
  color: #fff;
}

.footer__ctaInner {
  padding: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__ctaTitle {
  font-size: clamp(22px, 3vw, 30px);
  color: #fff;
  margin: 0 0 8px;
}

.footer__ctaText {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

.footer__main {
  padding: 56px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--gap-lg);
}

.footer__brandTitle {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin: 0 0 12px;
}

.footer__brandText {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer__heading {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer__list a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer__list a:hover {
  color: #fff;
}

.footer__contactItem {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer__contactItem svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--accent);
}

.footer__contactItem a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
}

.footer__contactItem a:hover {
  color: #fff;
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottomLinks {
  display: flex;
  gap: 18px;
}

.footer__bottomLinks a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer__bottomLinks a:hover {
  color: #fff;
}

/* Social icons */
.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.social__icon:hover {
  background: var(--accent);
}

.social__svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 13px;
}

/* -------------------------------------------------------------------------
   Cookie consent
   ------------------------------------------------------------------------- */

.cookieConsent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 500;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cookieConsent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 20px;
}

.cookieConsent__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.cookieConsent__text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookieConsent__btn {
  flex: 0 0 auto;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
}

/* Give room for the callBar so the cookie banner never sits under it. */
@media (max-width: 767px) {
  .cookieConsent {
    bottom: calc(var(--callbar-h) + 12px);
  }
}

/* -------------------------------------------------------------------------
   Areas We Serve flyout (nav dropdown + mobile accordion share this markup)
   ------------------------------------------------------------------------- */

.areasFlyout {
  width: 100%;
  min-width: 260px;
}

.areasFlyout__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.areasFlyout__tab {
  flex: 1;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: var(--paper-alt);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: var(--ink-soft);
}

.areasFlyout__tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.areasFlyout__panel.is-hidden {
  display: none;
}

.areasFlyout__head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 6px 10px 8px;
}

.areasFlyout__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 320px;
  overflow-y: auto;
}

.areasDrill__row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__areaLink {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

a.nav__areaLink:hover {
  background: var(--paper-alt);
  color: var(--primary);
}

.nav__areaLink--static {
  cursor: default;
}

.nav__areaIcon {
  display: inline-flex;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--ink-faint);
}

.nav__areaIcon svg {
  width: 100%;
  height: 100%;
}

.areasDrill__toggle {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: #fff;
  cursor: pointer;
  position: relative;
}

.areasDrill__toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform-origin: center;
  rotate: 45deg;
  transition: rotate 0.18s ease;
}

.areasDrill__toggle[aria-expanded="true"] span {
  rotate: 225deg;
}

.areasDrill__landmarks {
  padding: 2px 0 4px 30px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.areasFlyout--mobile {
  box-shadow: none;
}
