:root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dark: #8a6a1e;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --white: #f5f0e8;
    --text-muted: #888880;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

.cursor,
.cursor-ring {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--gold);
    mix-blend-mode: normal;
    opacity: 0.6;
    z-index: 9998;
}

@media (hover: none) {
    .cursor,
    .cursor-ring {
        display: none;
    }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 600;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.85);
    animation: slideDown 1s ease both;
}

.nav-logo {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: var(--gold);
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    z-index: 550;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 70% 50%,
            rgba(201, 168, 76, 0.08) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 20% 80%,
            rgba(201, 168, 76, 0.05) 0%,
            transparent 50%
        );
}

.hero-lines {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(201, 168, 76, 0.03) 80px,
        rgba(201, 168, 76, 0.03) 81px
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s both;
}

.hero-tag::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-name {
    font-family: "Playfair Display", serif;
    font-size: clamp(52px, 10vw, 96px);
    line-height: 1;
    color: var(--white);
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s both;
}

.hero-name em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(11px, 2vw, 15px);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s both;
}
/* ===== LOADER ===== */
#siteLoader {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #f5f0e8;
    letter-spacing: 2px;
}

.loader-logo em {
    color: #c9a84c;
    font-style: italic;
}

/* line animation */
.loader-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, #c9a84c, transparent);
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: "";
    position: absolute;
    left: -40%;
    top: 0;
    width: 40%;
    height: 100%;
    background: #c9a84c;
    animation: loadingMove 1.2s linear infinite;
}

@keyframes loadingMove {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* hide loader */
#siteLoader.hide {
    opacity: 0;
    visibility: hidden;
}
.hero-desc {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.6);
    max-width: 480px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s ease 1.1s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s ease 1.3s both;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 15px 36px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.btn-primary:hover::after {
    transform: translateX(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
}

.hero-stats {
    position: absolute;
    right: 60px;
    bottom: 80px;
    display: flex;
    gap: 48px;
    opacity: 0;
    animation: fadeUp 0.9s ease 1.5s both;
}

.stat {
    text-align: right;
}

.stat-num {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.9s ease 2s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}

/* SECTIONS */
section {
    padding: 100px 60px;
    position: relative;
}

.section-label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::after {
    content: "";
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.1;
    margin-bottom: 56px;
}

/* ABOUT */
.about {
    background: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-frame {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    transform: translate(16px, 16px);
}

.about-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-img {
    overflow: hidden;
    border-radius: 6px; /* optional */
}

.about-img img,
.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* face upar hoy to better */
    transition: transform 0.4s ease;
}

.about-img:hover img {
    transform: scale(1.05); /* hover zoom effect */
}

.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}

.video-modal video {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.toast-success {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #4CAF50;
    color: #fff;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 9999;
    animation: fadeInOut 4s forwards;
}

@keyframes fadeInOut {
    0% {opacity: 0; transform: translateY(20px);}
    10% {opacity: 1; transform: translateY(0);}
    90% {opacity: 1;}
    100% {opacity: 0;}
}

.about-img-inner {
    font-family: "Playfair Display", serif;
    font-size: 120px;
    color: rgba(201, 168, 76, 0.15);
    font-style: italic;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.badge-num {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    color: var(--black);
    line-height: 1;
}

.badge-text {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.7);
    text-align: center;
    margin-top: 4px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.65);
    margin-bottom: 20px;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.skill-pill {
    padding: 8px 18px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: all 0.3s;
    cursor: default;
}

.skill-pill:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}

/* SERVICES */
.services {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    background: var(--dark);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: default;
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--dark2);
}

.service-num {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    color: rgba(201, 168, 76, 0.1);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
    transition: color 0.4s;
}

.service-card:hover .service-num {
    color: rgba(201, 168, 76, 0.2);
}

.service-icon {
    font-size: 26px;
    margin-bottom: 20px;
}

.service-title {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    margin-bottom: 14px;
    color: var(--white);
}

.service-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* STATS BAND */
.stats-section {
    background: var(--gold);
    padding: 72px 60px;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.stat-block {
    text-align: center;
    padding: 36px 16px;
    background: var(--gold);
    border-right: 1px solid rgba(10, 10, 10, 0.15);
}

.stat-block:last-child {
    border-right: none;
}

.stat-block-num {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 5vw, 56px);
    color: var(--black);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-block-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.6);
}

/* PORTFOLIO */
.portfolio {
    background: var(--dark);
}

.portfolio-filter {
    display: flex;
    margin-bottom: 44px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
}

.filter-btn {
    padding: 11px 24px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s;
    border-right: 1px solid rgba(201, 168, 76, 0.2);
    white-space: nowrap;
}

.filter-btn:last-child {
    border-right: none;
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark2);
    min-height: 260px;
}

.portfolio-item:first-child {
    grid-row: span 2;
}

.portfolio-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item:hover .portfolio-bg {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    margin-bottom: 6px;
}

.portfolio-info span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.p1 {
    background: linear-gradient(135deg, #1a0a2e, #2d1b4e);
}

.p2 {
    background: linear-gradient(135deg, #0a1a0a, #1b3a1b);
}

.p3 {
    background: linear-gradient(135deg, #2e0a0a, #4e1b1b);
}

.p4 {
    background: linear-gradient(135deg, #0a1a2e, #1b2e4e);
}

.p5 {
    background: linear-gradient(135deg, #2e1a0a, #4e301b);
}

.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border: 2px solid rgba(201, 168, 76, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
}

.portfolio-item:hover .reel-play {
    opacity: 1;
}

.reel-play::after {
    content: "";
    border-left: 14px solid var(--gold);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
}

/* PROCESS */
.process {
    background: var(--dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(201, 168, 76, 0.3) 20%,
        rgba(201, 168, 76, 0.3) 80%,
        transparent
    );
}

.process-step {
    padding: 0 28px 0 0;
    position: relative;
}

.step-dot {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: var(--dark);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.process-step:hover .step-dot {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.step-num {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    color: var(--gold);
}

.step-title {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.step-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* TESTIMONIALS */
.testimonials {
    background: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.testimonial-card {
    background: var(--dark);
    padding: 44px;
    transition: background 0.3s;
}

.testimonial-card:hover {
    background: var(--dark2);
}

.quote-mark {
    font-family: "Playfair Display", serif;
    font-size: 72px;
    color: rgba(201, 168, 76, 0.15);
    line-height: 0.8;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 15px;
    color: var(--black);
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2px;
}

.author-handle {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
}

/* CONTACT */
.contact {
    background: var(--black);
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 36px;
}

.contact-links {
    display: flex;
    flex-direction: column;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-link:hover {
    color: var(--gold);
}

.link-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.contact-link:hover .link-icon {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.link-text {
    font-size: 14px;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group {
    margin-bottom: 2px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--dark);
    border: none;
    padding: 18px 22px;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    outline: none;
    transition: background 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    background: var(--dark2);
}

.form-textarea {
    height: 130px;
    resize: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    letter-spacing: 1px;
}

.form-submit {
    background: var(--gold);
    border: none;
    padding: 18px;
    color: var(--black);
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 2px;
    width: 100%;
}

.form-submit:hover {
    background: var(--gold-light);
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 36px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

/* ANIMATIONS */
@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ===== TABLET 1024px ===== */
@media (max-width: 1024px) {
    nav {
        padding: 18px 36px;
    }

    section {
        padding: 80px 36px;
    }

    .hero {
        padding: 120px 36px 80px;
    }

    .hero-stats {
        right: 36px;
        bottom: 60px;
        gap: 32px;
    }

    .scroll-indicator {
        left: 36px;
    }

    .about-grid {
        gap: 48px;
    }

    .about-visual {
        height: 420px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section {
        padding: 60px 36px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item:first-child {
        grid-row: span 1;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }

    .process-steps::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        gap: 48px;
    }

    footer {
        padding: 30px 36px;
    }
}

/* ===== MOBILE 768px ===== */
@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero {
        padding: 110px 20px 60px;
        min-height: 100svh;
        flex-direction: column;
        justify-content: center;
    }

    .hero-lines {
        display: none;
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 36px;
    }

    .hero-actions {
        gap: 16px;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 11px;
    }

    .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 48px;
        gap: 24px;
        justify-content: flex-start;
        flex-wrap: wrap;
        opacity: 1;
        animation: none;
    }

    .stat {
        text-align: left;
    }

    .scroll-indicator {
        display: none;
    }

    section {
        padding: 64px 20px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        height: 300px;
        margin-bottom: 20px;
    }

    .about-img-inner {
        font-size: 80px;
    }

    .about-badge {
        width: 90px;
        height: 90px;
        bottom: -14px;
        right: -14px;
    }

    .badge-num {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 36px 24px;
    }

    .stats-section {
        padding: 48px 20px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-block {
        border-right: 1px solid rgba(10, 10, 10, 0.15);
        border-bottom: 1px solid rgba(10, 10, 10, 0.15);
        padding: 28px 12px;
    }

    .stat-block:nth-child(2),
    .stat-block:nth-child(4) {
        border-right: none;
    }

    .stat-block:nth-child(3),
    .stat-block:nth-child(4) {
        border-bottom: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item:first-child {
        grid-row: span 1;
    }

    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(10, 10, 10, 0.85) 0%,
            transparent 60%
        );
    }

    .reel-play {
        opacity: 1;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .process-step {
        padding: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    footer {
        padding: 24px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ===== SMALL 480px ===== */
@media (max-width: 480px) {
    .hero {
        padding: 96px 16px 48px;
    }

    section {
        padding: 52px 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .about-visual {
        height: 240px;
    }

    .about-img-inner {
        font-size: 60px;
    }

    .service-card {
        padding: 28px 18px;
    }

    .testimonial-card {
        padding: 24px 16px;
    }

    .mobile-nav a {
        font-size: 28px;
    }

    footer {
        padding: 20px 16px;
    }

    .hero-stats {
        gap: 20px;
    }
}
