/* ===== Design Tokens ===== */
:root {
    --blue: #1a1ae0;
    --blue-dark: #1010b0;
    --blue-pale: #ebebff;
    --black: #0c0c10;
    --white: #f8f8f4;
    --off: #f0eee8;
    --gray: #8a8890;
    --border: #e2e0da;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Outfit", sans-serif;
    --body: "DM Sans", sans-serif;
}
/* ===== Reset ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* ===== Base ===== */
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--body);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    cursor: none;
}
a {
    color: inherit;
}
/* ===== Custom Cursor ===== */
#cur {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
}
#cur-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(26, 26, 224, 0.3);
    border-radius: 50%;
    position: fixed;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition:
        width 0.4s var(--ease),
        height 0.4s var(--ease);
}

body:has(a:hover) #cur-ring,
body:has(button:hover) #cur-ring {
    width: 50px;
    height: 50px;
}

body.single-case:has(#nav:not(.up):hover) #cur,
body.page-template-page-contact:has(#nav:not(.up):hover) #cur,
body:has(.contact-hero:hover) #cur,
body:has(.case-hero:hover) #cur,
body:has(.cta-section:hover) #cur,
body:has(#services:hover) #cur {
    background: var(--white) !important;
}

body.single-case:has(#nav:not(.up):hover) #cur-ring,
body.page-template-page-contact:has(#nav:not(.up):hover) #cur-ring,
body:has(.contact-hero:hover) #cur-ring,
body:has(.case-hero:hover) #cur-ring,
body:has(.cta-section:hover) #cur-ring,
body:has(#services:hover) #cur-ring {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* ===== Media Defaults ===== */
img {
    max-width: 100%;
    display: block;
}
/* ===== Navigation ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 64px;
    transition:
        padding 0.4s var(--ease),
        background 0.3s,
        border-color 0.3s;
    border-bottom: 1px solid transparent;
}
nav.up {
    padding: 16px 64px;
    background: rgba(248, 248, 244, 0.94);
    backdrop-filter: blur(16px);
    border-color: var(--border);
}
.nav-logo {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}
.nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--white);
}
.nav-cta {
    color: var(--blue) !important;
    background: var(--white) !important;
    padding: 10px 24px !important;
    font-weight: 500 !important;
    transition:
        background 0.2s,
        color 0.2s !important;
}
.nav-cta:hover,
.nav-cta:hover {
    background: var(--blue) !important;
    color: var(--white) !important;
}
body.page-template-page-contact .nav-cta:hover,
body.single-case .nav-cta:hover {
    background: var(--white) !important;
    color: var(--blue) !important;
}
nav.up .nav-logo {
    color: var(--black);
}
nav.up .nav-links a {
    color: var(--gray);
}
nav.up .nav-links a:hover {
    color: var(--black);
}
nav.up .nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
}
nav.up .nav-cta:hover {
    background: var(--blue-dark) !important;
    color: var(--white) !important;
}
/* ===== Scroll Reveal Animations ===== */
.r {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.9s var(--ease),
        transform 0.9s var(--ease);
}
.r.v {
    opacity: 1;
    transform: translateY(0);
}
.d1 {
    transition-delay: 0.1s;
}
.d2 {
    transition-delay: 0.2s;
}
/* ===== Hero ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 64px 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 64px;
}
.hero-h1 {
    font-family: var(--sans);
    font-size: clamp(48px, 6.5vw, 100px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 28px;
}
.hero-h1 i {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: 1.06em;
    color: rgba(255, 255, 255, 0.7);
}

.hero-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 40px;
}
.hero-desc strong {
    color: var(--white);
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--black);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 14px 28px;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: var(--off);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 14px 28px;
    transition: border-color 0.2s;
}
.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.7);
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: var(--white);
    animation: scrolldown 1.8s ease-in-out infinite;
}
@keyframes scrolldown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}
/* ===== Stats ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border);
}
.stat-item {
    padding: 40px 64px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stat-item:last-child {
    border-right: none;
}
.stat-n {
    font-family: var(--sans);
    font-size: 48px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-l {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.02em;
}
/* ===== About ===== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.about-photo-col {
    position: relative;
    overflow: hidden;
    min-height: 560px;
}
.about-photo-bg {
    position: absolute;
    top: -25%;
    left: 0;
    width: 150%;
    height: 150%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}
.about-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 16, 0.15);
}
.about-content {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
}
.about-label,
.cs-label,
.faq-label,
.ci-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-label::before,
.cs-label::before,
.faq-label::before,
.ci-label::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--blue);
}

.ci-label {
    margin-bottom: 32px;
}

.ci-label::before {
    width: 18px;
}

.about-h2,
.cs-h2 {
    font-family: var(--sans);
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 4px;
}
.about-h2 {
    margin-bottom: 28px;
}

.cs-h2 {
    margin-bottom: 20px;
}

.about-h2 i,
.faq-h2 i {
    font-family: var(--serif);
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 300;
    font-style: italic;
    color: var(--blue);
    margin-bottom: 28px;
    line-height: 1;
}

.about-body,
.cs-body,
.entry-content {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.85;
}
.about-body {
    margin-bottom: 28px;
}
.about-body p + p,
.cs-body p + p,
.entry-content p + p {
    margin-top: 16px;
}
.about-body strong,
.cs-body strong,
.entry-content strong {
    color: var(--black);
    font-weight: 400;
}

.cs-body {
    max-width: 620px;
}

.quote-block {
    background: var(--black);
    padding: 48px 56px;
    margin: 40px 0;
}
.quote-text {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
}

.about-link {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    border-bottom: 1px solid var(--blue);
    padding-bottom: 2px;
    display: inline-block;
    margin-bottom: 36px;
    transition: opacity 0.2s;
}
.about-link:hover {
    opacity: 0.6;
}
.skills-title {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 14px;
}
.skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.skill {
    font-size: 12px;
    font-weight: 300;
    color: var(--gray);
    border: 1px solid var(--border);
    padding: 6px 14px;
}

/* ===== Services ===== */
.services {
    position: relative;
    overflow: hidden;
}
.services-bg {
    position: absolute;
    top: -25%;
    left: 0;
    width: 150%;
    height: 150%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    z-index: 0;
}
.services-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 224, 0.92);
    z-index: 1;
}
.services-inner {
    position: relative;
    z-index: 2;
    padding: 80px 64px;
}
.services-top {
    margin-bottom: 56px;
}
.services-h2,
.work-h2,
.cta-h2,
.faq-h2,
.form-title {
    font-family: var(--sans);
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
}

.faq-h2 {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
}

.faq-h2 i {
    display: block;
    color: var(--gray);
    font-size: 1.05em;
}

.form-title {
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}
.form-title i {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    display: block;
    color: var(--gray);
    font-size: 1.05em;
}
.services-h2,
.cta-h2 {
    color: var(--white);
}
.services-h2 {
    margin-bottom: 12px;
}
.services-h2 i,
.work-h2 i,
.cta-h2 i {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
}
.services-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    max-width: 400px;
}
.svc-list {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.svc-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.svc-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    cursor: pointer;
}
.svc-n {
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    min-width: 32px;
}
.svc-name {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    flex: 1;
}
.svc-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s var(--ease);
}
.svc-row.open .svc-icon {
    transform: rotate(45deg);
    color: var(--white);
}
.svc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}
.svc-row.open .svc-body {
    max-height: 320px;
}
.svc-body-inner {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 24px;
    padding-bottom: 28px;
}
.svc-body-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 16px;
}
.svc-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.svc-del {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 12px;
}
.svc-body-link {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b6bff;
    text-decoration: none;
}
/* ===== Work / Projects (Home) ===== */
.work,
.projects-section {
    padding: 80px 64px;
    background: var(--black);
}
.work-top {
    margin-bottom: 48px;
}
.work-h2 {
    color: var(--white);
    margin-bottom: 12px;
}
.work-h2 i,
.cta-h2 i {
    color: rgba(255, 255, 255, 0.5);
}

.cta-h2 {
    margin-bottom: 16px;
}
.work-sub {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-bottom: 40px;
}
.proj-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
}
.proj-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.proj-card:hover .proj-img {
    transform: scale(1.04);
}
.proj-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.1) 60%
    );
}
.proj-grid-ov {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.proj-content {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    z-index: 2;
}
.proj-tag {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}
.proj-name {
    font-family: var(--sans);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    line-height: 1.1;
}
.proj-sub {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}
.proj-arr {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
    transition:
        color 0.2s,
        transform 0.3s var(--ease);
}
.proj-card:hover .proj-arr {
    color: var(--white);
    transform: translate(3px, -3px);
}
.work-footer {
    text-align: center;
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    padding: 14px 32px;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}
/* ===== Page Header ===== */
.page-header {
    padding: 160px 64px 80px;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}
.page-header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.ph-h1 {
    font-family: var(--sans);
    font-size: clamp(48px, 7vw, 112px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--white);
}
.ph-h1 .serif {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: 1.05em;
    display: block;
    color: rgba(255, 255, 255, 0.5);
}
/* ===== Projects Archive ===== */
.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.proj-item {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    background: #141420;
}
.proj-item-inner {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}
.pi-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.proj-item:hover .pi-img {
    transform: scale(1.05);
}
.pi-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0;
    transition: opacity 0.4s;
}
.proj-item:hover .pi-grid {
    opacity: 1;
}
.pi-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 5, 20, 0.85) 0%,
        transparent 55%
    );
}
.pi-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    z-index: 2;
}
.pi-tag {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}
.pi-name {
    font-family: var(--sans);
    font-size: clamp(14px, 1.6vw, 22px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}
.pi-sub {
    font-family: var(--serif);
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
}
.pi-arr {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    transform: scale(0.85);
    transition:
        opacity 0.3s,
        transform 0.3s;
}
.proj-item:hover .pi-arr {
    opacity: 1;
    transform: scale(1);
}
/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 64px;
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testi-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.testi-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 40px;
}
.testi-slides {
    position: relative;
    min-height: 160px;
}
.testi-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.testi-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}
.testi-text {
    font-family: var(--serif);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    font-style: italic;
    color: var(--black);
    line-height: 1.5;
}
.testi-attr {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.testi-line {
    width: 24px;
    height: 1px;
    background: var(--gray);
}
.testi-photo {
    display: block;
}
.testi-photo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}
.testi-name {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.04em;
}
.testi-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 36px;
}
.testi-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
}
.testi-dot.active {
    background: var(--blue);
}
/* ===== CTA & Next Project (shared split layout) ===== */
.cta-section,
.next-project {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.cta-bg {
    position: absolute;
    width: 100%;
    height: 130%;
    object-fit: cover;
    will-change: transform;
    z-index: 0;
}
.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 224, 0.9);
    z-index: 1;
}
.cta-left {
    position: relative;
    z-index: 2;
    padding: 80px 64px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-note {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
}
.cta-right {
    position: relative;
    z-index: 2;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}
.btn-white-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--blue);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 16px 32px;
    transition: background 0.2s;
    width: fit-content;
}
.btn-white-solid:hover {
    background: var(--off);
}
.cta-email {
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 3px;
    display: inline-block;
}
/* ===== Contact ===== */
.contact-hero {
    background: var(--blue);
    padding: 160px 64px 100px;
    position: relative;
    overflow: hidden;
}
.ch-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
}
.ch-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
}
.ch-h1 {
    font-family: var(--sans);
    font-size: clamp(48px, 7vw, 112px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--white);
}
.ch-h1 i {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: 1.05em;
    display: block;
    color: rgba(255, 255, 255, 0.55);
}
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    border-bottom: 1px solid var(--border);
}
.contact-info {
    padding: 80px 64px;
    border-right: 1px solid var(--border);
}
.ci-block {
    margin-bottom: 48px;
}
.ci-block-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
}
.ci-block-link {
    font-size: 14px;
    font-weight: 300;
    color: var(--blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 26, 224, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.ci-block-link:hover {
    border-color: var(--blue);
}

.ci-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ci-social {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}

.ci-social:hover {
    color: var(--blue);
}

.ci-social-icon {
    width: 32px;
    height: 32px;
    background: var(--off);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition:
        background 0.2s,
        border-color 0.2s;
}
.ci-social:hover .ci-social-icon {
    background: var(--blue-pale);
    border-color: var(--blue);
}
.contact-form-wrap {
    padding: 80px 64px;
}
.contact-embed form,
.contact-embed .wpcf7 {
    max-width: 100%;
}
.contact-embed input,
.contact-embed textarea,
.contact-embed select {
    width: 100%;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 300;
    color: var(--black);
    background: transparent;
    border: 1px solid var(--border);
    padding: 14px 18px;
    outline: none;
}
.contact-embed p {
    margin-bottom: 18px;
}
.contact-embed input[type="submit"],
.contact-embed button,
.contact-embed .wpcf7-submit {
    display: inline-flex;
    width: auto;
    background: var(--blue);
    color: var(--white);
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    padding: 18px 44px;
    cursor: pointer;
}
.form-note {
    font-size: 12px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
}

/* FORM */
.contact-form-wrap {
    padding: 80px 64px;
}

.form-title {
    font-family: var(--sans);
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}
.form-title .serif {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    display: block;
    color: var(--gray);
    font-size: 1.05em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
}
.form-input,
.form-select,
.form-textarea {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 300;
    color: var(--black);
    background: transparent;
    border: 1px solid var(--border);
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray);
}
.form-textarea {
    resize: vertical;
    min-height: 140px;
}
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8890' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}
.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    padding: 18px 44px;
    cursor: pointer;
    transition:
        background 0.25s,
        gap 0.3s;
    align-self: flex-start;
}
.form-submit:hover {
    background: var(--blue-dark);
    gap: 18px;
}
.form-note {
    font-size: 12px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== SUCCESS ===== */
.form-success {
    display: none;
    text-align: center;
    padding: 48px;
    background: var(--blue-pale);
    border: 1px solid rgba(26, 26, 224, 0.2);
}
.success-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.success-title {
    font-family: var(--sans);
    font-size: 24px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}
.success-body {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 64px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    cursor: pointer;
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.faq-q-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    transition: color 0.2s;
}
.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray);
    transition: transform 0.4s var(--ease);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}
.faq-item.open .faq-a {
    max-height: 220px;
}
.faq-a-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.75;
    padding-top: 16px;
    max-width: 560px;
}

.faq-item:hover .faq-q-text,
.faq-item.open .faq-q-text {
    color: var(--blue);
}
/* ===== Case Study ===== */
.case-hero {
    background: var(--blue);
    padding: 160px 64px 80px;
    position: relative;
    overflow: hidden;
}
.case-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
}
.case-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.case-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
}
.case-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}
.case-h1 {
    font-family: var(--sans);
    font-size: clamp(48px, 7vw, 112px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 16px;
}
.case-h1-sub {
    font-family: var(--serif);
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
}
.case-meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-end;
}
.meta-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px;
}
.meta-value {
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
}
.case-img-hero {
    width: 100%;
    aspect-ratio: 16/7;
    position: relative;
    overflow: hidden;
    background: var(--off);
}
.case-img-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    border-bottom: 1px solid var(--border);
}
.case-sidebar {
    padding: 80px 48px 80px 64px;
    border-right: 1px solid var(--border);
    position: sticky;
    top: 80px;
    align-self: start;
}
.sidebar-section {
    margin-bottom: 40px;
}
.sidebar-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 14px;
}
.sidebar-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-tag {
    font-size: 13px;
    font-weight: 300;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-tag::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
}
.case-content {
    padding: 80px 64px;
}
.case-section {
    margin-bottom: 40px;
}
.case-img-block {
    margin: 40px 0;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--off);
}
.case-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-img-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin: 40px 0;
}
.case-img-2 div {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--off);
}
.case-img-2 div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 40px;
}
.result-item {
    background: var(--white);
    padding: 32px;
    text-align: center;
}
.result-n {
    font-family: var(--sans);
    font-size: 48px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.result-l {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
}

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin: 40px 0;
}
.process-step {
    background: var(--white);
    padding: 28px 24px;
}
.ps-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: var(--blue);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 12px;
}
.ps-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 6px;
}
.ps-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
}

/* What we do monthly */
.monthly-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--border);margin:40px 0}
.monthly-item{background:var(--white);padding:28px 32px}
.monthly-item:hover{background:var(--blue-pale)}
.monthly-title{font-size:14px;font-weight:600;color:var(--black);margin-bottom:6px;font-family:var(--sans)}
.monthly-desc{font-size:13px;font-weight:300;color:var(--gray);line-height:1.6}


/* Brand essence block */
.essence-block {
    background: var(--off);
    padding: 48px 56px;
    margin: 40px 0;
    border-left: 3px solid var(--blue);
}
.essence-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    font-weight: 500;
}
.essence-tagline {
    font-family: var(--serif);
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 300;
    font-style: italic;
    color: var(--black);
    line-height: 1.3;
}

/* Insight box */
.insight-box {
    background: var(--blue-pale);
    border-left: 3px solid var(--blue);
    padding: 24px 28px;
    margin: 40px 0;
}
.insight-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
    font-weight: 500;
}
.insight-text {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: var(--black);
    line-height: 1.4;
}

/* ===== Next Project (footer teaser) ===== */
.next-project {
    background: var(--black);
}
.next-left {
    padding: 80px 64px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.next-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}
.next-name {
    font-family: var(--sans);
    font-size: clamp(28px, 3.5vw, 56px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 12px;
}
.next-sub {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
}
.next-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 3px;
}
.next-bg {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}
.next-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
/* ===== Footer ===== */
footer {
    padding: 36px 64px;
    background: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}
.footer-links {
    display: flex;
    gap: 28px;
}
.footer-links a {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
}
.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}
/* ===== Generic Page ===== */
.generic-page {
    padding: 160px 64px 80px;
}
.generic-title {
    font-family: var(--sans);
    font-size: clamp(32px, 4vw, 56px);
    margin-bottom: 24px;
}
.generic-content {
    max-width: 760px;
    line-height: 1.8;
    color: var(--gray);
}
/* ===== Responsive ===== */
@media (max-width: 900px) {
    nav {
        padding: 20px 24px;
    }
    nav.up {
        padding: 14px 24px;
    }
    .nav-links a:not(.nav-cta) {
        display: none;
    }
    .hero-content,
    .ch-inner,
    .case-hero-content,
    .cta-section,
    .next-project {
        grid-template-columns: 1fr;
    }
    .hero-content {
        padding: 0 24px 60px;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .stat-item {
        padding: 28px 24px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .about {
        grid-template-columns: 1fr;
    }
    .about-photo-col {
        min-height: 300px;
    }
    .about-content {
        padding: 48px 24px;
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .services-inner,
    .work,
    .projects-section,
    .testimonials,
    .contact-form-wrap,
    .case-content,
    .generic-page {
        padding: 60px 24px;
    }
    .monthly-grid,
    .projects-grid,
    .proj-grid {
        grid-template-columns: 1fr;
    }
    .page-header,
    .contact-hero,
    .case-hero {
        padding: 120px 24px 60px;
    }
    .contact-main,
    .case-body,
    .faq-section {
        grid-template-columns: 1fr;
    }
    .contact-info,
    .case-sidebar {
        padding: 48px 24px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        position: static;
    }
    .faq-section {
        padding: 64px 24px;
        gap: 40px;
    }
    .process-steps,
    .results-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .next-left,
    .cta-left,
    .cta-right,
    footer {
        padding: 28px 24px;
    }
    footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    body {
        cursor: auto;
    }
    #cur,
    #cur-ring {
        display: none;
    }
}
@media (max-width: 580px) {
    .process-steps,
    .results-grid {
        grid-template-columns: 1fr !important;
    }
}
