* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: #172333;
    background: #fff;
    line-height: 1.65;
}
a {
    color: inherit;
}
p {
    max-width: 72ch;
}
h1,
h2,
h3 {
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #0b1f33;
}
.container {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}
.narrow {
    max-width: 820px;
}
.site-header {
    min-height: 72px;
    padding: 0.8rem max(1rem, calc((100vw - 1120px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border-bottom: 1px solid #e7ebef;
    position: sticky;
    top: 0;
    z-index: 10;
}
.brand {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #0b1f33;
}
.site-header nav {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.site-header nav a {
    text-decoration: none;
    font-weight: 650;
    /*font-size: 0.95rem;*/
    font-size: 1.5rem;
}
.site-header nav a:hover,
.site-header nav a:focus-visible {
    color: #1b6ca8;
}
.hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(7,24,39,.72), rgba(7,24,39,.72)),
    url("images/hero.jpg") center center / cover no-repeat;
  color: #fff;
}
.hero-content {
    padding: 6rem 0;
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 5rem);
    max-width: 900px;
}
.hero .lead {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    max-width: 800px;
    color: #eaf2f7;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 800;
    font-size: 0.78rem;
    margin: 0 0 1rem;
    color: #4a89b4;
}
.hero .eyebrow {
    color: #9ed1e7;
}
.button {
    display: inline-block;
    margin-top: 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    background: #fff;
    color: #0b1f33;
    padding: 0.8rem 1.15rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
}
.button:hover,
.button:focus-visible {
    background: #e8f4f8;
}
.section {
    padding: 5rem 0;
}
.section-alt {
    background: #f3f6f8;
}
.section h2,
.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}
.section-intro {
    font-size: 1.1rem;
    color: #526273;
    margin-bottom: 2rem;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.card,
.values > div,
.address-card {
    border: 1px solid #dfe6eb;
    border-radius: 8px;
    padding: 1.5rem;
    background: #fff;
}
.card p,
.values p {
    color: #526273;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.check-list li {
    padding: 1.2rem 1.2rem 1.2rem 3rem;
    background: #fff;
    border-radius: 7px;
    border: 1px solid #dfe6eb;
    position: relative;
}
.check-list li:before {
    content: "✓";
    position: absolute;
    left: 1.1rem;
    font-weight: 900;
    color: #1b6ca8;
}
.check-list strong,
.check-list span {
    display: block;
}
.check-list span {
    color: #526273;
    margin-top: 0.25rem;
}
.page-header {
    padding: 5rem 0;
    background: #f3f6f8;
}
.page-header p:last-child {
    font-size: 1.15rem;
    color: #526273;
}
.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}
.contact-form {
    display: grid;
    gap: 0.55rem;
    max-width: 680px;
}
.contact-form label {
    font-weight: 700;
    margin-top: 0.6rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    font: inherit;
    padding: 0.8rem;
    border: 1px solid #b8c3cc;
    border-radius: 5px;
    color: #172333;
    background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid #b9dded;
    border-color: #17658e;
}
.contact-form .button {
    background: #0b1f33;
    color: #fff;
    width: max-content;
}
.contact-form .button:hover,
.contact-form .button:focus-visible {
    background: #164a67;
}
.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.addresses {
    display: grid;
    align-content: start;
    gap: 1rem;
}
.addresses h2 {
    margin-bottom: 0;
}
.address-card h3 {
    font-size: 1.1rem;
}
.address-card p {
    margin: 0.2rem 0;
    color: #526273;
}
.small {
    font-size: 0.9rem;
    color: #687786;
}
.notice {
    padding: 1rem;
    border-radius: 6px;
    margin: 0 0 1rem;
}
.success {
    background: #eaf7ef;
    border: 1px solid #a8d5b7;
}
.error {
    background: #fff0f0;
    border: 1px solid #e0aaaa;
}
.site-footer {
    background: #071827;
    color: #d8e3e9;
    padding: 3rem 0 1rem;
}
.site-footer a {
    color: #fff;
    text-decoration: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
}
.footer-grid > div:last-child {
    display: flex;
    gap: 1rem;
    align-items: start;
}
.site-footer strong {
    color: #fff;
    font-size: 1.2rem;
}
.copyright {
    border-top: 1px solid #29404e;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #aebdc7;
}
.header-logo {
  width: 75px;
  height: auto;
  flex-shrink: 0;
  margin-right: 10px;
}
.header-name-text {
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 760px) {
    .site-header {
        align-items: flex-start;
    }
    .site-header nav {
        gap: 0.7rem;
    }
    .hero-content {
        padding: 4rem 0;
    }
    .cards,
    .values,
    .check-list,
    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 3.5rem 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid > div:last-child {
        flex-direction: column;
        gap: 0.4rem;
    }
    .page-header {
        padding: 3.5rem 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
@media print {
    .site-header {
        position: static;
    }
    .button {
        display: none;
    }
    .section {
        padding: 2rem 0;
    }
    .site-footer {
        background: #fff;
        color: #000;
    }
}
