:root {
    --bg-dark: #0f1115;
    --bg-darker: #0a0b0e;
    --bg-card: #15181e;
    --gold: #D49E53;
    --gold-hover: #e0ae67;
    --text-light: #f4f4f5;
    --text-muted: #a1a1aa;
    --border-color: rgba(212, 158, 83, 0.3);

    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html,
body {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

::selection {
    background-color: var(--gold);
    color: var(--bg-dark);
}

/* Typography */
h1,
h2,
h3,
h4,
.massive-text,
.loader-text,
.logo-text,
.btn-solid {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-text {
    font-size: 5rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-text {
    font-size: 2rem;
    color: var(--gold);
}

.logo-img {
    height: 40px !important;
    max-height: 40px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--gold);
    transition: 0.3s;
}

/* Sections Global */
section {
    padding: 12vh 5vw;
}

.section-title {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 20vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero h1 {
    font-size: clamp(4.5rem, 15vw, 13rem);
    line-height: 0.9;
    color: var(--text-light);
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
    word-break: break-word;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--gold);
    max-width: 900px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    margin-top: -3rem;
}

.hero p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.btn-solid {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--gold);
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-solid:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.scroll-indicator .line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

/* About Section */
.about {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.about-text h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--gold);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    opacity: 0.9;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

/* Marquee */
.marquee {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--gold);
    color: var(--bg-dark);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-content {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    animation: marquee 25s linear infinite;
}

.marquee-content .dot {
    width: 12px;
    height: 12px;
    background-color: var(--bg-dark);
    margin: 0 4rem;
    border-radius: 50%;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* Products Section */
.products {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    background-color: var(--bg-dark);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.product-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Portfolio Section */
.portfolio {
    border-bottom: 1px solid var(--border-color);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: grayscale(20%) brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Features */
.features {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: rgba(212, 158, 83, 0.1);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 15vh 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1e25 0%, var(--bg-darker) 100%);
}

.cta-container {
    max-width: 800px;
    width: 100%;
}

.massive-text {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 158, 83, 0.2);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(161, 161, 170, 0.5);
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    margin-top: 1rem;
    text-align: center;
}

/* Footer */
footer {
    padding: 3rem 5vw;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
}

.footer-logo-img {
    height: 30px !important;
    max-height: 30px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    margin-right: 0.5rem !important;
    display: block !important;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

/* Responsiveness */
@media (max-width: 1100px) {
    .btn-outline {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 11, 14, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s ease-in-out;
        z-index: 99;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 100;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 1.2rem 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero h2 {
        margin-top: -1.2rem;
    }

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

    .gallery-container {
        grid-template-columns: 1fr;
    }

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

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

    footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
        padding: 4rem 5vw 3rem 5vw;
    }

    .footer-logo {
        justify-content: center;
        width: 100%;
        margin-bottom: 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}