:root {
  --bg: #f3f5f8;
  --text: #0f1722;
  --muted: #4d5a6b;
  --card: #ffffff;
  --line: #d6dce4;
  --accent: #1b3f74;
  --ink-soft: #1f2936;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}
.logo-word {
  font-size: 1.9rem;
  font-weight: 640;
  letter-spacing: -0.03em;
  color: #454b53;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
}
.logo-sub {
  margin-top: 3px;
  font-size: 0.54rem;
  letter-spacing: 0.42em;
  color: #98a0aa;
  font-weight: 400;
  padding-left: 3px;
}
.site-nav { display: flex; gap: 18px; align-items: center; }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
.site-nav a:hover, .site-nav a.active { color: var(--text); }
a, a:visited, a:active { color: var(--ink-soft); text-decoration: none; }
a:hover, a:focus-visible { color: #15263a; }
h3 a, h3 a:visited, .footer-wrap a, .footer-wrap a:visited { color: var(--text); text-decoration: none; }
h3 a:hover, .footer-wrap a:hover { color: #22374f; }
.btn {
  display: inline-block; background: var(--text); color: #fff; text-decoration: none;
  border: 1px solid var(--text); padding: 11px 16px; border-radius: 10px; font-weight: 600;
  box-shadow: 0 8px 24px rgba(15, 23, 34, 0.18);
}
.btn:hover { opacity: .96; transform: translateY(-1px); }
.btn-sm { padding: 8px 12px; }
.btn-ghost { background: transparent; color: var(--text); }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; padding: 8px 12px; border-radius: 8px; }

.hero {
  padding: 98px 0 78px;
  background:
    radial-gradient(circle at 8% 8%, rgba(27,63,116,0.10), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(27,63,116,0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  border-bottom: 1px solid var(--line);
}
.eyebrow { letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-size: .78rem; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.08; margin: 6px 0 16px; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin: 0 0 12px; }
h3 { margin-top: 0; }
.lead { color: var(--ink-soft); font-size: 1.14rem; max-width: 760px; }
.cta-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding: 18px 0; font-weight: 600; color: #2a3037; font-size: .95rem;
}

.section { padding: 64px 0; }
.section-tight { margin-top: 28px; }
.image-band { padding-top: 36px; padding-bottom: 12px; }
.hero-image, .inline-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
  box-shadow: 0 10px 24px rgba(17,19,21,0.08);
}
.inline-image {
  margin: 16px auto 24px;
  max-width: 780px;
  max-height: 280px;
  object-fit: cover;
}
.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cards { display: grid; gap: 18px; margin-top: 20px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  border: 1px solid var(--line); border-radius: 14px;
  border-top: 3px solid #e7ecf2;
  padding: 24px 24px 22px;
  box-shadow: 0 10px 30px rgba(17,19,21,0.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(17,19,21,0.08); }
.stack { display: grid; gap: 16px; margin-top: 18px; }
.bullets { margin: 0; padding-left: 20px; }
.card h2, .card h3 {
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card h2 {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.25;
}
.card h3 {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.3;
}
.card p {
  margin: 0 0 9px;
  color: #2a3442;
  font-size: 0.98rem;
  line-height: 1.55;
}
.card p:last-child { margin-bottom: 0; }
.stack .card {
  padding: 26px 24px;
}

.contact-form { display: grid; gap: 10px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid #cfd5dc; border-radius: 8px; padding: 10px 12px; font: inherit;
  background: #fff;
}
.form-status {
  margin: 10px 0 16px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.form-status.success {
  background: #eef9f0;
  border-color: #b8e3c0;
  color: #1f5c2e;
}
.form-status.error {
  background: #fff2f2;
  border-color: #f2c1c1;
  color: #7a2626;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-footer { border-top: 1px solid var(--line); background: #fff; margin-top: 34px; }
.footer-wrap { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.footer-wrap p { margin: 0; color: var(--muted); font-size: .95rem; }
.footer-wrap a { color: var(--text); text-decoration: none; }

@media (max-width: 900px) {
  .cards.three, .cards.two, .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .logo-word { font-size: 1.34rem; }
  .logo-sub { font-size: 0.45rem; letter-spacing: 0.34em; }
  .menu-toggle { display: inline-block; }
  .site-nav {
    display: none; position: absolute; top: 72px; right: 4%;
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    padding: 14px; flex-direction: column; align-items: flex-start; min-width: 220px;
  }
  .site-nav.open { display: flex; }
  .cards.three, .cards.two, .trust-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; align-items: flex-start; padding: 14px 0; }
}

.hero-image {
  max-height: 300px;
  object-fit: cover;
}

.image-band .container {
  max-width: 760px;
}
