:root {
    --navy: #1f2b3e;
    --navy-deep: #121b29;
    --gold: #d29d29;
    --gold-soft: #e0b64f;
    --paper: #f7f4ed;
    --ink: #1f2430;
    --muted: #686f7b;
    --line: rgba(31, 43, 62, 0.14);
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--paper);
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(31, 43, 62, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(31, 43, 62, 0.025) 1px, transparent 1px),
        var(--paper);
    background-size: 34px 34px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0 auto 0 0;
    width: 10px;
    background: var(--gold);
    z-index: 10;
}

.page-shell {
    min-height: 100vh;
    max-width: 1500px;
    margin: 0 auto;
    padding: 34px clamp(28px, 5vw, 82px) 26px;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    display: block;
    width: clamp(210px, 24vw, 315px);
    height: auto;
    max-height: 88px;
    object-fit: contain;
    object-position: left center;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--navy);
    white-space: nowrap;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(210, 157, 41, 0.14);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    align-items: center;
    gap: clamp(46px, 8vw, 120px);
    padding: clamp(58px, 8vh, 110px) 0;
}

.hero-copy {
    max-width: 780px;
}

.eyebrow {
    margin: 0 0 22px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    max-width: 780px;
    color: var(--navy);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(52px, 6.8vw, 102px);
    line-height: 0.96;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.lead {
    margin: 34px 0 0;
    max-width: 660px;
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.55;
    color: #3f4651;
}

.divider {
    width: 90px;
    height: 4px;
    margin: 34px 0 22px;
    background: var(--gold);
}

.supporting-copy {
    margin: 0;
    max-width: 580px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

.visual-panel {
    min-height: 470px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 42px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 28px 70px rgba(18, 27, 41, 0.16);
}

.visual-panel::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    top: -130px;
    right: -125px;
}

.visual-panel::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(210, 157, 41, 0.33);
    border-radius: 50%;
    top: -44px;
    right: -34px;
}

.visual-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--white);
}

.monogram {
    display: inline-grid;
    place-items: center;
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--gold-soft);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 48px;
    line-height: 1;
}

.panel-kicker {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.panel-text {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
}

.gold-rule {
    position: absolute;
    left: 42px;
    bottom: 0;
    width: 42%;
    height: 7px;
    background: var(--gold);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: #737a84;
    font-size: 13px;
}

.site-footer p {
    margin: 0;
}

.footer-note {
    color: var(--navy);
    font-weight: 700;
}

@media (max-width: 900px) {
    .page-shell {
        padding-left: 24px;
        padding-right: 24px;
    }

    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 62px 0;
    }

    h1 {
        font-size: clamp(50px, 12vw, 78px);
    }

    .visual-panel {
        min-height: 330px;
    }
}

@media (max-width: 560px) {
    body::before {
        width: 6px;
    }

    .page-shell {
        padding: 24px 20px 22px 24px;
    }

    .brand img {
        width: min(260px, 84vw);
        max-height: 74px;
    }

    .status {
        font-size: 10px;
        letter-spacing: 0.1em;
        white-space: normal;
    }

    h1 {
        font-size: clamp(44px, 13vw, 62px);
    }

    .lead {
        margin-top: 26px;
        font-size: 18px;
    }

    .visual-panel {
        min-height: 290px;
        padding: 30px;
    }

    .visual-card {
        gap: 16px;
    }

    .monogram {
        flex-basis: 64px;
        width: 64px;
        height: 64px;
        font-size: 38px;
    }

    .gold-rule {
        left: 30px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
