

/* =========================================
   RESET & TOKENS
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #2C3A84;
  --blue-dark:   #1e2a6a;
  --blue-light:  #e8ecf7;
  --blue-mid:    #8fa0d4;
  --green:       #00B84C;
  --green-dark:  #009a3e;
  --green-light: #e5f7ec;
  --gray-50:     #f5f6fa;
  --gray-100:    #eaecf3;
  --gray-200:    #d4d8e8;
  --gray-400:    #8892b0;
  --gray-600:    #4a5275;
  --gray-800:    #1e2140;
  --off-white:   #f7f8fc;
  --nav-h:       68px;
  --r:           10px;
  --r-sm:        6px;
  --shadow:      0 8px 32px rgba(44,58,132,.13), 0 2px 8px rgba(44,58,132,.07);
  --ease:        cubic-bezier(.4,0,.2,1);
  --t:           .2s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--gray-800);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* =========================================
   TOP NAV BAR (shared desktop + mobile)
========================================= */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: var(--blue);
  z-index: 200;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 0;
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: var(--green);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  margin-right: 28px;
}

.logo-mark {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 21px; height: 21px; }

.logo-words { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  color: #fff;
  line-height: 1.15;
  letter-spacing: .01em;
}
.logo-sub {
  font-size: 9.5px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Desktop nav links */
.desktop-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 15px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  border: none;
  border-radius: var(--r-sm);
  transition: background var(--t), color var(--t);
  white-space: nowrap;
  letter-spacing: .01em;
}
.nav-btn:hover,
.nav-btn[aria-expanded="true"] { background: rgba(255,255,255,.1); color: #fff; }
.nav-btn.active { background: rgba(255,255,255,.14); color: #fff; }
.nav-btn:focus-visible,
.btn-outline:focus-visible,
.btn-blue:focus-visible,
.nav-phone:focus-visible,
.ham:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.nav-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }

.chev {
  width: 11px; height: 11px;
  opacity: .55;
  transition: transform var(--t);
  flex-shrink: 0;
}

/* Desktop CTAs */
.desktop-ctas {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
  white-space: nowrap;
  margin-right: 2px;
  transition: color var(--t);
}
.nav-phone:hover { color: rgba(255,255,255,.85); }
.nav-phone svg { flex-shrink: 0; }

.btn-outline {
  padding: 7px 15px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.9);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  transition: border-color var(--t), background var(--t);
  white-space: nowrap;
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }

.btn-green {
  padding: 8px 17px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Primary nav CTA: solid blue (the page body owns the site's single green CTA).
   The subtle white border keeps it legible on the blue nav bar. */
.btn-blue {
  padding: 8px 17px;
  background: var(--blue);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--t), border-color var(--t), transform var(--t);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn-blue:hover { background: var(--blue-dark); border-color: rgba(255,255,255,.8); transform: translateY(-1px); }

/* Hamburger (hidden on desktop) */
.ham {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 8px;
  margin-left: auto;
  padding: 0;
  flex-shrink: 0;
}
.ham span {
  display: block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: all .25s var(--ease);
  transform-origin: center;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   DESKTOP DROPDOWN SYSTEM
========================================= */
.overlay {
  display: none;
  position: fixed;
  top: var(--nav-h); inset-inline: 0; bottom: 0;
  background: rgba(20,26,60,.38);
  backdrop-filter: blur(3px);
  z-index: 198;
}
.overlay.on { display: block; }

.dropdown {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 199;
  background: #fff;
  border-bottom: 3px solid var(--green);
  box-shadow: var(--shadow);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  animation: dropIn .18s var(--ease);
}
.dropdown.open { display: block; }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.d-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 40px 28px;
}

/* Section label */
.slabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

/* Card grids */
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }

.gap24 { margin-top: 24px; }

/* Service card */
.scard {
  display: block;
  padding: 15px 17px;
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
  background: #fff;
  transition: border-color var(--t), background var(--t), transform var(--t), box-shadow var(--t);
}
.scard:hover {
  border-color: var(--blue-mid);
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(44,58,132,.1);
}
.scard.feat { background: var(--blue); border-color: var(--blue); }
.scard.feat:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.cicon {
  width: 30px; height: 30px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 11px;
}
/* Icon chips: on-token only. Blue is structure, green is the scarce accent,
   neutral covers everything else. Icons inherit color via currentColor. */
.ci-blue    { background: var(--blue-light);  color: var(--blue); }
.ci-green   { background: var(--green-light); color: var(--green-dark); }
.ci-neutral { background: var(--gray-100);    color: var(--gray-600); }
.ci-white   { background: rgba(255,255,255,.15); color: #fff; }

.ctitle {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
  line-height: 1.3;
}
.scard.feat .ctitle { color: #fff; }

.cdesc {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
}
.scard.feat .cdesc { color: rgba(255,255,255,.62); }

.cbadge {
  display: inline-block;
  margin-top: 8px;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--green-light);
  color: var(--green-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.scard.feat .cbadge { background: rgba(0,184,76,.22); color: var(--green-light); }

/* Journey strip */
.jstrip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 22px;
}
.jcell {
  padding: 15px 17px;
  border-right: 1px solid var(--gray-100);
}
.jcell:last-child { border-right: none; }
.jcell:first-child { background: var(--blue-light); }
.jcell:last-child  { background: var(--green-light); }

.jnum {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 3px;
}
.jcell:last-child .jnum { color: var(--green-dark); }
.jtitle { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.jdesc  { font-size: 11px; color: var(--gray-400); line-height: 1.5; }

/* Two-col / three-col layouts */
.col2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.col3 { display: grid; grid-template-columns: 1fr 1fr 270px; gap: 28px; }

/* Link list */
.llist { display: flex; flex-direction: column; gap: 1px; }
.litem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: var(--r-sm);
  color: var(--gray-600);
  font-size: 13px;
  transition: background var(--t), color var(--t);
}
.litem:hover { background: var(--gray-50); color: var(--blue); }
.litem.active { color: var(--blue); font-weight: 600; }
.larr { width: 12px; height: 12px; color: var(--blue-mid); flex-shrink: 0; transition: transform var(--t); }
.litem:hover .larr { transform: translateX(3px); }

/* Who-we-help grid */
.wgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.wcard {
  display: block;
  padding: 15px 17px;
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
  transition: border-color var(--t), background var(--t);
}
.wcard:hover { border-color: var(--green); background: var(--green-light); }
.wicon {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 9px;
}
.wicon svg { width: 18px; height: 18px; }
.wtitle { font-size: 13.5px; font-weight: 600; color: var(--gray-800); margin-bottom: 3px; }
.wdesc  { font-size: 12px; color: var(--gray-400); line-height: 1.5; }

/* Diff list */
.dlist { display: flex; flex-direction: column; gap: 8px; }
.drow  { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--gray-600); line-height: 1.45; }
.ddot  { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 5px; }

/* Contact box (resources panel) */
.cbox {
  background: var(--blue);
  border-radius: var(--r);
  padding: 22px;
  color: #fff;
}
.cbox h3 { font-family: 'DM Serif Display', serif; font-size: 17px; font-weight: 400; margin-bottom: 5px; }
.cbox-sub   { font-size: 12px; color: rgba(255,255,255,.58); margin-bottom: 16px; line-height: 1.5; }
.cbox-phone { font-size: 22px; font-weight: 700; color: var(--green); letter-spacing: -.01em; margin-bottom: 3px; }
.cbox-hours { font-size: 11px; color: rgba(255,255,255,.42); margin-bottom: 4px; }
.cbox-email { font-size: 12px; color: rgba(255,255,255,.58); margin-bottom: 16px; }

.cbox-btn {
  display: block;
  width: 100%;
  padding: 11px;
  background: #fff;
  color: var(--blue);
  border: none;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 7px;
  transition: background var(--t), color var(--t);
  letter-spacing: .01em;
}
.cbox-btn:hover { background: var(--blue-light); color: var(--blue-dark); }

.cbox-ghost {
  display: block;
  width: 100%;
  padding: 10px;
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: border-color var(--t), background var(--t);
}
.cbox-ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.07); }

/* Note box */
.notebox {
  margin-top: 14px;
  padding: 11px 15px;
  background: var(--gray-50);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Dropdown footer */
.dfooter {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  padding: 11px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dfooter-q    { font-size: 12px; color: var(--gray-400); font-style: italic; }
.dfooter-ph   { font-size: 12px; font-weight: 600; color: var(--blue); }

/* spacer between grid rows */
.row-gap { margin-top: 20px; }

/* =========================================
   MOBILE DRAWER (hidden on desktop)
========================================= */
.mobile-drawer {
  display: none; /* shown via JS class only on mobile */
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 199;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  flex-direction: column;
}
.mobile-drawer.ready  { display: flex; }
.mobile-drawer.open   { transform: translateX(0); }

/* Mobile top CTAs */
.mob-cta-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 16px;
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mob-book {
  display: block;
  padding: 13px;
  background: var(--blue);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background var(--t), border-color var(--t);
}
.mob-book:active { background: var(--blue-dark); border-color: rgba(255,255,255,.8); }

.mob-quote {
  display: block;
  padding: 13px;
  background: transparent;
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: background var(--t), border-color var(--t);
}
.mob-quote:active { background: rgba(255,255,255,.1); }

/* Phone bar */
.mob-phone-bar {
  padding: 10px 16px;
  background: var(--blue-dark);
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.mob-phone-bar a {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mob-phone-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* Mobile accordion sections */
.mob-sec { border-bottom: 1px solid var(--gray-100); }

.mob-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 18px;
  height: 56px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: background var(--t);
}
.mob-sec-head:active { background: var(--gray-50); }
.mob-sec-head-left { display: flex; align-items: center; gap: 12px; }

.mob-sec-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.mob-caret {
  width: 17px; height: 17px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.mob-sec-head.open .mob-caret { transform: rotate(180deg); }

/* Accordion body */
.mob-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
  background: var(--gray-50);
}
.mob-body.open { max-height: 3000px; }

/* Featured row (top of services) */
.mob-feat {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 10px 14px 4px;
  padding: 15px;
  background: var(--blue);
  border-radius: var(--r);
  transition: background var(--t);
}
.mob-feat:active { background: var(--blue-dark); }
.mob-feat-alt { background: var(--blue-dark); }
.mob-feat-alt:active { background: var(--blue); }
.mob-feat-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mob-feat-icon svg { width: 20px; height: 20px; }
.mob-feat-body { flex: 1; }
.mob-feat-name { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; line-height: 1.3; }
.mob-feat-desc { font-size: 12px; color: rgba(255,255,255,.62); line-height: 1.4; }
.mob-feat-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 9px; font-weight: 700;
  background: rgba(0,184,76,.25); color: var(--green-light);
  padding: 3px 8px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
}
.mob-feat-arr { color: rgba(255,255,255,.35); flex-shrink: 0; }

/* Sub-label inside accordion */
.mob-sublabel {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-400);
  padding: 12px 14px 5px;
}

/* Standard link row */
.mob-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  min-height: 52px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
  font-size: 14px;
  transition: background var(--t);
}
.mob-row:last-child { border-bottom: none; }
.mob-row:active { background: var(--gray-100); }

.mob-row-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mob-row-icon svg { width: 15px; height: 15px; }
.mob-row-text { flex: 1; }
.mob-row-name { font-size: 14px; font-weight: 500; display: block; line-height: 1.3; }
.mob-row-desc { font-size: 11.5px; color: var(--gray-400); display: block; margin-top: 1px; }
.mob-row-arr  { width: 15px; height: 15px; color: var(--gray-200); flex-shrink: 0; }

/* Simple text links (how it works, resources) */
.mob-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: 14px;
  transition: background var(--t), color var(--t);
}
.mob-link:last-child { border-bottom: none; }
.mob-link:active { background: var(--gray-100); color: var(--blue); }
.mob-link.active { color: var(--blue); font-weight: 600; }
.mob-link-arr { width: 12px; height: 12px; color: var(--blue-mid); flex-shrink: 0; }

/* Journey steps in mobile */
.mob-journey { padding: 4px 0; }
.mob-jstep {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--gray-100);
}
.mob-jstep:last-child { border-bottom: none; }
.mob-jbadge {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.mob-jstep:last-child .mob-jbadge { background: var(--green); }
.mob-jcontent { flex: 1; }
.mob-jtitle { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 2px; }
.mob-jdesc  { font-size: 12px; color: var(--gray-400); line-height: 1.5; }

/* Who rows in mobile */
.mob-who-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t);
}
.mob-who-row:last-child { border-bottom: none; }
.mob-who-row:active { background: var(--gray-100); }
.mob-who-icon {
  width: 34px; height: 34px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mob-who-icon svg { width: 19px; height: 19px; }
.mob-who-content { flex: 1; }
.mob-who-name { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 2px; }
.mob-who-desc { font-size: 12px; color: var(--gray-400); line-height: 1.4; }
.mob-who-arr  { width: 15px; height: 15px; color: var(--gray-200); flex-shrink: 0; }

/* Diff rows in mobile */
.mob-diff-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
}
.mob-diff-row:last-child { border-bottom: none; }
.mob-diff-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 5px; }

/* Contact block in mobile resources */
.mob-contact {
  margin: 10px 14px 14px;
  background: var(--blue);
  border-radius: var(--r);
  padding: 20px;
  color: #fff;
}
.mob-contact h3 { font-family: 'DM Serif Display', serif; font-size: 18px; font-weight: 400; margin-bottom: 6px; }
.mob-contact-sub   { font-size: 12px; color: rgba(255,255,255,.58); margin-bottom: 14px; line-height: 1.5; }
.mob-contact-phone { font-size: 24px; font-weight: 700; color: var(--green); letter-spacing: -.01em; margin-bottom: 3px; }
.mob-contact-hours { font-size: 11px; color: rgba(255,255,255,.42); margin-bottom: 4px; }
.mob-contact-email { font-size: 12px; color: rgba(255,255,255,.58); margin-bottom: 16px; }

.mob-contact-book {
  display: block; width: 100%;
  padding: 13px;
  background: #fff; color: var(--blue);
  border: none; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600;
  text-align: center; margin-bottom: 8px;
  transition: background var(--t), color var(--t);
}
.mob-contact-book:active { background: var(--blue-light); color: var(--blue-dark); }

.mob-contact-quote {
  display: block; width: 100%;
  padding: 12px;
  background: transparent; color: rgba(255,255,255,.82);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  text-align: center;
  transition: border-color var(--t), background var(--t);
}
.mob-contact-quote:active { background: rgba(255,255,255,.1); }

/* Note in mobile */
.mob-note {
  margin: 4px 14px 12px;
  padding: 11px 14px;
  background: #fff;
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Drawer footer */
.mob-footer {
  padding: 18px 16px 36px;
  text-align: center;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}
.mob-footer-q { font-size: 12px; color: var(--gray-400); font-style: italic; line-height: 1.5; }
.mob-footer-s { font-size: 11px; color: var(--gray-200); margin-top: 4px; }

/* =========================================
   RESPONSIVE: MOBILE
========================================= */
@media (max-width: 768px) {
  /* Show hamburger */
  .ham { display: flex; }

  /* Hide desktop nav items */
  .desktop-links { display: none; }
  .desktop-ctas  { display: none; }

  /* Tighten nav padding */
  nav { padding: 0 14px; }
}

body { padding-top: var(--nav-h, 68px) !important; }

/* =========================================
   SITE FOOTER (shared, injected before the
   nav.js script tag on every page)
========================================= */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.72);
  font-size: 13.5px;
  line-height: 1.7;
}
.site-footer a { color: rgba(255,255,255,.6); transition: color var(--t); }
.site-footer a:hover { color: #fff; }
.site-footer a:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.sf-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 28px 0;
}

.sf-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
}

/* Brand column */
.sf-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sf-logo-mark {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sf-logo-mark svg { width: 20px; height: 20px; }
.sf-logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: #fff;
  line-height: 1.2;
}
.sf-tagline { font-size: 13px; color: rgba(255,255,255,.85); font-weight: 600; margin-bottom: 4px; }
.sf-never {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.sf-nap { font-style: normal; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.sf-area { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* Link columns */
.sf-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sf-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
}
.sf-links { list-style: none; margin: 0; padding: 0; }
.sf-links li { margin-bottom: 8px; }
.sf-links a { font-size: 13px; }
.sf-links a.active { color: #fff; font-weight: 600; }

/* Bottom bar */
.sf-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sf-trust { font-size: 12px; color: rgba(255,255,255,.45); }
.sf-copy { font-size: 12px; color: rgba(255,255,255,.35); white-space: nowrap; }

@media (max-width: 860px) {
  .sf-top { grid-template-columns: 1fr; gap: 36px; }
  .sf-cols { grid-template-columns: 1fr 1fr; }
  .sf-inner { padding: 44px 20px 0; }
  .sf-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (max-width: 480px) {
  .sf-cols { grid-template-columns: 1fr; }
}
