:root {
  --navy: #0d2438; --navy-d: #071a2a; --teal: #17a2a2; --amber: #f2b134;
  --ink: #202830; --ink-soft: #5a6470; --line: #e2e7ec; --bg-alt: #f4f8fa;
  --radius: 10px; --wrap: 1140px;
}
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: Manrope, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.7; color: var(--ink); background: #fff; }
h1, h2, h3 { line-height: 1.22; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: 2.6rem; } h2 { font-size: 1.7rem; color: var(--navy); } h3 { font-size: 1.05rem; }
p { margin: 0 0 1em; } img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); } a:hover, a:focus-visible { color: var(--navy); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.container { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 1px 10px rgba(13,36,56,.08); }
.header__in { display: flex; align-items: center; gap: 22px; min-height: 74px; }
.brand { margin-right: auto; } .brand img { width: 150px; height: auto; }
.primary-nav ul { display: flex; flex-wrap: wrap; gap: 2px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--ink); text-decoration: none; font-size: .93rem; font-weight: 600; }
.primary-nav a:hover, .primary-nav a:focus-visible { background: var(--bg-alt); color: var(--navy); }
.nav-toggle { display: none; width: 46px; height: 42px; background: none; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.nav-toggle__box { display: block; position: relative; width: 22px; height: 2px; margin: 0 auto; background: var(--navy); }
.nav-toggle__box::before, .nav-toggle__box::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy); }
.nav-toggle__box::before { top: -7px; } .nav-toggle__box::after { top: 7px; }

.hero { position: relative; background: var(--navy-d); }
.hero__bg { width: 100%; max-height: 480px; object-fit: cover; opacity: .38; }
.hero__panel { position: absolute; inset: auto 0 0 0; padding: 36px 0 34px; background: linear-gradient(180deg, rgba(7,26,42,0), rgba(7,26,42,.94) 42%); color: #fff; }
.hero__eyebrow { margin: 0 0 .35em; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); font-weight: 700; }
.hero h1 { color: #fff; max-width: 16ch; } .hero__lead { max-width: 62ch; color: #c6d5e0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.btn { display: inline-block; padding: 13px 28px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: .95rem; }
.btn--primary { background: var(--teal); color: #05221f; } .btn--primary:hover { background: #21bcbc; color: #05221f; }
.btn--ghost { border: 2px solid rgba(255,255,255,.6); color: #fff; padding: 11px 26px; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }

.section { padding: 52px 0; } .section--alt { background: var(--bg-alt); }
.section__title { position: relative; padding-bottom: 12px; margin-bottom: 22px; }
.section__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 4px; background: var(--amber); border-radius: 2px; }
.section__lead { max-width: 82ch; color: var(--ink-soft); margin-bottom: 26px; }
.prose { max-width: 84ch; } .prose p:last-child { margin-bottom: 0; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cards > * { min-width: 0; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card svg { color: var(--teal); margin-bottom: 12px; }
.card h3 { color: var(--navy); } .card p { margin: 0; font-size: .93rem; color: var(--ink-soft); }

.approach { display: grid; grid-template-columns: 1.25fr 1fr; gap: 36px; align-items: center; }
.approach__img { margin: 0; } .approach__img img { width: 100%; border-radius: var(--radius); }
.approach p:last-child { margin-bottom: 0; }

.discs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.disc { background: #fff; border-left: 4px solid var(--teal); border-radius: var(--radius); padding: 18px 22px; min-width: 0; }
.disc h3 { color: var(--navy); font-size: 1rem; } .disc p { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.note { margin: 24px 0 0; font-size: .9rem; color: var(--ink-soft); max-width: 92ch; }

.section--contact { background: var(--navy-d); color: #c2d2de; }
.section--contact .section__title { color: #fff; }
.contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact__box { background: rgba(255,255,255,.07); border-radius: var(--radius); padding: 22px 24px; min-width: 0; }
.contact__box h3 { color: var(--amber); }
.contact a { color: #fff; font-weight: 700; } .contact a:hover { color: var(--amber); }
.contact p:last-child { margin-bottom: 0; }

.site-footer { background: #05131f; color: #8b9dab; font-size: .92rem; padding-top: 34px; }
.footer__in { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 26px; padding-bottom: 22px; }
.footer__name { color: #fff; font-weight: 800; font-size: 1.1rem; }
.footer__head { color: #fff; font-weight: 700; margin-bottom: .6em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; } .site-footer li { margin-bottom: 6px; }
.site-footer a { color: #8b9dab; text-decoration: none; } .site-footer a:hover { color: var(--amber); }
.footer__bottom { border-top: 1px solid #10283c; padding: 14px 0; }
.footer__bottom p { margin: 0; font-size: .84rem; }

@media (max-width: 900px) { .approach, .footer__in { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  h1 { font-size: 1.85rem; } h2 { font-size: 1.4rem; }
  .section { padding: 34px 0; }
  .nav-toggle { display: block; }
  .primary-nav { display: none; width: 100%; order: 3; padding-bottom: 12px; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a { padding: 11px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .header__in { flex-wrap: wrap; min-height: 64px; }
  .hero__bg { max-height: 300px; } .hero__panel { position: static; background: var(--navy-d); }
  .cards, .discs, .contact { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
