:root {
    --primary: #0f2f4a;
    --primary-dark: #081c2d;
    --secondary: #c2a76d;
    --accent: #d7b97c;

    --background: #f4f7f9;
    --surface: #ffffff;

    --text: #17212b;
    --muted: #64748b;

    --footer: #081522;

    --line: rgba(15, 47, 74, 0.10);

    --radius: 18px;
    --max: 1380px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

.wrap {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.logo-text,
.site-title {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-top: 0;
    color: var(--text);
}

h1 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

h3 {
    font-size: 1.2rem;
}

p,
li,
.meta {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.main-nav a,
.hero-kicker,
.category-label,
.latest-strip strong,
button,
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* Header */

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-strip {
    background: linear-gradient(
        90deg,
        var(--primary-dark),
        #0d3d55
    );

    color: #fff;
    overflow: hidden;
}

.latest-strip {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.latest-strip strong {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.latest-strip-window {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.latest-strip-items {
    display: inline-flex;
    gap: 28px;
    align-items: center;
    min-width: max-content;
    animation: latestTicker 18s linear infinite;
}

.latest-strip-items a {
    color: rgba(255,255,255,0.92);
    position: relative;
}

.latest-strip-items a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);

    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes latestTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.header-main {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 2rem;

    color: var(--primary-dark);
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main-nav a {
    font-size: 0.95rem;
    color: var(--text);
}

.main-nav a:hover {
    color: var(--primary);
}

/* Hero */

.brand-hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.brand-hero-shade {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(7, 24, 41, 0.42) 0%,
        rgba(7, 24, 41, 0.84) 100%
    );
}

.brand-hero-content {
    position: relative;
    z-index: 2;

    max-width: 860px;

    color: #fff;

    padding: 90px 0;
}

.brand-hero-content h1 {
    color: #fff;

    max-width: 760px;

    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.08;
}

.brand-hero-content p {
    max-width: 700px;

    font-size: 1.1rem;

    color: rgba(255,255,255,0.88);
}

.hero-kicker {
    display: inline-block;

    color: var(--accent);

    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.12em;

    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}

.hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;

    border-radius: 999px;

    background: #fff;

    color: var(--primary-dark);

    font-weight: 700;
}

.hero-actions a + a {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.hero-actions a:hover {
    color: var(--primary);
    text-decoration: none;
}