/* =========================================================
   AUDIMX
   Main Stylesheet
   ========================================================= */


/* ================= ROOT ================= */

:root {

    --black: #080808;
    --black-soft: #101010;
    --black-light: #171717;

    --maroon: #651528;
    --maroon-dark: #3d0d1a;

    --gold: #c9a45c;
    --gold-light: #e0c27a;

    --white: #f5f2ed;
    --white-soft: #c9c5bf;
    --muted: #8d8983;

    --border: rgba(201, 164, 92, 0.20);

    --max-width: 1200px;

    --transition: 300ms ease;

}


/* ================= RESET ================= */

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

html {
    scroll-behavior: smooth;
}

body {

    background: var(--black);

    color: var(--white);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
}

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


/* ================= GLOBAL ================= */

.container {

    width: min(
        calc(100% - 80px),
        var(--max-width)
    );

    margin: 0 auto;
}

.section {
    padding: 140px 0;
}

.eyebrow {

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 24px;
}

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

.section-heading h2,
.statement h2,
.contact-intro h2 {

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -2.5px;
}

.section-heading h2 span,
.statement h2 span,
.contact-intro h2 span {

    display: block;

    color: var(--gold);
}


/* ================= HEADER ================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(8, 8, 8, 0.90);

    border-bottom: 1px solid transparent;

    transition:
        background var(--transition),
        border-color var(--transition);
}

.header.scrolled {

    background: rgba(8, 8, 8, 0.97);

    border-color: var(--border);
}

.nav-container {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {

    width: 130px;

    height: auto;
}

.nav {

    display: flex;

    align-items: center;

    gap: 38px;
}

.nav-link {

    position: relative;

    color: var(--white-soft);

    font-size: 13px;

    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--gold);

    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact {

    border: 1px solid var(--border);

    padding: 10px 18px;
}

.nav-contact::after {
    display: none;
}

.nav-contact:hover {
    border-color: var(--gold);
}


/* ================= MOBILE MENU ================= */

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {

    display: block;

    width: 24px;
    height: 1px;

    margin: 6px auto;

    background: var(--white);

    transition: transform var(--transition);
}


/* ================= HERO ================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.hero-background {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 80% 40%,
            rgba(101, 21, 40, 0.25),
            transparent 35%
        ),

        linear-gradient(
            120deg,
            var(--black) 0%,
            #0d090b 60%,
            var(--black) 100%
        );

    z-index: -1;
}

.hero-background::after {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(201, 164, 92, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(201, 164, 92, 0.04) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.hero-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 80px;
}

.hero-content {
    max-width: 850px;
}

.hero h1 {

    font-size: clamp(
        70px,
        10vw,
        150px
    );

    line-height: 0.9;

    letter-spacing: -7px;

    font-weight: 500;

    margin-bottom: 40px;
}

.hero h1 span {

    display: block;

    color: var(--gold);
}

.hero-description {

    max-width: 580px;

    color: var(--white-soft);

    font-size: clamp(18px, 2vw, 23px);

    line-height: 1.6;

    margin-bottom: 45px;
}

.hero-actions {

    display: flex;

    gap: 16px;

    flex-wrap: wrap;
}


/* ================= BUTTONS ================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    min-height: 52px;

    padding: 0 25px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {

    background: var(--gold);

    color: var(--black);
}

.button-primary:hover {
    background: var(--gold-light);
}

.button-secondary {

    border: 1px solid var(--border);

    color: var(--white);
}

.button-secondary:hover {

    border-color: var(--gold);

    color: var(--gold);
}

.button-arrow {
    font-size: 18px;
}


/* ================= HERO MARK ================= */

.hero-mark {

    position: absolute;

    right: 5%;

    bottom: 12%;

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--muted);

    font-size: 10px;

    letter-spacing: 2px;
}

.mark-line {

    width: 50px;

    height: 1px;

    background: var(--border);
}

.scroll-indicator {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: 3px;
}

.scroll-indicator div {

    width: 45px;

    height: 1px;

    background: var(--border);
}


/* ================= ABOUT ================= */

.about {
    background: var(--black-soft);
}

.about-grid {

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;
}

.large-text {

    font-size: clamp(27px, 3vw, 40px);

    line-height: 1.3;

    letter-spacing: -1px;
}

.about-text {

    color: var(--white-soft);

    font-size: 16px;

    line-height: 1.9;
}

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

.about-text strong {
    color: var(--white);
}


/* ================= SERVICES ================= */

.services {
    background: var(--black);
}

.services-heading {

    display: grid;

    grid-template-columns: 1fr 0.7fr;

    gap: 80px;

    align-items: end;
}

.heading-description {

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;

    max-width: 430px;
}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);
}

.service-card {

    min-height: 270px;

    padding: 35px;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    position: relative;

    transition:
        background var(--transition),
        transform var(--transition);
}

.service-card:hover {

    background: rgba(101, 21, 40, 0.16);

    transform: translateY(-4px);
}

.service-number {

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;
}

.service-card h3 {

    font-size: 21px;

    font-weight: 500;

    margin-top: 55px;

    margin-bottom: 15px;
}

.service-card p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* ================= STATEMENT ================= */

.statement {

    padding: 180px 0;

    background:

        linear-gradient(
            120deg,
            var(--maroon-dark),
            var(--black)
        );
}

.statement-container {
    max-width: 1000px;
}

.statement h2 {
    margin-bottom: 30px;
}

.statement > .container > p:last-child {

    color: var(--white-soft);

    font-size: 18px;
}


/* ================= PROCESS ================= */

.process {
    background: var(--black-soft);
}

.process-list {

    border-top: 1px solid var(--border);
}

.process-item {

    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 40px;

    padding: 45px 0;

    border-bottom: 1px solid var(--border);
}

.process-number {

    color: var(--gold);

    font-size: 12px;

    letter-spacing: 2px;
}

.process-item h3 {

    font-size: 30px;

    font-weight: 500;

    margin-bottom: 10px;
}

.process-item p {

    color: var(--muted);

    max-width: 550px;
}


/* ================= CONTACT ================= */

.contact {
    background: var(--black);
}

.contact-grid {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 120px;

    align-items: start;
}

.contact-intro > p:last-child {

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;

    margin-top: 35px;

    max-width: 450px;
}

.contact-form {

    border-top: 1px solid var(--border);

    padding-top: 35px;
}

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

.form-group label {

    display: block;

    color: var(--white-soft);

    font-size: 12px;

    letter-spacing: 1px;

    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border: none;

    border-bottom: 1px solid #333;

    background: transparent;

    color: var(--white);

    padding: 13px 0;

    outline: none;

    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--gold);
}

.form-group textarea {

    resize: vertical;

    min-height: 130px;
}

.form-group select option {
    background: var(--black);
}

.submit-button {

    margin-top: 10px;

    min-width: 190px;
}

.form-status {

    margin-top: 20px;

    font-size: 13px;

    color: var(--gold);
}


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

.footer {

    border-top: 1px solid var(--border);

    padding: 70px 0 30px;

    background: var(--black-soft);
}

.footer-container {

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 50px;
}

.footer-logo {
    width: 120px;
}

.footer-brand p {

    color: var(--muted);

    font-size: 13px;

    margin-top: 15px;
}

.footer-links {

    display: flex;

    gap: 30px;

    align-items: start;
}

.footer-links a {

    color: var(--muted);

    font-size: 12px;

    transition: color var(--transition);
}

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

.footer-bottom {

    grid-column: 1 / -1;

    display: flex;

    justify-content: space-between;

    padding-top: 30px;

    border-top: 1px solid #222;

    color: #666;

    font-size: 11px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .container {
        width: min(
            calc(100% - 40px),
            var(--max-width)
        );
    }

    .section {
        padding: 100px 0;
    }

    .nav {

        position: fixed;

        top: 82px;
        left: 0;

        width: 100%;

        padding: 30px 20px;

        background: var(--black);

        border-bottom: 1px solid var(--border);

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        transform: translateY(-150%);

        transition: transform var(--transition);
    }

    .nav.open {
        transform: translateY(0);
    }

    .menu-toggle {
        display: block;
    }

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

    .about-grid,
    .contact-grid,
    .services-heading {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-grid {
        gap: 70px;
    }

}


@media (max-width: 600px) {

    .container {
        width: calc(100% - 32px);
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        min-height: 850px;
    }

    .hero h1 {

        font-size: clamp(
            58px,
            17vw,
            90px
        );

        letter-spacing: -4px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;
    }

    .button {
        width: 100%;
    }

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

    .service-card {
        min-height: auto;
        padding: 30px;
    }

    .process-item {

        grid-template-columns: 50px 1fr;

        gap: 15px;

        padding: 35px 0;
    }

    .process-item h3 {
        font-size: 25px;
    }

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

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 10px;
    }

    .hero-mark {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

}