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

html {
    scroll-behavior: smooth;
}

body {
    background: #090909;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 9, 9, 0.92);
    border-bottom: 1px solid #202020;
    backdrop-filter: blur(12px);
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.logo span {
    color: #c8a45c;
}

.logo small {
    display: block;
    color: #8f8f8f;
    font-size: 9px;
    letter-spacing: 4px;
    margin-top: 7px;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    color: #c9c9c9;
    text-decoration: none;
    font-size: 14px;
    transition: .25s;
}

nav a:hover {
    color: #c8a45c;
}

.nav-button {
    border: 1px solid #c8a45c;
    padding: 10px 18px;
    color: #c8a45c;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 82px;
    background:
        radial-gradient(circle at 75% 45%, rgba(200,164,92,.12), transparent 28%),
        linear-gradient(135deg, #090909, #111);
}

.hero-content {
    padding-top: 70px;
    padding-bottom: 70px;
}

.eyebrow {
    color: #c8a45c;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(52px, 8vw, 104px);
    line-height: .95;
    max-width: 900px;
    letter-spacing: -4px;
}

.hero h1 span {
    color: #c8a45c;
}

.hero-text {
    max-width: 620px;
    color: #a9a9a9;
    font-size: 19px;
    margin-top: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 40px;
}

.button {
    display: inline-block;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: bold;
    transition: .25s;
}

.primary {
    background: #c8a45c;
    color: #090909;
}

.primary:hover {
    background: #e1bf78;
}

.secondary {
    border: 1px solid #444;
    color: #fff;
}

.secondary:hover {
    border-color: #c8a45c;
    color: #c8a45c;
}

.section {
    padding: 120px 0;
}

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

.section-heading > p {
    color: #c8a45c;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: bold;
}

.section h2,
.contact-section h2 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    max-width: 750px;
    margin-top: 12px;
}

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

.card {
    padding: 40px;
    min-height: 300px;
    background: #101010;
    border: 1px solid #222;
    transition: .3s;
}

.card:hover {
    border-color: #c8a45c;
    transform: translateY(-5px);
}

.number {
    color: #c8a45c;
    font-size: 13px;
    margin-bottom: 70px;
}

.card h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.card p {
    color: #909090;
}

.dark-section {
    background: #0d0d0d;
    border-top: 1px solid #1d1d1d;
    border-bottom: 1px solid #1d1d1d;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-text {
    color: #aaa;
    font-size: 18px;
}

.about-text p + p {
    margin-top: 25px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-placeholder {
    height: 360px;
    background:
        linear-gradient(135deg, #181818, #0c0c0c);
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a45c;
    letter-spacing: 8px;
    font-weight: bold;
}

.portfolio-card h3 {
    margin-top: 18px;
    font-size: 22px;
}

.portfolio-card p {
    color: #777;
}

.contact-section {
    padding: 130px 0;
    text-align: center;
    background: #111;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content p:not(.eyebrow) {
    color: #999;
    margin: 25px 0 35px;
}

footer {
    padding: 45px 0;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 13px;
}

.footer-content strong {
    color: #fff;
    letter-spacing: 2px;
}

@media (max-width: 800px) {

    nav a:not(.nav-button) {
        display: none;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .cards,
    .split,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .split {
        gap: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

.logo img {
    display: block;
    width: 210px;
    height: auto;
    max-height: 68px;
    object-fit: contain;
}

@media (max-width: 600px) {
    .logo img {
        width: 155px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    text-align: left;
    align-items: start;
}

.contact-intro > p:not(.eyebrow) {
    color: #999;
    font-size: 18px;
    max-width: 520px;
    margin: 25px 0;
}

.contact-email {
    display: inline-block;
    color: #c8a45c;
    text-decoration: none;
    font-weight: 700;
    margin-top: 10px;
}

.contact-form {
    background: #0b0b0b;
    border: 1px solid #252525;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #c7c7c7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #111;
    color: #fff;
    border: 1px solid #333;
    padding: 14px 15px;
    font: inherit;
    outline: none;
    transition: .2s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c8a45c;
}

.form-button {
    border: 0;
    cursor: pointer;
    font-size: 15px;
}

.form-status {
    margin-top: 18px;
    font-size: 14px;
}

.form-status.success {
    color: #b8d9aa;
}

.form-status.error {
    color: #e59a9a;
}

.website-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 25px;
    }
}

.portfolio-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.portfolio-link .portfolio-placeholder {
    transition: .3s;
}

.portfolio-link:hover .portfolio-placeholder {
    border-color: #c8a45c;
    transform: translateY(-4px);
}

.portfolio-link:hover h3 {
    color: #c8a45c;
}

.project-showcase {
    padding: 50px 0 20px;
    background: #090909;
}

.project-showcase-image {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #292929;
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
    border: 1px solid #252525;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.portfolio-link:hover .portfolio-image img {
    transform: scale(1.025);
}

@media (max-width: 800px) {
    .project-showcase {
        padding-top: 30px;
    }
}

.portfolio-label {
    color: #c8a45c !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 18px;
    margin-bottom: 5px;
}
