@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
    --bg:        #0d1117;
    --bg-2:      #111820;
    --bg-3:      #161e28;
    --surface:   #1a2332;
    --border:    rgba(255,255,255,0.07);
    --border-hi: rgba(255,255,255,0.13);
    --ink:       #e8ecf0;
    --ink-2:     #9aa5b0;
    --ink-3:     #5e6e7a;
    --gold:      #c8922a;
    --gold-hi:   #e0a83a;
    --gold-line: rgba(200,146,42,0.35);
    --radius:    6px;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200,146,42,0.07), transparent),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Ccircle cx='0' cy='0' r='0.6' fill='rgba(255,255,255,0.025)'/%3E%3Ccircle cx='30' cy='30' r='0.6' fill='rgba(255,255,255,0.025)'/%3E%3Ccircle cx='60' cy='0' r='0.6' fill='rgba(255,255,255,0.025)'/%3E%3Ccircle cx='0' cy='60' r='0.6' fill='rgba(255,255,255,0.025)'/%3E%3Ccircle cx='60' cy='60' r='0.6' fill='rgba(255,255,255,0.025)'/%3E%3C/svg%3E");
    color: var(--ink);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    min-width: 320px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────────────── */
.container {
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(13,17,23,0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    gap: 24px;
}

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

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 4px;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name strong {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.45rem;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.brand-name span {
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-2);
    transition: color 0.2s;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.25s;
}

.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { width: 100%; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
    padding: 100px 0 96px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 55%, rgba(200,146,42,0.04) 100%);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-line);
}

h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.65rem, 4.8vw, 4rem);
    line-height: 1.06;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}

h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.hero-lede {
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--ink-2);
    max-width: 52ch;
    line-height: 1.62;
    margin-bottom: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    color: var(--gold-hi);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}

.button:hover {
    background: var(--gold);
    color: var(--bg);
}

/* logo panel */
.logo-panel {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-hi);
    background: #000;
    box-shadow:
        0 0 0 1px rgba(200,146,42,0.08),
        0 32px 64px rgba(0,0,0,0.5);
}

.logo-panel img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Sections ────────────────────────────────────────── */
.section { padding: 80px 0; }

.section-muted {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.content-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
}

/* Section label */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold-line);
}

/* Body text */
.text-stack p,
.status-panel p,
.contact-panel p {
    font-size: 0.97rem;
    color: var(--ink-2);
    line-height: 1.75;
}

.text-stack p + p,
.status-panel p + p,
.contact-panel p + p { margin-top: 16px; }

/* Status panel */
.status-panel {
    padding: 28px 32px;
    background: var(--surface);
    border: 1px solid var(--border-hi);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
}

/* Contact panel */
.contact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-hi);
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-item {
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.contact-item:nth-child(even) { border-right: none; }
.contact-item:nth-last-child(-n+2) { border-bottom: none; }

.contact-item dt {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-item dd {
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 400;
}

.contact-item dd a {
    color: var(--ink);
    border-bottom: 1px solid var(--border-hi);
    transition: border-color 0.2s, color 0.2s;
    padding-bottom: 1px;
}

.contact-item dd a:hover {
    color: var(--gold-hi);
    border-color: var(--gold-line);
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 28px 0 36px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-inner p {
    font-size: 0.8rem;
    color: var(--ink-3);
    letter-spacing: 0.03em;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-layout,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .logo-panel { max-width: 380px; }

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

    .contact-item { border-right: none !important; }
    .contact-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .contact-item:last-child { border-bottom: none !important; }
}

@media (max-width: 640px) {
    .container { width: calc(100% - 32px); }

    .header-inner {
        height: auto;
        min-height: 78px;
        padding: 12px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-name strong { font-size: 1.14rem; }

    .brand-name span { font-size: 0.66rem; }

    .site-nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero { padding: 64px 0 60px; }

    .section { padding: 56px 0; }

    .content-grid { gap: 28px; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 420px) {
    .site-nav a { font-size: 0.78rem; letter-spacing: 0.04em; }
}
