:root {
    --bg: #080808;
    --bg-secondary: #0e0e0e;
    --card: #111111;
    --border: #242424;

    --text: #f5f5f5;
    --muted: #888888;
    --gold: #d6a84f;
    --gold-light: #f0c86b;
}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font: inherit;
}


/* =========================
   GLOBAL
========================= */

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

section {
    padding: 120px 0;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #888;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    max-width: 800px;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar a {
    font-size: 14px;
    color: #aaa;
    transition: 0.3s ease;
}

.navbar a:hover {
    color: #fff;
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
}


/* =========================
   PREMIUM HERO
========================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 140px;

    background:
        radial-gradient(circle at 85% 25%,
            rgba(214, 168, 79, 0.12),
            transparent 30%),
        var(--bg);
}

.hero::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    left: 7%;
    top: 0;
    background: rgba(255, 255, 255, 0.06);
}

.hero::after {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    right: -150px;
    top: 20%;

    border: 1px solid rgba(214, 168, 79, 0.15);
    border-radius: 50%;
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #888;
    margin-bottom: 30px;
}

.hero-label::before {
    content: "";
    width: 35px;
    height: 1px;
    background: #888;
}

.hero h1 {
    font-size: clamp(65px, 10vw, 140px);
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: -7px;
    max-width: 950px;
    margin-bottom: 45px;
}

.hero-description {
    max-width: 650px;
    color: #888;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #fff;
    transition: 0.3s ease;
}

.btn:hover {
    background: transparent;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}


/* =========================
   ABOUT
========================= */

.about {
    border-top: 1px solid #1c1c1c;
}

.about-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 70px;
}

.about-heading h2 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    max-width: 700px;
}

.about-image {
    width: 260px;
    height: 260px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.about-text {
    color: #999;
    font-size: 18px;
}

.about-text p {
    margin-bottom: 25px;
}

.philosophy {
    border-left: 1px solid #333;
    padding-left: 35px;
}

.philosophy span {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.philosophy blockquote {
    font-size: 28px;
    line-height: 1.4;
}


/* =========================
   SERVICES
========================= */

.services {
    background: #0d0d0d;
}

.services-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #292929;
    border-left: 1px solid #292929;
}

.service-card {
    padding: 40px;
    min-height: 400px;
    border-right: 1px solid #292929;
    border-bottom: 1px solid #292929;
    transition: 0.3s ease;
}

.service-card:hover {
    background: #111;
}

.service-number {
    font-size: 12px;
    color: #666;
}

.service-card h3 {
    font-size: 25px;
    line-height: 1.2;
    margin: 45px 0 30px;
}

.service-card li {
    color: #777;
    font-size: 14px;
    margin-bottom: 9px;
}


/* =========================
   EXPERIENCE
========================= */

.experience-list {
    margin-top: 70px;
}

.experience-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 50px;
    padding: 50px 0;
    border-top: 1px solid #292929;
}

.experience-number {
    color: #555;
    font-size: 14px;
}

.experience-company {
    color: #777;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.experience-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.experience-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.experience-content li {
    padding: 8px 14px;
    border: 1px solid #292929;
    color: #888;
    font-size: 13px;
}


/* =========================
   WORK
========================= */

.work {
    background: #0d0d0d;
}

.work-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.work-card {
    border: 1px solid #292929;
    overflow: hidden;
    transition: 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
}

.work-image {
    height: 300px;
    background: #151515;
}

.work-info {
    padding: 25px;
}

.work-info p {
    color: #666;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.work-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.work-info a {
    font-size: 13px;
    color: #aaa;
}


/* =========================
   CONTACT
========================= */

.contact {
    text-align: center;
    padding: 180px 0;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: clamp(50px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: -4px;
    margin-bottom: 30px;
}

.contact p:not(.section-label) {
    color: #888;
    margin-bottom: 35px;
}


/* =========================
   FOOTER
========================= */

.footer {
    border-top: 1px solid #222;
    padding: 30px 0;
    color: #666;
    font-size: 13px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a:hover {
    color: #fff;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .navbar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 100px;
    }

    .about-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
        margin-bottom: 50px;
    }

    .about-image {
        width: 180px;
        height: 180px;
        align-self: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    section {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .experience-content h3 {
        font-size: 25px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 55px;
        letter-spacing: -2px;
    }

    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 900px) {

    .navbar.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 5%;
        width: 90%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px;
        background: #111;
        border: 1px solid #292929;
    }

    .navbar.active a {
        width: 100%;
        padding: 15px 5px;
        border-bottom: 1px solid #222;
    }

    .navbar.active a:last-child {
        border-bottom: none;
    }
}


/* ACTIVE NAV LINK */

.navbar a.active {
    color: #fff;
}

/* =========================
   HERO BUTTONS
========================= */

.btn {
    min-width: 150px;
    padding: 16px 25px;
    border: 1px solid var(--gold);
    border-radius: 2px;

    background: var(--gold);
    color: #080808;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #080808;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #080808;
}

@media (max-width: 600px) {

    .hero {
        padding-top: 120px;
    }

    .hero::before {
        left: 5%;
    }

    .hero h1 {
        font-size: clamp(55px, 16vw, 80px);
        letter-spacing: -4px;
    }

    .hero-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}

/* =========================
   SERVICE CARD EFFECTS
========================= */

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    top: 0;
    left: 0;
    background: #fff;
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover .service-number {
    color: #fff;
}

.service-card h3 {
    transition: transform 0.4s ease;
}

.service-card:hover h3 {
    transform: translateX(5px);
}

.service-card li {
    transition: color 0.3s ease;
}

.service-card:hover li {
    color: #aaa;
}

/* =========================
   EXPERIENCE TIMELINE
========================= */

.experience-item {
    position: relative;
    transition: padding-left 0.4s ease;
}

.experience-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.5s ease;
}

.experience-item:hover::before {
    width: 100%;
}

.experience-item:hover {
    padding-left: 15px;
}

.experience-number {
    transition: color 0.3s ease;
}

.experience-item:hover .experience-number {
    color: #fff;
}

/* =========================
   WORK CARD
========================= */

.work-card {
    position: relative;
}

.work-image {
    position: relative;
    overflow: hidden;
}

.work-image::after {
    content: "VIEW PROJECT";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .work-image::after {
    opacity: 1;
}

.work-card:hover {
    border-color: #444;
    transform: translateY(-8px);
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.logo {
    color: var(--text);
}


.section-label,
.hero-label {
    color: var(--gold);
}

.hero-label::before {
    background: var(--gold);
}

.service-number {
    color: var(--gold);
}

.experience-company {
    color: var(--gold);
}

.work-info p {
    color: var(--gold);
}

.service-card:hover {
    background: #12100c;
}

.service-card::before {
    background: var(--gold);
}

.work-card:hover {
    border-color: rgba(214, 168, 79, 0.5);
}

.experience-item::before {
    background: var(--gold);
}

/* =========================
   ALPHADAO LOGO
========================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.logo-image {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-mark {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);
    color: var(--gold);

    font-size: 16px;
    font-weight: 800;

    position: relative;
}

.logo-mark::before {
    content: "";
    position: absolute;
    inset: 4px;

    border: 1px solid rgba(214, 168, 79, 0.25);
}

.logo-text {
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--text);
}

/* =========================
   HERO LOCATION
========================= */

.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;

    color: #666;
    font-size: 10px;
    letter-spacing: 2px;
}

.hero-location span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);

    box-shadow: 0 0 12px rgba(214, 168, 79, 0.6);
}

/* =========================
   HERO INDEX
========================= */

.hero-index {
    position: absolute;
    right: -80px;
    bottom: 20px;

    display: flex;
    align-items: center;
    gap: 15px;

    color: #444;
    font-size: 9px;
    letter-spacing: 2px;

    transform: rotate(90deg);
}

.hero-index span:first-child {
    color: var(--gold);
}

@media (max-width: 600px) {

    .logo-mark {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 14px;
    }

    .hero-index {
        display: none;
    }

    .hero-location {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
}

.about-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 50px;
    border: 1px solid var(--border);
}

/* =========================
   ABOUT POLISH
========================= */

.about-heading {
    max-width: 750px;
}

.about-heading .section-label {
    margin-bottom: 22px;
}

.about-text {
    max-width: 720px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.9;
}

.philosophy {
    align-self: start;
    padding-top: 5px;
}

.philosophy blockquote {
    color: #ddd;
    font-weight: 400;
}

.about-image {
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.about-image:hover {
    transform: scale(1.03);
    border-color: var(--gold);
}

@media (max-width: 600px) {

    .about-heading h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .about-intro {
        position: static;
        margin-bottom: 5px;
    }

    .about-text {
        padding-top: 0;
    }

    .philosophy {
        padding-left: 20px;
    }

    .philosophy blockquote {
        font-size: 21px;
    }

    .about-text p {
        font-size: 16px;
    }

    .philosophy {
        padding-left: 25px;
    }
}

/* =========================
   SERVICES POLISH
========================= */

.service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-number {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
}

.service-arrow {
    color: #555;
    font-size: 22px;
    transition: 0.3s ease;
}

.service-card:hover .service-arrow {
    color: var(--gold);
    transform: translate(4px, -4px);
}

.service-card h3 {
    max-width: 280px;
    font-size: 27px;
    line-height: 1.15;
    margin: 45px 0 30px;
}

.service-card ul {
    border-top: 1px solid #222;
    padding-top: 20px;
}

.service-card li {
    position: relative;
    padding-left: 15px;
}

.service-card li::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    left: 0;
    top: 9px;
}

@media (max-width: 600px) {

    .service-card {
        padding: 30px;
    }

    .service-card h3 {
        font-size: 24px;
        margin: 35px 0 25px;
    }
}

/* =========================
   EXPERIENCE POLISH
========================= */

.experience-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 50px;
    padding: 65px 0;
    border-top: 1px solid var(--border);
}

.experience-number {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1px;
    padding-top: 5px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.experience-company {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.experience-content h3 {
    max-width: 700px;
    font-size: clamp(25px, 4vw, 42px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.experience-type {
    padding: 7px 12px;
    border: 1px solid var(--border);
    color: #666;
    font-size: 9px;
    letter-spacing: 2px;
}

.experience-description {
    max-width: 650px;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.experience-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.experience-content li {
    padding: 8px 13px;
    border: 1px solid var(--border);
    color: #777;
    font-size: 12px;
    transition: 0.3s ease;
}

.experience-content li:hover {
    color: var(--gold);
    border-color: var(--gold);
}

@media (max-width: 600px) {

    .experience-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 45px 0;
    }

    .experience-header {
        flex-direction: column;
        gap: 15px;
    }

    .experience-type {
        align-self: flex-start;
    }

    .experience-content h3 {
        font-size: 27px;
    }

    .experience-description {
        font-size: 14px;
    }
}

/* =========================
   SELECTED WORK
========================= */

.work {
    background: var(--bg-secondary);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.work-card {
    border: 1px solid var(--border);
    background: var(--card);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: #444;
}

.work-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.work-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.08;
    filter: blur(30px);
}

.work-image span {
    position: relative;
    z-index: 1;
    color: #ddd;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
}

.work-depick {
    background:
        linear-gradient(135deg, #101010, #181818);
}

.work-bitana {
    background:
        linear-gradient(135deg, #0c0c0c, #151515);
}

.work-web3 {
    background:
        linear-gradient(135deg, #0a0a0a, #171717);
}

.work-info {
    padding: 28px;
}

.work-info p {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.work-info h3 {
    font-size: 26px;
    margin-bottom: 14px;
}

.work-info span {
    display: block;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.work-info a {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.work-info a:hover {
    color: var(--gold);
}

@media (max-width: 600px) {

    .work-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .work-image {
        height: 230px;
    }

    .work-info {
        padding: 24px;
    }

    .work-info h3 {
        font-size: 23px;
    }

}

/* =========================
   CONTACT
========================= */

.contact {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.contact::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gold);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(100px);
    right: -180px;
    bottom: -250px;
    pointer-events: none;
}

.contact-content {
    max-width: 850px;
    padding: 40px 0 100px;
}

.contact-content h2 {
    font-size: clamp(55px, 9vw, 110px);
    line-height: 0.95;
    letter-spacing: -4px;
    margin: 25px 0 35px;
}

.contact-description {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 35px;
}

.contact-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    color: #555;
    font-size: 10px;
    letter-spacing: 2px;
}

.contact .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 600px) {

    .contact-content {
        padding: 20px 0 70px;
    }

    .contact-content h2 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-bottom {
        flex-direction: column;
        line-height: 1.6;
    }

}

/* =========================
   FOOTER
========================= */

.footer {
    padding: 45px 0 30px;
    background: #050505;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-top p {
    color: #555;
    font-size: 12px;
    letter-spacing: 1px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    gap: 20px;
}

.footer-bottom p {
    color: #444;
    font-size: 11px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #777;
    font-size: 11px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

@media (max-width: 600px) {

    .footer-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 30px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .footer-links {
        gap: 20px;
    }

}

/* =========================
   FINAL POLISH
========================= */

html {
    scroll-padding-top: 90px;
}

body {
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: #080808;
}

/* Better section spacing */
.section-heading {
    margin-bottom: 10px;
}

.section-heading h2 {
    max-width: 850px;
    letter-spacing: -2px;
}

/* Better buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

/* Better cards */
.service-card,
.work-card,
.experience-item {
    will-change: transform;
}

/* Desktop spacing */
@media (min-width: 901px) {

    .hero-content {
        padding-top: 60px;
    }

    .services-grid,
    .work-grid {
        margin-top: 70px;
    }

    .experience-list {
        margin-top: 60px;
    }

}

/* Tablet */
@media (max-width: 900px) {

    section {
        padding: 100px 0;
    }

    .hero h1 {
        font-size: clamp(60px, 10vw, 90px);
    }

    .about-content {
        gap: 60px;
    }

}

/* Mobile */
@media (max-width: 600px) {

    .container {
        width: min(100% - 36px, 1200px);
    }

    section {
        padding: 80px 0;
    }

    .hero {
        min-height: 100svh;
    }

    .hero h1 {
        font-size: clamp(48px, 15vw, 68px);
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
        text-align: center;
    }

    .section-heading h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .services-grid {
        margin-top: 45px;
    }

    .work-grid {
        margin-top: 45px;
    }

}

/* =========================
   MOBILE MENU POLISH
========================= */

@media (max-width: 768px) {

    .menu-toggle {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 27px;
        line-height: 1;
    }

    .navbar {
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45);
    }

    .navbar a {
        transition: color 0.25s ease, transform 0.25s ease;
    }

    .navbar a:hover,
    .navbar a.active {
        transform: translateX(5px);
    }

}

v
/* =========================
   HERO ANIMATION
========================= */

.hero-content>* {
    opacity: 0;
    transform: translateY(25px);
    animation: heroReveal 0.8s ease forwards;
}

.hero-content .hero-label {
    animation-delay: 0.1s;
}

.hero-content .hero-location {
    animation-delay: 0.2s;
}

.hero-content h1 {
    animation-delay: 0.3s;
}

.hero-content .hero-description {
    animation-delay: 0.4s;
}

.hero-content .hero-buttons {
    animation-delay: 0.5s;
}

.hero-content .hero-index {
    animation-delay: 0.6s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   HOVER MOTION
========================= */

.service-card,
.work-card {
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    background: #141414;
}

.service-arrow {
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translate(4px, -4px);
    color: var(--gold);
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}

/* =========================
   DESKTOP CURSOR
========================= */

@media (min-width: 901px) {

    body {
        cursor: default;
    }

    a,
    button {
        cursor: pointer;
    }

    .service-card,
    .work-card {
        cursor: default;
    }

}

/* =========================
   SCROLL PROGRESS
========================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    z-index: 9999;
    transition: width 0.1s linear;
}

.work-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.work-overlay span {
    align-self: flex-end;
    color: #666;
    font-size: 11px;
    letter-spacing: 2px;
}

.work-overlay strong {
    font-size: 32px;
    letter-spacing: 3px;
    color: #ddd;
    transition: color 0.3s ease;
}

.work-card:hover .work-overlay strong {
    color: var(--gold);
}

/* =========================
   ABOUT POLISH
========================= */

.about-content {
    position: relative;
}

.about-intro {
    position: absolute;
    left: 0;
    top: -35px;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
}

.about-text {
    padding-top: 25px;
}

.about-text p:first-child {
    color: #ddd;
    font-size: 19px;
}

.philosophy {
    border-left: 1px solid var(--gold);
    padding-left: 30px;
}

.philosophy span {
    display: block;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.philosophy blockquote {
    font-size: 25px;
    line-height: 1.5;
}
/* =========================
   SERVICES POLISH
========================= */

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card h3 {
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--gold);
}

.service-number {
  transition: color 0.3s ease;
}

.service-card:hover .service-number {
  color: var(--gold-light);
}

.service-card ul {
  margin-top: 25px;
}

.service-card li {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card li:hover {
  transform: translateX(4px);
  color: #bbb;
}
@media (max-width: 600px) {

  .service-card {
    padding: 25px;
  }

  .service-card h3 {
    font-size: 23px;
  }

}
/* =========================
   EXPERIENCE POLISH
========================= */

.experience-item {
  transition: padding-left 0.4s ease;
}

.experience-item:hover {
  padding-left: 15px;
}

.experience-number {
  transition: color 0.3s ease;
}

.experience-item:hover .experience-number {
  color: var(--gold-light);
}

.experience-company {
  transition: letter-spacing 0.3s ease;
}

.experience-item:hover .experience-company {
  letter-spacing: 4px;
}

.experience-type {
  transition: color 0.3s ease, border-color 0.3s ease;
}

.experience-item:hover .experience-type {
  color: var(--gold);
  border-color: var(--gold);
}

.experience-content li {
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.experience-content li:hover {
  transform: translateY(-2px);
}
.experience-item:hover {
  padding-left: 0;
}
/* =========================
   HEADER POLISH
========================= */

.header {
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.header .container {
  height: 80px;
}

.logo {
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-image {
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}

.logo:hover .logo-image {
  transform: rotate(8deg) scale(1.05);
  border-color: var(--gold);
}

.logo-text {
  transition: color 0.3s ease;
}

.logo:hover .logo-text {
  color: var(--gold);
}

@media (max-width: 600px) {

  .header .container {
    height: 70px;
  }

  .logo-image {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 14px;
  }

}
/* =========================
   MOBILE FINAL FIXES
========================= */

@media (max-width: 600px) {

  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }

  /* Header */
  .header .container {
    width: calc(100% - 36px);
  }

  /* Hero */
  .hero-content {
    width: 100%;
  }

  .hero-label {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .hero-location {
    font-size: 9px;
  }

  .hero-index {
    margin-top: 45px;
  }

  /* About */
  .about-top {
    width: 100%;
  }

  .about-heading h2 {
    max-width: 100%;
  }

  .about-image {
    margin-top: 5px;
  }

  /* Services */
  .services-grid {
    width: 100%;
  }

  /* Experience */
  .experience-content {
    min-width: 0;
  }

  .experience-content h3 {
    word-break: normal;
  }

  /* Work */
  .work-grid {
    width: 100%;
  }

  .work-card {
    min-width: 0;
  }

  /* Contact */
  .contact-content h2 {
    max-width: 100%;
  }

}
/* =========================
   DESKTOP FINAL FIXES
========================= */

@media (min-width: 901px) {

  .container {
    width: min(1200px, 90%);
  }

  .hero-content {
    max-width: 900px;
  }

  .about-heading {
    flex: 1;
  }

  .about-image {
    margin-right: 20px;
  }

  .services-grid {
    align-items: stretch;
  }

  .service-card {
    min-height: 100%;
  }

  .work-card {
    min-height: 100%;
  }

  .contact-content {
    position: relative;
    z-index: 1;
  }

}
/* =========================
   CV SECTION
========================= */

.cv-section {
  padding: 80px 0;
}

.cv-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 55px;
  border: 1px solid var(--border);
  background: var(--card);
}

.cv-box h2 {
  font-size: clamp(35px, 5vw, 55px);
  line-height: 1;
  margin: 15px 0 20px;
}

.cv-box p:not(.section-label) {
  max-width: 600px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 600px) {

  .cv-section {
    padding: 60px 0;
  }

  .cv-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 30px;
  }

  .cv-box h2 {
    font-size: 40px;
  }

}
/* =========================
   CONTACT FORM
========================= */

.contact-form {
  max-width: 850px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.form-group label {
  color: #999;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.contact-form .btn {
  margin-top: 10px;
}

@media (max-width: 600px) {

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    margin-top: 10px;
  }

}
.form-group select {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}

.form-group select:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: #111;
  color: #fff;
}
.hidden-field {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}   
.work-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.work-depick {
  height: 280px !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden !important;
}

.work-depick img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 !important;
}
.work-bitana {
  height: 280px !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden !important;
}

.work-bitana img {
  width: 107% !important;
  height: 105% !important;
  max-width: none !important;
  object-fit: cover !important;
  transform: translate(-2.5%, -2.5%);
}
.work-web3 {
  height: 280px !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden !important;
}

.work-web3 img {
  display: block !important;
  width: 95% !important;
  height: 95% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 !important;
}