/* =========================================================
   Latitude Planning & Survey — shared stylesheet
   Used by every page (index, about, services, service-*, contact)
   ========================================================= */

:root {
  --spring-green: #00cc66;
  --spring-green-dark: #00b85c;
  --spring-green-deep: #009950;
  --graphite: #4b4f54;
  --graphite-dark: #3a3d41;
  --graphite-deep: #2a2d31;
  --honeydew: #f0fff0;
  --honeydew-tint: #e8f7e9;
  --white: #ffffff;
  --border-faint: rgba(75, 79, 84, 0.12);

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  --container-max: 1280px;
  --container-pad: clamp(24px, 4vw, 64px);
  /* Extra padding that grows on wide screens to keep content aligned with
     the centered .container. Used by full-bleed sections whose direct
     children sit straight inside the section (topbar, hero-left). */
  --edge-pad: calc(max(0px, (100vw - var(--container-max)) / 2) + var(--container-pad));
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--honeydew);
  color: var(--graphite);
  font-family: var(--font-body);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* `clip` (not `hidden`) so position:sticky on .topbar isn't scoped to body's scroll context */
  overflow-x: clip;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--spring-green-deep); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  width: 100%;
}

/* =========================================================
   TOP BAR + PRIMARY NAV
   ========================================================= */

.topbar {
  background: var(--honeydew);
  padding-top: 16px;
  padding-bottom: 14px;
  padding-left: var(--edge-pad);
  padding-right: var(--edge-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border-faint);
  box-shadow: 0 1px 0 var(--border-faint), 0 6px 16px -10px rgba(0, 0, 0, 0.18);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo:hover { opacity: 0.85; }

.logo img { display: block; height: 46px; width: auto; max-width: 100%; }

.nav-primary {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list > li { position: relative; }

.nav-list a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--graphite);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-list > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--spring-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.nav-list > li > a:hover,
.nav-list > li > a[aria-current="page"] { color: var(--spring-green); }

.nav-list > li > a:hover::after,
.nav-list > li > a[aria-current="page"]::after { transform: scaleX(1); }

.nav-list .nav-cta {
  background: var(--spring-green);
  color: var(--white);
  padding: 8px 18px 6px;
  letter-spacing: 1.8px;
  transition: background 0.2s ease;
}

.nav-list .nav-cta::after { display: none; }
.nav-list .nav-cta:hover { background: var(--spring-green-deep); color: var(--white); }
.nav-list .nav-cta[aria-current="page"] { color: var(--white); background: var(--spring-green-deep); }

/* ---- Dropdown (desktop) ---- */
.nav-caret {
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.25s ease;
  display: inline-block;
}

.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--white);
  min-width: 240px;
  padding: 12px 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.28), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--spring-green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li { margin: 0; }

.nav-dropdown a {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--graphite);
  letter-spacing: 0.3px;
  text-transform: none;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.nav-dropdown a::after { display: none; }

.nav-dropdown a:hover {
  background: var(--honeydew-tint);
  color: var(--spring-green);
  padding-left: 26px;
}

.nav-dropdown li.nav-dropdown-head a {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--spring-green);
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-faint);
}

.nav-dropdown li.nav-dropdown-head a:hover {
  background: transparent;
  padding-left: 20px;
}

/* ---- Mobile head (logo + close button inside open nav) ---- */
.nav-mobile-head { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  z-index: 20;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--graphite);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-close {
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-close span {
  position: absolute;
  width: 28px;
  height: 3px;
  background: var(--graphite);
  border-radius: 2px;
}

.nav-close span:nth-child(1) { transform: rotate(45deg); }
.nav-close span:nth-child(2) { transform: rotate(-45deg); }

/* =========================================================
   HERO (used on multiple pages)
   ========================================================= */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 64vh;
  overflow: hidden;
  background: var(--honeydew);
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 400'><g fill='none' stroke='%234b4f54' stroke-width='1' opacity='0.07'><path d='M-50,70 Q120,20 280,70 T620,70'/><path d='M-50,140 Q120,90 280,140 T620,140'/><path d='M-50,210 Q120,160 280,210 T620,210'/><path d='M-50,280 Q120,230 280,280 T620,280'/><path d='M-50,350 Q120,300 280,350 T620,350'/></g></svg>");
  background-size: 900px auto;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  position: relative;
  padding-top: 56px;
  padding-bottom: 72px;
  padding-left: var(--edge-pad);
  padding-right: var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  z-index: 3;
}

.hero-left > * { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--spring-green);
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--spring-green);
}

.headline {
  font-family: var(--font-display);
  color: var(--graphite);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.headline .line-1 {
  font-weight: 700;
  font-size: clamp(44px, 5.4vw, 74px);
}

.headline .line-2 {
  font-weight: 700;
  font-size: clamp(44px, 5.4vw, 74px);
  color: var(--spring-green);
  letter-spacing: -0.5px;
}

.headline .line-3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--graphite);
  text-transform: none;
  letter-spacing: 0.3px;
  margin-top: 12px;
  line-height: 1.2;
}

.badge-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.badge-line {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--graphite);
  color: var(--honeydew);
  padding: 13px 26px 10px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}

.sub-copy {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--graphite);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  max-width: 640px;
}

/* services list (used in hero on home + on services page) */
.services {
  margin-top: 4px;
  padding-top: 22px;
  max-width: 640px;
  position: relative;
  border-top: 2px solid var(--graphite);
}

.services::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 96px;
  height: 2px;
  background: var(--spring-green);
}

.services-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--spring-green);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 36px;
}

.service-item {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--graphite);
  font-size: clamp(20px, 2.2vw, 28px);
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.4px;
}

.service-item::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--spring-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--graphite-deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("surveyor-with-plans.jpg");
  background-size: cover;
  background-position: 62% center;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,45,49,0.45) 0%, rgba(42,45,49,0.05) 35%, rgba(42,45,49,0) 65%, rgba(42,45,49,0.3) 100%);
}

.hero-inset {
  position: absolute;
  bottom: 36px;
  left: 36px;
  z-index: 6;
  background: var(--white);
  padding: 14px 14px 18px;
  box-shadow: 0 22px 48px -10px rgba(0, 0, 0, 0.5), 0 6px 14px rgba(0, 0, 0, 0.22);
  max-width: 330px;
  transform: rotate(-2deg);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.hero-inset:hover { transform: rotate(0deg) translateY(-4px); }

.hero-inset::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 7px;
  background: var(--spring-green);
}

.hero-inset img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 30%;
}

.hero-inset figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 8px 2px;
}

.hero-inset .inset-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--spring-green);
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hero-inset .inset-title {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--graphite);
  font-size: 19px;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.hero-credential {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 5;
  background: rgba(42, 45, 49, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--honeydew);
  padding: 12px 18px 10px 16px;
  border-left: 4px solid var(--spring-green);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-credential::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--spring-green);
  transform: rotate(45deg);
}

/* =========================================================
   COMPACT PAGE HERO (about, services, contact, service detail)
   ========================================================= */

.page-hero {
  background: var(--honeydew);
  padding: 72px var(--container-pad) 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-faint);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 400'><g fill='none' stroke='%234b4f54' stroke-width='1' opacity='0.07'><path d='M-50,70 Q120,20 280,70 T620,70'/><path d='M-50,140 Q120,90 280,140 T620,140'/><path d='M-50,210 Q120,160 280,210 T620,210'/><path d='M-50,280 Q120,230 280,280 T620,280'/><path d='M-50,350 Q120,300 280,350 T620,350'/></g></svg>");
  background-size: 900px auto;
  background-position: center;
  background-repeat: repeat;
  pointer-events: none;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--graphite);
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.page-hero h1 .accent { color: var(--spring-green); }

.page-hero p {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 720px;
  line-height: 1.45;
}

.crumbs {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--graphite);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.crumbs a {
  color: var(--graphite);
  text-decoration: none;
}

.crumbs a:hover { color: var(--spring-green); }

.crumbs .sep { color: var(--spring-green); }

/* =========================================================
   GENERIC CONTENT SECTIONS
   ========================================================= */

.section {
  padding: 96px var(--container-pad);
  background: var(--honeydew);
}

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

.section.section-dark {
  background: var(--graphite);
  color: var(--honeydew);
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-head .eyebrow { margin-bottom: 4px; }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--graphite);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.section-head h2 .accent { color: var(--spring-green); }

.section.section-dark .section-head h2 { color: var(--white); }
.section.section-dark .eyebrow { color: var(--spring-green); }

.section-head p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

/* Two-column text block */
.split-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.split-text .col p + p { margin-top: 16px; }

.split-text p {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
}

/* =========================================================
   SERVICES PREVIEW + DETAIL CARDS
   ========================================================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.cards-grid.cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.s-card {
  background: var(--white);
  border-top: 5px solid var(--spring-green);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--graphite);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 0 var(--border-faint);
  position: relative;
  overflow: hidden;
}

.s-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -16px rgba(0, 0, 0, 0.25);
}

.s-card .s-card-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--spring-green);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.s-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--graphite);
  font-size: 26px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.s-card p {
  font-size: 17px;
  line-height: 1.5;
}

.s-card .s-card-link {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--spring-green);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.s-card .s-card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.s-card:hover .s-card-link::after { transform: translateX(4px); }

/* =========================================================
   REGION + CITY LIST CARDS (location pages)
   ========================================================= */

.region-card {
  background: var(--white);
  border-top: 5px solid var(--spring-green);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 0 var(--border-faint);
}

.region-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--graphite);
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-list li {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--graphite);
  font-size: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border-faint);
  letter-spacing: 0.3px;
}

.city-list li:last-child { border-bottom: 0; padding-bottom: 0; }

/* =========================================================
   ABOUT — bio block with placeholder portrait
   ========================================================= */

.bio-block {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 56px;
  align-items: start;
}

.bio-portrait {
  background: var(--graphite);
  color: var(--honeydew);
  aspect-ratio: 4/5;
  border-top: 6px solid var(--spring-green);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.bio-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><circle cx='100' cy='95' r='42' fill='%2300cc66' opacity='0.22'/><path d='M30,250 C30,180 60,150 100,150 C140,150 170,180 170,250 Z' fill='%2300cc66' opacity='0.22'/></svg>");
  background-size: cover;
  background-position: center;
}

.bio-portrait > * { position: relative; z-index: 1; }

.bio-portrait .portrait-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--spring-green);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bio-portrait .portrait-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--honeydew);
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.bio-portrait .portrait-role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--honeydew);
  opacity: 0.85;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.bio-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--graphite);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.bio-text p {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.bio-creds {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px solid var(--graphite);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  position: relative;
}

.bio-creds::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--spring-green);
}

.bio-cred {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bio-cred .cred-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--spring-green);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bio-cred .cred-value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--graphite);
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* =========================================================
   CTA STRIP + COMING SOON BANNER (re-used as CTA on home)
   ========================================================= */

.cta-strip {
  background: var(--spring-green);
  padding: 36px var(--container-pad);
  border-top: 4px solid var(--graphite);
  position: relative;
  overflow: hidden;
}

.cta-strip::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 280%;
  background: linear-gradient(120deg, transparent 0%, transparent 45%, rgba(255,255,255,0.08) 50%, transparent 55%, transparent 100%);
  pointer-events: none;
}

.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip .cs-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-strip .cs-text::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--white);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.cta-strip .cs-actions { display: flex; align-items: center; gap: 16px; }

.btn {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  padding: 14px 26px 12px;
  border: 0;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-light {
  background: var(--white);
  color: var(--graphite);
}

.btn-light:hover { background: var(--graphite); color: var(--white); }

.btn-dark {
  background: var(--graphite);
  color: var(--white);
}

.btn-dark:hover { background: var(--graphite-deep); }

.btn-outline {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--white);
}

.btn-outline:hover { background: var(--white); color: var(--graphite); }

/* =========================================================
   FORM (contact)
   ========================================================= */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  max-width: 720px;
}

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--spring-green);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--graphite);
  background: var(--white);
  border: 2px solid var(--border-faint);
  padding: 14px 16px;
  letter-spacing: 0.3px;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--spring-green);
}

.form-field select {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--graphite);
  background: var(--white);
  border: 2px solid var(--border-faint);
  padding: 14px 44px 14px 16px;
  letter-spacing: 0.3px;
  transition: border-color 0.2s ease;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%234b4f54' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
}

.form-field select:focus {
  outline: none;
  border-color: var(--spring-green);
}

.form-field input[type="file"] {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px;
  border: 2px dashed var(--border-faint);
  background: var(--white);
  cursor: pointer;
  width: 100%;
  color: var(--graphite);
}

.form-field input[type="file"]:hover {
  border-color: var(--spring-green);
}

.form-field input[type="file"]::file-selector-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--graphite);
  color: var(--honeydew);
  border: 0;
  padding: 10px 16px;
  margin-right: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-field input[type="file"]::file-selector-button:hover { background: var(--graphite-deep); }

/* fieldsets used for radio + checkbox groups */
fieldset.form-field {
  border: 0;
  padding: 0;
  margin: 0;
  min-inline-size: 0;
  min-width: 0;
}

.form-field legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--spring-green);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  padding: 0;
}

.radio-options,
.check-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.check-options { gap: 12px 28px; }

.radio-options label,
.check-options label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--graphite);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.radio-options input[type="radio"],
.check-options input[type="checkbox"] {
  accent-color: var(--spring-green);
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

.form-field .optional {
  font-style: italic;
  font-weight: 500;
  color: var(--graphite);
  opacity: 0.65;
  text-transform: none;
  letter-spacing: 0.3px;
  font-size: 12px;
  margin-left: 4px;
}

.form-field.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  padding: 14px 18px;
  display: none;
}

.form-status.ok {
  display: block;
  background: var(--spring-green);
  color: var(--white);
}

.form-status.err {
  display: block;
  background: var(--graphite);
  color: var(--honeydew);
}

.form-submit {
  margin-top: 8px;
  align-self: start;
}

/* Two-column contact section: form on left, info card on right */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.info-card {
  background: var(--graphite);
  color: var(--honeydew);
  padding: 36px 32px;
  border-top: 6px solid var(--spring-green);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(240, 255, 240, 0.12);
}

.info-row:last-child { border-bottom: 0; padding-bottom: 0; }

.info-row .info-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--spring-green);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.info-row .info-value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--honeydew);
  font-size: 22px;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.info-row a.info-value:hover { color: var(--spring-green); }

/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */

.detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.detail-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--graphite);
  font-size: clamp(28px, 3.2vw, 38px);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  margin-top: 36px;
}

.detail-body h2:first-child { margin-top: 0; }

.detail-body p {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.detail-body ul {
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
}

.detail-body li {
  font-size: 19px;
  line-height: 1.45;
  padding: 10px 0 10px 24px;
  border-bottom: 1px dashed var(--border-faint);
  position: relative;
}

.detail-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 11px;
  height: 11px;
  background: var(--spring-green);
  border-radius: 50%;
}

.detail-image {
  position: sticky;
  top: 32px;
}

.detail-image img {
  width: 100%;
  height: auto;
  display: block;
  border-top: 6px solid var(--spring-green);
}

.detail-aside {
  margin-top: 24px;
  background: var(--graphite);
  color: var(--honeydew);
  padding: 28px;
}

.detail-aside .aside-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--spring-green);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.detail-aside h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}

.detail-aside p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.detail-aside .btn { width: 100%; text-align: center; box-sizing: border-box; }

/* =========================================================
   TESTIMONIALS CAROUSEL
   ========================================================= */

.testimonials-section {
  background: var(--graphite);
  color: var(--honeydew);
}

.testimonials-section .section-head { margin-bottom: 32px; }
.testimonials-section .section-head h2 { color: var(--white); }
.testimonials-section .section-head h2 .accent { color: var(--spring-green); }
.testimonials-section .section-head .eyebrow { color: var(--spring-green); }

.carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.carousel-track {
  position: relative;
  min-height: 280px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0.45s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  padding: 20px 16px;
}

.carousel-slide[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.t-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  color: var(--honeydew);
  max-width: 760px;
  position: relative;
  padding: 0 32px;
}

.t-quote::before,
.t-quote::after {
  color: var(--spring-green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  position: absolute;
  font-style: normal;
}
.t-quote::before { content: '\201C'; left: -4px; top: -18px; }
.t-quote::after  { content: '\201D'; right: -4px; bottom: -42px; }

.t-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.t-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--spring-green);
}

.t-role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--honeydew);
  opacity: 0.75;
  letter-spacing: 0.3px;
}

.carousel-controls {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.carousel-prev,
.carousel-next {
  background: transparent;
  border: 2px solid rgba(240, 255, 240, 0.3);
  color: var(--honeydew);
  width: 44px;
  height: 44px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  padding: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--spring-green);
  border-color: var(--spring-green);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(240, 255, 240, 0.25);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot:hover { background: rgba(240, 255, 240, 0.5); }
.carousel-dot[aria-selected="true"] { background: var(--spring-green); transform: scale(1.15); }

/* =========================================================
   BLOG (listing cards + post article)
   ========================================================= */

.blog-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--graphite);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 0 var(--border-faint);
  overflow: hidden;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -16px rgba(0, 0, 0, 0.25);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--graphite);
  position: relative;
}

.blog-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.25) 100%);
}

.blog-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-cat {
  color: var(--spring-green);
  font-style: italic;
  font-weight: 700;
}

.blog-date { color: var(--graphite); opacity: 0.65; }

.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--graphite);
  font-size: 24px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.blog-card p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--graphite);
  opacity: 0.9;
}

.blog-link {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--spring-green);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-link::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-link::after { transform: translateX(4px); }

/* ---- Blog post article ---- */

.post-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--graphite);
  opacity: 0.7;
  margin-top: 6px;
}

.post-meta .post-cat {
  color: var(--spring-green);
  font-style: italic;
  font-weight: 700;
  opacity: 1;
}

.post-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--graphite);
  border-radius: 50%;
  opacity: 0.4;
}

.post-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.7;
}

.post-body > img,
.post-body > figure {
  width: 100%;
  margin: 24px 0 32px;
}

.post-body > figure img { width: 100%; display: block; }

.post-body > figure figcaption {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--graphite);
  opacity: 0.7;
  text-align: center;
  margin-top: 10px;
}

.post-body p { margin-bottom: 18px; }

.post-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--graphite);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin: 36px 0 18px;
}

.post-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--graphite);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin: 28px 0 12px;
}

.post-body ul,
.post-body ol {
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
}

.post-body li {
  padding: 8px 0 8px 24px;
  position: relative;
}

.post-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--spring-green);
  border-radius: 50%;
}

.post-body ol { counter-reset: post-counter; }
.post-body ol li {
  counter-increment: post-counter;
  padding-left: 36px;
}
.post-body ol li::before {
  content: counter(post-counter) ".";
  position: absolute;
  left: 0;
  top: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--spring-green);
  font-size: 18px;
}

.post-body blockquote {
  border-left: 4px solid var(--spring-green);
  padding: 4px 0 4px 22px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--graphite);
  line-height: 1.4;
}

.post-body a {
  color: var(--spring-green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body a:hover { color: var(--spring-green); }

.post-body strong { font-weight: 700; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */

.faq-list {
  max-width: 960px;
}

.faq-item {
  border-top: 1px solid var(--border-faint);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border-faint);
}

.faq-item summary {
  cursor: pointer;
  padding: 26px 56px 26px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--graphite);
  list-style: none;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  width: 34px;
  height: 34px;
  border: 2px solid var(--spring-green);
  color: var(--spring-green);
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--spring-green);
  color: var(--white);
}

.faq-item summary:hover { color: var(--spring-green); }
.faq-item summary:hover::after { background: var(--spring-green); color: var(--white); }

.faq-answer {
  padding: 0 56px 28px 0;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--graphite);
}

.faq-answer p + p { margin-top: 12px; }

/* =========================================================
   SITE FOOTER
   ========================================================= */

.site-footer {
  background: var(--graphite);
  color: var(--honeydew);
  padding: 64px var(--container-pad) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--spring-green);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--honeydew);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--spring-green); }

.footer-phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-phone .ph-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--spring-green);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-phone .ph-num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--honeydew);
  font-size: 18px;
  letter-spacing: 0.5px;
}

.footer-phone:hover .ph-num { color: var(--spring-green); }

.footer-bottom {
  max-width: var(--container-max);
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(240, 255, 240, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--honeydew);
  opacity: 0.7;
}

.footer-bottom a {
  color: var(--honeydew);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--spring-green); }

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

.topbar { animation: fadeUp 0.5s ease-out both; }
.page-hero h1 { animation: fadeUp 0.6s 0.05s ease-out both; }
.page-hero p { animation: fadeUp 0.5s 0.15s ease-out both; }
.hero-left > * { animation: fadeUp 0.6s ease-out both; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.32s; }
.hero-left > *:nth-child(4) { animation-delay: 0.44s; }
.hero-left > *:nth-child(5) { animation-delay: 0.56s; }
.hero-left > *:nth-child(6) { animation-delay: 0.68s; }
.hero-right { animation: slideInRight 0.9s 0.15s cubic-bezier(0.2, 0.7, 0.3, 1) both; }
.hero-inset { animation: fadeUp 0.7s 1.2s ease-out both; }
.hero-credential { animation: fadeUp 0.6s 1.05s ease-out both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
    transition: none !important;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

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

  .nav-primary {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--honeydew);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
    z-index: 50;
    overflow-y: auto;
  }

  .nav-primary[data-open="true"] { transform: translateX(0); }

  .nav-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-faint);
    gap: 16px;
  }

  .nav-mobile-logo img { display: block; height: 38px; width: auto; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 32px;
    width: 100%;
  }

  .nav-list > li {
    width: 100%;
    border-bottom: 1px solid var(--border-faint);
  }

  .nav-list > li:last-child { border-bottom: 0; }

  .nav-list > li > a {
    font-size: 15px;
    letter-spacing: 1.8px;
    padding: 14px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-list > li > a::after { display: none; }

  .nav-list .nav-cta {
    background: var(--spring-green);
    color: var(--white);
    padding: 14px 20px !important;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }

  /* Mobile dropdown: always expanded, indented */
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border-top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 12px 12px;
    margin: 0;
    background: transparent;
    min-width: 0;
  }

  .nav-dropdown a {
    padding: 7px 0 7px 14px;
    font-size: 13px;
    color: var(--graphite);
    position: relative;
    text-transform: none;
    letter-spacing: 0.3px;
  }

  .nav-dropdown a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 2px;
    background: var(--spring-green);
    opacity: 0.7;
    transform: translateY(-50%);
  }

  .nav-dropdown a:hover {
    background: transparent;
    color: var(--spring-green);
    padding-left: 22px;
  }

  .nav-dropdown li.nav-dropdown-head a {
    border-bottom: 0;
    padding: 5px 0 5px 14px;
    margin-bottom: 0;
    font-size: 11px;
  }

  .nav-caret { display: none; }

  .topbar { padding: 12px 20px; }

  .logo img { height: 38px; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 320px; order: -1; }
  .hero-left { padding: 36px 24px 56px; gap: 22px; }
  .hero-inset { bottom: 18px; left: 18px; max-width: 180px; padding: 8px 8px 12px; }
  .hero-inset img { height: 130px; }
  .hero-inset .inset-eyebrow { font-size: 11px; }
  .hero-inset .inset-title { font-size: 14px; }
  .hero-credential { top: 16px; right: 16px; font-size: 11px; padding: 9px 14px 7px 12px; letter-spacing: 2px; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 6px 18px; }

  .page-hero { padding: 56px 24px 40px; }

  .section { padding: 64px 24px; }

  .section-head { margin-bottom: 32px; }

  .split-text { grid-template-columns: 1fr; gap: 32px; }

  .bio-block { grid-template-columns: 1fr; gap: 32px; }
  .bio-portrait { aspect-ratio: 4/3; max-width: 420px; }

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

  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-image { position: static; }

  .form-grid { grid-template-columns: 1fr; }

  .cta-strip { padding: 28px 24px; }
  .cta-strip .container { flex-direction: column; align-items: flex-start; gap: 18px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .site-footer { padding: 48px 24px 24px; }
}

@media (max-width: 480px) {
  .nav-primary { width: 100vw; }
  .logo img { height: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-credential { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
