@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-Regular.woff2") format("woff2"), url("/fonts/Satoshi-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-Bold.woff2") format("woff2"), url("/fonts/Satoshi-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: "Satoshi", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1b2f4a;
    background: #fffaf5;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: #163550; }
h1, h2, h3 { line-height: 1.2; margin-top: 0; }
p { margin-top: 0; }
.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 4rem 0; }
.section--alt { background: #fff2e6; }
.site-header { background: #ffffff; border-bottom: 1px solid #e6d6c7; position: sticky; top: 0; z-index: 10; backdrop-filter: saturate(120%) blur(4px); }
.site-header__content { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand__logo { width: auto; height: 2rem; max-width: 2rem; object-fit: contain; }
.brand__wordmark { color: #1b2f4a; font-weight: 700; font-size: 1.5rem; letter-spacing: 0.02em; line-height: 1; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.5rem; }
.site-nav a { text-decoration: none; font-weight: 700; color: #1b2f4a; }
.site-footer { padding: 3rem 0; border-top: 1px solid #e6d6c7; background: #1f4268; }
.site-footer__content { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-brand { font-weight: 700; font-size: 1.25rem; margin-bottom: 0.5rem; color: #ffffff; }
.footer-copy { color: rgba(255, 255, 255, 0.86); margin-bottom: 0; }
.footer-links { display: inline-flex; gap: 1.5rem; align-items: center; }
.footer-links a { text-decoration: none; font-weight: 700; color: #ffffff; }
.footer-links a:hover { color: #f4bf97; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; background: #1f4268; color: #ffffff; padding: 0.75rem 1rem; border-radius: 0.75rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: #1f4268; margin-bottom: 0.75rem; font-size: 0.85rem; }
.lead { font-size: 1.125rem; color: #5b6f8d; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 0.75rem; padding: 0.75rem 1.1rem; font-weight: 700; text-decoration: none; border: 1px solid transparent; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.btn--primary { background: #1f4268; color: #ffffff; }
.btn--primary:hover { background: #163550; }
.btn--secondary { background: transparent; color: #1f4268; border-color: #1f4268; }
.btn--secondary:hover { background: #f4bf97; border-color: #f4bf97; color: #163550; }
.hero__content { display: grid; gap: 2rem; grid-template-columns: 1.1fr 1fr; align-items: center; }
.hero__actions, .section-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual img { border-radius: 1rem; box-shadow: 0 10px 24px rgba(22, 53, 80, 0.08); width: 100%; height: auto; object-fit: contain; }
.feature-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 2rem; }
.feature-card { background: #ffffff; border: 1px solid #e6d6c7; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 10px 24px rgba(22, 53, 80, 0.08); }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.feature-list article, .contact-panel { background: #ffffff; border: 1px solid #e6d6c7; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 10px 24px rgba(22, 53, 80, 0.08); }
.cta-band__content { text-align: center; max-width: 760px; background: #ffffff; border: 1px solid #e6d6c7; border-radius: 1rem; padding: 2rem; box-shadow: 0 10px 24px rgba(22, 53, 80, 0.08); }
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
@media (max-width: 900px) {
    .site-header__content { flex-wrap: wrap; padding: 1rem 0; }
    .hero__content, .feature-grid, .feature-list, .contact-grid { grid-template-columns: 1fr; }
}
