/* =========================================================
   TOP-TRIP ABOUT PAGE
========================================================= */

:root {
    --black: #050505;
    --black-soft: #101010;
    --panel: rgba(19, 19, 19, 0.92);
    --panel-light: rgba(255, 255, 255, 0.045);

    --gold: #dcae3e;
    --gold-light: #f0cd72;
    --gold-dark: #9e741d;

    --white: #ffffff;
    --text: #f4f4f4;
    --muted: #b4b4b4;

    --border: rgba(220, 174, 62, 0.3);
    --soft-border: rgba(255, 255, 255, 0.08);

    --shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100vh;
    color: var(--text);
    background: var(--black);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

/* =========================================================
   PAGE BACKGROUND
========================================================= */

.about-hero {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(220, 174, 62, 0.13),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.98),
            rgba(10, 10, 10, 0.94)
        );
}

/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 90px;
    padding: 20px 7%;

    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(14px);
}

.logo {
    color: var(--gold);
    text-decoration: none;

    font-size: 31px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

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

.navbar nav a {
    position: relative;

    color: var(--white);
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.navbar nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.2s ease;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: var(--gold-light);
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
    width: 100%;
}

/* =========================================================
   MAIN WRAPPER
========================================================= */

.about-overlay {
    padding: 70px 7% 90px;
}

.about-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

/* =========================================================
   INTRODUCTION
========================================================= */

.section-title {
    display: inline-block;

    margin-bottom: 16px;
    padding: 8px 14px;

    color: var(--gold-light);
    background: rgba(220, 174, 62, 0.1);
    border: 1px solid var(--border);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.about-container > h1 {
    max-width: 820px;
    margin-bottom: 22px;

    color: var(--white);

    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.02;
}

.lead {
    max-width: 880px;

    color: var(--muted);

    font-size: 20px;
    line-height: 1.75;
}

/* =========================================================
   SERVICE CARDS
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;

    margin-top: 48px;
}

.about-card {
    min-height: 255px;
    padding: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(28, 28, 28, 0.96),
            rgba(15, 15, 15, 0.96)
        );

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

    box-shadow: var(--shadow);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 205, 114, 0.65);
}

.about-card .icon {
    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;
    margin-bottom: 20px;

    color: #111;
    background:
        linear-gradient(
            145deg,
            var(--gold-light),
            var(--gold-dark)
        );

    border-radius: 15px;

    font-size: 27px;
}

.about-card h3 {
    margin-bottom: 12px;

    color: var(--white);
    font-size: 21px;
}

.about-card p {
    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   STORY SECTION
========================================================= */

.about-story {
    margin-top: 56px;
    padding: 38px;

    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;

    box-shadow: var(--shadow);
}

.about-story h2 {
    margin-bottom: 20px;

    color: var(--gold-light);
    font-size: 33px;
}

.about-story p {
    color: var(--muted);

    font-size: 17px;
    line-height: 1.85;
}

.about-story p + p {
    margin-top: 17px;
}

/* =========================================================
   STATISTICS
========================================================= */

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;

    margin-top: 30px;
}

.stat {
    padding: 26px 20px;

    text-align: center;

    background: var(--panel-light);
    border: 1px solid var(--soft-border);
    border-radius: 16px;
}

.stat h2 {
    margin-bottom: 7px;

    color: var(--gold);
    font-size: 34px;
}

.stat span {
    color: var(--muted);

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* =========================================================
   MOBILE AND TABLET
========================================================= */

@media (max-width: 1000px) {

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

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

@media (max-width: 700px) {

    .navbar {
        position: relative;

        flex-direction: column;
        gap: 18px;

        padding: 22px 16px;
    }

    .navbar nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .navbar nav a {
        font-size: 14px;
    }

    .about-overlay {
        padding: 45px 16px 65px;
    }

    .lead {
        font-size: 17px;
    }

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

    .about-card {
        min-height: auto;
    }

    .about-story {
        padding: 24px 20px;
    }

    .about-story h2 {
        font-size: 27px;
    }

    .about-story p {
        font-size: 15px;
    }
}

@media (max-width: 420px) {

    .logo {
        font-size: 27px;
    }

    .about-container > h1 {
        font-size: 39px;
    }

    .about-card {
        padding: 22px;
    }
}