:root {
  --navy: #002249;
  --navy-deep: #00172f;
  --navy-soft: #0b3358;
  --slate: #546871;
  --slate-light: #aebbc1;
  --ink: #11283e;
  --paper: #f7f9fa;
  --mist: #eaf0f2;
  --line: #d7e0e4;
  --muted: #65737c;
  --white: #ffffff;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  height: 92px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo-crop {
  display: block;
  width: 185px;
  height: 72px;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.brand-logo-crop img {
  position: absolute;
  width: 205px;
  height: 205px;
  max-width: none;
  left: -11px;
  top: -67px;
}
nav { display: flex; gap: 36px; margin-left: auto; }
nav a { color: #445967; font-size: 12px; letter-spacing: .05em; }
nav a:hover { color: var(--navy); }

.button {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { padding: 13px 18px; border: 1px solid var(--navy); color: var(--navy); }
.button-small:hover { color: white; background: var(--navy); }
.button-primary { padding: 18px 24px; background: var(--slate); color: white; box-shadow: 0 14px 36px rgba(0,15,32,.18); }
.button-primary:hover { background: #71858f; }

.hero {
  min-height: 690px;
  padding: 95px clamp(24px, 7.2vw, 116px) 88px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent, black 55%, transparent);
}
.hero-lines {
  position: absolute;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(174,187,193,.14);
  transform: rotate(45deg);
  right: -355px;
  top: -305px;
}
.hero-lines::after { content: ""; position: absolute; inset: 75px; border: 1px solid rgba(174,187,193,.1); }
.hero-content, .case-panel { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 12px; color: #c5d0d5; font-size: 10px; font-weight: 700; letter-spacing: .21em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 2px; background: var(--slate-light); }
.eyebrow.dark { color: var(--slate); }
.eyebrow.dark span { background: var(--slate); }
.hero h1 { margin: 0; max-width: 760px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(50px, 5.8vw, 82px); line-height: .99; letter-spacing: -.045em; font-weight: 400; }
.hero h1 em { display: block; color: #bdc9ce; font-weight: 400; }
.hero-lede { max-width: 660px; margin: 29px 0 34px; color: #c0cbd3; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.text-link { color: #dce4e8; font-size: 12px; font-weight: 700; letter-spacing: .05em; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.microcopy { max-width: 560px; margin: 24px 0 0; color: #8ea0ad; font-size: 11px; line-height: 1.6; }

.case-panel { background: var(--navy-soft); border: 1px solid rgba(174,187,193,.38); box-shadow: 0 35px 70px rgba(0,0,0,.3); transform: translateY(12px); }
.case-panel-head, .case-panel-footer { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: rgba(0,17,36,.45); border-bottom: 1px solid rgba(255,255,255,.09); color: #9fb0bc; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.status { color: #cbd7ca; }
.status i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #86a49a; margin-right: 6px; box-shadow: 0 0 0 4px rgba(134,164,154,.1); }
.case-panel-body { padding: 34px 32px 28px; }
.panel-kicker { margin: 0; color: #b6c5cc; font-size: 9px; letter-spacing: .2em; }
.case-panel h2 { margin: 10px 0 28px; font: 400 27px/1.2 Georgia, serif; }
.route { border-left: 1px solid rgba(174,187,193,.42); margin-left: 14px; }
.route div { display: flex; align-items: center; gap: 16px; padding: 12px 0 12px 20px; position: relative; color: #c9d4da; font-size: 12px; }
.route div::before { content: ""; position: absolute; left: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--slate-light); }
.route b { color: #7890a0; font-size: 9px; }
.panel-note { margin-top: 28px; padding: 18px; background: rgba(0,17,36,.38); display: flex; align-items: center; gap: 16px; }
.panel-note > span { width: 38px; height: 38px; border: 1px solid rgba(174,187,193,.6); display: grid; place-items: center; color: #d1dbe0; font: 13px Georgia, serif; }
.panel-note p { display: grid; gap: 4px; margin: 0; color: #92a7b4; font-size: 10px; line-height: 1.5; }
.panel-note strong { color: #e5ebef; font-size: 11px; }
.case-panel-footer { border-top: 1px solid rgba(255,255,255,.08); border-bottom: 0; justify-content: space-around; color: #8297a5; }

.proof-strip { background: #fff; border-bottom: 1px solid var(--line); padding: 0 clamp(24px, 7.2vw, 116px); display: grid; grid-template-columns: repeat(3,1fr); }
.proof-strip > div { display: flex; align-items: center; gap: 18px; padding: 28px 3vw; border-right: 1px solid var(--line); }
.proof-strip > div:first-child { padding-left: 0; }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip span { color: var(--slate); font: 18px Georgia, serif; }
.proof-strip p { display: grid; gap: 3px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.4; }
.proof-strip strong { color: var(--ink); font-size: 12px; }

.section { padding: 110px clamp(24px, 7.2vw, 116px); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; margin-bottom: 55px; }
.section-heading h2, .faq-intro h2 { max-width: 820px; margin: 0; font: 400 clamp(38px, 4vw, 56px)/1.1 Georgia, serif; letter-spacing: -.035em; }
.section-heading h2 em { color: var(--slate); font-weight: 400; }
.section-heading > p, .section-heading.compact > p { margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }
.service-card { min-width: 0; padding: 36px 32px 30px; background: #fff; border-right: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { position: relative; z-index: 2; transform: translateY(-5px); box-shadow: 0 24px 45px rgba(0,37,77,.12); }
.service-number { color: var(--slate); font: 15px Georgia, serif; }
.service-subtitle { margin: 35px 0 7px; color: var(--slate); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.service-card h3 { margin: 0; font: 400 38px Georgia, serif; }
.service-description { min-height: 102px; margin: 18px 0 23px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service-card ul { min-height: 118px; margin: 0; padding: 20px 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { margin: 10px 0; padding-left: 16px; position: relative; font-size: 11px; line-height: 1.5; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; background: var(--slate); transform: rotate(45deg); }
.service-signal { min-height: 125px; padding: 18px; background: var(--mist); }
.service-signal span { color: var(--slate); font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.service-signal p { margin: 9px 0 0; font-size: 11px; line-height: 1.55; }
.service-card > a { margin-top: 25px; display: flex; justify-content: space-between; color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.decision-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); color: white; }
.decision-copy { padding: 95px clamp(28px, 7vw, 110px); border-right: 1px solid rgba(255,255,255,.12); }
.decision-copy h2 { margin: 0; font: 400 clamp(40px, 4vw, 59px)/1.07 Georgia, serif; letter-spacing: -.035em; }
.decision-copy > p:not(.eyebrow) { margin: 26px 0 34px; max-width: 620px; color: #b6c4cd; font-size: 14px; line-height: 1.8; }
.decision-list { padding: 75px clamp(28px, 6vw, 90px); }
.list-title { color: #8799a7; font-size: 9px; letter-spacing: .18em; }
.decision-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.12); align-items: start; }
.decision-list span { color: #b9c7cd; font: 14px Georgia, serif; }
.decision-list p:not(.list-title) { margin: 0; color: #dbe3e7; font-size: 13px; line-height: 1.6; }

.method { background: var(--mist); }
.section-heading.compact { grid-template-columns: 1.4fr .6fr; }
.method-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #c5d1d6; }
.method-grid article { padding: 34px 28px 12px 0; border-right: 1px solid #c5d1d6; margin-right: 28px; }
.method-grid article:last-child { border-right: 0; margin-right: 0; }
.method-grid span { color: var(--slate); font: 14px Georgia, serif; }
.method-grid h3 { margin: 30px 0 14px; font: 400 24px Georgia, serif; }
.method-grid p { color: var(--muted); font-size: 12px; line-height: 1.7; }

.manifesto { min-height: 480px; display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; background: var(--navy-soft); color: white; padding: 85px clamp(24px, 9vw, 145px); overflow: hidden; }
.manifesto-mark { color: transparent; -webkit-text-stroke: 1px rgba(174,187,193,.27); font: 200px Georgia, serif; letter-spacing: -.12em; }
.manifesto blockquote { margin: 0; font: 400 clamp(43px, 5vw, 67px)/1.09 Georgia, serif; letter-spacing: -.035em; }
.manifesto blockquote em { color: #bdc9ce; }
.manifesto-copy { max-width: 610px; margin: 28px 0 0; color: #a7b7c1; font-size: 14px; line-height: 1.75; }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; background: #fff; }
.faq-intro > p:last-child { color: var(--muted); font-size: 13px; line-height: 1.6; }
.faq-intro h2 { margin-bottom: 20px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 24px 0; display: grid; grid-template-columns: 38px 1fr 20px; gap: 10px; align-items: center; cursor: pointer; list-style: none; font: 17px/1.4 Georgia, serif; }
summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--slate); font: 11px Arial, sans-serif; }
.faq-list summary i { color: var(--slate); font-style: normal; font: 22px Arial, sans-serif; transition: transform .2s; }
details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { margin: -8px 30px 25px 48px; color: var(--muted); font-size: 12px; line-height: 1.75; }

.diagnostic { padding: 105px clamp(24px, 9vw, 145px); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); background: var(--navy); color: white; }
.diagnostic-copy h2 { margin: 0; font: 400 clamp(43px, 4.6vw, 65px)/1.08 Georgia, serif; letter-spacing: -.04em; }
.diagnostic-copy h2 em { color: #bdc9ce; }
.diagnostic-copy > p:not(.eyebrow) { max-width: 540px; color: #adbdc7; font-size: 14px; line-height: 1.75; }
.location-card { margin-top: 45px; padding: 22px; border-left: 2px solid var(--slate-light); background: rgba(255,255,255,.04); display: grid; gap: 6px; }
.location-card span { color: #8aa0ae; font-size: 8px; letter-spacing: .17em; }
.location-card strong { font: 20px Georgia, serif; }
.location-card p { margin: 0; color: #91a4b0; font-size: 10px; }
.location-card a { width: max-content; margin-top: 9px; color: #d4dee3; font-size: 10px; font-weight: 700; letter-spacing: .06em; border-bottom: 1px solid rgba(212,222,227,.4); }
.diagnostic-form { padding: 35px; background: #fff; color: var(--ink); box-shadow: 0 28px 70px rgba(0,0,0,.25); }
.form-heading { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--slate); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.form-heading p { max-width: 250px; margin: 0; color: var(--muted); text-align: right; font-size: 9px; line-height: 1.4; }
.diagnostic-form label { display: grid; gap: 8px; margin-top: 20px; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.diagnostic-form input, .diagnostic-form select, .diagnostic-form textarea { width: 100%; padding: 13px 14px; border: 1px solid #d4dde1; border-radius: 0; background: #fbfcfc; color: var(--ink); font-size: 12px; text-transform: none; letter-spacing: 0; outline: none; }
.diagnostic-form textarea { resize: vertical; }
.diagnostic-form input:focus, .diagnostic-form select:focus, .diagnostic-form textarea:focus { border-color: var(--slate); box-shadow: 0 0 0 3px rgba(94,113,123,.12); }
.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.full { width: 100%; margin-top: 22px; }
.privacy-note { margin: 14px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; text-align: center; }
.prepared-message { margin-top: 20px; padding: 18px; background: var(--mist); border: 1px solid #c9d5da; }
.prepared-message p { margin: 0; font-size: 11px; line-height: 1.6; }
.prepared-message p strong { display: block; font-size: 13px; }
.prepared-message button { display: block; margin: 12px auto 0; background: transparent; border: 0; color: var(--navy); cursor: pointer; font-size: 10px; text-decoration: underline; }

footer { background: #00162f; color: white; padding: 65px clamp(24px, 7.2vw, 116px) 28px; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; padding-bottom: 45px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { background: white; }
.footer-main > p { color: #91a2af; font-size: 12px; }
.footer-main > p a { display: inline-block; margin-top: 7px; color: #c3cfd5; font-weight: 700; }
.footer-main > a:last-child { color: #c4d0d6; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-legal { padding: 30px 0; display: grid; grid-template-columns: auto 1fr 1.2fr; gap: 30px; align-items: start; }
.footer-legal > p:first-child { margin: 0; color: #728695; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-legal > div { display: grid; gap: 8px; }
.footer-legal a { color: #aab8c2; font-size: 10px; text-decoration: underline; text-underline-offset: 3px; }
.disclaimer { margin: 0; color: #728695; font-size: 9px; line-height: 1.6; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: #607685; font-size: 8px; letter-spacing: .15em; }

@media (max-width: 1050px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-content { max-width: 820px; }
  .case-panel { max-width: 650px; width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-description, .service-card ul, .service-signal { min-height: 0; }
  .method-grid { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .method-grid article:nth-child(2) { border-right: 0; }
  .manifesto { grid-template-columns: .4fr 1.6fr; }
  .manifesto-mark { font-size: 130px; }
  .diagnostic { grid-template-columns: 1fr; }
  .diagnostic-copy { max-width: 760px; }
}

@media (max-width: 760px) {
  .site-header { height: 78px; padding: 0 18px; }
  .site-header .button-small { display: none; }
  .brand-logo-crop { width: 155px; height: 60px; }
  .brand-logo-crop img { width: 175px; height: 175px; left: -9px; top: -57px; }
  .hero { min-height: auto; padding: 67px 22px 65px; gap: 60px; }
  .hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .text-link { width: max-content; }
  .case-panel-body { padding: 28px 22px; }
  .proof-strip { grid-template-columns: 1fr; padding: 0 22px; }
  .proof-strip > div { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip > div:last-child { border-bottom: 0; }
  .section { padding: 78px 22px; }
  .section-heading, .section-heading.compact { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .section-heading h2, .faq-intro h2 { font-size: 40px; }
  .service-card { padding: 30px 24px; }
  .decision-section { grid-template-columns: 1fr; }
  .decision-copy { padding: 75px 22px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .decision-list { padding: 55px 22px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article, .method-grid article:nth-child(2) { border-right: 0; border-bottom: 1px solid #c5d1d6; margin: 0; padding: 26px 0; }
  .method-grid article:last-child { border-bottom: 0; }
  .manifesto { grid-template-columns: 1fr; padding: 75px 22px; }
  .manifesto-mark { display: none; }
  .manifesto blockquote { font-size: 43px; }
  .faq { grid-template-columns: 1fr; gap: 42px; }
  .faq-list details > p { margin-left: 0; }
  .diagnostic { padding: 75px 22px; }
  .diagnostic-form { padding: 27px 20px; }
  .two-columns { grid-template-columns: 1fr; }
  .form-heading { display: grid; }
  .form-heading p { text-align: left; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-legal { grid-template-columns: 1fr; }
  .footer-bottom { gap: 18px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
