
/* =========================================================
   BRAVE MULTIMEDIA, INC.
   MAIN STYLESHEET
   Light • Premium • Cinematic • Interactive
========================================================= */

/* =========================================================
   1. DESIGN SYSTEM
========================================================= */

:root {
    --cream: #faf8f3;
    --cream-dark: #f1ece2;
    --cream-deep: #e9e0d2;
    --warm-white: #fffdf9;
    --white: #ffffff;

    --gold: #fdb040;
    --gold-dark: #d99024;
    --gold-soft: rgba(253, 176, 64, 0.12);

    --charcoal: #292722;
    --dark: #201f1c;
    --black: #151412;

    --gray: #6f6b63;
    --gray-light: #a29d94;

    --border: #e7e1d7;
    --border-dark: rgba(41, 39, 34, 0.14);

    --shadow-soft: 0 18px 45px rgba(38, 33, 25, 0.08);
    --shadow: 0 25px 70px rgba(38, 33, 25, 0.12);
    --shadow-hover: 0 30px 80px rgba(38, 33, 25, 0.16);
}

/* =========================================================
   2. RESET / BASE
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #171612;
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

button {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1500px, 94%);
    margin: 0 auto;
}

/* =========================================================
   3. HEADER
========================================================= */

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

    background: rgba(255, 253, 249, 0.92);
    border-bottom: 1px solid rgba(231, 225, 215, 0.85);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-container {
    width: min(1500px, 94%);
    min-height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.logo-link img {
    width: 70px;
    transition: transform 0.3s ease;
}

.logo-link span {
    color: var(--charcoal);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.logo-link:hover img {
    transform: scale(1.04);
}

.nav-menu {
    list-style: none;

    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu a {
    position: relative;

    padding: 30px 0;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 21px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.25s ease;
}

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

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

.mobile-menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    cursor: pointer;

    gap: 5px;
    flex-direction: column;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;

    background: var(--charcoal);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

/* =========================================================
   4. PAGE SWITCHING
========================================================= */

.page-section {
    display: none;

    position: relative;
    overflow: hidden;
}

.page-section.active-section {
    display: block;
}

/* Shared decorative background */

.page-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(253, 176, 64, 0.12) 0%,
            rgba(253, 176, 64, 0.045) 34%,
            transparent 70%
        );

    pointer-events: none;
    z-index: 0;
}

.page-section::after {
    content: "B";

    position: absolute;

    right: -90px;
    bottom: -190px;

    font-size: clamp(380px, 42vw, 700px);
    font-weight: 900;
    line-height: 0.8;

    color: rgba(253, 176, 64, 0.035);

    pointer-events: none;
    z-index: 0;
}

.page-section > * {
    position: relative;
    z-index: 1;
}

/* =========================================================
   5. HERO
========================================================= */

#home.active-section {
    min-height: calc(100vh - 82px);

    background:
        radial-gradient(
            circle at 74% 45%,
            rgba(253, 176, 64, 0.17),
            transparent 27%
        ),
        radial-gradient(
            circle at 12% 15%,
            rgba(253, 176, 64, 0.06),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #fffdf9 0%,
            #faf8f3 52%,
            #f2ece1 100%
        );
}

/* Hero decorative glow */

#home::before {
    width: 850px;
    height: 850px;

    top: -180px;
    right: -180px;

    background:
        radial-gradient(
            circle,
            rgba(253, 176, 64, 0.18) 0%,
            rgba(253, 176, 64, 0.055) 38%,
            transparent 70%
        );
}

#home::after {
    right: -120px;
    bottom: -230px;

    color: rgba(253, 176, 64, 0.035);
}

.hero-container {
    width: min(1500px, 100%);
    min-height: calc(100vh - 82px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 47% 53%;
    align-items: center;

    overflow: hidden;
}

.hero-content {
    padding: 70px 20px 70px 0;

    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    color: var(--gold-dark);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;

    margin-bottom: 22px;
}

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

    font-size: clamp(54px, 6.2vw, 94px);
    line-height: 0.98;

    letter-spacing: -4px;
    font-weight: 900;

    margin-bottom: 26px;
}

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

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

    color: #34312b;

    font-size: 17px;
    line-height: 1.65;

    margin-bottom: 34px;
}

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

.btn {
    min-height: 54px;

    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border: 1px solid transparent;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

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

.btn span {
    font-size: 20px;
    line-height: 0;
}

.btn:hover {
    transform: translateY(-3px);
}

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

    box-shadow: 0 10px 25px rgba(253, 176, 64, 0.18);
}

.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);

    box-shadow: 0 15px 35px rgba(217, 144, 36, 0.25);
}

.btn-outline-dark {
    border-color: #6f6b63;
    color: #171612;
    background: rgba(255, 255, 255, 0.35);
}

.btn-outline-dark:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.hero-visual {
    height: min(760px, calc(100vh - 130px));

    align-self: center;

    position: relative;
    overflow: hidden;

    clip-path: polygon(
        14% 0,
        100% 0,
        100% 100%,
        0 100%,
        0 15%
    );

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

.hero-visual::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.10),
            transparent 35%,
            rgba(253, 176, 64, 0.08)
        );

    pointer-events: none;
}

.hero-visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    transition:
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.5s ease;
}

.hero-visual:hover img {
    transform: scale(1.035);
    filter: saturate(1.05);
}

.hero-services {
    display: flex;
    align-items: stretch;

    margin-top: 58px;

    max-width: 730px;

    border-top: 1px solid #ddd5c7;
}

.hero-service {
    min-width: 0;
    flex: 1;

    padding: 20px 13px 0;

    text-align: center;

    border-right: 1px solid #e1dbd0;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.hero-service:first-child {
    padding-left: 0;
}

.hero-service:last-child {
    border-right: 0;
}

.hero-service:hover {
    transform: translateY(-4px);
}

.service-icon {
    color: var(--gold-dark);

    font-size: 25px;
    line-height: 1;

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

.hero-service:hover .service-icon {
    transform: scale(1.15);
    color: var(--gold);
}

.hero-service span:last-child {
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.7px;
}

/* =========================================================
   6. GENERAL SECTIONS
========================================================= */

section {
    padding: 110px 0;
}

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

.section-label {
    color: var(--gold-dark);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;

    margin-bottom: 13px;
}

.section-title {
    max-width: 900px;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;

    letter-spacing: -2.5px;
    font-weight: 850;
}

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

    color: var(--gray);

    font-size: 16px;
    line-height: 1.8;

    margin-top: 18px;
}

.section-soft {
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(253, 176, 64, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f1ece2,
            #faf8f3
        );
}

/* =========================================================
   7. ABOUT
========================================================= */

#about {
    min-height: calc(100vh - 82px);

    background:
        linear-gradient(
            90deg,
            rgba(255, 253, 249, 0.94) 0%,
            rgba(250, 248, 243, 0.82) 48%,
            rgba(250, 248, 243, 0.58) 100%
        ),
        url("../images/about/about-background.png") center center / cover no-repeat;
}

#about::before {
    left: -300px;
    top: 5%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 85px;
    align-items: start;
}

.about-content p {
    color: var(--gray);

    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 22px;
}

.about-highlight {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(253, 176, 64, 0.20),
            transparent 35%
        ),
        var(--charcoal);

    color: var(--white);

    padding: 55px;

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

.about-highlight::after {
    content: "BRAVE";

    position: absolute;
    right: -20px;
    bottom: -25px;

    font-size: 100px;
    font-weight: 900;

    color: rgba(255, 255, 255, 0.025);
}

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

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.about-highlight h3 {
    position: relative;
    z-index: 1;

    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -1.5px;

    margin: 18px 0 35px;
}

.difference-list {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.difference-list > div {
    padding-top: 18px;

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

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

.difference-list > div:hover {
    transform: translateY(-3px);
    border-color: rgba(253, 176, 64, 0.6);
}

.difference-list strong {
    font-size: 17px;
}

.difference-list p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
    line-height: 1.65;

    margin-top: 8px;
}

/* =========================================================
   8. SERVICES
========================================================= */

#services {
    min-height: calc(100vh - 82px);

    background:
        linear-gradient(
            90deg,
            rgba(241, 236, 226, 0.94) 0%,
            rgba(250, 248, 243, 0.82) 50%,
            rgba(250, 248, 243, 0.58) 100%
        ),
        url("../images/services/services-background.png") center center / cover no-repeat;
}

#services::before {
    top: -260px;
    right: -180px;
}

.services-grid {
    display: grid;

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

    gap: 22px;
}

.service-card {
    position: relative;
    overflow: hidden;

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 253, 249, 0.95)
        );

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

    box-shadow: 0 8px 25px rgba(38, 33, 25, 0.025);

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

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

    position: absolute;
    left: 0;
    top: 0;

    width: 4px;
    height: 0;

    background: var(--gold);

    transition: height 0.35s ease;
}

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

    position: absolute;

    width: 160px;
    height: 160px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background: rgba(253, 176, 64, 0.08);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

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

    border-color: rgba(253, 176, 64, 0.55);

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

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

.service-card:hover::after {
    transform: scale(1.8);
    background: rgba(253, 176, 64, 0.12);
}

.service-card-wide {
    grid-column: 1 / -1;
}

.service-number {
    display: block;

    color: var(--gold-dark);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 20px;
}

.service-card h3 {
    position: relative;
    z-index: 1;

    font-size: 27px;

    margin-bottom: 14px;
}

.service-card p {
    position: relative;
    z-index: 1;

    color: var(--gray);

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 22px;

    max-width: 720px;
}

.service-card ul {
    position: relative;
    z-index: 1;

    list-style: none;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px 20px;
}

.service-card li {
    color: #45413a;

    font-size: 13px;

    position: relative;

    padding-left: 16px;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.service-card li:hover {
    transform: translateX(4px);
    color: var(--gold-dark);
}

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

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gold);

    position: absolute;

    left: 0;
    top: 8px;
}

/* =========================================================
   9. TALENTS
========================================================= */

#talents {
    min-height: calc(100vh - 82px);

    background:
        linear-gradient(
            90deg,
            rgba(255, 253, 249, 0.94) 0%,
            rgba(250, 248, 243, 0.80) 50%,
            rgba(250, 248, 243, 0.55) 100%
        ),
        url("../images/talents/talents-background.png") center center / cover no-repeat;
}

#talents::before {
    right: -250px;
    top: -100px;
}

.talents-grid {
    display: grid;

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

    gap: 18px;
}

.talent-card {
    min-height: 320px;

    position: relative;
    overflow: hidden;

    padding: 30px;

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

    background:
        linear-gradient(
            160deg,
            rgba(255, 255, 255, 0.96),
            rgba(247, 242, 233, 0.95)
        );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    box-shadow: 0 10px 30px rgba(38, 33, 25, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

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

    position: absolute;

    width: 180px;
    height: 180px;

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

    border-radius: 50%;

    background: rgba(253, 176, 64, 0.09);

    transition: transform 0.4s ease;
}

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

    background: var(--white);

    border-color: rgba(253, 176, 64, 0.55);

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

.talent-card:hover::before {
    transform: scale(1.8);
}

.talent-card > span,
.talent-card h3,
.talent-card p {
    position: relative;
    z-index: 1;
}

.talent-card > span {
    color: var(--gold-dark);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: auto;
}

.talent-card h3 {
    font-size: 22px;
    line-height: 1.15;

    margin-bottom: 12px;
}

.talent-card p {
    color: var(--gray);

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

/* =========================================================
   10. PROJECT
========================================================= */

#projects {
    min-height: calc(100vh - 82px);

    background:
        linear-gradient(
            90deg,
            rgba(238, 232, 222, 0.92) 0%,
            rgba(250, 248, 243, 0.78) 50%,
            rgba(250, 248, 243, 0.52) 100%
        ),
        url("../images/projects/projects-background.png") center center / cover no-repeat;
}

.project-feature {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: var(--charcoal);
    color: var(--white);

    box-shadow: var(--shadow);

    overflow: hidden;
}

.project-image {
    min-height: 570px;

    position: relative;

    background: #151513;

    overflow: hidden;
}

.project-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(253, 176, 64, 0.10),
            transparent 40%
        );

    pointer-events: none;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.project-feature:hover .project-image img {
    transform: scale(1.04);
    filter: saturate(1.08);
}

.project-content {
    position: relative;
    overflow: hidden;

    padding: 65px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.project-content::after {
    content: "25";

    position: absolute;

    right: -20px;
    bottom: -45px;

    font-size: 190px;
    font-weight: 900;
    line-height: 1;

    color: rgba(253, 176, 64, 0.035);
}

.project-kicker,
.project-content h3,
.project-content h4,
.project-subtitle,
.project-date,
.project-content > p,
.project-content .btn {
    position: relative;
    z-index: 1;
}

.project-kicker {
    color: var(--gold);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;

    margin-bottom: 18px;
}

.project-content h3 {
    font-size: clamp(46px, 5vw, 74px);
    line-height: 0.95;

    letter-spacing: -3px;
}

.project-content h4 {
    color: var(--gold);

    font-size: clamp(30px, 3.5vw, 52px);
    line-height: 1;

    letter-spacing: -2px;

    margin: 8px 0 22px;
}

.project-subtitle {
    font-size: 17px;
    margin-bottom: 12px;
}

.project-date {
    color: var(--gold);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 25px;
}

.project-content > p:not(.project-kicker):not(.project-subtitle):not(.project-date) {
    color: rgba(255, 255, 255, 0.68);

    max-width: 550px;

    line-height: 1.8;

    margin-bottom: 30px;
}

/* =========================================================
   11. CONTACT
========================================================= */

#contact {
    min-height: calc(100vh - 82px);

    background:
        linear-gradient(
            90deg,
            rgba(250, 248, 243, 0.94) 0%,
            rgba(250, 248, 243, 0.80) 50%,
            rgba(238, 231, 220, 0.58) 100%
        ),
        url("../images/contact/contact-background.png") center center / cover no-repeat;
}

#contact::before {
    left: -250px;
    top: -160px;
}

.contact-heading {
    text-align: center;
}

.contact-heading .section-intro {
    margin-left: auto;
    margin-right: auto;
}

.contact-layout {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}

.contact-info {
    padding-top: 15px;
}

.contact-info h3 {
    font-size: 25px;
    letter-spacing: 0.5px;

    margin-bottom: 8px;
}

.contact-info > p {
    color: var(--gray);

    margin-bottom: 28px;
}

.contact-info > a {
    display: block;

    color: #34312b;

    margin-bottom: 10px;

    font-weight: 700;

    transition: color 0.2s ease;
}

.contact-info > a:hover,
.social-links a:hover,
.footer-socials a:hover,
.footer-bottom a:hover {
    color: var(--gold-dark);
}

.social-links {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;

    margin-top: 30px;
}

.social-links a {
    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.contact-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    padding: 42px;

    background: rgba(255, 253, 249, 0.86);

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

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

    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

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

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

    background: rgba(255, 255, 255, 0.80);

    padding: 15px 16px;

    outline: none;

    color: var(--charcoal);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 145px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    background: var(--white);

    box-shadow:
        0 0 0 3px rgba(253, 176, 64, 0.12);
}

.form-submit {
    border: 0;
    justify-self: start;
    cursor: pointer;
}

/* =========================================================
   12. FOOTER
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(253, 176, 64, 0.10),
            transparent 25%
        ),
        var(--charcoal);

    color: var(--white);

    padding-top: 5px;
}

.site-footer::before {
    content: "B";

    position: absolute;

    right: -80px;
    bottom: -180px;

    font-size: 600px;
    font-weight: 900;
    line-height: 0.8;

    color: rgba(253, 176, 64, 0.035);

    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 5px;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand-header img {
    width: 105px;
    margin: 0;
}

.footer-brand-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 5px;
}

.footer-brand-header p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    margin: 0;
}

.footer-links,
.footer-socials {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-links a,
.footer-socials a {
    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover,
.footer-socials a:hover {
    transform: translateX(3px);
}

.footer-bottom {
    position: relative;
    z-index: 1;

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

    padding-top: 5px;
    padding-bottom: 5px;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.65);

    transition: color 0.2s ease;
}

/* =========================================================
   13. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1200px) {

    .nav-menu {
        gap: 22px;
    }

    .hero-content h1 {
        font-size: clamp(52px, 6vw, 78px);
    }

    .hero-services {
        margin-top: 40px;
    }

    .talents-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =========================================================
   14. RESPONSIVE — MOBILE NAV + TABLET
========================================================= */

@media (max-width: 900px) {

    .nav-menu {
        position: absolute;

        top: 82px;
        left: 3%;
        right: 3%;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px 25px 20px;

        background: rgba(255, 253, 249, 0.98);

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

        box-shadow: var(--shadow);

        backdrop-filter: blur(15px);
    }

    .nav-menu.mobile-open {
        display: flex;
    }

    .nav-menu a {
        display: block;

        padding: 14px 0;
    }

    .nav-menu a::after {
        bottom: 7px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

        min-height: auto;
    }

    .hero-content {
        padding: 85px 0 40px;
    }

    .hero-visual {
        width: 100%;
        height: 540px;

        clip-path: polygon(
            10% 0,
            100% 0,
            100% 100%,
            0 100%,
            0 10%
        );
    }

    .hero-services {
        max-width: none;
    }

    .about-grid,
    .project-feature,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .service-card-wide {
        grid-column: auto;
    }

    .project-image {
        min-height: 420px;
    }

    .contact-layout {
        gap: 45px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

}

/* =========================================================
   15. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    section {
        padding: 75px 0;
    }

    .container,
    .nav-container,
    .hero-container {
        width: 90%;
    }

    .nav-container {
        min-height: 70px;
    }

    .logo-link {
        gap: 10px;
    }

    .logo-link img {
        width: 58px;
    }

    .logo-link span {
        font-size: 13px;
    }

    .nav-menu {
        top: 70px;
    }

    .hero-content {
        padding-top: 65px;
    }

    .hero-content h1 {
        font-size: clamp(45px, 14vw, 68px);

        letter-spacing: -2.5px;
    }

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

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

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-services {
        display: grid;

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

    .hero-service {
        border-bottom: 1px solid #e1dbd0;
    }

    .hero-service:last-child {
        grid-column: 1 / -1;

        border-right: 0;
    }

    .hero-visual {
        height: 430px;
    }

    .difference-list {
        grid-template-columns: 1fr;
    }

    .about-highlight {
        padding: 35px;
    }

    .service-card {
        padding: 30px;
    }

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

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

    .talent-card {
        min-height: 220px;
    }

    .project-image {
        min-height: 300px;
    }

    .project-content {
        padding: 40px 30px;
    }

    .contact-form {
        grid-template-columns: 1fr;

        padding: 30px;
    }

    .form-group.full-width {
        grid-column: auto;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

}

/* =========================================================
   16. RESPONSIVE — SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .container,
    .nav-container,
    .hero-container {
        width: 90%;
    }

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

    .hero-service span:last-child {
        font-size: 9px;
    }

    .contact-form {
        padding: 24px;
    }

}

/* =========================================================
   17. REDUCED MOTION
========================================================= */

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

}
