* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #172033;
    background: #f4f7fb;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 12% 12%, rgba(36, 85, 128, 0.13), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(50, 118, 177, 0.14), transparent 30%),
        linear-gradient(180deg, #fff, #f4f7fb 62%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(23, 32, 51, 0.08);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #172033;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 850;
}

.brand-logo {
    width: auto;
    max-width: 180px;
    height: 40px;
    object-fit: contain;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-navigation a {
    color: #566176;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 650;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
    color: var(--brand-primary, #245580);
}

.navigation-action,
.button-primary {
    background: var(--brand-primary, #245580);
    color: #fff !important;
}

.navigation-action {
    padding: 10px 16px;
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(23, 32, 51, 0.16);
    border-radius: 999px;
    background: #fff;
    color: #172033;
    padding: 8px 14px;
    cursor: pointer;
}

.hero-section {
    min-height: 640px;
    display: grid;
    align-items: center;
    padding: 100px 0 82px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.hero-logo {
    max-width: 250px;
    max-height: 104px;
    margin: 0 auto 28px;
    object-fit: contain;
}

.eyebrow {
    display: inline-flex;
    margin: 0 0 16px;
    padding: 7px 14px;
    border: 1px solid rgba(36, 85, 128, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--brand-primary, #245580);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    color: #111827;
    font-size: clamp(2.7rem, 7vw, 5.4rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.hero-title {
    margin: 0 auto 10px;
    color: #111827;
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.hero-description {
    max-width: 760px;
    margin: 0 auto;
    color: #657084;
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(36, 85, 128, 0.12);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(36, 85, 128, 0.18);
}

.button-secondary {
    border: 1px solid rgba(23, 32, 51, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: #172033;
}

.content-section {
    padding: 84px 0;
}

.section-muted {
    border-top: 1px solid rgba(23, 32, 51, 0.07);
    border-bottom: 1px solid rgba(23, 32, 51, 0.07);
    background: rgba(255, 255, 255, 0.76);
}

.section-heading h2 {
    margin-bottom: 30px;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
}

.card-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.profile-card,
.contact-card,
.gallery-item {
    border: 1px solid rgba(23, 32, 51, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 44px rgba(36, 85, 128, 0.08);
}

.profile-card {
    padding: 28px;
}

.card-icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 15px;
    background: rgba(36, 85, 128, 0.09);
    font-size: 1.4rem;
}

.profile-card h3 {
    margin-bottom: 10px;
    color: #111827;
}

.profile-card p {
    margin-bottom: 0;
    color: #657084;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.contact-card {
    padding: 30px;
}

.contact-row {
    display: grid;
    grid-template-columns: minmax(160px, 230px) 1fr;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.contact-row a {
    color: var(--brand-primary, #245580);
}

.contact-address {
    padding-top: 22px;
}

.contact-address p {
    margin: 8px 0 0;
    color: #657084;
}

.site-footer {
    padding: 30px 0;
    border-top: 1px solid rgba(23, 32, 51, 0.08);
    background: rgba(255, 255, 255, 0.72);
    color: #7a8495;
    text-align: center;
}

@media (max-width: 820px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-navigation {
        display: none;
        position: absolute;
        top: 72px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid rgba(23, 32, 51, 0.1);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 18px 46px rgba(36, 85, 128, 0.14);
    }

    .site-navigation.is-open {
        display: flex;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button {
        transition: none;
    }
}
