:root {
  --blue: #56779f;
  --blue-deep: #2d4a69;
  --navy: #182c40;
  --mist: #eaf0f6;
  --ice: #f5f8fb;
  --white: #ffffff;
  --ink: #1f2d38;
  --slate: #5f6f7c;
  --line: #d9e2ea;
  --shadow: 0 24px 70px rgba(24, 44, 64, .14);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: #fff; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24,44,64,.08);
}
.nav-shell {
  width: min(calc(100% - 40px), 1280px);
  height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1.05; font-size: 14px; letter-spacing: .02em; color: var(--blue-deep); }
.brand-wordmark strong { font-size: 16px; }
.brand-wordmark span { margin-top: 4px; color: var(--slate); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--navy); }
.site-nav a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--navy); color: #fff !important; }
.menu-button { display: none; border: 1px solid var(--line); background: white; border-radius: 999px; padding: 9px 14px; font: inherit; font-weight: 700; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 150px 0 86px;
  background-image: url('assets/hero-background.png');
  background-size: cover;
  background-position: center 54%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,38,57,.92) 0%, rgba(24,44,64,.83) 41%, rgba(24,44,64,.25) 68%, rgba(24,44,64,.08) 100%),
    linear-gradient(180deg, rgba(21,43,64,.05) 45%, rgba(21,43,64,.55) 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 590px) 1fr; column-gap: 56px; align-items: center; min-height: 650px; }
.hero-copy { grid-column: 1; max-width: 550px; }
.eyebrow { display: inline-block; margin-bottom: 20px; font-size: 12px; font-weight: 800; letter-spacing: .16em; color: #dce8f3; }
.eyebrow.dark { color: var(--blue-deep); }
.hero h1 { margin: 0; color: #fff; font-size: clamp(54px, 6.2vw, 82px); line-height: .96; letter-spacing: -.045em; font-weight: 760; }
.hero-lead { max-width: 550px; margin: 30px 0 0; color: rgba(255,255,255,.9); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 21px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; font-size: 14px; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 30px rgba(17,39,59,.28); }
.button-primary:hover { background: #486a94; }
.button-ghost { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.09); color: #fff; backdrop-filter: blur(8px); }
.micro-label { font-size: 11px; font-weight: 900; letter-spacing: .16em; opacity: .78; }

.intro-band { background: var(--navy); color: #fff; }
.work-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 86px; padding-block: 74px; align-items: start; }
.work-intro .micro-label { display: inline-block; margin-bottom: 18px; color: #b9ccdc; }
.work-intro h2 { margin: 0; max-width: 520px; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.08; letter-spacing: -.035em; color: #fff; }
.work-intro p { margin: 24px 0 0; max-width: 540px; color: #c7d8e8; font-size: 17px; line-height: 1.65; }
.work-sequence { border-top: 1px solid rgba(255,255,255,.18); }
.work-step { display: grid; grid-template-columns: 72px 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.18); align-items: start; }
.work-number { color: #8fb0cc; font-size: 36px; line-height: 1; font-weight: 800; letter-spacing: -.04em; }
.work-step strong { display: block; margin-top: -2px; color: #fff; font-size: 19px; line-height: 1.25; }
.work-step p { margin: 8px 0 0; color: #b9ccdc; font-size: 14px; line-height: 1.55; }

.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2, .approach-copy h2, .about-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1.04; letter-spacing: -.04em; color: var(--navy); }
.section-heading p { max-width: 680px; margin: 20px 0 0; font-size: 19px; color: var(--slate); }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 330px; padding: 36px 36px 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #c4d2df; }
.service-illustration { width: 118px; height: 82px; margin: -2px 0 22px -8px; color: var(--blue); opacity: .92; }
.service-illustration svg { display: block; width: 100%; height: 100%; stroke-width: 2; vector-effect: non-scaling-stroke; }
.service-card:nth-child(2) .service-illustration { color: #476f95; }
.service-card:nth-child(3) .service-illustration { color: #5d7890; }
.service-card:nth-child(4) .service-illustration { color: #496b86; }
.service-card h3 { margin: 0 0 12px; font-size: 28px; color: var(--blue-deep); letter-spacing: -.02em; }
.service-card p { margin: 0; max-width: 520px; color: var(--slate); font-size: 17px; }
.service-card > span { display: block; margin-top: 24px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.legal-service { display: grid; grid-template-columns: 118px minmax(0, 1fr) auto; gap: 30px; align-items: center; margin-top: 28px; padding: 34px 38px; border: 1px solid #cfdae4; border-radius: var(--radius); background: linear-gradient(135deg, #f5f8fb 0%, #edf3f8 100%); }
.legal-service-icon { width: 110px; height: 82px; color: var(--blue); }
.legal-service-icon svg { width: 100%; height: 100%; stroke-width: 2; vector-effect: non-scaling-stroke; }
.legal-service-kicker { display: block; margin-bottom: 7px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.legal-service h3 { margin: 0 0 9px; color: var(--blue-deep); font-size: 28px; letter-spacing: -.02em; }
.legal-service p { margin: 0; max-width: 780px; color: var(--slate); font-size: 16px; line-height: 1.62; }
.legal-service-details { display: block; margin-top: 16px; color: var(--blue-deep); font-size: 12px; font-weight: 800; letter-spacing: .025em; }
.legal-service-link { align-self: center; white-space: nowrap; text-decoration: none; color: var(--blue-deep); font-weight: 800; border-bottom: 1px solid #b8c7d6; padding-bottom: 4px; }


.approach-section { background: var(--ice); }
.approach-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; }
.approach-copy p { margin: 22px 0; max-width: 700px; color: var(--slate); font-size: 18px; }
.text-link { display: inline-flex; gap: 8px; text-decoration: none; color: var(--blue-deep); font-weight: 800; border-bottom: 1px solid #b8c7d6; padding-bottom: 4px; }
.approach-visual { width: min(100%, 520px); justify-self: center; }
.mfi-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 30px; box-shadow: 0 18px 45px rgba(24,44,64,.08); }
.mfi-topline { margin-bottom: 16px; text-align: center; color: var(--blue-deep); font-size: 13px; font-weight: 900; letter-spacing: .16em; }
.mfi-question-stack { display: grid; gap: 10px; }
.mfi-question-row { padding: 14px 18px; border: 1px solid #d7e1ea; border-radius: 16px; background: #fff; }
.mfi-qtext { color: var(--blue-deep); font-size: 15px; line-height: 1.45; font-weight: 700; }
.mfi-arrow { margin: 12px 0 8px; text-align: center; color: var(--blue); font-size: 24px; font-weight: 700; }
.pdsa-diagram { position: relative; width: 220px; height: 220px; margin: 0 auto 10px; }
.pdsa-wheel-ring { position: absolute; inset: 38px; border: 1.6px solid rgba(81,125,165,.34); border-radius: 50%; }
.pdsa-wheel-center { position: absolute; inset: 72px; display: grid; place-items: center; border-radius: 50%; background: #f4f8fb; color: var(--blue-deep); font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.pdsa-wheel-arrows { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--blue); fill: none; stroke: currentColor; stroke-width: 1.5; }
.pdsa-cycle-label { position: absolute; display: inline-flex; align-items: center; justify-content: center; min-width: 66px; padding: 6px 10px; border-radius: 999px; background: #fff; border: 1px solid #d7e1ea; color: var(--blue-deep); font-weight: 800; font-size: 13px; box-shadow: 0 8px 18px rgba(24,44,64,.05); z-index: 2; }
.pdsa-cycle-label.plan { top: 16px; left: 50%; transform: translateX(-50%); }
.pdsa-cycle-label.do { top: 50%; right: 16px; transform: translateY(-50%); }
.pdsa-cycle-label.study { bottom: 16px; left: 50%; transform: translateX(-50%); }
.pdsa-cycle-label.act { top: 50%; left: 16px; transform: translateY(-50%); }
.mfi-attribution { margin: 12px auto 0; max-width: 420px; text-align: center; color: #5f6f7c; font-size: 12px; line-height: 1.5; }

.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: center; }
.portrait-wrap { position: relative; }
.portrait { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.portrait-note { position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 14px 18px; border-radius: 14px; background: rgba(24,44,64,.91); color: #fff; backdrop-filter: blur(8px); }
.portrait-note strong, .portrait-note span { display: block; }
.portrait-note strong { font-size: 15px; letter-spacing: .01em; }
.portrait-note span { margin-top: 3px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 700; letter-spacing: .025em; }
.about-lead { margin: 28px 0 16px; color: var(--blue-deep); font-size: 21px; line-height: 1.55; font-weight: 650; }
.about-copy > p:not(.about-lead):not(.about-location) { color: var(--slate); font-size: 17px; }
.about-strengths { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-strengths div { padding-left: 14px; border-left: 2px solid rgba(81,125,165,.7); }
.about-strengths span, .about-strengths strong { display: block; }
.strength-kicker { margin-bottom: 5px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.about-strengths strong { color: var(--navy); font-size: 15px; line-height: 1.4; }
.about-location { margin: 26px 0 0; color: var(--slate); font-size: 13px; font-weight: 700; letter-spacing: .02em; }

.statement-section { background: var(--blue-deep); color: #fff; padding: 88px 0; }
.statement-inner { max-width: 980px; }
.statement-inner p { margin: 0 0 8px; color: #c8d7e6; font-size: 18px; font-weight: 700; }
.statement-inner h2 { margin: 0; font-size: clamp(42px, 6vw, 76px); line-height: 1; letter-spacing: -.045em; }

.contact-section { background: var(--mist); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-copy p { margin-top: 24px; max-width: 520px; color: var(--slate); font-size: 18px; }
.contact-copy .domain { margin-top: 40px; color: var(--blue-deep); font-weight: 800; letter-spacing: .02em; }
.contact-details { margin-top: 40px; display: grid; gap: 7px; }
.contact-copy .contact-details .domain { margin: 0; color: var(--blue-deep); font-weight: 800; letter-spacing: .02em; }
.contact-email { width: fit-content; color: var(--blue); font-weight: 750; text-decoration: none; border-bottom: 1px solid rgba(81,125,165,.35); padding-bottom: 2px; }
.contact-email:hover { color: var(--blue-deep); border-color: var(--blue-deep); }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 30px; border-radius: var(--radius); background: #fff; box-shadow: 0 20px 60px rgba(24,44,64,.09); }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 800; color: var(--blue-deep); }
.contact-form label:nth-of-type(4) { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #cfd9e3; border-radius: 12px; padding: 12px 13px; font: inherit; color: var(--ink); background: #fbfcfd; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(86,119,159,.13); }
.form-submit { grid-column: 1 / -1; justify-self: start; border: 0; }
.form-note { grid-column: 1 / -1; margin: 0; font-size: 12px; color: var(--slate); }

.site-footer { padding: 28px 0; background: #102233; color: #d6e0e9; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; background: rgba(255,255,255,.94); border-radius: 10px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span { font-size: 12px; color: #9eb2c4; }
.footer-right { display: flex; gap: 22px; align-items: center; font-size: 12px; }
.footer-right a { color: #d6e0e9; text-decoration: none; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: minmax(0, 540px) 1fr; column-gap: 36px; }
  .hero-copy { max-width: 540px; }
  .hero h1 { font-size: clamp(52px, 6vw, 72px); }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; align-items: start; min-height: 0; }
  .hero-copy { grid-column: 1; }
}

@media (max-width: 900px) {
  .nav-shell { height: 76px; }
  .brand-wordmark { display: none; }
  .menu-button { display: inline-block; }
  .site-nav { display: none; position: absolute; top: 76px; left: 20px; right: 20px; padding: 18px; flex-direction: column; align-items: stretch; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; padding: 132px 0 70px; }
  .hero-grid, .approach-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { grid-column: 1; }
  .work-grid { grid-template-columns: 1fr; gap: 40px; padding-block: 58px; }
  .service-grid { grid-template-columns: 1fr; }
  .legal-service { grid-template-columns: 96px 1fr; }
  .legal-service-link { grid-column: 2; justify-self: start; }
  .approach-visual { width: min(86vw, 410px); }
  .about-grid { max-width: 720px; }
  .portrait-wrap { max-width: 460px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .hero h1 { font-size: clamp(50px, 16vw, 72px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .work-step { grid-template-columns: 58px 1fr; gap: 14px; }
  .work-number { font-size: 30px; }
  .service-card { padding: 26px; }
  .service-card h3 { margin-top: 0; }
  .legal-service { grid-template-columns: 1fr; padding: 26px; gap: 18px; }
  .legal-service-icon { width: 92px; height: 68px; }
  .legal-service-link { grid-column: 1; }
  .about-strengths { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .contact-form label, .contact-form label:nth-of-type(4), .form-submit, .form-note { grid-column: 1; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-right { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; gap: 52px; }
  .approach-visual { width: min(100%, 560px); }
}

@media (max-width: 640px) {
  .mfi-card { padding: 22px; border-radius: 24px; }
  .mfi-question-row { padding: 12px 14px; }
  .mfi-qtext { font-size: 14px; }
  .pdsa-diagram { width: 200px; height: 200px; }
  .pdsa-wheel-ring { inset: 34px; }
  .pdsa-wheel-center { inset: 64px; font-size: 18px; }
  .pdsa-cycle-label { min-width: 58px; padding: 5px 8px; font-size: 12px; }
  .pdsa-cycle-label.plan { top: 12px; }
  .pdsa-cycle-label.do { right: 12px; }
  .pdsa-cycle-label.study { bottom: 12px; }
  .pdsa-cycle-label.act { left: 12px; }
  .mfi-attribution { font-size: 11px; }
}


/* Launch form and utility pages */
.form-honeypot {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
}
.secure-note { line-height: 1.55; }
.secure-note strong { color: var(--blue-deep); }
.utility-page { min-height: calc(100vh - 106px); background: var(--mist); padding: 150px 0 90px; }
.utility-card { width: min(760px, 100%); padding: clamp(30px, 5vw, 56px); background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.utility-card h1 { margin: 12px 0 20px; color: var(--navy); font-size: clamp(40px, 7vw, 64px); line-height: 1.02; letter-spacing: -.04em; }
.utility-card h2 { margin: 34px 0 10px; color: var(--navy); font-size: 22px; }
.utility-card p, .utility-card li { color: var(--slate); font-size: 16px; line-height: 1.7; }
.utility-card ul { padding-left: 22px; }
.utility-card .button { margin-top: 18px; }
.utility-card .contact-email { display: inline-block; }


#page-top { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }
.form-status { min-height: 1.4em; margin: 2px 0 0; color: var(--slate); font-size: 13px; line-height: 1.45; }
.form-status.error { color: #8a2f2f; font-weight: 700; }
.form-submit:disabled { opacity: .68; cursor: wait; }
