/* =========================================================
   AI EXPLORER AGENCY
   Modern Premium Agency Stylesheet
========================================================= */


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

:root {

    --bg: #08090b;
    --bg-soft: #0d0e10;
    --bg-card: #111214;
    --bg-card-hover: #151619;

    --gold: #d9b45f;
    --gold-light: #e6c875;
    --gold-dark: #a98942;

    --white: #f4f2ed;
    --text: #e9e7e2;
    --text-soft: #a7a6a2;
    --text-muted: #777873;

    --border: rgba(255, 255, 255, 0.09);
    --border-gold: rgba(217, 180, 95, 0.28);

    --container: 1180px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;

    --transition: 0.35s ease;

    --shadow:
        0 20px 70px rgba(0, 0, 0, 0.38);

    --gold-shadow:
        0 15px 45px rgba(217, 180, 95, 0.13);
}


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(217, 180, 95, 0.08),
            transparent 34%
        ),
        var(--bg);

    color: var(--text);

    font-family: 'Manrope', sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;

    inset: 0;

    pointer-events: none;

    opacity: 0.018;

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

    background-size: 80px 80px;

    z-index: -1;
}

img {
    max-width: 100%;
}

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

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

button {
    border: none;
}

::selection {
    background: var(--gold);
    color: #08090b;
}


/* =========================================================
   CONTAINER
========================================================= */

.section-container,
.nav-container,
.footer-container,
.hero-container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid transparent;

    background: rgba(8, 9, 11, 0.72);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

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

.navbar.scrolled {
    background: rgba(8, 9, 11, 0.94);

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

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.25);
}

.nav-container {
    height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* Logo */

.nav-logo {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    flex-shrink: 0;
}

.logo-img {
    width: 42px;
    height: 42px;

    object-fit: contain;

    display: block;
}

.agency-name {
    font-family: 'Cinzel', serif;

    font-size: 0.9rem;

    font-weight: 600;

    letter-spacing: 0.14em;

    color: var(--white);

    white-space: nowrap;
}


/* Nav Links */

.nav-links {
    display: flex;

    align-items: center;

    gap: 38px;
}

.nav-link {
    position: relative;

    font-size: 0.78rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    color: #c8c7c3;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width var(--transition);
}

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

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


/* Nav CTA */

.nav-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 45px;

    padding: 0 25px;

    border-radius: 999px;

    background: var(--gold);

    color: #15130e;

    font-size: 0.76rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;

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

.nav-cta:hover {
    background: var(--gold-light);

    transform: translateY(-2px);

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


/* Mobile Menu */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    padding: 10px;

    background: transparent;

    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--white);

    transition: transform .3s ease,
                opacity .3s ease;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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


/* =========================================================
   GENERAL TYPOGRAPHY
========================================================= */

.section-heading {
    max-width: 720px;

    margin: 0 auto 64px;

    text-align: center;
}

.section-eyebrow,
.hero-eyebrow {
    display: inline-block;

    color: var(--gold);

    font-family: 'Manrope', sans-serif;

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}

.section-title {
    margin-top: 12px;

    font-family: 'Cinzel', serif;

    font-size: clamp(
        2rem,
        4vw,
        3.4rem
    );

    font-weight: 500;

    line-height: 1.18;

    color: var(--white);

    letter-spacing: -0.025em;
}

.section-title span {
    color: var(--gold);
}

.section-description {
    max-width: 650px;

    margin: 18px auto 0;

    color: var(--text-soft);

    font-size: 0.98rem;

    line-height: 1.85;
}


/* =========================================================
   DIVIDER
========================================================= */

.divider-line {
    width: min(
        calc(100% - 48px),
        1100px
    );

    height: 1px;

    margin: 0 auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(217,180,95,.25),
            transparent
        );
}


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

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 999px;

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 0.04em;

    cursor: pointer;

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

.btn-primary {
    background: var(--gold);

    color: #11100c;

    box-shadow:
        0 10px 35px rgba(217,180,95,.12);
}

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

    transform: translateY(-3px);

    box-shadow:
        0 16px 45px rgba(217,180,95,.2);
}

.btn-secondary {
    border: 1px solid var(--border);

    color: var(--white);

    background: rgba(255,255,255,.025);
}

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

    color: var(--gold-light);

    transform: translateY(-3px);
}

.btn-outline {
    min-height: 43px;

    padding: 0 19px;

    border: 1px solid rgba(255,255,255,.12);

    color: #dddcd7;

    background: rgba(255,255,255,.015);

    font-size: 0.73rem;
}

.btn-outline:hover {
    color: var(--gold-light);

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

    background: rgba(217,180,95,.05);

    transform: translateY(-2px);
}


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

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        145px 0
        100px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: -280px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(217,180,95,.14),
            transparent 68%
        );

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -400px;

    transform: translateX(-50%);

    width: 700px;
    height: 700px;

    border-radius: 50%;

    border: 1px solid rgba(217,180,95,.06);

    box-shadow:
        0 0 0 80px rgba(217,180,95,.018),
        0 0 0 160px rgba(217,180,95,.012);

    pointer-events: none;
}

.hero-container {
    position: relative;

    z-index: 1;

    text-align: center;
}

.hero-logo {
    width: 78px;
    height: 78px;

    margin: 0 auto 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 22px;

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

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.015)
        );

    box-shadow:
        0 20px 55px rgba(0,0,0,.4);
}

.hero-logo-img {
    width: 58px;
    height: 58px;

    object-fit: contain;
}

.hero-eyebrow {
    margin-bottom: 17px;
}

.hero-title {
    max-width: 950px;

    margin: 0 auto;

    font-family: 'Cinzel', serif;

    font-size: clamp(
        2.7rem,
        6vw,
        5.7rem
    );

    line-height: 1.04;

    font-weight: 500;

    letter-spacing: -0.045em;

    color: var(--white);
}

.hero-title span {
    display: block;

    color: var(--gold);
}

.hero-subtitle {
    max-width: 700px;

    margin: 27px auto 0;

    color: #d4d2cd;

    font-size: clamp(
        1rem,
        2vw,
        1.22rem
    );

    line-height: 1.7;
}

.hero-description {
    max-width: 620px;

    margin: 12px auto 0;

    color: var(--text-muted);

    font-size: 0.88rem;

    line-height: 1.8;
}

.hero-cta {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-top: 35px;
}

.hero-stats {
    max-width: 650px;

    margin: 72px auto 0;

    display: grid;

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

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

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

.stat-item {
    position: relative;

    padding: 25px 15px;
}

.stat-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 25%;
    right: 0;

    width: 1px;
    height: 50%;

    background: var(--border);
}

.stat-number {
    display: block;

    color: var(--gold);

    font-family: 'Cinzel', serif;

    font-size: 1.55rem;

    font-weight: 600;
}

.stat-label {
    display: block;

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 0.68rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .12em;
}


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

.about {
    padding: 125px 0;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap: 90px;

    align-items: center;
}

.about-content .section-title {
    max-width: 550px;
}

.about-text {
    max-width: 610px;

    margin-top: 21px;

    color: var(--text-soft);

    font-size: .95rem;

    line-height: 1.9;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 28px;

    color: var(--gold);

    font-size: .8rem;

    font-weight: 800;

    letter-spacing: .04em;

    transition: gap var(--transition);
}

.text-link:hover {
    gap: 14px;
}


/* About Card */

.about-card {
    position: relative;

    padding: 45px;

    border-radius: var(--radius-lg);

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

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );

    box-shadow: var(--shadow);

    overflow: hidden;
}

.about-card::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(217,180,95,.12),
            transparent 70%
        );
}

.about-card-top {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 45px;
}

.about-card-number {
    color: var(--gold);

    font-family: 'Cinzel', serif;

    font-size: .9rem;
}

.about-card-line {
    width: 80px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}

.about-card h3 {
    position: relative;

    font-family: 'Cinzel', serif;

    font-size: 1.8rem;

    font-weight: 500;

    line-height: 1.35;
}

.about-card h3 span {
    color: var(--gold);
}

.about-card > p {
    position: relative;

    margin-top: 18px;

    color: var(--text-soft);

    font-size: .9rem;

    line-height: 1.8;
}

.about-points {
    position: relative;

    margin-top: 34px;

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

.about-point {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 15px 0;

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

.about-point span {
    color: var(--gold);

    font-size: .7rem;

    font-weight: 800;
}

.about-point p {
    color: #d2d0cb;

    font-size: .8rem;
}


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

.services {
    padding: 125px 0;
}

.services-grid {
    display: grid;

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

    gap: 20px;
}

.service-card {
    position: relative;

    min-height: 330px;

    padding: 37px;

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

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.01)
        );

    overflow: hidden;

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

.service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -80px;
    right: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(217,180,95,.09),
            transparent 70%
        );

    transition: transform .5s ease;
}

.service-card:hover {
    transform: translateY(-7px);

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

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(217,180,95,.025)
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,.3);
}

.service-card:hover::before {
    transform: scale(1.5);
}

.service-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: rgba(217,180,95,.38);

    font-family: 'Cinzel', serif;

    font-size: .75rem;
}

.service-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

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

    color: var(--gold);

    background:
        rgba(217,180,95,.045);

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

.service-card:hover .service-icon {
    transform: translateY(-4px);

    background:
        rgba(217,180,95,.09);
}

.service-title {
    margin-top: 30px;

    font-family: 'Cinzel', serif;

    font-size: 1.35rem;

    font-weight: 500;

    color: var(--white);
}

.service-description {
    max-width: 480px;

    margin-top: 12px;

    color: var(--text-soft);

    font-size: .86rem;

    line-height: 1.8;
}

.service-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 22px;
}

.service-tags span {
    padding: 6px 10px;

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

    border-radius: 999px;

    color: var(--text-muted);

    font-size: .62rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;
}


/* =========================================================
   PROJECTS
========================================================= */

.work {
    padding: 125px 0;
}

.work-grid {
    display: grid;

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

    gap: 25px;
}

.work-card {
    overflow: hidden;

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

    border-radius: var(--radius-lg);

    background: var(--bg-card);

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

.work-card:hover {
    transform: translateY(-7px);

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

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

.work-image {
    position: relative;

    height: 270px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(217,180,95,.12),
            transparent 55%
        ),
        #101114;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-image::before {
    content: "";

    position: absolute;

    inset: 0;

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

    background-size: 35px 35px;
}

.work-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,0,0,.5)
        );
}

.work-placeholder {
    position: relative;

    z-index: 2;

    width: 100px;
    height: 100px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 28px;

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

    color: var(--gold);

    font-family: 'Cinzel', serif;

    font-size: 1.8rem;

    background:
        rgba(8,9,11,.7);

    box-shadow:
        0 20px 60px rgba(0,0,0,.45);

    transition:
        transform .5s ease,
        border-color .5s ease;
}

.work-card:hover .work-placeholder {
    transform: scale(1.08) rotate(-2deg);

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

.project-category {
    position: absolute;

    z-index: 3;

    left: 20px;
    bottom: 18px;

    padding: 7px 12px;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.1);

    background: rgba(0,0,0,.4);

    backdrop-filter: blur(10px);

    color: #d5d3ce;

    font-size: .63rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;
}

.work-card-content {
    padding: 29px;
}

.project-meta {
    display: flex;

    justify-content: space-between;

    color: var(--gold-dark);

    font-size: .62rem;

    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;
}

.work-title {
    margin-top: 12px;

    color: var(--white);

    font-family: 'Cinzel', serif;

    font-size: 1.45rem;

    font-weight: 500;
}

.work-description {
    min-height: 54px;

    margin-top: 10px;

    color: var(--text-soft);

    font-size: .84rem;

    line-height: 1.75;
}

.work-card .btn {
    margin-top: 22px;
}


/* =========================================================
   TEAM
========================================================= */

.team {
    padding: 125px 0;
}

.team-grid {
    display: grid;

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

    gap: 20px;
}

.team-card {
    position: relative;

    padding: 36px 28px 32px;

    min-height: 410px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

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

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.01)
        );

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

.team-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 25%;

    width: 50%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(217,180,95,.4),
            transparent
        );
}

.team-card:hover {
    transform: translateY(-8px);

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

    box-shadow:
        0 25px 65px rgba(0,0,0,.32);
}


/* Team Photos */

.team-avatar.team-photo {
    width: 120px;
    height: 120px;

    margin: 0 auto 22px;

    position: relative;

    flex-shrink: 0;

    border-radius: 50%;

    overflow: hidden;

    border: 1px solid rgba(217,180,95,.38);

    background: #17181a;

    box-shadow:
        0 0 0 7px rgba(217,180,95,.035),
        0 15px 40px rgba(0,0,0,.35);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.team-avatar.team-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .5s ease;
}

.team-card:hover .team-avatar.team-photo {
    transform: translateY(-5px);

    border-color: rgba(217,180,95,.75);

    box-shadow:
        0 0 0 8px rgba(217,180,95,.055),
        0 20px 50px rgba(0,0,0,.45);
}

.team-card:hover .team-avatar.team-photo img {
    transform: scale(1.06);
}

.photo-fallback::after {
    content: "AI";

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-family: 'Cinzel', serif;

    font-size: 1.6rem;
}

.team-name {
    color: var(--white);

    font-family: 'Cinzel', serif;

    font-size: 1.2rem;

    font-weight: 500;
}

.team-role {
    margin-top: 6px;

    color: var(--gold);

    font-size: .66rem;

    font-weight: 800;

    letter-spacing: .11em;

    text-transform: uppercase;
}

.team-bio {
    max-width: 300px;

    margin: 15px auto 0;

    color: var(--text-soft);

    font-size: .78rem;

    line-height: 1.75;
}

.team-card .btn {
    margin-top: auto;
}


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

.contact {
    padding: 125px 0;
}

.contact-wrapper {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 80px;

    padding: 60px;

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

    border-radius: var(--radius-xl);

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(217,180,95,.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.01)
        );

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

.contact-content .section-title {
    max-width: 530px;
}

.contact-description {
    max-width: 500px;

    margin-top: 20px;

    color: var(--text-soft);

    font-size: .9rem;

    line-height: 1.85;
}

.contact-details {
    margin-top: 38px;

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 15px;

    color: #d4d2cd;

    font-size: .78rem;
}

.contact-item > span:last-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.contact-item small {
    color: var(--text-muted);

    font-size: .62rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;
}

.contact-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

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

    border-radius: 13px;

    color: var(--gold);

    background:
        rgba(217,180,95,.045);
}


/* Contact Form */

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.form-row {
    display: grid;

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

    gap: 15px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #c9c7c1;

    font-size: .7rem;

    font-weight: 700;

    letter-spacing: .04em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

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

    border-radius: 12px;

    outline: none;

    background:
        rgba(0,0,0,.18);

    color: var(--white);

    padding: 13px 15px;

    font-size: .78rem;

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

.form-group input,
.form-group select {
    height: 48px;
}

.form-group textarea {
    resize: vertical;

    min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #60615f;
}

.form-group select {
    appearance: none;

    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, #777 50%),
        linear-gradient(135deg, #777 50%, transparent 50%);

    background-position:
        calc(100% - 18px) 20px,
        calc(100% - 13px) 20px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.form-group select option {
    background: #111214;

    color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(217,180,95,.55);

    background:
        rgba(217,180,95,.025);

    box-shadow:
        0 0 0 3px rgba(217,180,95,.055);
}

.form-submit {
    width: fit-content;

    margin-top: 3px;
}


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

.footer {
    padding: 75px 0 30px;

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

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.015),
            transparent
        );
}

.footer-top {
    display: grid;

    grid-template-columns:
        1.5fr
        .7fr;

    gap: 80px;

    padding-bottom: 55px;

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

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 13px;
}

.footer-logo-img {
    width: 43px;
    height: 43px;

    object-fit: contain;
}

.footer-agency-name {
    font-family: 'Cinzel', serif;

    color: var(--white);

    font-size: .85rem;

    font-weight: 600;

    letter-spacing: .13em;
}

.footer-description {
    max-width: 430px;

    margin-top: 19px;

    color: var(--text-muted);

    font-size: .78rem;

    line-height: 1.8;
}

.footer-links {
    display: grid;

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

    gap: 35px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 7px;

    color: var(--gold);

    font-size: .68rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .12em;
}

.footer-column a {
    color: var(--text-muted);

    font-size: .76rem;

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

.footer-column a:hover {
    color: var(--gold-light);

    transform: translateX(3px);
}

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    color: #5f605d;

    font-size: .66rem;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 23px;
    }

    .about-grid {
        gap: 45px;
    }

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

    .contact-wrapper {
        gap: 45px;

        padding: 45px;
    }

}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 800px) {

    .nav-container {
        height: 76px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;

        top: 76px;
        left: 15px;
        right: 15px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        padding: 15px;

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

        border-radius: 18px;

        background:
            rgba(13,14,16,.97);

        backdrop-filter: blur(20px);

        box-shadow:
            0 25px 70px rgba(0,0,0,.5);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            opacity .3s ease,
            visibility .3s ease,
            transform .3s ease;
    }

    .nav-links.active {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }

    .nav-link {
        width: 100%;

        padding: 13px 15px;

        border-radius: 10px;
    }

    .nav-link:hover {
        background:
            rgba(217,180,95,.05);
    }

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

    .nav-cta {
        width: 100%;

        margin-top: 7px;
    }


    .hero {
        min-height: auto;

        padding:
            145px 0
            90px;
    }

    .hero-title {
        font-size:
            clamp(
                2.4rem,
                10vw,
                4rem
            );
    }

    .hero-stats {
        margin-top: 55px;
    }


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

    .about {
        padding: 90px 0;
    }

    .services,
    .work,
    .team,
    .contact {
        padding: 90px 0;
    }

    .about-card {
        padding: 35px;
    }

    .contact-wrapper {
        padding: 35px 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


/* =========================================================
   SMALL TABLET / LARGE PHONE
========================================================= */

@media (max-width: 650px) {

    .section-container,
    .nav-container,
    .footer-container,
    .hero-container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }

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

    .agency-name {
        font-size: .72rem;

        letter-spacing: .1em;
    }

    .logo-img {
        width: 38px;
        height: 38px;
    }

    .hero-logo {
        width: 68px;
        height: 68px;
    }

    .hero-logo-img {
        width: 51px;
        height: 51px;
    }

    .hero-cta {
        flex-direction: column;

        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;

        max-width: 320px;
    }

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

        border-bottom: none;
    }

    .stat-item {
        border-bottom: 1px solid var(--border);
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

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

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

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

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

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

    .section-title {
        font-size: 2.1rem;
    }

    .service-card {
        min-height: auto;

        padding: 30px;
    }

    .work-image {
        height: 230px;
    }

    .team-card {
        min-height: 390px;
    }

    .team-avatar.team-photo {
        width: 108px;
        height: 108px;
    }

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

    .contact-wrapper {
        border-radius: 23px;
    }

    .footer {
        padding-top: 55px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .agency-name {
        font-size: .64rem;

        letter-spacing: .07em;
    }

    .nav-container {
        height: 70px;
    }

    .nav-links {
        top: 70px;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-title {
        font-size: 2.25rem;

        line-height: 1.08;
    }

    .hero-subtitle {
        font-size: .92rem;
    }

    .hero-description {
        font-size: .78rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

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

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

    .about-card {
        padding: 28px;
    }

    .about-card h3 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 26px;
    }

    .work-card-content {
        padding: 24px;
    }

    .work-image {
        height: 210px;
    }

    .contact-wrapper {
        padding: 30px 20px;
    }

    .footer-links {
        gap: 20px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;
    }

}


/* =========================================================
   FOCUS STATES
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);

    outline-offset: 4px;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #08090b;
}

::-webkit-scrollbar-thumb {
    background: #292a2c;

    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}


/* =========================================================
   PREMIUM PROFILE PAGES
========================================================= */

/* Profile Page Base */
.profile-page {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
}

/* Profile Navbar */
.profile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 9, 11, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.profile-navbar.scrolled {
    background: rgba(8, 9, 11, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.profile-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.profile-nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.profile-nav-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.profile-nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.profile-nav-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.profile-nav-link:hover {
    color: var(--gold-light);
}

.profile-nav-cta {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-primary);
    background: var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--gold-shadow);
}

.profile-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.profile-mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.profile-mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.profile-mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.profile-mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Profile Hero Section */
.profile-hero {
    padding: 160px 2rem 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(217, 180, 95, 0.03) 0%, transparent 70%);
}

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

.profile-hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.profile-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.profile-role {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 500;
}

.profile-intro {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Profile Meta Row */
.profile-meta {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(217, 180, 94, 0.15);
}

.profile-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-meta-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profile-meta-value {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

/* Profile Hero Image */
.profile-hero-image {
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInScale 1s ease 0.3s forwards;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.profile-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow);
}

.profile-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.profile-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(8, 9, 11, 0.8), transparent);
    pointer-events: none;
}

.profile-image-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(8, 9, 11, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Profile Sections */
.profile-section {
    padding: 100px 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-section-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.profile-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-top: 1rem;
}

.profile-section-content {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.9;
}

.profile-section-content p {
    margin-bottom: 1.5rem;
}

/* Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.expertise-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.expertise-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

/* Work Philosophy Card */
.philosophy-card {
    background: rgba(217, 180, 95, 0.045);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: 'Cinzel', serif;
    font-size: 6rem;
    color: rgba(217, 180, 95, 0.15);
    line-height: 1;
}

.philosophy-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.profile-cta {
    padding: 120px 2rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(217, 180, 95, 0.05) 0%, transparent 70%);
    position: relative;
}

.profile-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.profile-cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.profile-cta-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.profile-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-cta-primary {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #11100c;
    background: var(--gold);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-cta-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--gold-shadow);
}

.profile-cta-secondary {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.profile-cta-secondary:hover {
    border-color: var(--border-gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* Profile Footer */
.profile-footer {
    background: var(--bg-soft);
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
}

.profile-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.profile-footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-footer-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.profile-footer-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.profile-footer-links {
    display: flex;
    gap: 2rem;
}

.profile-footer-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.profile-footer-link:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.profile-footer-copyright {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .profile-hero-image {
        order: -1;
    }

    .profile-image-wrapper img {
        height: 400px;
    }

    .profile-meta {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .profile-meta-item {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .profile-nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(217, 180, 94, 0.1);
    }

    .profile-nav-links.active {
        transform: translateY(0);
    }

    .profile-mobile-menu-btn {
        display: flex;
    }

    .profile-hero {
        padding: 120px 1.5rem 60px;
    }

    .profile-hero-container {
        gap: 40px;
    }

    .profile-name {
        font-size: 2.5rem;
    }

    .profile-image-wrapper img {
        height: 350px;
    }

    .profile-section {
        padding: 60px 1.5rem;
    }

    .profile-section-title {
        font-size: 1.5rem;
    }

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

    .philosophy-card {
        padding: 2rem;
    }

    .philosophy-text {
        font-size: 1.1rem;
    }

    .profile-cta {
        padding: 80px 1.5rem;
    }

    .profile-cta-title {
        font-size: 1.8rem;
    }

    .profile-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .profile-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-nav-container {
        padding: 1rem;
    }

    .profile-hero {
        padding: 100px 1rem 40px;
    }

    .profile-name {
        font-size: 2rem;
    }

    .profile-role {
        font-size: 1rem;
    }

    .profile-meta-item {
        flex: 1 1 100%;
        min-width: auto;
    }

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

    .profile-intro {
        font-size: 1rem;
    }

    .profile-image-wrapper img {
        height: 300px;
    }

    .profile-meta {
        gap: 1.5rem;
    }

    .profile-cta-primary,
    .profile-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .profile-hero-content,
    .profile-hero-image {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .profile-image-wrapper img,
    .expertise-card,
    .profile-cta-primary,
    .profile-cta-secondary {
        transition: none;
    }
}