:root {
    --bg-light: #fdfdfb;
    --bg-dark: #0a0a0b;
    /* Even darker for high-end look */
    --text-dark: #0f0f0f;
    --text-light: #f5f5f5;
    --accent: #3b82f6;
    --accent-vibrant: #2563eb;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
    --diagram-stroke: rgba(15, 15, 15, 0.15);
    --diagram-fill: rgba(15, 15, 15, 0.03);
    --mesh-color-1: rgba(59, 130, 246, 0.05);
    /* Soft accent blue */
    --mesh-color-2: rgba(0, 0, 0, 0.02);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Focused Container --- */
.container-focused {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .container-focused {
        padding: 0 20px;
    }
}

/* --- HUD Sidebars (Higher Contrast) --- */
.hud {
    position: fixed;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 0 30px;
    opacity: 0.8;
    transition: opacity 0.5s var(--ease-cinematic);
}

.hud-left {
    left: 0;
}

.hud-right {
    right: 0;
}

/* --- Philosophy Section v9 --- */
.philosophy-v9 {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.philosophy-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.ghost-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

/* --- Expertise Section (Radical Bento Grid) --- */
.expertise-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 20px;
    margin-top: 80px;
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s var(--ease-cinematic);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.02);
}

.bento-card i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    display: block;
}

.bento-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.bento-card p {
    font-size: 1rem;
    opacity: 0.4;
    line-height: 1.5;
    max-width: 90%;
}

.card-span-2 {
    grid-column: span 2;
}

.card-high {
    grid-row: span 2;
}

/* Section Background Diagrams */
.section-bg-diagram {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-bg-diagram svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .expertise-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .card-span-2 {
        grid-column: span 2;
    }

    .card-high {
        grid-row: span 1;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .expertise-bento {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card-span-2 {
        grid-column: span 1;
    }

    .bento-card {
        height: 350px;
        padding: 40px;
    }
}

/* --- Architect Section (Editorial v11) --- */
.architect-v11 {
    padding: 200px 0;
    background: var(--bg-light);
}

.editorial-v11-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

@media (max-width: 1100px) {
    .editorial-v11-grid {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .editorial-v11-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }

    .editorial-media {
        max-width: 600px;
        margin: 0 auto;
    }

    .award-row {
        justify-content: center;
    }
}

.editorial-media {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.editorial-media img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(0.2) contrast(1.1);
}

.text-floating-reveal {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--bg-dark);
    color: #fff;
    padding: 60px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    max-width: 300px;
    line-height: 1.4;
    z-index: 2;
}

.editorial-v11-content .display-1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    margin-bottom: 3rem;
}

.editorial-v11-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 4rem;
}

.award-row {
    display: flex;
    gap: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.award-item span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 900;
    opacity: 0.3;
}

.award-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* --- Testimonials (Cinematic Reveal v11) --- */
.testimonials-v11 {
    padding: 120px 0;
    background: #fdfdfb;
}

.testimonial-grid-v11 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .testimonial-grid-v11 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.testimonial-v11-card {
    text-align: left;
    /* Editorial alignment */
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 40px;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    font-style: italic;
}

.testimonial-v11-info {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

/* --- Contact (High-End Minimalist v12) --- */
.contact-v11 {
    padding: 120px 0;
    background: #fdfdfb;
    /* Ultra-clean paper-like background */
    text-align: center;
    min-height: auto !important;
}

.minimal-form-container {
    max-width: 600px;
    margin: 60px auto 0;
    background: none;
    backdrop-filter: none;
    padding: 80px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #000;
}

.input-reveal-group {
    position: relative;
    margin-bottom: 60px;
}

.input-reveal-group input,
.input-reveal-group textarea {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    font-size: 1.5rem;
    font-weight: 500;
    outline: none;
    transition: all 0.4s;
}

.input-reveal-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.6s var(--ease-cinematic);
}

.input-reveal-group:focus-within::after {
    width: 100%;
}

.input-reveal-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1.5rem;
    opacity: 0.3;
    pointer-events: none;
    transition: all 0.4s var(--ease-cinematic);
}

.input-reveal-group input:focus+label,
.input-reveal-group input:not(:placeholder-shown)+label,
.input-reveal-group textarea:focus+label,
.input-reveal-group textarea:not(:placeholder-shown)+label {
    top: -25px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.2em;
    opacity: 1;
}

.premium-btn {
    background: var(--text-dark);
    color: #fff;
    padding: 30px 100px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-cinematic);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.premium-btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.3);
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.6s;
}

.premium-btn:hover::before {
    left: 100%;
}

/* --- Footer (Modern v10) --- */
.footer-v10 {
    padding: 100px 0 60px;
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.nav-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 900;
    margin-bottom: 2rem;
}

.nav-col a {
    display: block;
    text-decoration: none;
    color: inherit;
    opacity: 0.5;
    margin-bottom: 1rem;
    transition: 0.3s;
}

.nav-col a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.back-to-top {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.animate-entrance {
    animation: entranceFade 1.2s var(--ease-cinematic) forwards;
}

@keyframes entranceFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- End V11 Redesign --- */
.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.input-area {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cursor-blink {
    width: 10px;
    height: 1.8rem;
    background: var(--accent);
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.work-display-v8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-cinematic);
}

.work-display-v8.active {
    opacity: 1;
    transform: translateY(0);
}

.work-image-v8 {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #fdfdfb;
    /* Match light bg */
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-image-v8 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed to contain to prevent cropping */
    transition: transform 1.2s var(--ease-cinematic);
}

.work-info-v8 h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hud:hover {
    opacity: 1;
}

.hud-left {
    left: 0;
}

.hud-right {
    right: 0;
}


/* --- Typography Polish v9 --- */
/* --- Typography Polish v9 --- */
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

/* --- Work Section Polish v9.6 --- */
.work-terminal-scene {
    min-height: auto;
    padding: 80px 0;
    /* Reduced vertical space */
    background-color: var(--bg-light);
}

/* --- HUD Sidebars v9.5 --- */
.hud-links {
    display: flex;
    flex-direction: column;
    /* Stack icons vertically */
    gap: 25px;
    align-items: center;
}

.hud-vertical-text {
    display: flex;
    flex-direction: row;
    /* In vertical-rl, row stacks items top to bottom! */
    writing-mode: vertical-rl;
    gap: 40px;
    align-items: center;
}

.hud-links a,
.hud-vertical-text a {
    text-decoration: none;
    color: inherit;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 700;
    transition: opacity 0.3s var(--ease-cinematic);
    white-space: nowrap;
}

.hud-links a i {
    font-size: 1.2rem;
}

.hud-links a:hover,
.hud-vertical-text a:hover {
    opacity: 0.5;
}


/* --- Animated Appbar --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 2000;
    transition: background 0.5s var(--ease-cinematic), padding 0.5s var(--ease-cinematic), border-bottom 0.5s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav.scrolled.dark-mode {
    background: rgba(18, 18, 18, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
        /* Hide nav links on very small mobile to keep it clean, user can scroll */
    }
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

/* --- Hero Section Optimizations --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content p {
        margin: 0 auto;
    }
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.blue-print-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
}

.floating-structure {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Hero Headline (Reduced by ~50%) */
/* --- Hero v13 Evolution --- */
.hero-v13-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(at 0% 0%, var(--mesh-color-1) 0%, transparent 50%),
        radial-gradient(at 100% 100%, var(--mesh-color-1) 0%, transparent 50%),
        radial-gradient(at 50% 50%, var(--mesh-color-2) 0%, transparent 50%);
    filter: blur(80px);
    z-index: -1;
    animation: mesh-drift 10s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(20px, 20px);
    }
}

.system-particle {
    position: absolute;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 900;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.particle-float {
    animation: particle-drift 20s linear infinite;
}

@keyframes particle-drift {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-100vh) rotate(360deg);
    }
}

.hero-headline {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.serif-display {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.serif-display::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.15;
    z-index: -1;
}

.hero-v13-hud {
    font-family: monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.4;
    margin-bottom: 2rem;
    display: flex;
    gap: 20px;
}

/* SVG Pulse Animations */
.pulse-ring {
    animation: pulse-ring 3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    transform-origin: center;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.core-node {
    animation: core-pulse 4s ease-in-out infinite;
    transform-origin: 250px 180px;
}

@keyframes core-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent);
    margin-bottom: 2rem;
    display: block;
}

/* --- Scene Layout v7 --- */
section.scene {
    position: relative;
    padding: 160px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-dark-scene {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.bg-light-scene {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* --- Word Reveal Animation --- */
.word-reveal {
    overflow: hidden;
    vertical-align: bottom;
}

.word-reveal span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.2s var(--ease-cinematic);
}

.word-reveal.active span {
    transform: translateY(0);
}

/* --- Parallax Work Scene v7.1 --- */
.parallax-work-scene {
    position: relative;
    height: 100vh;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4);
    transition: transform 0.5s var(--ease-cinematic);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.parallax-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.parallax-cat {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    opacity: 0.7;
}

/* For mobile where fixed attachment is often buggy */
@media (max-width: 900px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* --- Footer v7 --- */
footer {
    padding: 100px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* --- Motion Foundations --- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-cinematic), transform 1s var(--ease-cinematic);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hud {
        display: none;
    }

    .hero-headline {
        font-size: 3.5rem;
    }
}

/* --- Technical Toolkit (v12) --- */
.toolkit-v12 {
    padding: 120px 0;
    background: #121212;
    color: #fff;
    position: relative;
}

.toolkit-v12 .display-3,
.toolkit-v12 .serif-display {
    color: #fff;
}

.toolkit-v12 .section-label {
    color: rgba(255, 255, 255, 0.5);
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease-cinematic);
    backdrop-filter: blur(10px);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.tool-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.tool-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

/* --- Project Quick-Access Grid (v12) --- */
.work-grid-v12 {
    padding: 120px 0;
    background: #f8f8f8;
}

.quick-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.quick-project-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.5s var(--ease-cinematic);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quick-project-card:hover {
    background: var(--text-dark);
    color: #fff;
    transform: scale(1.02);
}

.quick-project-card .project-url {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.quick-project-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.quick-project-card p {
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.6;
}

/* --- Strategic Process (v12) --- */
.process-v12 {
    padding: 160px 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.process-step {
    position: relative;
    padding-top: 40px;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.1;
    margin-bottom: -1rem;
    display: block;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .quick-work-grid {
        grid-template-columns: 1fr;
    }
}