:root {
  --paper: #f3f1ec;
  --white: #fffcf7;
  --ink: #121a22;
  --navy: #0c2238;
  --navy-mid: #16324c;
  --accent: #2a6f97;
  --accent-deep: #1f5676;
  --muted: #5c6b78;
  --line: #d8d4cb;
  --sans: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --display: "Source Serif 4", ui-serif, Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body { background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.55; }
img, svg { display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); text-wrap: balance; letter-spacing: -0.03em; }
p { text-wrap: pretty; }
button, [role="button"] { cursor: pointer; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 20px; }

header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--navy) 95%, transparent);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
header.light {
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-weight: 600; }
header.light .brand { color: var(--navy); }
.brand span span { font-weight: 500; opacity: .8; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75); }
.nav-links a:hover { color: #fff; }
.nav-links a.btn { color: var(--navy); }
.nav-links a.btn:hover { color: var(--navy); background: var(--paper); }
header.light .nav-links a { color: var(--muted); }
header.light .nav-links a:hover { color: var(--ink); }
header.light .nav-links a.btn { color: #fff; background: var(--navy); }
header.light .nav-links a.btn:hover { color: #fff; background: var(--navy-mid); }
.menu-btn { display: none; background: none; border: 0; color: #fff; width: 44px; height: 44px; font-size: 22px; }
header.light .menu-btn { color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 24px; border-radius: 6px; font-size: 14px; font-weight: 600;
  text-decoration: none; border: 0; transition: background .15s ease, border-color .15s ease;
}
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--paper); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); }

.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; text-align: center; padding: 0; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: color-mix(in srgb, var(--navy) 58%, transparent); }
.hero-inner { position: relative; padding: 88px 20px 80px; }
.hero .kicker { font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; max-width: 820px; margin: 0 auto; }
.hero p { max-width: 620px; margin: 24px auto 0; color: rgba(255,255,255,.72); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.photo-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.photo-strip img { width: 100%; height: 208px; object-fit: cover; }
.photo-wide { width: 100%; max-width: 1100px; margin: 8px auto 0; height: 320px; object-fit: cover; border-radius: 10px; display: block; }
.photo-page { width: 100%; height: 260px; object-fit: cover; border-radius: 10px; margin: 8px 0 28px; }

.trust { background: var(--navy-mid); color: rgba(255,255,255,.7); padding: 18px 20px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

section.pad { padding: 80px 0; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.lede { color: var(--muted); margin-top: 16px; max-width: 640px; }

.grid-3 { display: grid; gap: 20px; margin-top: 48px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.card.soft { background: var(--paper); }
.icon { width: 40px; height: 40px; border-radius: 6px; background: var(--navy); color: #fff; display: grid; place-items: center; margin-bottom: 16px; font-size: 12px; font-weight: 700; }
.card h3 { font-family: var(--sans); font-size: 18px; letter-spacing: 0; }
.card p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.step-n { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .18em; }

.band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta { position: relative; overflow: hidden; background: var(--navy); color: #fff; text-align: center; padding: 80px 20px; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.cta-inner { position: relative; }
.cta p { color: rgba(255,255,255,.7); margin: 16px auto 32px; max-width: 520px; }

.page-hero { padding: 64px 0 24px; }
.kicker { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 12px; }
.page-hero p { color: var(--muted); margin-top: 20px; font-size: 18px; }
.prose { color: var(--muted); font-size: 17px; }
.prose p + p { margin-top: 18px; }

.roles { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 32px; }
.roles li { list-style: none; border: 1px solid var(--line); background: var(--paper); border-radius: 6px; padding: 12px 16px; font-size: 14px; font-weight: 500; }

form { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px; margin-top: 36px; }
label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; height: 44px; border: 1px solid var(--line); background: var(--paper);
  border-radius: 6px; padding: 0 12px; font: inherit; margin-bottom: 16px;
}
textarea { height: auto; padding: 10px 12px; }
input:focus, select:focus, textarea:focus { outline: 2px solid color-mix(in srgb, var(--accent) 40%, transparent); }

footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-grid { display: grid; gap: 36px; padding: 56px 0 40px; grid-template-columns: 1.4fr 1fr 1fr; }
footer a { color: rgba(255,255,255,.75); text-decoration: none; }
footer a:hover { color: #fff; }
footer ul { list-style: none; margin-top: 16px; }
footer li { margin: 8px 0; font-size: 14px; }
.foot-label { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.legal { border-top: 1px solid rgba(255,255,255,.1); padding: 20px; text-align: center; font-size: 12px; color: rgba(255,255,255,.4); }

.mobile-panel { display: none; }
.mobile-panel.open { display: block; background: var(--paper); border-top: 1px solid var(--line); padding: 12px 20px 20px; }
.mobile-panel a { display: block; padding: 12px 8px; text-decoration: none; color: var(--ink); font-weight: 500; }
.mobile-panel a.btn {
  color: #fff;
  background: var(--navy);
  text-align: center;
  margin-top: 8px;
  height: 44px;
  padding: 0 16px;
}
.mobile-panel a.btn:hover { color: #fff; background: var(--navy-mid); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 40px; }
  .hero { padding: 0; }
  .hero-inner { padding: 64px 20px 56px; }
  .photo-strip img { height: 112px; }
  .photo-wide, .photo-page { height: 200px; }
}

.photo-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.photo-card img { width: 100%; height: 176px; object-fit: cover; }
.photo-card .pad { padding: 24px; }
.split { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 768px) { .split-2 { grid-template-columns: 1fr 1fr; } }
.hero-shade { background: color-mix(in srgb, var(--navy) 58%, transparent); }
footer { position: relative; overflow: hidden; }
.foot-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; pointer-events: none; }
.footer-grid, .legal { position: relative; }

input::placeholder, textarea::placeholder {
  color: #8a96a0;
  opacity: 1;
}
.form-hint { font-size: 13px; color: var(--muted); margin: -8px 0 16px; line-height: 1.5; }
.grecaptcha-badge { visibility: hidden; }
