/* =========================================
   GOOGLE FONT
========================================= */

@import url(
    "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap"
);


/* =========================================
   ROOT
========================================= */

:root {

    --gold: #f2ad16;
    --gold-light: #ffd35a;
    --gold-dark: #9a6307;

    --black: #030405;
    --dark: #07090b;
    --dark-card: #0d1013;
    --dark-card-2: #12161a;

    --white: #f4f4f4;
    --text: #e8e8e8;
    --muted: #8b9198;

    --line: rgba(255, 255, 255, 0.10);
    --gold-line: rgba(242, 173, 22, 0.35);

    --container: 1280px;

}


/* =========================================
   RESET
========================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    min-width: 320px;

    font-family:
        "Space Grotesk",
        Arial,
        sans-serif;

    background: var(--black);

    color: var(--text);

    overflow-x: hidden;

}

body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    opacity: 0.035;

    background-image:
        radial-gradient(
            rgba(255,255,255,0.8) 1px,
            transparent 1px
        );

    background-size: 4px 4px;

    z-index: 9999;

}

img {

    display: block;

    max-width: 100%;

}

button,
input,
textarea,
select {

    font: inherit;

}

button {

    color: inherit;

}

a {

    color: inherit;

    text-decoration: none;

}


/* =========================================
   GLOBAL CONTAINER
========================================= */

.section-container {

    width:
        min(
            var(--container),
            calc(100% - 80px)
        );

    margin: 0 auto;

}


/* =========================================
   HEADER
========================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 82px;

    z-index: 1000;

    background:
        rgba(3, 4, 5, 0.90);

    backdrop-filter:
        blur(15px);

    border-bottom:
        1px solid var(--gold-line);

}

.header-container {

    width:
        min(
            var(--container),
            calc(100% - 80px)
        );

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================
   LOGO
========================================= */

.site-logo {

    display: inline-flex;

    align-items: baseline;

    gap: 7px;

    letter-spacing: 2px;

    font-size: 21px;

}

.site-logo strong {

    font-weight: 900;

    color: var(--white);

}

.site-logo span {

    color: var(--gold);

    font-weight: 500;

}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 40px;

}

.nav-link {

    position: relative;

    padding: 30px 0;

    color: #989da3;

    font-size: 14px;

    font-weight: 700;

    transition:
        color 0.25s ease;

}

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 23px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition:
        width 0.25s ease;

}

.nav-link:hover {

    color: var(--white);

}

.nav-link.active {

    color: var(--gold);

}

.nav-link.active::after {

    width: 100%;

}


/* =========================================
   HEADER BUTTON
========================================= */

.header-contact-button {

    min-width: 132px;

    height: 48px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color: #111;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 0 25px
        rgba(242, 173, 22, 0.16);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}

.header-contact-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(242, 173, 22, 0.28);

}


/* =========================================
   MOBILE BUTTON
========================================= */

.mobile-menu-button {

    display: none;

    width: 45px;
    height: 45px;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

}

.mobile-menu-button span {

    width: 24px;
    height: 2px;

    background: var(--white);

}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {

    display: none;

}


/* =========================================
   HERO
========================================= */

.hero-section {

    position: relative;

    min-height: 100vh;

    padding-top: 82px;

    overflow: hidden;

    border-bottom:
        1px solid var(--line);

    background:
        radial-gradient(
            circle at 72% 38%,
            rgba(242, 173, 22, 0.10),
            transparent 23%
        ),
        linear-gradient(
            135deg,
            #030405,
            #07090b
        );

}


/* =========================================
   HEXAGON BACKGROUND
========================================= */

.hero-background-pattern {

    position: absolute;

    top: 70px;
    right: -100px;

    width: 65%;
    height: 82%;

    opacity: 0.22;

    background-image:

        linear-gradient(
            30deg,
            transparent 24%,
            rgba(242,173,22,0.35) 25%,
            rgba(242,173,22,0.35) 26%,
            transparent 27%,
            transparent 74%,
            rgba(242,173,22,0.35) 75%,
            rgba(242,173,22,0.35) 76%,
            transparent 77%
        ),

        linear-gradient(
            150deg,
            transparent 24%,
            rgba(255,255,255,0.18) 25%,
            rgba(255,255,255,0.18) 26%,
            transparent 27%,
            transparent 74%,
            rgba(255,255,255,0.18) 75%,
            rgba(255,255,255,0.18) 76%,
            transparent 77%
        );

    background-size:
        58px 100px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 20%,
            transparent 75%
        );

}

.hero-gold-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    top: 17%;
    right: 20%;

    background:
        radial-gradient(
            circle,
            rgba(242,173,22,0.18),
            rgba(242,173,22,0.03) 45%,
            transparent 70%
        );

    filter:
        blur(20px);

}


/* =========================================
   HERO CONTAINER
========================================= */

.hero-container {

    position: relative;

    z-index: 2;

    width:
        min(
            var(--container),
            calc(100% - 80px)
        );

    min-height:
        calc(100vh - 150px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {

    max-width: 700px;

    padding:
        70px 0
        110px;

}

.hero-small-text {

    display: block;

    margin-bottom: 26px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 6px;

}

.hero-title {

    margin-bottom: 30px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(
            55px,
            6vw,
            100px
        );

    line-height: 0.98;

    letter-spacing: -5px;

    font-weight: 900;

    color: var(--white);

}

.hero-title span {

    display: block;

    color: var(--gold);

}

.hero-title strong {

    display: block;

    color: var(--white);

    font-weight: 900;

}

.hero-description {

    max-width: 560px;

    margin-bottom: 38px;

    color: #9ba0a6;

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 16px;

}

.primary-button,
.secondary-button {

    min-height: 58px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

}

.primary-button {

    color: #111;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    box-shadow:
        0 10px 30px
        rgba(242,173,22,0.16);

}

.primary-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(242,173,22,0.30);

}

.secondary-button {

    color: var(--white);

    border:
        1px solid
        rgba(242,173,22,0.55);

    background:
        rgba(0,0,0,0.20);

}

.secondary-button:hover {

    background:
        rgba(242,173,22,0.10);

    transform:
        translateY(-3px);

}

.primary-button b,
.secondary-button b {

    font-size: 20px;

}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.brand-glow {

    position: absolute;

    width: 480px;
    height: 480px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242,173,22,0.22),
            transparent 68%
        );

    filter:
        blur(15px);

}

.hero-brand {

    position: relative;

    z-index: 2;

    width: 100%;

    text-align: center;

}

.hero-brand-main {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(
            150px,
            18vw,
            330px
        );

    line-height: 0.75;

    font-weight: 900;

    letter-spacing: -30px;

}

.brand-f,
.brand-k {

    background:
        linear-gradient(
            135deg,
            #9a6200 0%,
            #ffd95d 40%,
            #f2a500 70%,
            #7e4d00 100%
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    filter:
        drop-shadow(
            0 0 22px
            rgba(242,173,22,0.25)
        );

}

.hero-brand-name {

    margin-top: 30px;

    color: var(--white);

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(
            35px,
            4vw,
            70px
        );

    font-weight: 900;

    letter-spacing: 18px;

    padding-left: 18px;

}

.brand-line {

    width: 70%;

    height: 2px;

    margin:
        38px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            #fff1a5,
            var(--gold),
            transparent
        );

    box-shadow:
        0 0 18px
        rgba(242,173,22,0.80);

}


/* =========================================
   HERO BRANDS
========================================= */

.hero-brands {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 100px;

    border-top:
        1px solid var(--line);

    background:
        rgba(0,0,0,0.35);

}

.brands-container {

    width:
        min(
            var(--container),
            calc(100% - 80px)
        );

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.brands-container span {

    color: #5f646a;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 2px;

}

.scroll-down {

    position: absolute;

    z-index: 5;

    bottom: 20px;

    left: 50%;

    transform:
        translateX(-50%);

    color: var(--gold);

    font-size: 28px;

    animation:
        scrollMove 1.8s infinite;

}

@keyframes scrollMove {

    0%,
    100% {

        transform:
            translateX(-50%)
            translateY(0);

        opacity: 0.5;

    }

    50% {

        transform:
            translateX(-50%)
            translateY(7px);

        opacity: 1;

    }

}


/* =========================================
   SECTION
========================================= */

.portfolio-section,
.about-section,
.services-section {

    position: relative;

    padding:
        115px 0;

    border-bottom:
        1px solid var(--line);

}

.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    margin-bottom: 55px;

}

.section-small-title {

    display: block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 5px;

}

.section-heading h2,
.about-heading h2 {

    font-family:
        "Montserrat",
        sans-serif;

    color: var(--white);

    font-size:
        clamp(
            38px,
            4vw,
            64px
        );

    line-height: 1.05;

    letter-spacing: -2px;

}

.section-heading > p {

    max-width: 400px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================
   PORTFOLIO
========================================= */

.portfolio-section {

    background:
        linear-gradient(
            180deg,
            #040506,
            #07090b
        );

}

.portfolio-slider-wrapper {

    position: relative;

}

.portfolio-slider-viewport {

    overflow: hidden;

    width: 100%;

}

.portfolio-slider {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}

.portfolio-card {

    position: relative;

    min-width: 0;

    overflow: hidden;

    cursor: pointer;

    background:
        linear-gradient(
            145deg,
            #121519,
            #090b0d
        );

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}

.portfolio-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(242,173,22,0.50);

    box-shadow:
        0 25px 50px
        rgba(0,0,0,0.45);

}

.portfolio-image {

    position: relative;

    width: 100%;

    height: 245px;

    overflow: hidden;

    background: #090909;

}

.portfolio-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(0,0,0,0.25)
        );

    pointer-events: none;

}

.portfolio-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;

}

.portfolio-card:hover img {

    transform:
        scale(1.06);

}

.portfolio-placeholder {

    width: 100%;
    height: 100%;

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: space-between;

    background:
        radial-gradient(
            circle at center,
            rgba(242,173,22,0.20),
            transparent 55%
        ),
        #0c0e10;

}

.portfolio-placeholder span {

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}

.portfolio-placeholder strong {

    color: rgba(255,255,255,0.12);

    font-size: 90px;

    font-weight: 900;

}

.portfolio-info {

    padding: 20px;

}

.portfolio-category {

    display: block;

    margin-bottom: 9px;

    color: var(--gold);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.portfolio-info h3 {

    margin-bottom: 10px;

    color: var(--white);

    font-size: 18px;

    font-weight: 700;

}

.portfolio-info p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================
   SLIDER ARROWS
========================================= */

.slider-arrow {

    position: absolute;

    top: 50%;

    z-index: 10;

    width: 48px;
    height: 48px;

    border:
        1px solid
        rgba(255,255,255,0.18);

    border-radius: 50%;

    background:
        rgba(5,7,9,0.95);

    color: var(--white);

    cursor: pointer;

    font-size: 20px;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;

}

.slider-arrow:hover {

    color: var(--gold);

    border-color: var(--gold);

    background:
        rgba(242,173,22,0.08);

}

.slider-prev {

    left: -75px;

}

.slider-next {

    right: -75px;

}


/* =========================================
   DOTS
========================================= */

.portfolio-dots {

    display: flex;

    justify-content: center;

    gap: 9px;

    margin-top: 32px;

}

.portfolio-dot {

    width: 7px;
    height: 7px;

    border: none;

    border-radius: 50%;

    background: #30343a;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;

}

.portfolio-dot.active {

    width: 20px;

    border-radius: 10px;

    background: var(--gold);

}


/* =========================================
   LOADING
========================================= */

.portfolio-loading {

    grid-column: 1 / -1;

    padding: 100px 20px;

    text-align: center;

    color: var(--muted);

    border:
        1px dashed
        rgba(255,255,255,0.15);

}


/* =========================================
   ABOUT
========================================= */

.about-section {

    background:
        linear-gradient(
            135deg,
            #07090b,
            #040506
        );

}

.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1.3fr;

    gap: 100px;

    align-items: start;

}

.about-content {

    padding-top: 32px;

}

.about-content p {

    max-width: 650px;

    color: #a0a5ab;

    font-size: 16px;

    line-height: 1.9;

}

.about-stats {

    margin-top: 80px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

}

.about-stat {

    min-height: 160px;

    padding:
        0 40px;

    display: flex;

    align-items: flex-start;

    gap: 22px;

    border-right:
        1px solid var(--line);

}

.about-stat:first-child {

    padding-left: 0;

}

.about-stat:last-child {

    border-right: none;

}

.stat-icon {

    min-width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(242,173,22,0.75);

    border-radius: 50%;

    color: var(--gold);

    font-size: 22px;

}

.about-stat strong {

    display: block;

    margin-bottom: 6px;

    color: var(--gold);

    font-size: 18px;

}

.about-stat h3 {

    margin-bottom: 8px;

    color: var(--white);

    font-size: 15px;

}

.about-stat p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================
   SERVICES
========================================= */

.services-section {

    background:
        #040506;

}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}

.service-card {

    min-height: 200px;

    padding: 35px;

    display: flex;

    align-items: center;

    gap: 25px;

    background:
        linear-gradient(
            145deg,
            #101316,
            #090b0d
        );

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;

}

.service-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(242,173,22,0.55);

}

.service-icon {

    min-width: 70px;
    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(242,173,22,0.65);

    border-radius: 50%;

    color: var(--gold);

    font-size: 27px;

}

.service-card h3 {

    margin-bottom: 10px;

    color: var(--white);

    font-size: 18px;

}

.service-card p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================
   CONTACT
========================================= */

.contact-section {

    padding:
        120px 0;

    background:
        #030405;

}

.contact-box {

    position: relative;

    overflow: hidden;

    padding: 60px;

    display: grid;

    grid-template-columns:
        0.9fr 1.4fr;

    gap: 60px;

    background:
        linear-gradient(
            145deg,
            rgba(242,173,22,0.08),
            #090b0d 25%,
            #070809
        );

    border:
        1px solid
        rgba(255,255,255,0.13);

    border-radius: 14px;

}

.contact-box::before {

    content: "";

    position: absolute;

    left: -100px;
    top: 50%;

    width: 250px;
    height: 250px;

    transform:
        translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(242,173,22,0.20),
            transparent 70%
        );

    pointer-events: none;

}

.contact-content {

    position: relative;

    z-index: 1;

}

.contact-small-title {

    display: block;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 5px;

}

.contact-content h2 {

    margin-bottom: 20px;

    color: var(--white);

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(
            35px,
            4vw,
            58px
        );

    line-height: 1.05;

}

.contact-content p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

}

.contact-links {

    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

}

.contact-link {

    min-height: 140px;

    padding: 20px 28px;

    display: flex;

    align-items: center;

    gap: 16px;

    border-left:
        1px solid var(--line);

    transition:
        background 0.25s ease;

}

.contact-link:hover {

    background:
        rgba(242,173,22,0.04);

}

.contact-icon {

    min-width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    font-size: 27px;

}

.contact-link-label {

    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}

.contact-link strong {

    color: var(--white);

    font-size: 13px;

    word-break: break-word;

}


/* =========================================
   LIGHTBOX
========================================= */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 5000;

    padding: 50px;

    display: none;

    align-items: center;

    justify-content: center;

    background:
        rgba(0,0,0,0.92);

    backdrop-filter:
        blur(10px);

}

.lightbox.active {

    display: flex;

}

.lightbox-content {

    position: relative;

    width: min(100%, 1100px);

    max-height: 90vh;

}

.lightbox-content img {

    width: 100%;

    max-height: 75vh;

    object-fit: contain;

}

.lightbox-info {

    padding: 20px;

    text-align: center;

}

.lightbox-info h3 {

    margin-bottom: 8px;

    color: var(--white);

}

.lightbox-info p {

    color: var(--muted);

}

.lightbox-close {

    position: fixed;

    top: 25px;
    right: 30px;

    width: 50px;
    height: 50px;

    border:
        1px solid
        rgba(255,255,255,0.20);

    border-radius: 50%;

    background: #111;

    color: var(--white);

    cursor: pointer;

    font-size: 32px;

}


/* =========================================
   FOOTER
========================================= */

.site-footer {

    padding: 32px 0;

    border-top:
        1px solid var(--gold-line);

    background:
        #020304;

}

.footer-container {

    width:
        min(
            var(--container),
            calc(100% - 80px)
        );

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.site-footer p {

    color: #666b70;

    font-size: 12px;

}

.footer-top {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(242,173,22,0.50);

    border-radius: 50%;

    color: var(--gold);

    font-size: 20px;

    transition:
        background 0.25s ease;

}

.footer-top:hover {

    background:
        rgba(242,173,22,0.12);

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1400px) {

    .slider-prev {

        left: -25px;

    }

    .slider-next {

        right: -25px;

    }

}


@media (max-width: 1100px) {

    .hero-container {

        grid-template-columns:
            1fr;

        gap: 0;

        text-align: center;

    }

    .hero-content {

        margin: 0 auto;

        padding-bottom: 20px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-visual {

        min-height: 400px;

    }

    .hero-brand-main {

        font-size:
            clamp(
                140px,
                25vw,
                260px
            );

    }

    .hero-brands {

        position: relative;

        margin-top: 40px;

    }

    .brands-container {

        overflow-x: auto;

        justify-content: flex-start;

        padding: 0 40px;

    }

    .brands-container span {

        white-space: nowrap;

    }

    .portfolio-slider {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .about-grid {

        grid-template-columns:
            1fr;

        gap: 30px;

    }

    .about-content {

        padding-top: 0;

    }

    .contact-box {

        grid-template-columns:
            1fr;

    }

}


@media (max-width: 800px) {

    .section-container,
    .header-container,
    .footer-container,
    .hero-container {

        width:
            calc(100% - 40px);

    }

    .main-nav,
    .header-contact-button {

        display: none;

    }

    .mobile-menu-button {

        display: flex;

    }

    .mobile-menu {

        position: fixed;

        top: 82px;
        left: 0;

        width: 100%;

        z-index: 999;

        padding: 15px 20px 25px;

        flex-direction: column;

        background:
            rgba(3,4,5,0.98);

        border-bottom:
            1px solid var(--gold-line);

    }

    .mobile-menu.open {

        display: flex;

    }

    .mobile-nav-link {

        padding: 15px;

        color: var(--white);

        border-bottom:
            1px solid var(--line);

    }

    .hero-section {

        min-height: auto;

    }

    .hero-content {

        padding:
            100px 0
            20px;

    }

    .hero-title {

        letter-spacing: -3px;

    }

    .hero-small-text {

        font-size: 9px;

        letter-spacing: 4px;

    }

    .hero-visual {

        min-height: 330px;

    }

    .hero-brand-main {

        letter-spacing: -18px;

    }

    .hero-brand-name {

        letter-spacing: 9px;

    }

    .section-heading {

        display: block;

        margin-bottom: 35px;

    }

    .section-heading > p {

        margin-top: 20px;

    }

    .portfolio-section,
    .about-section,
    .services-section {

        padding:
            80px 0;

    }

    .portfolio-slider {

        grid-template-columns:
            1fr;

    }

    .portfolio-image {

        height: 300px;

    }

    .slider-arrow {

        top: 150px;

    }

    .slider-prev {

        left: 10px;

    }

    .slider-next {

        right: 10px;

    }

    .about-stats {

        grid-template-columns:
            1fr;

        gap: 30px;

    }

    .about-stat {

        padding: 0 0 30px;

        border-right: none;

        border-bottom:
            1px solid var(--line);

    }

    .services-grid {

        grid-template-columns:
            1fr;

    }

    .contact-box {

        padding: 35px 25px;

    }

    .contact-links {

        grid-template-columns:
            1fr;

    }

    .contact-link {

        min-height: 100px;

        border-left: none;

        border-top:
            1px solid var(--line);

    }

    .footer-container {

        flex-direction: column;

        align-items: flex-start;

    }

    .footer-top {

        position: absolute;

        right: 20px;

    }

}


@media (max-width: 500px) {

    .hero-title {

        font-size: 52px;

    }

    .hero-description {

        font-size: 14px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .primary-button,
    .secondary-button {

        width: 100%;

    }

    .portfolio-image {

        height: 240px;

    }

    .lightbox {

        padding: 20px;

    }

}
