/* ============================================================
   EcoSpark Facility Services — site.css
   Editorial brand system: Fraunces + Jost · Navy / Green / Cream
   ============================================================ */

:root {
  --navy: #15233f;
  --navy-deep: #0e1830;
  --navy-soft: #1d2e4d;
  --navy-line: #2a3a59;
  --green: #2e9f52;
  --green-br: #38b05f;
  --green-deep: #1f7a3d;
  --cream: #eef0f3;
  --cream-deep: #e3e6eb;
  --cream-line: #e2e5ea;
  --white: #ffffff;
  --paper: #f7f8fa;
  --ink: #1b2230;
  --ink-soft: #55606f;
  --mute: #8c93a6;
  --maxw: 1200px;
  --rad: 18px;
  --rad-sm: 12px;
  --shadow: 0 24px 60px -34px rgba(20, 35, 63, 0.22);
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

/* ---------- logo lockup type (used by brand.js) ---------- */
.eco-lockup {
  display: flex;
  align-items: center;
}
.eco-wordwrap {
  display: flex;
  flex-direction: column;
}
.eco-word {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.012em;
}
.eco-tag {
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-top: 0.7em;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-jost, "Jost"), sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- type ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.serif {
  font-family: var(--font-fraunces, "Fraunces"), serif;
}
em {
  font-style: italic;
}
.eyebrow {
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow.on-dark {
  color: var(--green-br);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.center {
  justify-content: center;
}
.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.muted {
  color: var(--mute);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 15px 28px;
  border-radius: 99px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    color 0.2s;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-deep);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.btn-ghost:hover {
  border-color: #fff;
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background: var(--navy-soft);
}
.btn-outline {
  background: transparent;
  border-color: var(--cream-line);
  color: var(--navy);
}
.btn-outline:hover {
  border-color: var(--navy);
}
.btn .ar {
  font-size: 1.1em;
  line-height: 0;
  transform: translateY(0.5px);
}
.btn-lg {
  padding: 18px 34px;
  font-size: 15px;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* phone / call link */
.call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.call .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 159, 82, 0.18);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 248, 250, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-line);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}
.nav a:hover {
  color: var(--green-deep);
}
/* TEMP: hide Services & Industries dropdowns until pages are ready */
.nav .has-menu {
  display: none;
}
.nav .has-menu {
  position: relative;
}
.nav .has-menu > span {
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  color: var(--ink);
}
.nav .has-menu > span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--mute);
  border-bottom: 1.5px solid var(--mute);
  transform: rotate(45deg) translateY(-2px);
}
.menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  padding: 10px;
  min-width: 248px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: 0.18s ease;
  display: grid;
  gap: 2px;
}
.nav .has-menu:hover .menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--ink);
}
.menu a:hover {
  background: var(--cream);
  color: var(--green-deep);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-cta .call {
  font-size: 14px;
}
/* ---------- mobile hamburger + drawer (built by site.js) ---------- */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 46px;
  height: 46px;
  flex: none;
  border: 1px solid var(--cream-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.nav-toggle:hover {
  border-color: var(--green);
}
.nav-toggle .bars {
  position: relative;
  width: 20px;
  height: 14px;
}
.nav-toggle .bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.32s cubic-bezier(0.6, 0.05, 0.25, 1), opacity 0.2s, top 0.32s, width 0.32s;
}
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 6px; }
.nav-toggle .bars span:nth-child(3) { top: 12px; }
body.nav-open .nav-toggle { background: var(--navy); border-color: var(--navy); }
body.nav-open .nav-toggle .bars span { background: #fff; }
body.nav-open .nav-toggle .bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
body.nav-open .nav-toggle .bars span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
body.nav-open .nav-toggle .bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(14, 24, 48, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  height: 100%;
  width: min(360px, 86vw);
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.42s cubic-bezier(0.6, 0.05, 0.25, 1);
  box-shadow: -30px 0 70px -30px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}
body.nav-open .nav-drawer { transform: translateX(0); }
.nav-drawer .drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--navy-line);
}
.nav-drawer .drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--navy-line);
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.nav-drawer .drawer-close:hover { background: var(--navy-soft); border-color: var(--green-br); }
.nav-drawer .drawer-body { flex: 1; padding: 14px 24px 8px; }
.nav-drawer .d-link {
  display: block;
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.18s, padding-left 0.18s;
}
.nav-drawer .d-link:hover { color: var(--green-br); padding-left: 6px; }
.nav-drawer .d-group {
  padding: 15px 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-drawer .d-group > .d-grp-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-br);
  margin: 0 0 8px;
}
.nav-drawer .d-group .d-sub {
  display: block;
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.18s, padding-left 0.18s;
}
.nav-drawer .d-group .d-sub:hover { color: #fff; padding-left: 5px; }
.nav-drawer .drawer-foot {
  padding: 22px 24px calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--navy-line);
  background: var(--navy-deep);
  display: grid;
  gap: 12px;
}
.nav-drawer .drawer-foot .d-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.nav-drawer .drawer-foot .d-call .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-br);
  box-shadow: 0 0 0 4px rgba(56, 176, 95, 0.22);
}
.nav-drawer .drawer-foot .btn { width: 100%; justify-content: center; }

/* ---------- generic section ---------- */
.section {
  padding: 104px 0;
}
.section.tight {
  padding: 78px 0;
}
.section--cream {
  background: var(--cream);
}
.section--paper {
  background: var(--paper);
}
.section--white {
  background: #fff;
}
.section--navy {
  background: var(--navy);
  color: #fff;
}
.section--deep {
  background: var(--navy-deep);
  color: #fff;
}
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--deep h1,
.section--deep h2,
.section--deep h3,
.section--deep h4 {
  color: #fff;
}
.section--navy .lead,
.section--deep .lead {
  color: rgba(255, 255, 255, 0.76);
}

.section-head {
  max-width: 680px;
}
.section-head.center {
  margin: 0 auto;
  text-align: center;
}
.section-head.center .eyebrow {
  justify-content: center;
}
.section-head h2 {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.05;
  margin: 18px 0 0;
}
.section-head .lead {
  margin-top: 20px;
}

/* ---------- hero (Direction A : full-bleed media + scrim) ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero .hero-media {
  position: absolute;
  inset: 0;
}
.hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(14, 24, 48, 0.94) 0%,
    rgba(14, 24, 48, 0.86) 40%,
    rgba(14, 24, 48, 0.5) 75%,
    rgba(14, 24, 48, 0.35) 100%
  );
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 96px;
}
.hero-inner {
  max-width: 680px;
}
.hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
}
.hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04;
  margin: 20px 0 0;
}
.hero h1 em {
  color: var(--green-br);
  font-style: italic;
}
.hero .subhead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  margin: 20px 0 0;
  max-width: 560px;
}
.hero .support {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  margin: 22px 0 0;
  max-width: 480px;
}
.hero .cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* hero spark watermark */
.hero .spark-wm {
  position: absolute;
  right: -90px;
  bottom: -90px;
  opacity: 0.1;
  z-index: 1;
}

/* ---------- trust bar ---------- */
.trustbar {
  background: var(--navy-deep);
  color: #fff;
  border-top: 1px solid var(--navy-line);
}
.trustbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 26px;
  flex-wrap: wrap;
}
.trustbar .tline {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}
.trustbar .stars {
  color: var(--green-br);
  letter-spacing: 2px;
}
.trustbar .sep {
  width: 1px;
  height: 16px;
  background: var(--navy-line);
}
.prestige {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.64);
  max-width: 430px;
  line-height: 1.5;
}
.logo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 14px;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 84px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 0 12px;
}
.logo-chip img {
  display: block;
  height: auto;
  max-height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.logo-chip img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ---------- split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.flip > .split-media {
  order: 2;
}
.split-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  margin: 18px 0 0;
}
.split-copy .lead {
  margin-top: 22px;
}

/* ---------- image placeholder ---------- */
.ph {
  position: relative;
  border-radius: var(--rad);
  overflow: hidden;
  background: repeating-linear-gradient(
    135deg,
    #e5e8ed 0 13px,
    #eef0f4 13px 26px
  );
  border: 1px solid var(--cream-line);
  display: flex;
  align-items: flex-end;
  min-height: 300px;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 24, 48, 0.18));
}
.ph .ph-cap {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: rgba(247, 248, 250, 0.85);
  backdrop-filter: blur(2px);
  border-top-right-radius: 10px;
  line-height: 1.4;
}
.ph .ph-cap b {
  font-weight: 600;
}
.ph.dark {
  background: repeating-linear-gradient(
    135deg,
    #16243f 0 13px,
    #1b2c4b 13px 26px
  );
  border-color: var(--navy-line);
}
.ph.dark::after {
  background: linear-gradient(180deg, transparent 50%, rgba(8, 14, 30, 0.5));
}
.ph.dark .ph-cap {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(14, 24, 48, 0.6);
}
.ph.green {
  background: repeating-linear-gradient(
    135deg,
    #2a8a49 0 13px,
    #2f9a53 13px 26px
  );
  border-color: transparent;
}
.ph.green .ph-cap {
  color: #fff;
  background: rgba(13, 42, 24, 0.42);
}
.ph .ph-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(15, 24, 48, 0.5);
  padding: 5px 9px;
  border-radius: 6px;
}
/* real photo populated into a slot */
.ph.has-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ph.has-img .ph-cap,
.ph.has-img .ph-tag {
  display: none;
}
.ph.has-img::after {
  background: linear-gradient(180deg, transparent 58%, rgba(15, 24, 48, 0.28));
}

/* ---------- offer grid ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.g2 {
  grid-template-columns: repeat(2, 1fr);
}
.g3 {
  grid-template-columns: repeat(3, 1fr);
}
.g4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: var(--rad);
  padding: 32px 30px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.offer-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-card .ic {
  width: 40px;
  height: 40px;
  color: var(--green);
}
.offer-card h3 {
  font-size: 22px;
  line-height: 1.15;
  font-family: var(--font-fraunces, "Fraunces"), serif;
}
.offer-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 30px;
}
.step .num {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.step .num::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
}
.step::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.step h3 {
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 8px;
}
.step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.section--navy .step p,
.section--deep .step p {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- hub cards (services / industries) ---------- */
.hub-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: var(--rad);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.hub-card .ph {
  border: 0;
  border-radius: 0;
  min-height: 170px;
}
.hub-card .body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.hub-card h3 {
  font-size: 22px;
  line-height: 1.12;
  font-family: var(--font-fraunces, "Fraunces"), serif;
}
.hub-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}
.hub-card .go {
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.hub-card:hover .go {
  gap: 12px;
}

/* ---------- band (navy emphasis) ---------- */
.band-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.band-inner h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

/* ---------- proof / reviews ---------- */
.review {
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: var(--rad);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review .stars {
  color: var(--green);
  letter-spacing: 2px;
  font-size: 15px;
}
.review .quote {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 18px;
  line-height: 1.45;
  color: var(--navy);
  font-style: italic;
  font-weight: 500;
}
.review .who {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mute);
  text-transform: uppercase;
}
.proof-note {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--navy);
  text-align: center;
  max-width: 760px;
  margin: 48px auto 0;
  line-height: 1.4;
}
.section--navy .proof-note {
  color: #fff;
}

/* ---------- FAQ (native details) ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--cream-line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 44px 26px 0;
  position: relative;
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-weight: 300;
  font-size: 26px;
  color: var(--green);
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  content: "\2013";
}
.faq .ans {
  padding: 0 44px 28px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- forms ---------- */
.form {
  display: grid;
  gap: 18px;
}
.form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form .field.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-status {
  margin: 0;
  font-size: 14px;
}
.form-status--success {
  color: var(--green-deep, #2e9f52);
}
.form-status--error {
  color: #c0392b;
}
.form label {
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.form input,
.form select,
.form textarea {
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 11px;
  padding: 14px 16px;
  width: 100%;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.form input::placeholder,
.form textarea::placeholder {
  color: var(--mute);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 159, 82, 0.14);
}
.form textarea {
  resize: vertical;
  min-height: 104px;
}
.form-card {
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: var(--rad);
  padding: 38px;
  box-shadow: var(--shadow);
}
.form .reassure {
  font-size: 13px;
  color: var(--mute);
  margin: 4px 0 0;
  text-align: center;
}

/* form on navy */
.section--navy .form-card {
  background: var(--navy-soft);
  border-color: var(--navy-line);
}
.section--navy .form label {
  color: rgba(255, 255, 255, 0.85);
}
.section--navy .form input,
.section--navy .form select,
.section--navy .form textarea {
  background: var(--navy-deep);
  border-color: var(--navy-line);
  color: #fff;
}
.section--navy .form input::placeholder,
.section--navy .form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.62);
  padding: 72px 0 36px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot-top .desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 22px 0 0;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.6);
}
.foot-col h4 {
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 18px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 6px 0;
}
.foot-col a:hover {
  color: var(--green-br);
}
.foot-area {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 14px 0 0;
}
.foot-contact {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.foot-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--navy-line);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
}
.foot-bottom .legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.foot-bottom a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.foot-social {
  display: flex;
  gap: 10px;
}
.foot-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--navy-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.foot-social a:hover {
  border-color: var(--green-br);
  color: var(--green-br);
}

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cookie p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  flex: 1;
  min-width: 240px;
}
.cookie a {
  color: var(--green-deep);
  text-decoration: underline;
}
.cookie .actions {
  display: flex;
  gap: 10px;
}
.cookie .btn {
  padding: 11px 20px;
  font-size: 13px;
}

/* ---------- floating mobile CTA ---------- */
.float-cta {
  display: none;
}

/* ---------- small spark divider / bullets ---------- */
.spark-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--green);
}
.list-spark {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}
.list-spark li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.list-spark li::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  background: var(--green);
  transform: rotate(45deg);
  clip-path: polygon(
    50% 0,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0 50%,
    38% 38%
  );
  border-radius: 1px;
}
.section--navy .list-spark li {
  color: rgba(255, 255, 255, 0.8);
}

/* spark glyph helper (css four-point) */
.spark {
  display: inline-block;
  background: currentColor;
  clip-path: polygon(
    50% 0,
    60% 40%,
    100% 50%,
    60% 60%,
    50% 100%,
    40% 60%,
    0 50%,
    40% 40%
  );
}

/* ---------- page hero (interior pages, smaller) ---------- */
.page-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.page-hero .hero-media {
  position: absolute;
  inset: 0;
}
.page-hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(14, 24, 48, 0.95) 0%,
    rgba(14, 24, 48, 0.82) 45%,
    rgba(14, 24, 48, 0.45) 100%
  );
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 84px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  margin: 22px 0 0;
  max-width: 760px;
}
.page-hero .subhead {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 22px 0 0;
  max-width: 600px;
}
.page-hero .cta-row {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
  align-items: center;
}

/* reusable "why" + "guarantee" blocks for landing pages */
.why-block {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--rad);
  padding: 44px;
}
.why-block h3 {
  font-size: 26px;
  margin: 0 0 16px;
}
.why-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.guarantee {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: var(--rad);
  padding: 38px 42px;
}
.guarantee .gmark {
  flex: none;
}
.guarantee h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 10px;
}
.guarantee p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  line-height: 1.6;
}

/* breadcrumb */
.crumb {
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  gap: 10px;
  align-items: center;
}
.crumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.crumb a:hover {
  color: #fff;
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .nav {
    gap: 20px;
  }
  .nav a,
  .nav .has-menu > span {
    font-size: 13.5px;
  }
  .header-cta .call {
    display: none;
  }
}
@media (max-width: 860px) {
  .wrap {
    padding: 0 24px;
  }
  .nav, .header-cta .call, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split.flip > .split-media {
    order: 0;
  }
  .band-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .g3 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 0;
  }
  .float-cta {
    display: flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 70;
    gap: 10px;
  }
  .float-cta .btn {
    flex: 1;
    box-shadow: var(--shadow);
  }
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .map-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .g4,
  .g2 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .form .field.two {
    grid-template-columns: 1fr;
  }
  .foot-top {
    grid-template-columns: 1fr;
  }
}

/* ---------- call / text picker ---------- */
.call-picker-scrim {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 24, 48, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
body.call-picker-open .call-picker-scrim {
  opacity: 1;
  visibility: visible;
}
.call-picker-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 28px 24px calc(28px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.6, 0.05, 0.25, 1);
  max-width: 480px;
  margin: 0 auto;
}
body.call-picker-open .call-picker-sheet {
  transform: translateY(0);
}
.call-picker-sheet .picker-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 18px;
  text-align: center;
}
.call-picker-sheet .picker-number {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.call-picker-sheet .picker-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.call-picker-sheet .picker-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
}
.call-picker-sheet .picker-actions a:active { opacity: 0.75; }
.call-picker-sheet .picker-call {
  background: var(--navy);
  color: #fff;
}
.call-picker-sheet .picker-text {
  background: var(--cream);
  color: var(--navy);
}
.call-picker-sheet .picker-cancel {
  margin-top: 10px;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-jost, "Jost"), sans-serif;
  font-size: 14px;
  color: var(--mute);
  cursor: pointer;
  padding: 10px;
}
