:root {
    --bg: #090d0a;
    --panel: #121812;
    --panel2: #171e17;
    --green: #728c69;
    --green-light: #a0b695;
    --green-dark: #30452f;
    --text: #edf0ec;
    --muted: #9aa39b;
    --line: rgba(190, 202, 191, .15);
    --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 15%, rgba(114,140,105,.08), transparent 30%),
        var(--bg);
    color: var(--text);
    font-family: Inter, sans-serif;
    overflow-x: hidden;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.header {
    width: min(var(--max), calc(100% - 48px));
    height: 90px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.logo img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    border: 1px solid rgba(255,255,255,.18);
}

.header-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-title span,
.eyebrow,
.label {
    color: var(--green-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
}

.header-title strong {
    font: 600 13px "Space Grotesk", sans-serif;
    letter-spacing: .16em;
}

main {
    width: min(var(--max), calc(100% - 48px));
    margin: auto;
}

.intro {
    padding: 90px 0 55px;
    max-width: 850px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--green);
}

h1 {
    font: 700 clamp(65px, 10vw, 125px)/.9 "Space Grotesk", sans-serif;
    text-transform: uppercase;
    letter-spacing: -.07em;
}

h1 span { color: var(--green); }

.intro p {
    margin-top: 25px;
    max-width: 570px;
    color: var(--muted);
    font-size: 14px;
}

.main-card {
    border: 1px solid var(--line);
    background: rgba(18,24,18,.9);
    box-shadow: 0 30px 100px rgba(0,0,0,.3);
}

.card-top {
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--line);
}

.card-top h2 {
    margin-top: 8px;
    font: 600 30px "Space Grotesk", sans-serif;
    text-transform: uppercase;
    letter-spacing: -.03em;
}

.badge {
    padding: 8px 11px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
}

.contact-card {
    min-height: 190px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--panel);
    transition: background .25s ease;
}

.contact-card:hover { background: var(--panel2); }

.number {
    align-self: flex-start;
    margin-bottom: auto;
    color: #5e695f;
    font: 700 10px "Space Grotesk", sans-serif;
}

.contact-card .label { color: #7e8980; }

.contact-card h3,
.contact-card a {
    margin-top: 8px;
    color: var(--text);
    font: 600 18px/1.45 "Space Grotesk", sans-serif;
}

.contact-card a {
    color: var(--green-light);
    text-decoration: none;
}

.contact-card a:hover { text-decoration: underline; }

.details {
    padding: 12px 30px;
}

.detail-row {
    min-height: 54px;
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid var(--line);
}

.detail-row:last-child { border-bottom: 0; }

.detail-row span {
    color: #747e76;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.detail-row strong {
    color: #cbd1cc;
    font-size: 13px;
    font-weight: 500;
}

.media-disclosure {
    margin: 18px;
    padding: 25px 27px;
    border-left: 2px solid var(--green);
    background: rgba(48,69,47,.14);
}

.media-disclosure p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.media-disclosure strong { color: #d4d9d4; }

.legal-note {
    padding: 65px 0 85px;
    max-width: 720px;
}

.legal-note p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 12px;
}

.legal-note strong { color: var(--text); }

footer {
    width: min(var(--max), calc(100% - 48px));
    min-height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--line);
    color: #687269;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
}

footer img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    background: white;
}

footer span:nth-last-child(1) { margin-left: auto; }

@media (max-width: 700px) {
    .header,
    main,
    footer {
        width: min(100% - 30px, var(--max));
    }

    .header { height: 76px; }

    .header-title span { display: none; }
    .header-title strong { font-size: 11px; }

    .intro { padding: 65px 0 40px; }

    h1 { font-size: 68px; }

    .card-top {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px;
    }

    .contact-grid { grid-template-columns: 1fr; }

    .contact-card {
        min-height: 165px;
        padding: 23px;
    }

    .details { padding: 10px 23px; }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 13px 0;
    }

    .media-disclosure { margin: 15px; }

    footer {
        flex-wrap: wrap;
        padding: 30px 0;
    }

    footer span:nth-last-child(1) { margin-left: 0; width: 100%; }
}
