* {
    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: #e5e7eb;
    background: #07111f;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.22), transparent 36%),
        linear-gradient(145deg, #07111f, #0f172a 58%, #111827);
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 17, 31, 0.9);
    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: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
}

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

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

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

.site-navigation a:hover,
.site-navigation a:focus-visible {
    color: #fff;
}

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

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

.menu-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
}

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

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

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

.eyebrow {
    margin: 0 0 12px;
    color: #93c5fd;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(2.5rem, 7vw, 5.2rem);
    line-height: 1.05;
}

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

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

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 160ms ease, opacity 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

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

.section-muted {
    background: rgba(255, 255, 255, 0.035);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading h2 {
    margin-bottom: 28px;
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.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(255, 255, 255, 0.09);
    background: rgba(15, 23, 42, 0.78);
    border-radius: 16px;
}

.profile-card {
    padding: 26px;
}

.card-icon {
    display: inline-grid;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.4rem;
}

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

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

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

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

.contact-card {
    padding: 28px;
}

.contact-row {
    display: grid;
    grid-template-columns: minmax(150px, 220px) 1fr;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row a {
    color: #93c5fd;
}

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

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

.site-footer {
    padding: 30px 0;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@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(255, 255, 255, 0.12);
        border-radius: 12px;
        background: #0f172a;
    }

    .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;
    }
}
