:root {
  --navy-950: #061a2b;
  --navy-900: #08263f;
  --navy-800: #103753;
  --navy-700: #174965;
  --green-500: #33d17a;
  --green-600: #22ba68;
  --green-100: #ddf8e9;
  --teal-100: #e8f5f3;
  --cream: #f7f5ee;
  --white: #ffffff;
  --ink: #102333;
  --muted: #61717e;
  --line: #dfe7e9;
  --shadow-sm: 0 12px 30px rgba(4, 29, 47, .08);
  --shadow-lg: 0 24px 70px rgba(3, 24, 39, .18);
  --radius: 4px;
  --radius-lg: 12px;
  --content-max: 2400px;
  --container: min(1280px, calc(100% - 40px));
  --header-height: 88px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

button { cursor: pointer; }

svg { display: block; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; padding: 10px 14px; background: #fff; color: #000; transform: translateY(-150%); transition: .2s; }

.skip-link:focus { transform: translateY(0); }

.topbar { background: var(--navy-950); color: rgba(255,255,255,.78); font-size: 13px; }

.topbar__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.topbar p { margin: 0; display: flex; align-items: center; gap: 9px; }

.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 5px rgba(51,209,122,.12); display: inline-block; }

.topbar__links { display: flex; align-items: center; gap: 12px; }

.topbar a { transition: color .2s; }

.topbar a:hover { color: var(--green-500); }

.header__inner { height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }

.brand__text strong { font-family: "Libre Baskerville", Georgia, serif; font-size: 18px; color: var(--navy-900); }

.brand__text small { margin-top: 5px; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.6px; }

.mobile-menu { position: fixed; top: 0; right: 0; height: 100dvh; width: min(84vw, 390px); background: var(--navy-950); color: #fff; padding: 108px 34px 40px; transform: translateX(105%); transition: transform .35s cubic-bezier(.2,.8,.2,1); z-index: 1001; overflow-y: auto; }

.mobile-menu.open { transform: translateX(0); }

.mobile-menu nav { display: flex; flex-direction: column; }

.mobile-menu a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: "Libre Baskerville", serif; font-size: 20px; }

.mobile-menu a:hover { color: var(--green-500); }

.menu-backdrop { position: fixed; inset: 0; background: rgba(2, 14, 24, .62); opacity: 0; visibility: hidden; z-index: 999; transition: .3s; }

.menu-backdrop.show { opacity: 1; visibility: visible; }

.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border: 1px solid transparent; border-radius: 2px; font-size: 14px; font-weight: 800; letter-spacing: .2px; transition: transform .25s, background .25s, color .25s, border-color .25s, box-shadow .25s; }

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

.btn svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.site-footer { padding: 78px 0 26px; background: var(--navy-950); color: rgba(255,255,255,.67); }

.footer__grid { display: grid; grid-template-columns: 1.5fr .8fr .9fr 1fr; gap: 55px; }

.footer__about p { max-width: 330px; margin: 25px 0 18px; font-size: 14px; }

.footer__phone { color: var(--green-500); font-family: "Libre Baskerville", serif; font-size: 22px; font-weight: 700; }

.site-footer h3 { margin: 4px 0 22px; color: #fff; font-family: "Libre Baskerville", serif; font-size: 17px; }

.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }

.site-footer li, .site-footer p { font-size: 13px; }

.site-footer a { transition: color .2s; }

.site-footer a:hover { color: var(--green-500); }

.footer__availability { margin-top: 22px; display: flex; align-items: center; gap: 13px; }

.footer__availability div { display: flex; flex-direction: column; line-height: 1.35; }

.footer__availability strong { color: #fff; font-size: 13px; }

.footer__availability small { font-size: 11px; }

.footer__bottom { margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 25px; }

.footer__bottom p { margin: 0; }

.footer__bottom div { display: flex; gap: 20px; font-size: 11px; }

.footer__disclaimer { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.07); font-size: 10px; line-height: 1.65; color: rgba(255,255,255,.42); }

.mobile-call-bar { display: none; }

@media (min-width: 1200px) {
:root {
    --container: min(var(--content-max), 97vw);
  }

.footer__grid {
    gap: clamp(30px, 4vw, 60px);
  }

.footer__about p {
    max-width: 420px;
  }
}

@media (min-width: 1400px) {
:root {
    --container: min(var(--content-max), 98vw);
  }
}

@media (max-width: 960px) {
:root { --header-height: 76px; }

.header__inner { height: var(--header-height); }

.footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
body { padding-bottom: 96px; }

.container { width: min(calc(100% - 30px), var(--container)); }

.topbar__inner { min-height: 36px; justify-content: center; }

.topbar__links { display: none; }

.brand__text strong { font-size: 15px; }

.brand__text small { font-size: 8px; }

.btn { width: 100%; }

.footer__grid { grid-template-columns: 1fr; gap: 40px; }

.footer__bottom { align-items: flex-start; flex-direction: column; }

.footer__bottom div { flex-wrap: wrap; }

.mobile-call-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1500; min-height: 68px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 18px; background: #31dd73; color: #052015; box-shadow: 0 -10px 30px rgba(3,20,12,.24); }

.mobile-call-bar svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 2.2; }

.mobile-call-bar span { display: flex; flex-direction: column; line-height: 1.15; }

.mobile-call-bar small { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; font-weight: 800; }

.mobile-call-bar strong { font-size: 19px; font-weight: 900; }
}

@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }

*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Minimal mobile sticky call bar */
.mobile-call-bar {
  position: fixed;
  z-index: 99999;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  color: #ffffff;
  background: #02b615;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-call-bar:hover {
  color: #ffffff;
  background: #029a12;
}

@media (max-width: 991px) {
body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

.mobile-call-bar {
    display: flex;
  }
}

/* Directory listing column: the >=1200px rules widen .container to ~97vw,
   which stretches the listing cards. Hold it to a readable measure. */
.page-shell.container { width: min(calc(100% - 48px), 1200px); }

@media (max-width: 680px) {
.page-shell.container { width: min(calc(100% - 24px), 1200px); }
}

.footer-brand .brand-logo {
  height: 36px;
  max-width: min(110px, 34vw);
}

@media (max-width: 1080px) {
.footer-brand .brand-logo {
    height: 32px;
    max-width: min(92px, 32vw);
  }
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--header-bar-border, rgba(16, 46, 68, 0.08));
  background: var(--header-bar-bg, rgba(255, 255, 255, 0.96));
  color: var(--header-bar-text, inherit);
  backdrop-filter: var(--header-bar-backdrop, blur(14px));
}

.site-header .brand-name,
.site-header .brand-copy strong,
.site-header .brand-text strong,
.site-header .primary-nav > a,
.site-header .main-nav > a,
.site-header .nav-menu > a,
.site-header .desktop-nav > a {
  color: var(--header-bar-link, inherit);
}

.site-header .brand-copy small,
.site-header .brand-text small {
  color: var(--header-bar-link-muted, inherit);
}

.site-header .menu-toggle {
  color: var(--header-bar-link, inherit);
}

.site-header .header-inner,
.site-header .nav-wrap,
.site-header .container.nav-wrap,
.header-inner.shell,
.header-inner.page-shell,
.page-shell.header-inner,
.shell.header-inner {
  width: min(var(--content-max, 2400px), calc(100% - 40px));
  max-width: none;
  min-height: 64px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: none;
  width: auto;
  margin-right: 0;
}

.logo-placeholder,
.brand-mark,
.logo-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  padding: 0;
  box-shadow: none;
}

.brand-logo,
.brand .brand-logo {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(120px, 38vw);
  flex: 0 0 auto;
  object-fit: contain;
  background: var(--header-logo-bg, transparent);
  border: 0;
  border-radius: var(--header-logo-radius, 0);
  padding: var(--header-logo-pad, 0);
  box-shadow: none;
  overflow: visible;
  box-sizing: content-box;
}

.footer-brand .brand-logo {
  height: 36px;
  max-width: min(110px, 34vw);
  background: var(--footer-logo-bg, var(--header-logo-bg, transparent));
  padding: var(--footer-logo-pad, var(--header-logo-pad, 0));
  border-radius: var(--footer-logo-radius, var(--header-logo-radius, 0));
}

.logo-placeholder svg,
.brand-mark svg,
.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-placeholder:has(svg) {
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.brand-copy,
.brand-text {
  display: grid;
  line-height: 1.05;
  min-width: 0;
}

.brand-copy strong,
.brand-text strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small,
.brand-text small {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-brand.brand,
.brand.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.primary-nav,
.main-nav,
.nav-menu,
.desktop-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 24px);
  white-space: nowrap;
  margin-left: auto;
}

.primary-nav > a,
.main-nav > a,
.nav-menu > a,
.desktop-nav > a {
  position: relative;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.primary-nav > a:not(.nav-call)::after,
.main-nav > a:not(.nav-call)::after,
.nav-menu > a:not(.nav-call)::after,
.desktop-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-call):hover::after,
.primary-nav > a:not(.nav-call):focus-visible::after,
.primary-nav > a.active::after,
.main-nav > a:not(.nav-call):hover::after,
.main-nav > a:not(.nav-call):focus-visible::after,
.main-nav > a.active::after,
.nav-menu > a:not(.nav-call):hover::after,
.nav-menu > a:not(.nav-call):focus-visible::after,
.nav-menu > a.active::after,
.desktop-nav > a:not(.nav-call):hover::after,
.desktop-nav > a:not(.nav-call):focus-visible::after,
.desktop-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-call,
.main-nav .nav-call,
.nav-menu .nav-call,
.desktop-nav .nav-call {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.primary-nav .nav-call::after,
.main-nav .nav-call::after,
.nav-menu .nav-call::after,
.desktop-nav .nav-call::after {
  display: none;
}

.header-phone,
.header-call,
.header-cta,
.header-quote {
  display: none !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav,
  .main-nav,
  .nav-menu,
  .desktop-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 24px;
    margin-left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.open,
  .main-nav.open,
  .nav-menu.open,
  .desktop-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav > a,
  .main-nav > a,
  .nav-menu > a,
  .desktop-nav > a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 1rem;
  }

  .primary-nav .nav-call,
  .main-nav .nav-call,
  .nav-menu .nav-call,
  .desktop-nav .nav-call {
    margin-top: 8px;
    width: fit-content;
  }

  .logo-placeholder,
  .brand-mark,
  .logo-mark {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }

  .brand-logo {
    height: 34px;
    max-width: min(100px, 34vw);
  }

  .footer-brand .brand-logo {
    height: 32px;
    max-width: min(92px, 32vw);
  }
}