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

:root {
  --gold:       #c9a84c;
  --gold-light: #e8d49a;
  --gold-dark:  #a07830;
  --teal:       #2a6b6b;
  --teal-light: #3d8f8f;
  --teal-dark:  #1a4a4a;
  --cream:      #faf6ee;
  --cream-dark: #f0ebe0;
  --text:       #2c2c2c;
  --text-light: #5a5a5a;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Reusable ──────────────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--teal-dark);
  margin-bottom: .4rem;
}
.section-title.light { color: var(--gold-light); }

.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: .6rem 0 1.4rem;
  border-radius: 2px;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

.section-sub {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-light);
}
.section-sub.light { color: #cde3e3; }

.btn {
  display: inline-block;
  padding: .75rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--teal-dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--teal-dark); }

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}
.btn-white:hover { background: var(--cream); }

.section-light { background: var(--cream); padding: 5rem 0; }
.section-dark  { background: var(--teal-dark); padding: 5rem 0; }

/* ─── Header ────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .85rem;
  padding-bottom: .85rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-icon svg { width: 46px; height: 40px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--teal-dark);
  font-weight: 700;
}

.logo-sub {
  font-size: .6rem;
  letter-spacing: .14em;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-desktop a {
  font-size: .9rem;
  color: var(--text);
  font-weight: 600;
  transition: color .2s;
}
.nav-desktop a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: .45rem 1.2rem;
  border-radius: 20px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--teal-light) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--teal-dark);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 1rem 1.5rem;
  gap: .8rem;
  border-top: 2px solid var(--gold);
}
.nav-mobile a {
  font-weight: 600;
  color: var(--teal-dark);
  font-size: .95rem;
}
.nav-mobile.open { display: flex; }

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(26,74,74,.85) 0%, rgba(42,107,107,.7) 50%, rgba(201,168,76,.4) 100%),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 30%, rgba(26,50,50,.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 1.5rem 2rem;
}

.hero-label {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-service-area {
  color: #cde3e3;
  font-size: .95rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badges {
  position: relative;
  z-index: 1;
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,.18);
  border-top: 1px solid rgba(201,168,76,.4);
  padding: .9rem 1.5rem;
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  flex-wrap: wrap;
}

/* ─── About ─────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-highlights { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.about-highlights li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; }

.check {
  width: 22px; height: 22px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}

.img-placeholder {
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-dark);
  border: 3px solid var(--gold);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--teal-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

/* ─── Services ──────────────────────────────────────────────────── */
.services { text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform .25s, background .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.service-icon.teal { background: var(--teal-light); }
.service-icon.gold { background: var(--gold-dark); }
.service-icon svg { width: 30px; height: 30px; }

.service-card h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: .8rem;
}

.service-card ul { display: flex; flex-direction: column; gap: .35rem; }
.service-card li {
  font-size: .88rem;
  color: #cde3e3;
  padding-left: 1rem;
  position: relative;
}
.service-card li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─── Staffing ──────────────────────────────────────────────────── */
.staffing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.staffing-text p { color: var(--text-light); margin-bottom: 1rem; }

.staff-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
}

.role-badge {
  background: var(--teal-dark);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: 10px;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.role-badge span {
  background: var(--gold);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: .8rem;
  padding: .2rem .5rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.staffing-visual {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: .8; }
  50%       { transform: scale(1.1); opacity: .3; }
}

.staffing-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
}
.staffing-card-inner p { font-size: .85rem; color: var(--text-light); line-height: 1.3; }
.staffing-card-inner strong { color: var(--teal); }

/* ─── CPR ───────────────────────────────────────────────────────── */
.section-gold {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--gold-dark) 100%);
  padding: 4rem 0;
}

.cpr-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.cpr-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  margin-bottom: .8rem;
}
.cpr-text p { color: #cde3e3; margin-bottom: .5rem; }
.cpr-text p:last-of-type { margin-bottom: 1.5rem; }

/* ─── Contact ───────────────────────────────────────────────────── */
.contact { text-align: center; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  text-align: left;
  margin-top: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-dark);
  margin-bottom: .2rem;
}
.info-item a, .info-item span {
  color: var(--text-light);
  font-size: .95rem;
}
.info-item a:hover { color: var(--teal); }

.trust-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.contact-info-centered {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.contact-info-centered .info-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1.5px solid #e0d8c8;
  border-radius: 14px;
  padding: 1.8rem 1.2rem;
  gap: .7rem;
  transition: box-shadow .25s, border-color .25s;
}
.contact-info-centered .info-item:hover {
  box-shadow: 0 6px 22px rgba(42,107,107,.11);
  border-color: var(--gold);
}

.contact-info-centered .info-item strong {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-dark);
  margin-bottom: .2rem;
}

.contact-info-centered .info-item a,
.contact-info-centered .info-item span {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-info-centered .info-item a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal);
}

.contact-info-centered .trust-badges {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: .4rem;
}

.trust-badges span {
  background: var(--gold);
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid #d8d0be;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  appearance: auto;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.contact-form textarea { resize: vertical; }

.full-width { width: 100%; text-align: center; }

.form-success {
  background: #e6f4f1;
  color: var(--teal-dark);
  padding: .8rem 1rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}

/* ─── Footer ────────────────────────────────────────────────────── */
footer {
  background: var(--teal-dark);
  color: var(--gold-light);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}

.footer-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-network {
  display: block;
  font-size: .58rem;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-light);
}

.footer-copy {
  font-size: .82rem;
  color: #9cbfbf;
  letter-spacing: .04em;
}
.footer-copy.small { font-size: .75rem; margin-top: .4rem; color: #7aadad; }

/* ─── Active nav link ───────────────────────────────────────────── */
.nav-desktop a.active { color: var(--teal); border-bottom: 2px solid var(--teal); padding-bottom: 2px; }
.nav-desktop .nav-cta.active { border-bottom: none; background: var(--teal-light); }

/* ─── Page Banner ───────────────────────────────────────────────── */
.page-banner {
  position: relative;
  background:
    linear-gradient(135deg, rgba(26,74,74,.88) 0%, rgba(42,107,107,.75) 60%, rgba(160,120,48,.5) 100%),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1400&q=70') center/cover no-repeat;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,50,50,.3);
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: .5rem;
}

.page-banner-content p {
  color: var(--gold-light);
  font-size: 1rem;
  font-style: italic;
}

/* ─── Quick Nav Cards (Home page) ───────────────────────────────── */
.quick-nav { text-align: center; }
.center-title { text-align: center; }

.qnav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
  margin-top: .5rem;
}

.qnav-card {
  background: var(--white);
  border: 1.5px solid #e0d8c8;
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  color: var(--text);
}
.qnav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(42,107,107,.14);
  border-color: var(--gold);
}

.qnav-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.qnav-icon.teal { background: var(--teal); }
.qnav-icon.gold { background: var(--gold-dark); }
.qnav-icon svg  { width: 28px; height: 28px; }

.qnav-card h3 {
  font-size: 1rem;
  color: var(--teal-dark);
}

.qnav-card p {
  font-size: .87rem;
  color: var(--text-light);
  flex: 1;
}

.qnav-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: .3rem;
}

/* ─── About Page Values ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: .5rem;
}

.value-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  text-align: center;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: .8rem;
  display: block;
}

.value-card h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: .5rem;
}

.value-card p {
  font-size: .87rem;
  color: #cde3e3;
}

.area-badge {
  display: inline-block;
  background: var(--teal-dark);
  color: var(--gold-light);
  padding: .8rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
}

/* ─── Services Detail Pages ─────────────────────────────────────── */
.service-detail { padding: 4.5rem 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.service-detail-grid.reverse { grid-template-columns: 1fr 200px; }
.service-detail-grid.reverse .service-detail-text { order: 1; }
.service-detail-grid.reverse .service-detail-icon  { order: 2; }

.service-detail-icon {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: auto;
}
.teal-bg { background: var(--teal); }
.gold-bg  { background: var(--gold-dark); }
.service-detail-icon svg { width: 80px; height: 80px; }

.service-detail-text p { color: var(--text-light); margin-bottom: 1.2rem; }

.service-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .8rem;
  margin-top: .5rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  color: var(--text);
}
.service-item.light { color: #cde3e3; }

.si-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.si-dot.teal { background: var(--teal); }
.si-dot.gold { background: var(--gold); }

/* ─── Staffing Page ─────────────────────────────────────────────── */
.staffing-page-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.staffing-intro-text p { color: var(--text-light); margin-bottom: .9rem; }

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: .5rem;
}

.role-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 14px;
  padding: 2rem 1.5rem;
}

.role-card-badge {
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.role-card h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: .6rem;
}

.role-card p {
  font-size: .87rem;
  color: #cde3e3;
  margin-bottom: 1rem;
}

.role-features {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.role-features li {
  font-size: .85rem;
  color: #9cbfbf;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  text-align: left;
}

.why-item { padding: 1.4rem; background: var(--white); border-radius: 12px; border: 1.5px solid #e0d8c8; }

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}

.why-item h4 { font-size: .95rem; color: var(--teal-dark); margin-bottom: .35rem; }
.why-item p  { font-size: .85rem; color: var(--text-light); }

/* ─── CPR Page ──────────────────────────────────────────────────── */
.cpr-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: .5rem;
}

.cpr-info-card {
  background: var(--white);
  border: 1.5px solid #e0d8c8;
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  transition: box-shadow .25s, border-color .25s;
}
.cpr-info-card:hover { box-shadow: 0 6px 22px rgba(42,107,107,.12); border-color: var(--gold); }

.cpr-card-icon { font-size: 2rem; margin-bottom: .8rem; display: block; }
.cpr-info-card h3 { font-size: 1rem; color: var(--teal-dark); margin-bottom: .5rem; }
.cpr-info-card p  { font-size: .87rem; color: var(--text-light); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
  margin-top: .5rem;
}

.audience-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
}

.audience-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.audience-item p { font-size: .88rem; color: #cde3e3; }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid               { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image              { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .staffing-inner           { grid-template-columns: 1fr; }
  .staffing-visual          { margin: 0 auto; }
  .contact-grid             { grid-template-columns: 1fr; }
  .cpr-inner                { flex-direction: column; text-align: center; }
  .service-detail-grid      { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { grid-template-columns: 1fr; }
  .service-detail-grid.reverse .service-detail-text { order: 2; }
  .service-detail-grid.reverse .service-detail-icon  { order: 1; }
  .staffing-page-intro      { grid-template-columns: 1fr; }
  .staffing-visual          { margin: 0 auto; }
}

@media (max-width: 640px) {
  .nav-desktop       { display: none; }
  .nav-toggle        { display: block; }
  .services-grid     { grid-template-columns: 1fr; }
  .staff-roles       { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .hero-content      { padding-top: 3rem; }
  .hero h1           { font-size: 1.9rem; }
  .service-items-grid { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr 1fr; }
}
