/* ─── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Tokens ───────────────────────────────────────────────────────── */
:root {
  --green:  #A7CF3C;
  --teal:   #06AFC1;
  --purple: #9F3492;
  --orange: #F89B1C;
  --red:    #C62828;

  --bg:      #fff;
  --surface: #F8F9FA;
  --border:  rgba(0,0,0,.11);
  --text:    #202124;
  --text2:   #5F6368;

  --s1: 0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --s2: 0 4px 14px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --s3: 0 8px 28px rgba(0,0,0,.13), 0 3px 8px rgba(0,0,0,.07);

  --r1: 8px;
  --r2: 12px;
  --r3: 16px;

  --nav-h: 64px;
  --max:   1200px;
}

/* ─── Base ─────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
a:hover { color: #047d8f; }

/* ─── Skip link ────────────────────────────────────────────────────── */
.skip {
  position: absolute; top: -60px; left: 8px;
  padding: 8px 18px;
  background: var(--teal); color: #fff;
  font-size: 14px; font-weight: 500;
  border-radius: 0 0 var(--r1) var(--r1);
  z-index: 9999; transition: top .2s;
}
.skip:focus { top: 0; }

/* ─── Focus ring ───────────────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 3px; }

/* ─── Layout util ──────────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: 24px; }

/* ════════════════════════════════════════════════════════════════════
   APP BAR
════════════════════════════════════════════════════════════════════ */
.app-bar {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--green);
  box-shadow: 0 2px 5px rgba(0,0,0,.17);
}
.bar-inner {
  max-width: var(--max); margin-inline: auto;
  padding-inline: 20px; height: 100%;
  display: flex; align-items: center; gap: 4px;
}
.bar-logo { flex-shrink: 0; line-height: 0; margin-right: 12px; border-radius: 4px; }
.bar-logo img { height: 40px; width: auto; }

/* Desktop nav */
.d-nav { display: none; align-items: center; }
@media (min-width: 1060px) { .d-nav { display: flex; } }

.dn-item { position: relative; }

.dn-link, .dn-btn {
  display: inline-flex; align-items: center; gap: 3px;
  height: var(--nav-h); padding: 0 11px;
  font: 500 14px/1 inherit;
  color: #1a1a1a; background: none; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap; letter-spacing: .01em;
  transition: background .15s;
}
.dn-link:hover, .dn-btn:hover { background: rgba(0,0,0,.09); color: #1a1a1a; text-decoration: none; }
.dn-link.active { background: rgba(0,0,0,.08); }

.dn-btn svg { width: 11px; height: 11px; fill: currentColor; transition: transform .2s; }
.dn-item.open > .dn-btn svg { transform: rotate(180deg); }

.dn-drop {
  position: absolute; top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 218px;
  background: #fff; border-radius: var(--r2);
  box-shadow: var(--s3), 0 0 0 1px rgba(0,0,0,.06);
  padding: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s, transform .18s, visibility .18s;
}
.dn-item.open > .dn-drop {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dn-drop a {
  display: block; padding: 10px 14px; border-radius: var(--r1);
  font-size: 14px; color: var(--text); text-decoration: none;
  transition: background .12s, color .12s;
}
.dn-drop a:hover { background: var(--surface); color: var(--teal); }

.bar-gap { flex: 1; }

.bar-cta {
  display: none; align-items: center;
  height: 36px; padding: 0 20px;
  background: #fff; color: #1a1a1a;
  font: 600 14px/1 inherit;
  border-radius: 18px; border: none; cursor: pointer;
  text-decoration: none; flex-shrink: 0; white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,.22);
  transition: background .15s;
}
.bar-cta:hover { background: #f0f0f0; text-decoration: none; }
@media (min-width: 1060px) { .bar-cta { display: inline-flex; } }

.ham {
  display: flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px;
  justify-content: center; align-items: center;
  background: none; border: none; cursor: pointer;
  border-radius: var(--r1); flex-shrink: 0;
  margin-left: auto; transition: background .15s;
}
.ham:hover { background: rgba(0,0,0,.09); }
@media (min-width: 1060px) { .ham { display: none; } }
.ham span {
  display: block; width: 22px; height: 2px;
  background: #1a1a1a; border-radius: 2px;
  transition: transform .26s, opacity .26s;
  transform-origin: center;
}
.ham[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════════════
   MOBILE DRAWER
════════════════════════════════════════════════════════════════════ */
.m-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.46);
  z-index: 300; opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.m-overlay.open { opacity: 1; visibility: visible; }

.m-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(340px, 88vw);
  background: #fff; z-index: 301;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
}
.m-drawer.open { transform: translateX(0); }

.m-head {
  background: var(--green); padding: 0 16px;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; flex-shrink: 0;
}
.m-head img { height: 38px; width: auto; }

.m-close {
  width: 40px; height: 40px; background: rgba(0,0,0,.12);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #1a1a1a; transition: background .15s;
}
.m-close:hover { background: rgba(0,0,0,.22); }

.m-body { padding: 8px 12px 32px; flex: 1; }

.m-link {
  display: flex; align-items: center;
  padding: 14px 12px; border-radius: var(--r1);
  font: 500 17px/1 inherit;
  color: var(--text); text-decoration: none; min-height: 50px;
  transition: background .15s;
}
.m-link:hover { background: var(--surface); color: var(--teal); text-decoration: none; }

.m-cat {
  padding: 16px 12px 4px;
  font: 700 11px/1 inherit;
  text-transform: uppercase; letter-spacing: .07em; color: var(--text2);
}
.m-sub {
  display: flex; align-items: center;
  padding: 12px 12px 12px 28px; border-radius: var(--r1);
  font-size: 16px; color: var(--text2); text-decoration: none;
  min-height: 46px; transition: background .15s, color .15s;
}
.m-sub:hover { background: var(--surface); color: var(--teal); text-decoration: none; }
.m-rule { height: 1px; background: var(--border); margin: 8px 8px; }
.m-cta {
  display: flex; align-items: center; justify-content: center;
  margin-top: 12px; padding: 16px 12px; border-radius: var(--r1);
  font: 600 17px/1 inherit; color: var(--teal); text-decoration: none;
  background: rgba(6,175,193,.09); transition: background .15s;
}
.m-cta:hover { background: rgba(6,175,193,.16); text-decoration: none; }

/* ════════════════════════════════════════════════════════════════════
   HERO (homepage only)
════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 600px;
  border-top: 5px solid var(--teal); border-bottom: 5px solid var(--teal);
  overflow: hidden; display: flex; flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #085f6e 0%, #0a8fa6 30%, #3a9e60 65%, #6ab42a 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,255,255,.07) 0%, transparent 100%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(0,0,0,.12) 0%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1; flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 2rem 2rem;
}
.hero-logo { max-width: 300px; width: 100%; filter: drop-shadow(0 3px 10px rgba(0,0,0,.35)); }
.hero-caption {
  position: relative; z-index: 1; width: 100%;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: .75rem 2rem;
}
.hero-caption p {
  max-width: var(--max); margin-inline: auto;
  font-size: clamp(15px, 1.8vw, 19px);
  font-style: italic; font-weight: 300; line-height: 1.65;
  color: #fff; text-align: center;
}
@media (max-width: 640px) {
  .hero { min-height: 420px; }
  .hero-logo { max-width: 64%; }
  .hero-caption { padding: .625rem 1.25rem; }
}

/* ════════════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
════════════════════════════════════════════════════════════════════ */
.intro { background: var(--surface); padding: 56px 24px; }
.intro-text {
  max-width: 800px; margin-inline: auto;
  font-size: clamp(17px, 1.9vw, 20px); line-height: 1.78;
  text-align: center; color: var(--text);
}
.intro-text .brand { color: var(--teal); font-weight: 700; }

.cards-section { background: #fff; padding: 64px 24px; }
.cards-grid { max-width: var(--max); margin-inline: auto; display: grid; gap: 28px; }
@media (min-width: 768px) { .cards-grid { grid-template-columns: 1fr 1fr; } }

/* ════════════════════════════════════════════════════════════════════
   SHARED CARD
════════════════════════════════════════════════════════════════════ */
.card {
  border-radius: var(--r3); border: 1px solid var(--border);
  box-shadow: var(--s1); overflow: hidden; background: #fff;
}
.c-head { padding: 18px 24px; display: flex; align-items: center; gap: 14px; }
.c-head.emg  { background: #FFEBEE; border-bottom: 3px solid var(--red); }
.c-head.nhsc { background: #E2F6F8; border-bottom: 3px solid var(--teal); }
.c-head.grn  { background: #F1F8E9; border-bottom: 3px solid var(--green); }
.c-head.pur  { background: #F3E5F5; border-bottom: 3px solid var(--purple); }
.c-head.org  { background: #FFF3E0; border-bottom: 3px solid var(--orange); }
.c-head.def  { background: var(--surface); border-bottom: 3px solid var(--teal); }

.c-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.emg .c-icon  { background: var(--red); }
.nhsc .c-icon { background: var(--teal); }
.grn .c-icon  { background: var(--green); }
.pur .c-icon  { background: var(--purple); }
.org .c-icon  { background: var(--orange); }
.def .c-icon  { background: var(--teal); }
.c-icon svg { width: 20px; height: 20px; fill: #fff; }

.c-title { font-size: 15px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.emg  .c-title { color: #B71C1C; }
.nhsc .c-title { color: #00788A; }
.grn  .c-title { color: #558B2F; }
.pur  .c-title { color: #6A1B9A; }
.org  .c-title { color: #E65100; }
.def  .c-title { color: #00788A; }

.c-body { padding: 24px 24px 28px; }
.c-body p { font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: 12px; }
.c-body p:last-child { margin-bottom: 0; }

/* Emergency contacts */
.emg-contacts {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 20px; padding: 18px;
  background: #FFFDE7; border-left: 3px solid #F9A825;
  border-radius: 0 var(--r1) var(--r1) 0;
}
.emg-row { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; color: #1B5E20; }
.emg-row svg { width: 20px; height: 20px; fill: #2E7D32; flex-shrink: 0; }
.emg-row a { color: #1B5E20; text-decoration: none; }
.emg-row a:hover { text-decoration: underline; }

/* NHSC box */
.nhsc-box { background: #E2F6F8; border-radius: var(--r1); padding: 20px 20px 16px; margin-bottom: 16px; }
.nhsc-box-head { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #00788A; text-align: center; margin-bottom: 14px; }
.nhsc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.nhsc-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; color: var(--text); line-height: 1.5; }
.nhsc-list li::before {
  content: '';
  width: 20px; height: 20px; min-width: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2306AFC1' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.nhsc-link { color: var(--teal); font-weight: 500; }
.nhsc-link:hover { color: #047d8f; }

/* ════════════════════════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════════════════════ */
.cta-bar { background: var(--purple); padding: 52px 24px; text-align: center; }
.cta-bar a {
  font-size: clamp(20px, 3vw, 30px); font-weight: 500;
  color: #fff; text-decoration: none; letter-spacing: -.01em; transition: opacity .2s;
}
.cta-bar a:hover { opacity: .82; }

/* ════════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════════ */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 48px 24px 0; }
.f-grid { max-width: var(--max); margin-inline: auto; display: grid; gap: 40px; }
@media (min-width: 640px) { .f-grid { grid-template-columns: 2fr 1fr; } }

.f-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text2); margin-bottom: 14px; }

.f-links { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 4px; }
.f-links li { display: flex; align-items: center; }
.f-links li:not(:last-child)::after { content: '·'; color: #ccc; margin-left: 8px; font-size: 16px; line-height: 1; }
.f-links a { font-size: 14px; color: var(--text2); text-decoration: none; padding: 2px 0; }
.f-links a:hover { color: var(--teal); text-decoration: underline; }

.f-phone { margin-bottom: 14px; }
.f-city { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text2); margin-bottom: 3px; }
.f-num { font-size: 21px; font-weight: 500; color: var(--text); text-decoration: none; display: inline-block; transition: color .15s; }
.f-num:hover { color: var(--teal); }

.f-copy {
  max-width: var(--max); margin-inline: auto;
  border-top: 1px solid var(--border);
  padding: 20px 0 28px; margin-top: 48px;
  font-size: 12px; color: var(--text2); text-align: center; line-height: 1.8;
}
.f-copy a { color: var(--text2); text-decoration: none; }
.f-copy a:hover { color: var(--teal); text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════════
   INNER PAGE HEADER
════════════════════════════════════════════════════════════════════ */
.pg-head {
  background: var(--teal);
  padding: 40px 24px 44px;
}
.pg-head .wrap { position: relative; }
.crumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.75);
  margin-bottom: 10px; flex-wrap: wrap;
}
.crumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.crumb a:hover { color: #fff; text-decoration: underline; }
.crumb span { color: rgba(255,255,255,.55); }
.pg-head h1 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -.01em;
}
.pg-head .pg-lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.88); font-weight: 300;
  margin-top: 12px; max-width: 680px; line-height: 1.6;
}

/* Alternate header colors */
.pg-head.grn { background: #4a8a1c; }
.pg-head.pur { background: var(--purple); }
.pg-head.org { background: #b86800; }
.pg-head.dk  { background: #1a3a42; }

/* ════════════════════════════════════════════════════════════════════
   INNER PAGE BODY
════════════════════════════════════════════════════════════════════ */
.pg-body { background: var(--surface); }

.pg-section {
  background: #fff;
  margin-bottom: 2px;
  padding: 48px 24px;
}
.pg-section.alt { background: var(--surface); }

.pg-section .wrap { max-width: 900px; }

.pg-section h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700; color: var(--teal);
  margin-bottom: 16px; letter-spacing: -.01em;
}
.pg-section h3 {
  font-size: 18px; font-weight: 600;
  color: var(--text); margin-bottom: 10px; margin-top: 24px;
}
.pg-section p {
  font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 14px;
}
.pg-section p:last-child { margin-bottom: 0; }

.pg-section ul, .pg-section ol {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 14px;
}
.pg-section ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 16px; color: var(--text); line-height: 1.6;
}
.pg-section ul li::before {
  content: '';
  width: 20px; height: 20px; min-width: 20px; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2306AFC1' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pg-section ol { list-style: decimal; padding-left: 20px; }
.pg-section ol li { display: list-item; padding-left: 4px; font-size: 16px; line-height: 1.6; color: var(--text); }

/* Service grid (overview pages) */
.srv-grid {
  max-width: var(--max); margin-inline: auto;
  display: grid; gap: 24px;
  padding: 48px 24px;
}
@media (min-width: 640px) { .srv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .srv-grid { grid-template-columns: repeat(3, 1fr); } }

.srv-card {
  border-radius: var(--r3); border: 1px solid var(--border);
  box-shadow: var(--s1); background: #fff;
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.srv-card:hover { box-shadow: var(--s2); transform: translateY(-2px); }

.srv-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.srv-icon.teal   { background: rgba(6,175,193,.12); }
.srv-icon.green  { background: rgba(167,207,60,.15); }
.srv-icon.purple { background: rgba(159,52,146,.10); }
.srv-icon.orange { background: rgba(248,155,28,.12); }
.srv-icon.red    { background: rgba(198,40,40,.10); }
.srv-icon svg { width: 26px; height: 26px; }
.srv-icon.teal svg   { fill: var(--teal); }
.srv-icon.green svg  { fill: #558B2F; }
.srv-icon.purple svg { fill: var(--purple); }
.srv-icon.orange svg { fill: #E65100; }
.srv-icon.red svg    { fill: var(--red); }

.srv-card h3 { font-size: 17px; font-weight: 600; color: var(--text); }
.srv-card p  { font-size: 15px; line-height: 1.65; color: var(--text2); flex: 1; }
.srv-card a.more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 600; color: var(--teal);
  text-decoration: none; margin-top: auto;
  transition: color .15s;
}
.srv-card a.more:hover { color: #047d8f; }
.srv-card a.more::after { content: '→'; transition: transform .15s; }
.srv-card a.more:hover::after { transform: translateX(3px); }

/* Two-column layout */
.two-col {
  display: grid; gap: 40px;
}
@media (min-width: 768px) { .two-col { grid-template-columns: 2fr 1fr; } }

/* Info box (sidebar-style callouts) */
.info-box {
  border-radius: var(--r2); padding: 24px;
  border: 1px solid var(--border);
}
.info-box.teal   { background: #E2F6F8; border-color: rgba(6,175,193,.3); }
.info-box.green  { background: #F1F8E9; border-color: rgba(167,207,60,.3); }
.info-box.yellow { background: #FFFDE7; border-left: 3px solid #F9A825; border-radius: 0 var(--r2) var(--r2) 0; }
.info-box.purple { background: #F3E5F5; border-color: rgba(159,52,146,.3); }

.info-box h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.info-box.teal   h4 { color: #00788A; }
.info-box.green  h4 { color: #558B2F; }
.info-box.yellow h4 { color: #E65100; }
.info-box.purple h4 { color: #6A1B9A; }

.info-box p, .info-box li { font-size: 15px; line-height: 1.6; color: var(--text); margin-bottom: 8px; }
.info-box ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; margin: 0; }
.info-box ul li::before { display: none; }
.info-box ul li { padding-left: 14px; position: relative; }
.info-box ul li::before { content: '•'; position: absolute; left: 0; color: var(--teal); display: block; }

/* Location cards */
.loc-grid { display: grid; gap: 24px; margin-top: 24px; }
@media (min-width: 640px) { .loc-grid { grid-template-columns: 1fr 1fr; } }

.loc-card {
  border-radius: var(--r2); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--s1); background: #fff;
}
.loc-card h3 { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 14px; }
.loc-card address { font-style: normal; }
.loc-card .loc-line { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; font-size: 15px; color: var(--text); }
.loc-card .loc-line svg { width: 18px; height: 18px; fill: var(--text2); flex-shrink: 0; margin-top: 2px; }
.loc-card .loc-line a { color: var(--text); text-decoration: none; }
.loc-card .loc-line a:hover { color: var(--teal); text-decoration: underline; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  font: 16px/1.4 inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--r1);
  background: #fff; color: var(--text);
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(6,175,193,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 32px;
  background: var(--teal); color: #fff;
  font: 600 16px/1 inherit;
  border: none; border-radius: 24px; cursor: pointer;
  text-decoration: none; transition: background .15s, box-shadow .15s;
  box-shadow: 0 2px 6px rgba(6,175,193,.35);
  align-self: flex-start;
}
.btn-submit:hover { background: #0598aa; box-shadow: 0 4px 12px rgba(6,175,193,.40); }

/* Staff / team cards */
.team-note {
  background: #E2F6F8; border-radius: var(--r2);
  padding: 24px; margin-bottom: 32px;
  font-size: 16px; color: var(--text); line-height: 1.65;
}
.role-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .role-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .role-grid { grid-template-columns: repeat(3, 1fr); } }

.role-card {
  border-radius: var(--r2); padding: 24px;
  border: 1px solid var(--border); box-shadow: var(--s1); background: #fff;
}
.role-card .role-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(6,175,193,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.role-card .role-icon svg { width: 22px; height: 22px; fill: var(--teal); }
.role-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.role-card p  { font-size: 14px; line-height: 1.6; color: var(--text2); }

/* Links / resources table */
.res-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.res-list li::before { display: none; }
.res-list li { padding: 0; }
.res-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: var(--r2);
  border: 1px solid var(--border); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.res-item:hover { border-color: rgba(6,175,193,.4); box-shadow: var(--s1); }
.res-item svg { width: 20px; height: 20px; fill: var(--teal); flex-shrink: 0; margin-top: 2px; }
.res-item-body { flex: 1; }
.res-item-body strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 3px; }
.res-item-body span { font-size: 13px; color: var(--text2); line-height: 1.4; }
.res-item-body a { font-size: 13px; color: var(--teal); text-decoration: none; }
.res-item-body a:hover { text-decoration: underline; }

/* Employment openings */
.job-note {
  background: var(--surface); border-radius: var(--r2);
  padding: 28px; text-align: center;
  border: 2px dashed var(--border);
}
.job-note p { font-size: 16px; color: var(--text2); line-height: 1.7; }
.job-note a.apply-btn {
  display: inline-flex; align-items: center;
  margin-top: 16px; height: 48px; padding: 0 32px;
  background: var(--teal); color: #fff;
  font: 600 16px/1 inherit; border-radius: 24px;
  text-decoration: none; transition: background .15s;
}
.job-note a.apply-btn:hover { background: #0598aa; }

/* FAQ accordion */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left;
  padding: 16px 20px; background: #fff;
  font: 500 16px/1.4 inherit; color: var(--text);
  border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: var(--surface); }
.faq-q svg { width: 16px; height: 16px; fill: var(--text2); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  background: var(--surface);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 20px 18px; font-size: 15px; color: var(--text); line-height: 1.7; }
