/* ============================================
   MICHEL BAAKLINY — V2
   Dark Editorial Luxury
   Syne + Plus Jakarta Sans
   ============================================ */

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #08080c;
    --bg-surface: #0d0d13;
    --bg-elevated: #131319;
    --text: #ece8e1;
    --text-dim: #7a7586;
    --text-muted: #3d3a47;
    --accent: #2d5bf0;
    --accent-light: #5b82f7;
    --accent-dim: rgba(45, 91, 240, 0.12);
    --accent-glow: rgba(45, 91, 240, 0.08);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --font-display: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}
@media (max-width: 768px) {
    body { cursor: auto; }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button {
    background: none;
    border: none;
    color: inherit;
    cursor: none;
    font-family: inherit;
}
@media (max-width: 768px) {
    a, button { cursor: auto; }
}

::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 0; }

/* ---- NOISE OVERLAY ---- */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--accent);
    z-index: 1001;
    transform-origin: left;
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* ============================================
   LOADER
   ============================================ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: opacity 0.8s var(--ease-expo), visibility 0.8s;
}
#loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-counter {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(56px, 10vw, 120px);
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.04em;
}
.loader-bar {
    width: clamp(120px, 20vw, 240px);
    height: 2px;
    background: var(--border);
    overflow: hidden;
    border-radius: 1px;
}
.loader-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.1s linear;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor { display: none; }
@media (min-width: 769px) {
    .cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9998;
        pointer-events: none;
        mix-blend-mode: difference;
    }
    .cursor-dot {
        width: 8px;
        height: 8px;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        transition: transform 0.15s var(--ease-quart);
    }
    .cursor-ring {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        transition: width 0.4s var(--ease-expo),
                    height 0.4s var(--ease-expo),
                    border-color 0.3s;
    }
    body.cursor-hover .cursor-ring {
        width: 64px;
        height: 64px;
        border-color: var(--accent-light);
    }
    body.cursor-hover .cursor-dot {
        transform: translate(-50%, -50%) scale(2);
        background: var(--accent-light);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px clamp(24px, 5vw, 80px);
    transition: background 0.5s, padding 0.5s var(--ease-quart), border-color 0.5s;
    border-bottom: 1px solid transparent;
}
#nav.scrolled {
    background: rgba(8, 8, 12, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom-color: var(--border);
}
.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.03em;
    color: var(--text);
}
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s var(--ease-expo);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 24px;
    border: 1px solid var(--border-hover);
    transition: all 0.4s var(--ease-expo);
}
.nav-cta:hover {
    background: var(--text);
    border-color: var(--text);
    color: var(--bg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    padding: 8px;
    z-index: 101;
}
.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.5s var(--ease-expo), opacity 0.3s;
    transform-origin: center;
}
.nav-toggle.active span:first-child {
    transform: translateY(4.25px) rotate(45deg);
}
.nav-toggle.active span:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px clamp(24px, 5vw, 80px) 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--ease-expo), visibility 0.6s;
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
}
.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(36px, 9vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-muted);
    transition: color 0.3s, transform 0.4s var(--ease-expo);
    padding: 8px 0;
    display: block;
}
.mobile-link:hover {
    color: var(--text);
    transform: translateX(12px);
}
.mobile-cta {
    display: inline-block;
    margin-top: 48px;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border: 1px solid var(--border-hover);
    color: var(--text);
    align-self: flex-start;
    transition: background 0.3s, color 0.3s;
}
.mobile-cta:hover {
    background: var(--text);
    color: var(--bg);
}

/* ============================================
   HERO
   ============================================ */
#hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 140px clamp(24px, 5vw, 80px) 80px;
    position: relative;
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
    gap: 40px;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    opacity: 0;
}
.label-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}
.label-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-light);
}
.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 32px;
}
.hero-title .title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 4px;
}
.hero-title .title-line > span,
.hero-title .title-line > em {
    display: inline-block;
    transform: translateY(115%);
    will-change: transform;
}
.hero-title em {
    font-style: normal;
    color: var(--accent-light);
}
.hero-sub {
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 500px;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(24px);
}
.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s var(--ease-expo);
    will-change: transform;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s var(--ease-expo);
}
.btn-primary:hover::before { transform: scaleY(1); }
.btn-primary:hover { color: var(--bg); }
.btn-primary span,
.btn-primary svg { position: relative; z-index: 1; }

.btn-outline {
    border: 1px solid var(--border-hover);
    color: var(--text);
}
.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s var(--ease-expo);
}
.btn-outline:hover::before { transform: scaleY(1); }
.btn-outline:hover { color: var(--bg); border-color: var(--text); }
.btn-outline span { position: relative; z-index: 1; }

.btn-lg {
    font-size: 16px;
    padding: 18px 40px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-photo-wrap { position: relative; }
.hero-photo-frame {
    width: clamp(280px, 24vw, 400px);
    height: clamp(360px, 30vw, 520px);
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: scale(0.92);
    will-change: transform, opacity;
    background: var(--bg-elevated);
}
.hero-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-hover);
    pointer-events: none;
}
.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(15%) contrast(1.05) brightness(0.95);
    transition: filter 0.6s;
}
.hero-photo-frame:hover img {
    filter: grayscale(0%) contrast(1) brightness(1);
}
.hero-experience {
    position: absolute;
    bottom: -20px;
    right: -48px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    opacity: 0;
}
.exp-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(56px, 5.5vw, 88px);
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.05em;
}
.exp-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: clamp(24px, 5vw, 80px);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
}
.scroll-line {
    width: 48px;
    height: 1px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

@media (max-width: 768px) {
    #hero {
        grid-template-columns: 1fr;
        padding: 110px clamp(24px, 5vw, 80px) 60px;
        min-height: auto;
        gap: 48px;
    }
    .hero-visual { order: -1; justify-content: flex-start; }
    .hero-photo-frame { width: 200px; height: 260px; }
    .hero-experience { right: -24px; bottom: -12px; }
    .exp-number { font-size: 44px; }
    .hero-scroll-indicator { display: none; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   BRAND MARQUEE
   ============================================ */
.marquee {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg-surface);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marqueeMove 35s linear infinite;
    width: max-content;
    will-change: transform;
}
.marquee:hover .marquee-track {
    animation-duration: 60s;
}
.marquee-track > span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    white-space: nowrap;
    flex-shrink: 0;
}
.marquee-sep {
    width: 4px !important;
    height: 4px !important;
    background: var(--accent) !important;
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes marqueeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
    padding: clamp(80px, 10vw, 160px) 0;
    position: relative;
}
.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: clamp(40px, 5vw, 64px);
    opacity: 0;
    transform: translateY(16px);
}
.section-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--bg-elevated);
    -webkit-text-stroke: 1px var(--border-hover);
    user-select: none;
}
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: clamp(48px, 7vw, 140px);
    margin-bottom: clamp(64px, 8vw, 120px);
}
.about-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 2.8vw, 44px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}
.about-title .word { overflow: hidden; }

.about-body p {
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.85;
    color: var(--text-dim);
    margin-bottom: 20px;
}
.about-body strong {
    color: var(--text);
    font-weight: 600;
}

/* Stats */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 8px;
}
.stat {
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}
.stat:first-child { padding-top: 0; }
.stat:last-child { border-bottom: none; }
.stat-number-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}
.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(44px, 4.5vw, 68px);
    line-height: 1;
    letter-spacing: -0.04em;
}
.stat-plus {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3vw, 44px);
    color: var(--accent);
    line-height: 1;
}
.stat-text {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.03em;
}
.stat-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--accent-light);
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Timeline */
.timeline {
    position: relative;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.timeline-line {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
}
.timeline-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 0.1s;
}
.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    flex: 1;
}
.tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--text-muted);
    position: relative;
    z-index: 1;
    transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.timeline-item.active .tl-dot {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-dim);
}
.tl-year {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.timeline-item.active .tl-year { color: var(--accent-light); }
.tl-role {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
}
.timeline-item.active .tl-role { color: var(--text-dim); }

@media (max-width: 768px) {
    .timeline-line { display: none; }
    .timeline-items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .timeline-item { gap: 8px; }
}

/* ============================================
   SERVICES
   ============================================ */
.services-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 2.8vw, 44px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: clamp(40px, 5vw, 72px);
}
.services-list {
    border-top: 1px solid var(--border-hover);
}
.service-row {
    border-bottom: 1px solid var(--border-hover);
    overflow: hidden;
}
.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    cursor: pointer;
    transition: padding-left 0.5s var(--ease-expo);
    user-select: none;
}
.service-header:hover { padding-left: 12px; }
.service-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
    min-width: 28px;
    transition: color 0.3s;
}
.service-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(18px, 2vw, 30px);
    flex: 1;
    transition: color 0.3s;
    letter-spacing: -0.015em;
    color: var(--text-dim);
}
.service-toggle {
    color: var(--text-muted);
    transition: color 0.3s, transform 0.5s var(--ease-expo);
    flex-shrink: 0;
}
.service-row.active .service-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}
.service-row:hover .service-num,
.service-row.active .service-num { color: var(--accent); }
.service-row:hover .service-name,
.service-row.active .service-name { color: var(--text); }

.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-expo), padding 0.5s var(--ease-expo);
    padding: 0 0 0 48px;
}
.service-row.active .service-body {
    max-height: 220px;
    padding-bottom: 28px;
}
.service-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 540px;
    margin-bottom: 16px;
    padding-top: 4px;
}
.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 4px;
}
.service-tags span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border);
    color: var(--text-dim);
}

/* ============================================
   PORTFOLIO
   ============================================ */
.work-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 2.8vw, 44px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: clamp(40px, 5vw, 72px);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}
.project {
    grid-column: span var(--span, 6);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
}
.project-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-elevated);
    position: relative;
}
.project-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,12,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
}
.project:hover .project-img::after { opacity: 1; }
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-expo), filter 0.6s;
    filter: grayscale(30%) brightness(0.85);
}
.project:hover .project-img img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(1);
}
.project-info {
    padding: 20px 0 8px;
}
.project-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 8px;
    display: block;
}
.project-info h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 1.5vw, 24px);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    transition: color 0.3s;
}
.project:hover .project-info h3 { color: var(--accent-light); }
.project-info p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .project { grid-column: span 1 !important; }
}

/* ============================================
   PROCESS
   ============================================ */
.process-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 2.8vw, 44px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: clamp(40px, 5vw, 72px);
}
.process-steps { position: relative; }
.process-connector {
    position: absolute;
    left: 42px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}
.process-connector-fill {
    width: 100%;
    height: 0%;
    background: var(--accent);
    will-change: height;
}
.step {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    padding: 44px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    opacity: 0;
    transform: translateY(32px);
}
.step:last-child { border-bottom: none; }
.step-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 12px;
}
.step h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 1.8vw, 28px);
    letter-spacing: -0.01em;
}
.step-right p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-dim);
    max-width: 500px;
    padding-top: 4px;
}

@media (max-width: 768px) {
    .step {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .process-connector { display: none; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 2.8vw, 44px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: clamp(40px, 5vw, 72px);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
.testimonial {
    padding: clamp(28px, 3vw, 44px);
    border: 1px solid var(--border);
    position: relative;
    transition: border-color 0.5s;
    margin: 0;
}
.testimonial:nth-child(2) { transform: translateY(24px); }
.testimonial:hover { border-color: var(--border-hover); }
.testimonial::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    color: var(--accent-dim);
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 28px;
    pointer-events: none;
}
.testimonial p {
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 32px;
    position: relative;
}
.testimonial footer { position: relative; }
.testimonial cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.testimonial strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.testimonial cite span {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial:nth-child(2) { transform: none; }
}

/* ============================================
   CTA / CONTACT
   ============================================ */
#contact {
    padding: clamp(100px, 14vw, 220px) 0;
    position: relative;
}
#contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(600px, 80vw);
    height: min(600px, 80vw);
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.cta-content .section-label {
    display: block;
    margin-bottom: 24px;
    opacity: 1;
    transform: none;
}
.cta-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(34px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
}
.cta-sub {
    font-size: clamp(17px, 1.4vw, 22px);
    color: var(--text-dim);
    margin-bottom: 48px;
    font-style: italic;
}
.cta-content .btn {
    margin-bottom: 44px;
}
.cta-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}
.cta-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}
.cta-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s var(--ease-expo);
}
.cta-links a:hover { color: var(--text); }
.cta-links a:hover::after { width: 100%; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
    padding: 28px 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--text-dim);
    letter-spacing: -0.02em;
}
.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--text); }

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
