:root {
  color-scheme: light;
  --ink: #080b10;
  --ink-soft: #354955;
  --muted: #667982;
  --paper: #f5fbfd;
  --white: #ffffff;
  --line: #cfe3e9;
  --teal: #008caa;
  --teal-dark: #006f88;
  --cyan: #3caac8;
  --violet: #3c3cc8;
  --navy: #141e3c;
  --gold: #3c3cc8;
  --blue: #3caac8;
  --plum: #141e3c;
  --shadow: 0 22px 60px rgba(20, 30, 60, 0.14);
  --radius: 8px;
  --max: 1180px;
  --fast: 180ms ease;
  --slow: 760ms cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 18%, rgba(60, 60, 200, 0.09), transparent 34%),
    linear-gradient(90deg, rgba(60, 170, 200, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 140, 170, 0.055) 1px, transparent 1px),
    var(--paper);
  background-repeat: no-repeat, repeat, repeat, repeat;
  background-size: 900px 900px, 44px 44px, 44px 44px, auto;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.page-shell {
  overflow: hidden;
}

.section-band {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 32px);
  border-bottom: 1px solid rgba(60, 170, 200, 0.18);
  background: rgba(245, 251, 253, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 6px 12px rgba(20, 30, 60, 0.18));
}

.nav-links {
  display: flex;
  gap: clamp(10px, 2vw, 22px);
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 750;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  min-height: 88svh;
  padding: 72px 0 64px;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.role-line,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 800;
}

h1 .accent {
  background: linear-gradient(135deg, var(--teal-dark), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 2.1vw, 1.38rem);
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-lede {
  max-width: 720px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--fast), box-shadow var(--fast), background var(--fast), color var(--fast);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--teal-dark), var(--violet));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0, 140, 170, 0.24);
}

.button-secondary {
  border-color: rgba(60, 60, 200, 0.2);
  background: var(--white);
  color: var(--navy);
}

.local-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 140, 170, 0.28);
  border-radius: 999px;
  background: rgba(60, 170, 200, 0.12);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.local-badge::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  box-shadow: 0 0 0 4px rgba(0, 140, 170, 0.18);
}

.portrait-wrap {
  display: grid;
  gap: 18px;
  align-self: center;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(60, 170, 200, 0.34);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.portrait-frame::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.quick-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(23, 33, 38, 0.07);
}

.quick-facts div {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.quick-facts div:last-child {
  border-bottom: 0;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.services,
.approach,
.engagements,
.proof,
.trust,
.faq,
.contact {
  padding: clamp(56px, 9vw, 106px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 820px;
  gap: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(24px, 5vw, 48px);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(23, 33, 38, 0.06);
}

.intro-grid p,
.approach-copy p,
.contact p {
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(23, 33, 38, 0.07);
  transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(60, 60, 200, 0.34);
  box-shadow: 0 22px 46px rgba(23, 33, 38, 0.1);
}

.service-card .card-number {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-card ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.service-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.service-card li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--teal);
  content: "";
}

.approach {
  position: relative;
}

.approach::before {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: clamp(56px, 8vw, 90px);
  background: linear-gradient(90deg, transparent, rgba(60, 170, 200, 0.55), rgba(60, 60, 200, 0.35), transparent);
  content: "";
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.approach-copy {
  display: grid;
  gap: 20px;
}

.approach-list {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(60, 170, 200, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(60, 170, 200, 0.16), rgba(60, 60, 200, 0.1)),
    rgba(255, 255, 255, 0.82);
}

.approach-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 33, 38, 0.08);
  border-radius: var(--radius);
  background: var(--white);
}

.approach-list .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--violet));
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
}

.approach-list h3 {
  font-size: 1rem;
}

.approach-list p {
  margin-top: 2px;
  font-size: 0.92rem;
}

.engagement-list {
  display: grid;
  gap: 12px;
}

.engagement-item {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
  padding: clamp(22px, 4vw, 34px) 0;
  border-top: 1px solid var(--line);
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(23, 33, 38, 0.06);
}

.proof-stat {
  display: block;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--teal-dark), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.4rem, 4.4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.trust-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  padding: 26px;
  border: 1px solid rgba(60, 170, 200, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(60, 170, 200, 0.16), rgba(60, 60, 200, 0.1)),
    rgba(255, 255, 255, 0.82);
}

.trust-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 33, 38, 0.11);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(23, 33, 38, 0.05);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  float: right;
  color: var(--teal-dark);
  content: "+";
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

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

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: 60svh;
}

.contact h2 {
  max-width: 840px;
  margin-bottom: 22px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(23, 33, 38, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 140, 170, 0.22), rgba(60, 60, 200, 0.18)),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card a,
.contact-card span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: #f5cf8f;
}

.contact-card span {
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer .section-band {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--slow), transform var(--slow);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero,
  .approach-layout,
  .trust,
  .contact {
    grid-template-columns: 1fr;
  }

  .portrait-wrap {
    width: min(520px, 100%);
  }

  .service-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .section-heading,
  .intro-grid,
  .engagement-item {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 10px;
  }

  .service-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .section-band {
    width: min(calc(100% - 22px), var(--max));
  }

  h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .service-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
