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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #18181b;
    line-height: 1.6;
}

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(228, 228, 231, 0.8);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
}

.logo strong {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.logo span {
    font-size: 14px;
    color: #71717a;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    color: #52525b;
    font-size: 14px;
}

.nav a:hover {
    color: #09090b;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-dark {
    background: #111111;
    color: #ffffff;
}

.btn-dark:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 1px solid #d4d4d8;
    color: #27272a;
}

.btn-outline:hover {
    border-color: #111111;
    color: #111111;
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(99, 102, 241, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.05), transparent 28%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
    padding: 90px 0 110px;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #71717a;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: #09090b;
    max-width: 720px;
}

.hero p {
    margin-top: 24px;
    font-size: 19px;
    line-height: 1.9;
    color: #52525b;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: #f4f4f5;
    border-radius: 34px;
    filter: blur(44px);
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.16);
}

.stats {
    background: rgba(250, 250, 250, 0.9);
    border-top: 1px solid #e4e4e7;
    border-bottom: 1px solid #e4e4e7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
    padding: 38px 0;
}

.stats-grid h3 {
    font-size: 34px;
    font-weight: 700;
    color: #09090b;
}

.stats-grid p {
    margin-top: 8px;
    font-size: 14px;
    color: #52525b;
}

.section {
    padding: 110px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 56px;
}

.section-head h2 {
    margin-top: 14px;
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #09090b;
}

.section-head p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.9;
    color: #52525b;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card-body {
    padding: 28px;
}

.card h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #09090b;
    margin-bottom: 14px;
}

.card p {
    color: #52525b;
    line-height: 1.8;
    font-size: 16px;
}

.card a {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #09090b;
}

.dark-section {
    background: #09090b;
    color: #ffffff;
}

.dark-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 60px;
    align-items: center;
}

.dark-section h2 {
    margin-top: 14px;
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    max-width: 720px;
}

.dark-section .lead {
    margin-top: 20px;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.9;
    color: #d4d4d8;
}

.feature-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-box {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-box p {
    color: #d4d4d8;
    line-height: 1.8;
    font-size: 15px;
}

.dark-image {
    width: 100%;
    height: 640px;
    border-radius: 34px;
    object-fit: cover;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.project-list {
    display: grid;
    gap: 16px;
}

.project-item {
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 28px;
    padding: 22px 24px;
    font-size: 22px;
    font-weight: 600;
    color: #18181b;
}

.cta-box {
    background: linear-gradient(135deg, #111827 0%, #27272a 100%);
    color: #ffffff;
    border-radius: 42px;
    padding: 64px;
    overflow: hidden;
}

.cta-box h2 {
    margin-top: 14px;
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    max-width: 820px;
}

.cta-box p {
    margin-top: 20px;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.9;
    color: #d4d4d8;
}

.cta-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-light {
    background: #ffffff;
    color: #09090b;
}

.btn-light:hover {
    opacity: 0.92;
}

.btn-white-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.footer {
    border-top: 1px solid #e4e4e7;
    background: #ffffff;
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer h2 {
    margin-top: 14px;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #09090b;
}

.footer p.desc {
    margin-top: 16px;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.9;
    color: #52525b;
}

.contact-box {
    display: grid;
    gap: 26px;
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 34px;
    padding: 36px;
}

.contact-box small {
    font-size: 14px;
    color: #71717a;
    display: block;
    margin-bottom: 6px;
}

.contact-box p {
    font-size: 22px;
    font-weight: 600;
    color: #09090b;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .hero-inner,
    .dark-grid,
    .projects-grid,
    .footer-grid,
    .collections-grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .section-head h2,
    .dark-section h2,
    .cta-box h2,
    .footer h2 {
        font-size: 48px;
    }

    .hero-image,
    .dark-image {
        height: 420px;
    }
}

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

    .header-inner {
        padding: 16px 0;
    }

    .container {
        padding: 0 18px;
    }

    .hero-inner,
    .section,
    .footer {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hero h1,
    .section-head h2,
    .dark-section h2,
    .cta-box h2,
    .footer h2 {
        font-size: 36px;
    }

    .hero p,
    .section-head p,
    .dark-section .lead,
    .cta-box p,
    .footer p.desc {
        font-size: 16px;
    }

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

    .stats-grid h3 {
        font-size: 28px;
    }

    .card img {
        height: 260px;
    }

    .card h3,
    .project-item,
    .contact-box p {
        font-size: 22px;
    }

    .cta-box {
        padding: 36px 24px;
        border-radius: 28px;
    }

    .contact-box {
        padding: 26px;
    }
}

/* ===== FOOTER ===== */

.footer {
    background: #0f0f10;
    color: #d4d4d8;
    padding-top: 90px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo h3 {
    font-size: 26px;
    letter-spacing: 0.25em;
    color: #ffffff;
}

.footer-logo p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #a1a1aa;
    max-width: 260px;
}

.footer-column h4 {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 14px;
    color: #a1a1aa;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #71717a;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a:hover {
    color: #ffffff;
}

/* responsive */

@media (max-width: 900px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}

@media (max-width: 600px) {

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

}

.contact-section {
    background: #f9f9f9;
    padding: 80px 24px 40px;
    font-family: 'Inter', sans-serif;
    color: #18181b;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1280px;
    margin: auto;
}

.contact-intro .eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #71717a;
}

.contact-intro h2 {
    margin-top: 14px;
    font-size: 44px;
    line-height: 1.08;
    color: #09090b;
}

.contact-intro p.desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.9;
    color: #52525b;
    max-width: 560px;
}

.contact-box {
    display: grid;
    gap: 26px;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 28px;
    padding: 36px;
}

.contact-box small {
    font-size: 14px;
    color: #71717a;
    display: block;
    margin-bottom: 6px;
}

.contact-box p {
    font-size: 18px;
    font-weight: 600;
    color: #09090b;
    line-height: 1.5;
}

.contact-footer {
    max-width: 1280px;
    margin: 60px auto 0;
    border-top: 1px solid #e4e4e7;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #71717a;
}

.contact-social {
    display: flex;
    gap: 20px;
}

.contact-social a:hover {
    color: #09090b;
}

/* Responsive */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-intro h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .contact-footer {
        flex-direction: column;
        gap: 12px;
    }
}
