* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f3f3f3;
    background: #08080b;
    --gold: #f7b500;
    --gold-light: #ffcc4d;
    --surface: #111316;
    --surface-strong: #1b1f27;
    --surface-soft: #232830;
    --text-muted: #bdbdbd;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    background: radial-gradient(circle at top, rgba(247,181,0,0.08), transparent 32%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 22%),
                linear-gradient(180deg, #070708 0%, #060607 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    margin: 0 -24px 0;
    background: rgba(7, 7, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #f9d870);
    color: #111;
    font-weight: 800;
    font-size: 1.2rem;
}

.brand-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.brand-tag {
    margin: 2px 0 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.nav-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #f3f3f3;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: #111;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 720px;
    padding: 48px 0 60px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(247,181,0,0.16), transparent 18%),
                radial-gradient(circle at 88% 18%, rgba(255,255,255,0.06), transparent 14%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: 0.95;
    max-width: 12ch;
}

.hero p {
    max-width: 680px;
    margin: 24px 0 34px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.btn-primary {
    background: var(--gold);
    color: #111;
}

.btn-secondary {
    border: 1px solid rgba(247,181,0,0.45);
    color: #f3f3f3;
    background: rgba(255,255,255,0.06);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.hero-stats div {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
}

.hero-stats strong {
    display: block;
    font-size: 1.55rem;
    color: #fff;
}

.hero-stats span {
    display: block;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-image {
    min-height: 520px;
    border-radius: 30px;
    background: linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.54)),
                url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.65));
}

.section {
    padding: 70px 0;
}

.section-title.small-title {
    margin-bottom: 18px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
}

.section h2 {
    margin: 0;
    font-size: clamp(2.4rem, 3vw, 3.2rem);
    line-height: 1.05;
    color: #fff;
}

.services-section {
    padding-top: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    padding: 32px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 280px;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(247,181,0,0.18);
}

.service-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.service-card p {
    margin: 0;
    color: #c7c7c7;
    line-height: 1.75;
    flex-grow: 1;
}

.service-link {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 700;
}

.about-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.about-panel p {
    color: #c7c7c7;
    line-height: 1.85;
    max-width: 640px;
}

.about-highlights {
    display: grid;
    gap: 20px;
}

.highlight-card {
    padding: 24px;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
}

.highlight-card strong {
    display: block;
    font-size: 1.12rem;
    margin-bottom: 10px;
}

.highlight-card p {
    color: #b8b8b8;
    margin: 0;
    line-height: 1.75;
}

.projects-section {
    padding-top: 40px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.project-card {
    border-radius: 28px;
    overflow: hidden;
    background: #111418;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.project-card:nth-child(1) .project-image {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80');
}

.project-card:nth-child(2) .project-image {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=900&q=80');
}

.project-card:nth-child(3) .project-image {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1529429617124-1f8d37f3a635?auto=format&fit=crop&w=900&q=80');
}

.project-card:nth-child(4) .project-image {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=900&q=80');
}

.project-image {
    min-height: 220px;
    background-size: cover;
    background-position: center;
}

.project-content {
    padding: 26px;
    display: grid;
    gap: 18px;
}

.project-content h3 {
    margin: 0;
    font-size: 1.3rem;
}

.project-content p {
    margin: 0;
    color: #bdbdbd;
    line-height: 1.75;
}

.project-link {
    color: var(--gold);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.testimonials-section,
.news-section,
.contact-panel {
    padding-top: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: #111418;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 26px;
    padding: 30px;
}

.testimonial-card p {
    margin: 0 0 24px;
    color: #d5d5d5;
    line-height: 1.8;
}

.testimonial-card strong {
    display: block;
    margin-bottom: 6px;
}

.testimonial-card span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.news-card {
    padding: 28px;
    border-radius: 24px;
    background: #111418;
    border: 1px solid rgba(255,255,255,0.05);
}

.news-date {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.news-card h3 {
    margin: 0 0 20px;
    font-size: 1.2rem;
}

.news-link {
    color: var(--gold);
    font-weight: 700;
}

.contact-card-large {
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.06);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
}

.contact-details p {
    margin: 14px 0;
    color: #d1d1d1;
    line-height: 1.75;
}

.contact-details a {
    color: var(--gold);
}

.footer {
    margin-top: 60px;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 26px;
}

.footer h3,
.footer h4 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.footer p,
.footer a {
    margin: 0 0 10px;
    color: #b9b9b9;
    font-size: 0.95rem;
    display: block;
}

.footer-note {
    color: #818181;
    font-size: 0.92rem;
    text-align: center;
}

@media (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image {
        min-height: 360px;
    }

    .about-panel,
    .project-grid,
    .service-grid,
    .hero-stats,
    .testimonial-grid,
    .news-grid,
    .footer-columns,
    .contact-card-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 14px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .service-grid,
    .project-grid,
    .testimonial-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }
}
