:root {
  --navy: #1c355e;
  --navy-deep: #122840;
  --blue: #6a9bc3;
  --steel: #a8b8c8;
  --white: #ffffff;
  --off-white: #f6f7f8;
  --warm-white: #f8f8f6;
  --ink: #171d24;
  --body: #4c5562;
  --muted: #788391;
  --line: #d9dee4;
  --font: "Inter Variable", Inter, Arial, Helvetica, sans-serif;
  --width: 78rem;
  --gutter: clamp(1.1rem, 3vw, 2.25rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
summary { cursor: pointer; }

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 4.7vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.1vw, 2.9rem); }
h3 { font-size: clamp(1.12rem, 1.5vw, 1.4rem); }

p { margin-top: 0; text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.site-width {
  width: min(calc(100% - (2 * var(--gutter))), var(--width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 999;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--navy-deep);
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

/* HEADER */

.top-strip {
  color: #e4eaf0;
  background: var(--navy-deep);
  font-size: .76rem;
}

.top-strip__inner {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip p { margin: 0; }

.top-strip a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  min-height: 4.15rem;
  align-items: center;
  gap: 1.4rem;
}

.logo {
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav { display: none; }

.desktop-nav > a,
.services-dropdown > summary {
  color: var(--ink);
  font-size: .83rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav > a[aria-current="page"] {
  color: var(--navy);
  font-weight: 760;
}

.services-dropdown { position: relative; }
.services-dropdown > summary { list-style: none; }
.services-dropdown > summary::-webkit-details-marker { display: none; }

.services-dropdown > summary::after {
  content: " ▾";
  color: var(--muted);
  font-size: .7em;
}

.services-dropdown__menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1rem;
  width: 25rem;
  padding: .35rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.services-dropdown__menu a {
  display: block;
  padding: .8rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: .86rem;
  font-weight: 620;
  text-decoration: none;
}

.services-dropdown__menu a:last-child { border-bottom: 0; }

.header-cta {
  display: none;
  margin-left: .25rem;
  padding: .68rem .9rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 2px;
  font-size: .76rem;
  font-weight: 750;
  text-decoration: none;
}

.header-cta:hover { background: var(--navy-deep); }

.mobile-nav {
  position: relative;
  margin-left: auto;
}

.mobile-nav > summary {
  padding: .55rem .75rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: .8rem;
  font-weight: 700;
  list-style: none;
}

.mobile-nav > summary::-webkit-details-marker { display: none; }

.mobile-nav nav {
  position: absolute;
  top: calc(100% + .6rem);
  right: 0;
  width: min(88vw, 22rem);
  padding: .6rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.mobile-nav nav a {
  display: block;
  padding: .8rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 620;
  text-decoration: none;
}

.mobile-nav nav a:last-child { border-bottom: 0; }

/* ABOUT HERO */

.about-hero {
  padding-block: clamp(3rem, 6vw, 5.5rem);
  background: var(--warm-white);
}

.about-hero__layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.about-hero__copy {
  max-width: 43rem;
}

.about-hero__label,
.section-label {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: .7rem;
  font-weight: 820;
  letter-spacing: .1em;
}

.section-label--light {
  color: var(--steel);
}

.about-hero h1 {
  max-width: 15ch;
}

.about-hero__lead {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.45vw, 1.19rem);
}

.about-hero__photo {
  min-height: clamp(25rem, 44vw, 38rem);
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  display: flex;
  min-height: inherit;
  height: 100%;
  flex-direction: column;
  justify-content: end;
  padding: 1.4rem;
  background: #dfe4e8;
  border: 1px solid #ced5dc;
}

.photo-placeholder span {
  margin-bottom: .3rem;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .1em;
}

.photo-placeholder p {
  max-width: 33ch;
  margin-bottom: 0;
  font-size: .88rem;
  line-height: 1.5;
}

/* PURPOSE */

.purpose-section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.purpose-section__inner {
  max-width: 60rem;
  text-align: center;
}

.purpose-section h2 {
  max-width: 25ch;
  margin-inline: auto;
  margin-bottom: 1.35rem;
}

.purpose-section p {
  max-width: 68ch;
  margin-inline: auto;
}

.purpose-section p:last-child {
  margin-bottom: 0;
}

/* FOUNDER */

.founder-section {
  padding-block: clamp(4.75rem, 8vw, 7.5rem);
  background: var(--off-white);
  border-top: 1px solid var(--line);
}

.founder-section__layout {
  display: grid;
  gap: clamp(2.75rem, 6vw, 6rem);
  align-items: center;
}

.founder-photo {
  min-height: clamp(27rem, 48vw, 40rem);
  margin: 0;
}

.photo-placeholder--portrait {
  background: #e4e6e5;
}

.founder-copy {
  max-width: 40rem;
}

.founder-copy h2 {
  max-width: 17ch;
  margin-bottom: 1.2rem;
}

.founder-copy__lead {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.35vw, 1.15rem);
  font-weight: 590;
}

.founder-disclaimer {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

/* OPERATING STANDARD */

.standard-section {
  color: #dce4eb;
  background: var(--navy-deep);
}

.standard-section__layout {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(5rem, 8vw, 7.5rem);
  align-items: start;
}

.standard-heading {
  max-width: 38rem;
}

.standard-heading h2 {
  max-width: 18ch;
  margin-bottom: 1rem;
  color: var(--white);
}

.standard-heading p:last-child {
  max-width: 50ch;
  color: #d4dee7;
}

.standard-steps {
  border-top: 1px solid rgba(255,255,255,.2);
}

.standard-steps > div {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: .2rem 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.standard-steps span {
  grid-row: span 2;
  color: var(--steel);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.standard-steps h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.standard-steps p {
  margin-bottom: 0;
  color: #d4dee7;
}

/* TRUST */

.trust-section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.trust-section__layout {
  display: grid;
  gap: clamp(2.75rem, 6vw, 6rem);
  align-items: center;
}

.trust-copy {
  max-width: 40rem;
}

.trust-copy h2 {
  max-width: 19ch;
  margin-bottom: 1.1rem;
}

.trust-copy__lead {
  color: var(--ink);
  font-size: clamp(1.04rem, 1.3vw, 1.13rem);
  font-weight: 590;
}

.trust-lines {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.trust-lines > div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.trust-lines h3 {
  margin-bottom: .3rem;
  font-size: 1.08rem;
}

.trust-lines p {
  margin-bottom: 0;
}

.trust-photo {
  min-height: clamp(24rem, 43vw, 34rem);
  margin: 0;
}

.photo-placeholder--wide {
  background: #e6e8e6;
}

/* SERVICE FOCUS */

.focus-section {
  padding-block: clamp(4.75rem, 8vw, 7rem);
  background: var(--off-white);
  border-top: 1px solid var(--line);
}

.focus-section__layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.focus-section h2 {
  max-width: 21ch;
}

.service-index {
  border-top: 1px solid var(--line);
}

.service-index > a {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  color: inherit;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.service-index > a > span {
  padding-top: .15rem;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.service-index h3 {
  margin-bottom: .4rem;
  font-size: 1.12rem;
}

.service-index p {
  margin-bottom: 0;
}

.service-index a:hover h3 {
  text-decoration: underline;
  text-underline-offset: .18rem;
}

/* BOUNDARIES */

.boundary-section {
  color: #dce4eb;
  background: var(--navy);
}

.boundary-section__layout {
  display: grid;
  gap: 2rem;
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
  align-items: start;
}

.boundary-section h2 {
  max-width: 20ch;
  color: var(--white);
}

.boundary-copy {
  max-width: 62ch;
}

.boundary-copy p {
  color: #dce4eb;
}

.boundary-copy p:first-child {
  color: var(--white);
  font-size: clamp(1.03rem, 1.3vw, 1.12rem);
  font-weight: 590;
}

/* OPERATOR */

.operator-section {
  padding-block: clamp(4.75rem, 8vw, 7rem);
}

.operator-section__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.operator-section h2 {
  max-width: 22ch;
}

.operator-section__layout > div:last-child {
  max-width: 62ch;
}

.operator-lead {
  color: var(--ink);
  font-size: clamp(1.03rem, 1.3vw, 1.12rem);
  font-weight: 590;
}

/* CTA */

.final-cta {
  color: var(--white);
  background: var(--navy-deep);
}

.final-cta__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(4rem, 7vw, 6rem);
}

.final-cta h2 {
  max-width: 18ch;
  color: var(--white);
}

.final-cta p {
  max-width: 58ch;
  color: #dce4eb;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.05rem;
  border-radius: 3px;
  font-size: .84rem;
  font-weight: 760;
  text-decoration: none;
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  background: #edf1f4;
}

.text-phone {
  color: var(--white);
  font-size: .88rem;
  font-weight: 720;
  text-underline-offset: .18rem;
}

/* FOOTER */

.site-footer {
  padding: clamp(3.5rem, 6vw, 5rem) 0 5.5rem;
  color: #d3dce4;
  background: #0e2034;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.logo--footer {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand p {
  max-width: 38ch;
}

.footer-brand > a:not(.logo) {
  color: var(--white);
  font-weight: 700;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: .5rem;
}

.site-footer nav strong {
  margin-bottom: .3rem;
  color: var(--white);
  font-size: .78rem;
}

.site-footer nav a {
  color: #dbe3e9;
  font-size: .83rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: grid;
  gap: .5rem;
  margin-top: 2.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .75rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* MOBILE */

.mobile-actions {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-actions a {
  display: grid;
  min-height: 3.5rem;
  place-items: center;
  padding: .65rem;
  color: var(--navy-deep);
  font-size: .8rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.mobile-actions a:first-child {
  color: var(--white);
  background: var(--navy);
}

@media (min-width: 48rem) {
  .about-hero__layout,
  .founder-section__layout,
  .trust-section__layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  .founder-section__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  }

  .standard-section__layout,
  .focus-section__layout,
  .boundary-section__layout,
  .operator-section__layout,
  .final-cta__layout {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  }

  .footer-grid {
    grid-template-columns: 1.45fr 1fr .75fr;
  }

  .footer-bottom {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }

  .footer-bottom p:last-child {
    text-align: right;
  }
}

@media (min-width: 64rem) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-left: auto;
  }

  .header-cta {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
  }

  .about-hero__layout {
    grid-template-columns: minmax(0, .78fr) minmax(36rem, 1.22fr);
  }

  .about-hero__photo {
    min-height: 39rem;
  }

  .founder-photo {
    min-height: 39rem;
  }

  .trust-photo {
    min-height: 34rem;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .mobile-actions {
    display: none;
  }
}

@media (max-width: 47.99rem) {
  body {
    padding-bottom: 3.5rem;
  }

  .top-strip__inner p {
    max-width: 24ch;
  }

  .about-hero h1 {
    max-width: 14ch;
    font-size: clamp(2.45rem, 10.3vw, 3.25rem);
  }

  .founder-section__layout .founder-photo {
    order: 2;
  }

  .founder-section__layout .founder-copy {
    order: 1;
  }

  .purpose-section h2,
  .founder-copy h2,
  .standard-section h2,
  .trust-copy h2,
  .focus-section h2,
  .boundary-section h2,
  .operator-section h2,
  .final-cta h2 {
    max-width: 17ch;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .text-phone {
    text-align: center;
  }
}

@media (max-width: 24.5rem) {
  .top-strip {
    font-size: .7rem;
  }

  .logo {
    font-size: .92rem;
    letter-spacing: .07em;
  }

  .mobile-nav > summary {
    padding-inline: .6rem;
  }

  .button {
    font-size: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   SITEWIDE QA PATCH — MOBILE UTILITY BAR
   Keeps the service area readable without turning the top strip
   into a three-line block on small screens.
   ========================================================= */

.top-strip__area {
  white-space: nowrap;
}

@media (max-width: 47.99rem) {
  .top-strip__descriptor {
    display: none;
  }

  .top-strip__inner {
    gap: .75rem;
  }

  .top-strip__inner p {
    max-width: none !important;
    white-space: nowrap;
  }
}


/* =========================================================
   SITEWIDE QA PATCH — ABOUT HERO WRAPPING
   The original split made the About H1 six lines at desktop/tablet.
   Stack through medium widths and give the headline more room on
   wide desktop.
   ========================================================= */

@media (min-width: 48rem) and (max-width: 69.99rem) {
  .about-hero__layout,
  .founder-section__layout,
  .trust-section__layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 70rem) {
  .about-hero__layout {
    grid-template-columns: minmax(0, .92fr) minmax(31rem, 1.08fr);
    gap: clamp(2.5rem, 4.5vw, 4.75rem);
  }

  .about-hero h1 {
    max-width: 18ch;
    font-size: clamp(3rem, 4.1vw, 4.05rem);
  }
}

