
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
    font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background-color: #f9fafb;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148,163,184,0.35);
}
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    max-width: 1120px;
    margin: 0 auto;
}
.logo {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #f9fafb;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.nav-links a {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 500;
}
.nav-links a:hover {
    color: #facc15;
}
.mobile-menu {
    display: none;
    border: none;
    background: none;
    color: #e5e7eb;
    font-size: 1.6rem;
}

.hero {
    position: relative;
    padding: 6.5rem 0 4.5rem;
}
.hero-elegant {
    background: radial-gradient(circle at 0% 0%, #1d4ed8 0, #020617 55%, #020617 100%);
    color: #f9fafb;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.6), rgba(15,23,42,0.1));
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-kicker {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #e5e7eb;
    margin-bottom: 0.75rem;
}
.hero h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-subtitle {
    max-width: 40rem;
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 1.75rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #e5e7eb;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, color 0.12s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #facc15, #d97706);
    color: #111827;
    box-shadow: 0 18px 35px rgba(250,204,21,0.25);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 45px rgba(250,204,21,0.35);
}
.btn-outline {
    border-color: #e5e7eb;
    color: #e5e7eb;
    background: transparent;
}
.btn-outline:hover { background: rgba(15,23,42,0.65); }
.btn-ghost {
    border-color: #cbd5f5;
    color: #1f2937;
    background: #e5e7eb;
}
.btn-ghost:hover {
    background: #e5e7eb;
    border-color: #94a3b8;
}

.section { padding: 4rem 0; }
.section-alt { background-color: #0b1120; color: #e5e7eb; }
.section-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}
.section-alt .section-title { color: #f9fafb; }
.section-subtitle {
    max-width: 40rem;
    color: #4b5563;
    margin-bottom: 2rem;
}
.section-alt .section-subtitle { color: #cbd5f5; }

.strip { padding: 1.15rem 0; }
.strip-gold {
    background: linear-gradient(90deg, #facc15, #eab308, #f97316);
    color: #111827;
}
.strip-inner {
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}

.grid { display: grid; gap: 1.75rem; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
    background: #ffffff;
    border-radius: 0.85rem;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 16px 35px rgba(15,23,42,0.08);
}
.card h3, .card h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}
.card p { font-size: 0.97rem; color: #4b5563; }
.card-outline { border: 1px solid #e5e7eb; box-shadow: none; }

.split {
    display: grid;
    grid-template-columns: minmax(0,2.3fr) minmax(0,1.4fr);
    gap: 2.5rem;
    align-items: center;
}
.stat-panel { display: grid; gap: 1.25rem; }
.stat {
    border-radius: 0.85rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(148,163,184,0.5);
    background: radial-gradient(circle at top left, rgba(148,163,184,0.18), #020617);
}
.stat-number {
    display: block;
    font-size: 1.9rem;
    font-weight: 600;
    color: #facc15;
}
.stat-label { font-size: 0.9rem; color: #cbd5f5; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    color: #f97316;
    text-decoration: none;
    margin-top: 1rem;
}
.link-arrow::after {
    content: "↗";
    font-size: 0.85rem;
}

.page-hero { padding: 4rem 0 2.5rem; }
.page-kicker {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.35rem;
}
.page-hero h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 2.1rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}
.page-subtitle {
    color: #4b5563;
    max-width: 40rem;
}

.narrow { max-width: 720px; }
.mt-md { margin-top: 1.4rem; }
.mt-lg { margin-top: 2.1rem; }

.list {
    list-style: disc;
    padding-left: 1.3rem;
    margin-top: 0.6rem;
}
.list li {
    margin-bottom: 0.4rem;
    font-size: 0.98rem;
}

.cta-panel {
    background: #0f172a;
    color: #e5e7eb;
    border-radius: 1rem;
    padding: 2.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.75rem;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-footer {
    margin-top: 3rem;
    background: #020617;
    color: #9ca3af;
    padding: 2.5rem 1.5rem 2.75rem;
}
.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}
.footer-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.1rem;
    color: #e5e7eb;
}
.footer-text { font-size: 0.95rem; margin-top: 0.5rem; }
.footer-meta { font-size: 0.85rem; margin-top: 0.4rem; }
.footer-meta a { color: #e5e7eb; }

@media (max-width: 960px) {
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split { grid-template-columns: minmax(0, 1fr); }
    .cta-panel { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
    .nav-links {
        position: absolute;
        right: 1.5rem;
        top: 3.1rem;
        flex-direction: column;
        background: #020617;
        padding: 0.75rem 1rem;
        border-radius: 0.75rem;
        border: 1px solid rgba(148,163,184,0.35);
        display: none;
    }
    .nav-links.show { display: flex; }
    .mobile-menu { display: block; }
    .hero { padding-top: 5.5rem; }
    .grid-4, .grid-2 { grid-template-columns: minmax(0,1fr); }
}
