:root {
    --bg: #0c0a09;
    --surface: #1c1917;
    --surface-elevated: #292524;
    --text: #fafaf9;
    --muted: #a8a29e;
    --accent: #ea580c;
    --accent-hover: #c2410c;
    --accent-soft: rgba(234, 88, 12, 0.12);
    --accent-glow: rgba(234, 88, 12, 0.25);
    --border: rgba(255, 255, 255, 0.08);
    --radius: 14px;
    --radius-lg: 20px;
    --header-h: 4rem;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --max-w: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
}

a {
    color: inherit;
}

/* —— Header —— */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    border-bottom: 1px solid var(--border);
    background: rgba(12, 10, 9, 0.88);
    backdrop-filter: blur(14px);
}

.site-nav {
    max-width: var(--max-w);
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    white-space: nowrap;
}

.site-logo span {
    color: var(--accent);
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}

.site-nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.site-nav-links a:hover,
.site-nav-links a.active {
    color: var(--text);
}

.site-nav-links .nav-cta {
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    opacity: 1;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.site-nav-links .nav-cta:hover {
    color: white;
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* —— Layout —— */
.page-wrap {
    padding-top: var(--header-h);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-block {
    padding: 4.5rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
}

.section-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-header-row::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-header-row h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}

/* —— Marquee —— */
.marquee {
    background: var(--surface);
    border-block: 1px solid var(--border);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    padding: 0 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.marquee-track span em {
    color: var(--accent);
    font-style: normal;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* —— Footer —— */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.site-footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.site-footer-links a:hover {
    color: var(--accent);
}

.site-footer-copy {
    color: var(--muted);
    font-size: 0.85rem;
}

.site-footer-copy a {
    color: var(--accent);
    text-decoration: none;
}

.site-footer-copy a:hover {
    text-decoration: underline;
}

/* —— Cards & stats —— */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
    border-color: rgba(234, 88, 12, 0.35);
    transform: translateY(-3px);
}

.stat-card .value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.stat-card .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

/* —— Contact —— */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.contact-card:hover {
    border-color: rgba(234, 88, 12, 0.3);
    transform: translateY(-3px);
}

.contact-card .icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.contact-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.contact-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .site-nav-links {
        display: none;
    }
}
