/* =========================================================
   ARKANSAS DIGITAL FORGE
   MAIN STYLESHEET
   ========================================================= */

:root {
    --black: #07090c;
    --dark: #0d1117;
    --dark-2: #131922;
    --dark-3: #1a2230;

    --gold: #c99a3d;
    --gold-light: #e3bd69;
    --gold-dark: #8f6828;

    --blue: #183d68;
    --burgundy: #681d2d;

    --white: #ffffff;
    --text: #d7dbe2;
    --muted: #969eaa;

    --border: rgba(201, 154, 61, 0.22);

    --max-width: 1200px;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

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


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

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

section {
    position: relative;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 16px;
}

h1,
h2,
h3 {
    color: var(--white);
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text);
}

.gold {
    color: var(--gold);
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 9, 12, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header .container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.brand-name {
    font-size: 0.95rem;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    white-space: nowrap;
}

.main-nav a {
    color: #c9ced6;
    font-size: 0.82rem;
    font-weight: 600;
    transition: 0.25s ease;
}

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

.nav-button {
    margin-left: 8px;
    padding: 10px 18px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 4px;
}

.nav-button:hover {
    background: var(--gold);
    color: #080a0d !important;
}


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

.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.button-primary,
.btn-primary {
    color: #080a0d;
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
    box-shadow: 0 10px 30px rgba(201, 154, 61, 0.18);
}

.button-primary:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(201, 154, 61, 0.28);
}

.button-secondary,
.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.button-secondary:hover,
.btn-secondary:hover {
    color: var(--gold);
    border-color: var(--gold);
}


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

.hero {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 40%,
            rgba(24, 61, 104, 0.28),
            transparent 35%
        ),
        radial-gradient(
            circle at 12% 85%,
            rgba(104, 29, 45, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07090c 0%,
            #0b1017 55%,
            #080a0e 100%
        );
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        transparent
    );

    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        transparent
    );
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
    gap: 70px;
    min-height: calc(100vh - 82px);
}

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

.hero h1 {
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    max-width: 720px;
    font-size: 1.18rem;
    color: #adb4bf;
}

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


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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forge-card {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.015)
        );

    border: 1px solid rgba(201, 154, 61, 0.32);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.forge-mark {
    color: var(--gold);
    font-size: clamp(4rem, 7vw, 6.5rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.08em;
    margin-bottom: 20px;
}

.forge-card p {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    color: #aeb5bf;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

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

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}


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

.services-section {
    padding: 110px 0;
    background: var(--dark);
}

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

.service-card {
    min-height: 285px;
    padding: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );

    border: 1px solid rgba(255, 255, 255, 0.075);
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: width 0.35s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
    background: var(--dark-2);
}

.service-card:hover::before {
    width: 100%;
}

.service-number {
    display: block;
    margin-bottom: 36px;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--muted);
    font-size: 0.94rem;
    margin-bottom: 25px;
}

.service-card a {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.9rem;
}


/* =========================================================
   BUSINESS SECTION
   ========================================================= */

.business-section {
    padding: 120px 0;

    background:
        linear-gradient(
            90deg,
            rgba(104, 29, 45, 0.09),
            transparent 35%
        ),
        var(--black);
}

.business-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.business-section h2 {
    margin-bottom: 24px;
}

.business-section p {
    color: var(--muted);
    margin-bottom: 20px;
}


/* =========================================================
   AI SECTION
   ========================================================= */

.ai-section {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(24, 61, 104, 0.24),
            transparent 32%
        ),
        var(--dark);
}

.ai-section .container {
    max-width: 900px;
    text-align: center;
}

.ai-section h2 {
    margin-bottom: 24px;
}

.ai-section p {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 720px;
    margin: 0 auto 32px;
}


/* =========================================================
   FINAL CALL TO ACTION
   ========================================================= */

.final-cta {
    padding: 115px 0;
    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(24, 61, 104, 0.18),
            rgba(104, 29, 45, 0.12)
        ),
        #090c11;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.final-cta h2 {
    max-width: 800px;
    margin: 0 auto 20px;
}

.final-cta p {
    max-width: 650px;
    margin: 0 auto 32px;
    color: var(--muted);
}


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

.site-footer {
    padding: 55px 0 35px;
    background: #050608;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.site-footer p {
    color: #737b86;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: #858d98;
    font-size: 0.85rem;
}

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


/* =========================================================
   RESPONSIVE - 1100PX
   ========================================================= */

@media (max-width: 1100px) {

    .nav-container {
        gap: 20px;
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 0.76rem;
    }

    .nav-button {
        margin-left: 4px;
        padding: 10px 14px;
    }
}


/* =========================================================
   RESPONSIVE - 900PX
   ========================================================= */

@media (max-width: 900px) {

    .main-nav {
        gap: 10px;
    }

    .main-nav a {
        font-size: 0.72rem;
    }

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

    .hero-visual {
        display: none;
    }

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

    .business-section .container {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .site-header .container {
        min-height: 70px;
    }

    .brand-name {
        font-size: 0.82rem;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-content {
        padding: 90px 0;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .button,
    .btn {
        width: 100%;
    }

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

    .services-section,
    .business-section,
    .ai-section,
    .final-cta {
        padding: 80px 0;
    }

    .site-footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* HERO LOGO */

.hero-logo {
    width: 100%;
    max-width: 390px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* HERO HEADLINE FINAL ADJUSTMENT */

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

.hero h1 {
    font-size: clamp(3rem, 4.8vw, 5rem);
    line-height: 1.08;
    max-width: 900px;
}
/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(201, 154, 61, 0.45);
    border-radius: 4px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

@media (max-width: 700px) {

    .nav-container {
        position: relative;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 20px 20px;
        background: #07090c;
        border-top: 1px solid rgba(255,255,255,0.07);
        border-bottom: 1px solid rgba(201,154,61,0.25);
        box-shadow: 0 18px 35px rgba(0,0,0,0.4);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a,
    .main-nav a + a {
        margin-left: 0;
        padding: 13px 4px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .main-nav .nav-button {
        margin: 12px 0 0 !important;
        text-align: center;
        border: 1px solid var(--gold);
    }
}
/* =========================================
   HEADER LOGO
========================================= */

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

.header-logo {
    display: block;
    width: 300px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
    .header-logo {
        width: 210px;
        height: auto;
        max-height: 42px;
    }
}
/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-page-hero {
    padding: 120px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(24, 61, 104, 0.24),
            transparent 34%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(104, 29, 45, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #07090c 0%,
            #0b1017 58%,
            #080a0e 100%
        );
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.services-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.022) 1px,
            transparent 1px
        );

    background-size: 55px 55px;
}

.services-page-hero-inner {
    position: relative;
    z-index: 2;
}

.services-page-hero h1 {
    max-width: 980px;
    margin-bottom: 26px;
    font-size: clamp(3.4rem, 6vw, 6rem);
}

.services-page-hero h1 span {
    color: var(--gold);
}

.services-hero-text {
    max-width: 800px;
    color: #aeb5bf;
    font-size: 1.15rem;
    margin-bottom: 34px;
}


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

.services-page-intro {
    padding: 105px 0 80px;
    background: var(--dark);
}

.services-page-intro h2 {
    max-width: 850px;
    margin-bottom: 24px;
}

.section-lead {
    max-width: 820px;
    color: var(--muted);
    font-size: 1.08rem;
}


/* =========================================================
   SERVICE DETAIL GRID
   ========================================================= */

.services-page-list {
    padding: 20px 0 120px;
    background: var(--dark);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-detail-card {
    position: relative;
    min-height: 310px;
    padding: 38px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.012)
        );

    border: 1px solid rgba(255,255,255,0.075);
    transition: 0.3s ease;
}

.service-detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201,154,61,0.3);
    background: var(--dark-2);
}

.service-detail-card:hover::before {
    width: 100%;
}

.service-detail-card .service-number {
    display: block;
    margin-bottom: 42px;
}

.service-detail-card h3 {
    font-size: 1.45rem;
    margin-bottom: 16px;
}

.service-detail-card p {
    max-width: 560px;
    color: var(--muted);
    margin-bottom: 28px;
}

.service-detail-card a {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.92rem;
}


/* =========================================================
   WHY ADF
   ========================================================= */

.services-why {
    padding: 120px 0;

    background:
        linear-gradient(
            90deg,
            rgba(104,29,45,0.09),
            transparent 38%
        ),
        var(--black);
}

.services-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.services-why h2 {
    max-width: 560px;
}

.services-why-copy p {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 1.05rem;
}

.text-link {
    display: inline-block;
    margin-top: 6px;
    color: var(--gold-light);
    font-weight: 700;
}

.text-link:hover {
    color: var(--gold);
}


/* =========================================================
   SERVICES PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .services-why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


@media (max-width: 700px) {

    .services-page-hero {
        padding: 85px 0 80px;
    }

    .services-page-hero h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .services-hero-text {
        font-size: 1rem;
    }

    .services-page-intro {
        padding: 80px 0 55px;
    }

    .services-page-list {
        padding: 10px 0 80px;
    }

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

    .services-why {
        padding: 80px 0;
    }
}
.services-why h2 span {
    color: var(--gold);
}
/* Website service cards */
.services-page-list .service-card {
    min-height: 0;
    padding: 42px 40px;
}

.services-page-list .services-grid {
    align-items: stretch;
}