
:root {
    --primary: #00325b;
    --primary-dark: #011b31;
    --secondary: #f76315;
    --cream: #fdf9f5;
    --steel: #c6d0da;
    --slate: #7d8b98;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
    min-height: 100vh;
    background: radial-gradient(circle at top, #00325b, #010d18 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--cream);
}
.card {
    width: min(960px, 100%);
    padding: clamp(2rem, 4vw, 4rem);
    border-radius: 28px;
    background: linear-gradient(
        150deg,
        rgba(1, 50, 91, 0.95),
        rgba(1, 27, 49, 0.98)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 2.5rem;
}
.card::before,
.card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.card::before {
    width: 320px;
    height: 320px;
    inset: auto auto -140px -80px;
}
.card::after {
    width: 260px;
    height: 260px;
    inset: -120px -70px auto auto;
}
header {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    z-index: 1;
}
.logo-mark {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.logo-mark > img {
    height: 100%;
    object-fit: cover;
}
.tower {
    width: 60%;
    height: 80%;
    border: 4px solid var(--primary);
    border-bottom-width: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12% 10%;
    position: relative;
}
.tower::before,
.tower::after {
    content: "";
    position: absolute;
    width: 14%;
    height: 100%;
    border: 4px solid var(--secondary);
    border-bottom-width: 10px;
    top: 0;
}
.tower::before {
    left: -22%;
}
.tower::after {
    right: -22%;
}
.tower span {
    display: block;
    height: 12%;
    border-bottom: 3px solid var(--primary);
}
.identity h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    letter-spacing: 0.04em;
}
.identity p {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.9rem;
    color: var(--steel);
    margin-top: 0.5rem;
}
.label {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    color: var(--slate);
    margin-bottom: 0.75rem;
}
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    font-size: 1.1rem;
}
.contact-row a {
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.contact-row a:hover {
    border-color: var(--secondary);
}
.divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
}
.footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--steel);
    font-size: 0.95rem;
}
@media (max-width: 720px) {
    body {
        padding: 1.25rem;
    }
    .card {
        border-radius: 22px;
        padding: 2rem;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .logo-mark {
        width: 96px;
        height: 96px;
    }
    .contact-row {
        flex-direction: column;
        gap: 0.6rem;
    }
    .footer {
        flex-direction: column;
    }
}