:root {
    --bg: #0d1117;
    --bg-soft: #161b22;
    --panel: #111827;
    --panel-alt: #1f2937;
    --text: #f3f4f6;
    --muted: #9ca3af;
    --accent: #facc15;
    --accent-dark: #111827;
    --border: rgba(255, 255, 255, 0.08);
    --container: 1180px;
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(250, 204, 21, 0.18), transparent 30%),
        linear-gradient(180deg, #06080c 0%, #0d1117 45%, #06080c 100%);
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    border-bottom: 1px solid rgba(250, 204, 21, 0.25);
    background: rgba(250, 204, 21, 0.95);
    color: #111827;
}

.topbar-inner,
.site-header-inner,
.hero-grid,
.contact-layout,
.detail-grid {
    display: grid;
    gap: 24px;
}

.topbar-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 10px 0;
}

.contact-strip,
.language-switcher,
.site-nav,
.hero-actions,
.contact-list,
.social-row,
.gallery-strip,
.meta-row,
.highlight-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-strip {
    font-size: 14px;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(9, 12, 16, 0.82);
    border-bottom: 1px solid var(--border);
}

.site-header-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 18px 0;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.brand-mark {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.brand-copy {
    color: var(--muted);
    font-size: 0.9rem;
}

.site-nav {
    justify-content: end;
    align-items: center;
}

.site-nav a,
.social-link {
    color: var(--muted);
}

.site-nav a:hover,
.social-link:hover {
    color: var(--accent);
}

.language-pill,
.pill,
.highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 14px;
    border: 1px solid var(--border);
}

.language-pill {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
}

.language-pill.active,
.pill {
    background: rgba(250, 204, 21, 0.13);
    border-color: rgba(250, 204, 21, 0.22);
    color: var(--accent);
}

.pill-muted {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.hero-section,
.section,
.page-shell {
    padding: 42px 0;
}

.hero-grid,
.contact-layout,
.detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.hero-section h1,
.detail-column h1,
.empty-state h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.04;
    margin: 12px 0 0;
}

.eyebrow {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.14);
    color: var(--accent);
    border: 1px solid rgba(250, 204, 21, 0.25);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy,
.lead,
.section-heading p,
.card-body p,
.detail-card p,
.empty-state p {
    color: #d1d5db;
    line-height: 1.9;
}

.hero-panel,
.contact-card,
.detail-card,
.mini-card,
.card {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(12, 17, 27, 0.94));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-panel,
.contact-card,
.detail-card {
    padding: 24px;
}

.stats-grid,
.mini-grid,
.cards-grid,
.spec-grid {
    display: grid;
    gap: 16px;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-grid,
.cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-card small {
    color: var(--muted);
    font-size: 0.9rem;
}

.mini-card {
    padding: 18px 20px;
    color: #f9fafb;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.button-primary {
    background: var(--accent);
    color: var(--accent-dark);
}

.button-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.section-alt {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h2,
.detail-card h2 {
    margin: 0 0 12px;
    font-size: clamp(1.4rem, 2.2vw, 2.4rem);
}

.card {
    overflow: hidden;
}

.card:hover {
    border-color: rgba(250, 204, 21, 0.36);
}

.card img,
.detail-hero {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card-body {
    padding: 22px;
}

.card-body h3 {
    margin: 14px 0 10px;
    font-size: 1.2rem;
}

.contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
}

.social-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2px;
}

.page-shell {
    min-height: calc(100vh - 82px);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--muted);
}

.detail-column {
    display: grid;
    gap: 18px;
}

.gallery-strip {
    margin-top: 14px;
}

.thumb {
    width: 130px;
    height: 94px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 1px solid var(--border);
}

.feature-list {
    margin: 0;
    padding-inline-start: 20px;
    color: #d1d5db;
    line-height: 1.9;
}

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

.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.empty-state {
    display: grid;
    place-items: center;
    min-height: 60vh;
    text-align: center;
}

@media (max-width: 980px) {
    .hero-grid,
    .contact-layout,
    .detail-grid,
    .site-header-inner {
        grid-template-columns: 1fr;
    }

    .site-nav {
        justify-content: start;
    }

    .stats-grid,
    .mini-grid,
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .topbar-inner {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .mini-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-strip,
    .language-switcher,
    .site-nav,
    .hero-actions {
        gap: 10px;
    }

    .button {
        width: 100%;
    }

    .thumb {
        width: calc(50% - 8px);
        height: 88px;
    }
}
