/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* BASE */
body {
    font-family: "Segoe UI", system-ui, sans-serif;
    color: #2B2B2B;
    background: #ffffff;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.header { position: absolute; top: 0; width: 100%; z-index: 10; }
.header-flex { display: flex; align-items: center; padding: 26px 0; }
.header-wide .nav-premium { margin-left: auto; }

/* BRAND */
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 140px; }
.brand-name { font-size: 36px; font-weight: 800; color: #ffffff; }
.brand-divider { height: 2px; background: #D4AF37; margin: 8px 0 6px; }
.brand-certification { font-size: 12px; color: #CBD5E1; text-transform: uppercase; }

/* NAV */
.nav-premium {
    display: flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
}
.nav-item {
    padding: 11px 22px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #CBD5E1;
    text-decoration: none;
    border-radius: 7px;
}
.nav-item:hover,
.nav-item.active {
    background: rgba(212,175,55,0.18);
    color: #ffffff;
}
.nav-contact { color: #D4AF37; }

/* HERO */
.hero {
    background: linear-gradient(125deg, #0B1C2D, #020617);
    padding: 260px 0 180px;
    color: #ffffff;
    position: relative;
}
.hero-watermark {
    position: absolute;
    right: -160px;
    top: 60px;
    width: 620px;
    height: 620px;
    background: url("logo.png") no-repeat center / contain;
    opacity: 0.08;
}
.hero-eyebrow {
    color: #D4AF37;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-size: 13px;
}
.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin: 30px 0;
}
.hero p {
    max-width: 640px;
    color: #CBD5E1;
}
.hero-governance {
    margin: 20px 0 42px;
    font-size: 12px;
    letter-spacing: 1.2px;
    color: rgba(212,175,55,0.75);
    text-transform: uppercase;
}
.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, #D4AF37, #E6C766);
    color: #111827;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(212,175,55,0.35);
}

/* POSITIONING */
.positioning { padding: 140px 0 120px; }
.positioning-inner { display: flex; gap: 40px; }
.accent-line { width: 3px; background: #D4AF37; }

/* SERVICES */
.services-snapshot { background: #F8FAFC; padding: 120px 0; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
}
.service-card {
    display: flex;
    flex-direction: column;
    min-height: 180px;
}
.service-card h3 { margin-bottom: 12px; font-size: 22px; }
.service-card p { font-size: 16px; opacity: 0.85; }

/* PRINCIPLES */
.principles { padding: 140px 0; }
.principle-list { max-width: 700px; list-style: none; }
.principle-list li { padding: 14px 0; border-bottom: 1px solid #E5E7EB; }
.governance-note.centered {
    margin: 48px auto 0;
    max-width: 720px;
    padding: 18px 24px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.6px;
    background: #F9FAFB;
    border-top: 2px solid #D4AF37;
}

/* CLOSING — FIXED */
.home-close {
    background: #2B2B2B;
    padding: 140px 0;
    color: #E5E7EB;
    text-align: center;
}
.home-close-inner {
    max-width: 900px;
}
.close-statement {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 22px;
}
.close-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #CBD5E1;
    margin-bottom: 40px;
}
.close-cta {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #D4AF37;
    text-decoration: none;
    border-bottom: 2px solid #D4AF37;
}

/* FOOTER — CENTERED & STRONGER */
.site-footer {
    background: #1F1F1F;
    padding: 32px 0;
    text-align: center;
}
.site-footer p {
    font-size: 14px;
    font-weight: 600;
    color: #9CA3AF;
}
