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

html {
    scroll-behavior: smooth;
}

:root {
    --forest: #1c3a2a;
    --green: #2e6b45;
    --green-m: #3d8558;
    --green-l: #6abf85;
    --earth: #8b6340;
    --earth-l: #c4956a;
    --cream: #f5f0e8;
    --cream-d: #e8dfd0;
    --white: #fafaf7;
    --ink: #141410;
    --muted: #6b6b5a;
    --border: rgba(46, 107, 69, 0.15);
}

body {
    background: var(--ink);
    color: var(--cream);
    font-family: "Syne", sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* CURSOR */
#cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--green-l);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        transform 0.15s,
        width 0.3s,
        height 0.3s,
        background 0.3s;
}

#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(106, 191, 133, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.08s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--green-l);
}

/* NOISE */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: var(--green);
}

.text-danger {
    color: rgb(255, 0, 0);
}

.text-success {
    color: rgb(0, 128, 0);
}

.text-warning {
    color: rgb(255, 153, 0);
}

.text-info {
    color: rgb(0, 132, 255);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s;
}

nav.s {
    background: rgba(20, 20, 16, 0.92);
    backdrop-filter: blur(16px);
    padding: 16px 60px;
    border-bottom: 1px solid var(--border);
}

.n-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.n-mark {
    width: 40px;
    height: 40px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.n-mark:hover {
    background: var(--green-m);
}

.n-mark svg {
    width: 22px;
    height: 22px;
}

.n-abbr {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
}

.n-sub {
    font-family: "DM Mono", monospace;
    font-size: 8px;
    color: var(--muted);
    letter-spacing: 2px;
    display: block;
    margin-top: 1px;
}

.n-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.n-links a {
    text-decoration: none;
    color: var(--cream);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.45;
    transition:
        opacity 0.3s,
        color 0.3s;
}

.n-links a:hover {
    opacity: 1;
    color: var(--green-l);
}

.n-cta {
    background: var(--green) !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    opacity: 1 !important;
    border-radius: 2px;
    transition: background 0.3s !important;
}

.n-cta:hover {
    background: var(--green-m) !important;
}

/* ── HERO ── */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80")
        center/cover;
    filter: brightness(0.25) saturate(0.6);
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(20, 20, 16, 0.97) 45%,
        rgba(28, 58, 42, 0.6) 100%
    );
}

/* animated grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.06;
}

.hero-grid span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--green-l),
        transparent
    );
}

/* particles canvas */
#particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 60px;
    max-width: 780px;
}

/* WORD REVEAL animation */
.word-reveal {
    overflow: hidden;
    display: inline-block;
}

.word-reveal span {
    display: inline-block;
    transform: translateY(110%);
    animation: wordUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.6s 0.2s forwards;
}

.hero-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--earth-l);
}

.hero-eyebrow span {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: var(--earth-l);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(58px, 7vw, 100px);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 28px;
}

.hero-h1 .line {
    display: block;
    overflow: hidden;
}

.hero-h1 .line span {
    display: block;
    transform: translateY(105%);
}

.hero-h1 .line:nth-child(1) span {
    animation: wordUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-h1 .line:nth-child(2) span {
    animation: wordUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    color: var(--earth-l);
    font-style: italic;
    font-weight: 400;
}

.hero-h1 .line:nth-child(3) span {
    animation: wordUp 0.9s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.5);
    max-width: 440px;
    font-weight: 400;
    opacity: 0;
    animation: fadeIn 0.7s 1s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 36px;
    opacity: 0;
    animation: fadeIn 0.7s 1.2s forwards;
}

.btn-g {
    background: var(--green);
    color: var(--white);
    padding: 14px 32px;
    font-family: "Syne", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.btn-g::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--green-l);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-g:hover::before {
    transform: translateX(0);
}

.btn-g:hover {
    transform: translateY(-2px);
}

.btn-g span {
    position: relative;
    z-index: 1;
}

.btn-ghost2 {
    color: rgba(245, 240, 232, 0.5);
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition:
        color 0.3s,
        gap 0.3s;
}

.btn-ghost2:hover {
    color: var(--earth-l);
    gap: 14px;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    animation: fadeIn 0.7s 1.4s forwards;
}

.hstat {
    flex: 1;
    padding: 28px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.hstat:hover {
    background: rgba(46, 107, 69, 0.1);
}

.hstat:last-child {
    border-right: none;
}

.hstat-n {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--green-l);
    display: block;
    line-height: 1;
}

.hstat-l {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 2px;
    display: block;
    margin-top: 6px;
    text-transform: uppercase;
}

/* ── MARQUEE ── */
.marquee {
    background: var(--forest);
    overflow: hidden;
    border-top: 2px solid var(--earth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.m-track {
    display: flex;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
}

.m-item {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 36px;
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(245, 240, 232, 0.35);
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.m-dot {
    width: 4px;
    height: 4px;
    background: var(--earth-l);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── SECTIONS ── */
section {
    padding: 110px 60px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tag::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--green);
}

.tag span {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: var(--green-l);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 600;
    line-height: 1.05;
}

.h2 em {
    font-style: italic;
    color: var(--earth-l);
}

/* ── SERVICES ── */
.svc-sec {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

/* big background number */
.svc-sec::before {
    content: "01";
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    font-size: 320px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.015);
    right: -20px;
    top: -40px;
    pointer-events: none;
    line-height: 1;
}

.svc-intro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
}
.svc-intro div h2 em {
    margin: 0 0.5rem;
}
.svc-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 400;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.svc-card {
    background: var(--ink);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: background 0.4s;
}

.svc-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--green), var(--earth-l));
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-card:hover {
    background: #1c1c18;
}

.svc-card:hover::after {
    width: 100%;
}

/* card corner accent */
.svc-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 0 0;
    border-color: transparent var(--green) transparent transparent;
    transition: border-width 0.3s;
}

.svc-card:hover::before {
    border-width: 0 40px 40px 0;
}

.svc-num {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: var(--earth);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 24px;
}

.svc-ico {
    width: 56px;
    height: 56px;
    background: rgba(46, 107, 69, 0.15);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition:
        background 0.3s,
        transform 0.3s;
}

.svc-ico i {
    font-size: 1em;
    line-height: 1;
}

.svc-card:hover .svc-ico {
    background: var(--green);
    transform: rotate(5deg) scale(1.05);
}

.svc-t {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.svc-d {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 400;
}

.svc-arrow {
    position: absolute;
    bottom: 32px;
    right: 36px;
    color: var(--green-l);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition:
        opacity 0.3s,
        transform 0.3s;
    font-size: 20px;
}

.svc-card:hover .svc-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── COUNTER SECTION ── */
.counter-sec {
    background: var(--forest);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.counter-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(106, 191, 133, 0.08),
        transparent 70%
    );
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-item {
    padding: 52px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.counter-item:last-child {
    border-right: none;
}

.counter-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 100%,
        rgba(106, 191, 133, 0.06),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s;
}

.counter-item:hover::before {
    opacity: 1;
}

.c-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--green-l);
    display: block;
    line-height: 1;
}

.c-suf {
    color: var(--earth-l);
}

.c-lbl {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: rgba(245, 240, 232, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    display: block;
}

/* ── PROJECTS ── */
.proj-sec {
    background: var(--cream);
    padding: 110px 0;
}

.proj-inner {
    padding: 0 60px;
}

.proj-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
}

/* ── PROJECTS SHOW (dark + scroll-through preview) ── */
/* ── Projects section (preview left + thumbs right, auto-cycling) ── */
.proj-sec.proj-show {
    position: relative;
    background: var(--ink);
    padding: 100px 0 80px;
    color: var(--cream);
    overflow: hidden;
}

.proj-sec.proj-show::before {
    content: "02";
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(160px, 22vw, 280px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    top: -24px;
    right: -12px;
    pointer-events: none;
    z-index: 0;
}

.is-rtl .proj-sec.proj-show::before {
    right: auto;
    left: -12px;
}

.proj-show-intro {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin-bottom: 40px;
}

/* ── Split layout ── */
.pg-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    direction: ltr;
}

/* ── LEFT: large preview ── */
.pg-preview {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@keyframes pgKenBurns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

.pg-preview > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: pgKenBurns 14s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.pg-preview.is-switching > img {
    opacity: 0;
}

.pg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(10, 12, 10, 0.85) 0%,
        rgba(10, 12, 10, 0.25) 45%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

.pg-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pg-name {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    opacity: 0;
    transform: translateY(10px);
    animation: pgFadeUp 0.5s 0.1s ease forwards;
}

.is-rtl .pg-name {
    font-family: "Cairo", sans-serif;
    text-align: right;
}

@keyframes pgFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg-preview.is-switching .pg-name {
    opacity: 0;
    transform: translateY(10px);
    animation: none;
}

.pg-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 10px 20px;
    background: rgba(106, 191, 133, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(106, 191, 133, 0.3);
    border-radius: 8px;
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-l);
    white-space: nowrap;
    transition:
        background 0.3s,
        gap 0.3s;
}

.is-rtl .pg-cta {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 12px;
    align-self: flex-end;
}

.pg-preview:hover .pg-cta {
    background: rgba(106, 191, 133, 0.25);
    gap: 12px;
}

/* ── RIGHT: vertical thumb list ── */
.pg-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pg-thumb {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.03);
    transition:
        border-color 0.35s,
        background 0.35s,
        transform 0.3s;
    position: relative;
    overflow: hidden;
}

.pg-thumb:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(-4px);
}

.pg-thumb.is-active {
    border-color: var(--green-l);
    background: rgba(106, 191, 133, 0.08);
}

.pg-thumb-img {
    width: 100px;
    min-width: 100px;
    aspect-ratio: 16 / 11;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.pg-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pg-thumb:hover .pg-thumb-img img {
    transform: scale(1.08);
}

.pg-thumb-name {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: rgba(245, 240, 232, 0.45);
    line-height: 1.3;
    transition: color 0.35s;
}

.is-rtl .pg-thumb-name {
    font-family: "Cairo", sans-serif;
    text-align: right;
}

.pg-thumb.is-active .pg-thumb-name {
    color: var(--white);
}

/* Progress bar on active thumb */
.pg-thumb-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.pg-thumb-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--green-l);
    border-radius: 3px;
}

.pg-thumb.is-active .pg-thumb-bar span {
    animation: pgBarFill 4s linear forwards;
}

@keyframes pgBarFill {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* ── All Projects button ── */
.pg-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 12px 24px;
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    border: 1px solid rgba(106, 191, 133, 0.25);
    border-radius: 8px;
    background: rgba(106, 191, 133, 0.05);
    transition:
        gap 0.3s,
        background 0.3s,
        border-color 0.3s;
    align-self: flex-start;
}

.is-rtl .pg-all-btn {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 13px;
}

.pg-all-btn:hover {
    gap: 16px;
    background: rgba(106, 191, 133, 0.12);
    border-color: rgba(106, 191, 133, 0.4);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pg-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pg-preview {
        min-height: 280px;
        border-radius: 12px;
    }

    .pg-side {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 8px;
    }

    .pg-thumb {
        flex-direction: column;
        min-width: 140px;
        gap: 8px;
    }

    .pg-thumb-img {
        width: 100%;
        min-width: unset;
    }

    .pg-thumb-name {
        font-size: 12px;
        text-align: center;
    }

    .pg-info {
        padding: 0 20px 18px;
    }

    .pg-name {
        font-size: 20px;
    }

    .pg-cta {
        font-size: 10px;
        padding: 8px 14px;
    }

    .pg-all-btn {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .pg-thumb {
        min-width: 120px;
    }

    .pg-preview {
        min-height: 220px;
    }
}

.see-all {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--green-l);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    transition:
        gap 0.3s,
        color 0.3s;
}

.see-all:hover {
    gap: 14px;
    color: var(--earth-l);
}

.proj-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
}

.p-card {
    position: relative;
    overflow: hidden;
    background: var(--forest);
    cursor: none;
}

.p-card:first-child {
    grid-row: span 2;
}

.p-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.5) brightness(0.65);
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s;
}

.p-card:hover .p-img {
    transform: scale(1.08);
    filter: saturate(0.8) brightness(0.75);
}

.p-over {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 20, 16, 0.95) 0%,
        transparent 55%
    );
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.p-cat {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--earth-l);
    text-transform: uppercase;
    margin-bottom: 6px;
    transform: translateY(8px);
    opacity: 0;
    transition:
        transform 0.4s,
        opacity 0.4s;
}

.p-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    transform: translateY(12px);
    opacity: 0;
    transition:
        transform 0.4s 0.05s,
        opacity 0.4s 0.05s;
}

.p-chip {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(196, 149, 106, 0.4);
    color: var(--earth-l);
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 1px;
    transform: translateY(12px);
    opacity: 0;
    transition:
        transform 0.4s 0.1s,
        opacity 0.4s 0.1s;
}

.p-card:hover .p-cat,
.p-card:hover .p-name,
.p-card:hover .p-chip {
    transform: translateY(0);
    opacity: 1;
}

/* ── PROCESS (zigzag timeline) ── */
.proc-sec {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.proc-sec::before {
    content: "03";
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    font-size: 280px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.02);
    right: -10px;
    top: -30px;
    pointer-events: none;
    line-height: 1;
}

.proc-timeline {
    position: relative;
    max-width: 850px;
    margin: 4rem auto;
}

.t-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    min-height: 130px;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.t-row.tvis {
    opacity: 1;
    transform: translateY(0);
}

.t-row:nth-child(1) {
    transition-delay: 0.05s;
}

.t-row:nth-child(2) {
    transition-delay: 0.15s;
}

.t-row:nth-child(3) {
    transition-delay: 0.25s;
}

.t-row:nth-child(4) {
    transition-delay: 0.35s;
}

.t-card {
    background: #1c1c18;
    border: 1px solid rgba(46, 107, 69, 0.2);
    padding: 28px 28px 24px;
    cursor: pointer;
    position: relative;
    transition:
        border-color 0.3s,
        background 0.3s;
}

.t-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--green-m), var(--earth-l));
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.t-card:hover {
    background: #1f1f1b;
    border-color: rgba(46, 107, 69, 0.5);
}

.t-card.topen {
    border-color: var(--green-m);
    background: #1f1f1b;
}

.t-card.topen::after {
    width: 100%;
}

.t-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.t-num {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--earth);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.t-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.t-sub {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--green-l);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

.t-plus {
    color: rgba(106, 191, 133, 0.4);
    font-size: 18px;
    transition:
        color 0.3s,
        transform 0.3s;
    margin-top: 4px;
    flex-shrink: 0;
    font-family: "DM Mono", monospace;
    line-height: 1;
}

.t-card.topen .t-plus {
    color: var(--green-l);
    transform: rotate(45deg);
}

.t-body {
    overflow: hidden;
    height: 0;
    transition: height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.t-body-inner {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 16px;
}

.t-desc {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 14px;
}

.t-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.t-pill {
    padding: 4px 12px;
    border: 1px solid rgba(46, 107, 69, 0.25);
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--green-l);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.t-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    align-self: stretch;
}

.t-vline {
    flex: 1;
    width: 1px;
    background: rgba(46, 107, 69, 0.2);
    transition: background 0.4s;
    min-height: 20px;
}

.t-vline.tlit {
    background: var(--green-m);
}

.t-dot {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(46, 107, 69, 0.3);
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        border-color 0.4s,
        background 0.4s;
    position: relative;
    z-index: 2;
}

.t-dot.tlit {
    border-color: var(--green-m);
    background: var(--forest);
}

.t-dot svg {
    width: 15px;
    height: 15px;
    stroke: var(--green-l);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.t-empty {
    min-height: 80px;
}

.proc-prog {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
}

.proc-prog-track {
    height: 2px;
    background: rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
}

.proc-prog-fill {
    height: 100%;
    background: linear-gradient(to right, var(--green-m), var(--earth-l));
    width: 25%;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.proc-prog-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.proc-prog-lbl {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: color 0.3s;
    padding: 4px 0;
}

.proc-prog-lbl.pon {
    color: var(--green-l);
}

/* ── CONTACT FORM ── */
.contact-sec {
    background: #111110;
    padding: 110px 60px;
    position: relative;
    overflow: hidden;
}

.contact-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 0% 50%,
        rgba(46, 107, 69, 0.06),
        transparent 60%
    );
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.contact-info {
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:first-child {
    border-top: 1px solid var(--border);
}

.ci-ico {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: rgba(46, 107, 69, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.3s;
}

.ci-ico i {
    font-size: 1em;
    line-height: 1;
}

.cs-ico {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.cs-ico i {
    font-size: 1em;
    line-height: 1;
}

.contact-info-item:hover .ci-ico {
    background: var(--green);
}

.ci-label {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--earth-l);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ci-val {
    font-size: 14px;
    color: var(--cream);
    font-weight: 400;
}

.contact-form {
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #1c1c18;
    border: 1px solid rgba(46, 107, 69, 0.2);
    color: var(--cream);
    font-family: "Syne", sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 14px 16px;
    outline: none;
    transition:
        border-color 0.3s,
        background 0.3s;
    width: 100%;
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: none;
    height: 120px;
    line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-m);
    background: #1f1f1b;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 240, 232, 0.2);
}

.form-submit {
    width: 100%;
    background: var(--green);
    color: var(--white);
    padding: 16px 32px;
    font-family: "Syne", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--green-l);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-submit:hover::before {
    transform: translateX(0);
}

.form-submit:hover {
    transform: translateY(-2px);
}

.form-submit span {
    position: relative;
    z-index: 1;
}

.form-note {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1px;
    margin-top: 12px;
    text-align: center;
}

.field-error {
    display: block;
    font-size: 12px;
    color: #e05c5c;
    margin-top: 6px;
    min-height: 16px;
    font-family: "DM Mono", monospace;
    letter-spacing: 0.3px;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
    border-color: #e05c5c !important;
    box-shadow: 0 0 0 2px rgba(224, 92, 92, 0.15);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success .fs-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--green-m);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success .fs-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--green-l);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
}

.form-success h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── WHY ── */
.why-sec {
    background: #111110;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.why-vis {
    position: relative;
    overflow: hidden;
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.55) brightness(0.7);
    transition:
        transform 0.7s ease,
        filter 0.5s;
}

.why-vis:hover .why-img {
    transform: scale(1.04);
    filter: saturate(0.75) brightness(0.8);
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 58, 42, 0.6), transparent 60%);
}

.why-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--earth);
    padding: 24px 28px;
    color: var(--white);
}

.why-badge strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 600;
    display: block;
    line-height: 1;
}

.why-badge span {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.7;
    text-transform: uppercase;
}

.why-body {
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    transition:
        padding-left 0.3s,
        background 0.3s;
    cursor: none;
}

.why-item:first-child {
    border-top: 1px solid var(--border);
}

.why-item:hover {
    padding-left: 12px;
}

.w-ico {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(46, 107, 69, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition:
        background 0.3s,
        transform 0.3s;
}

.w-ico i {
    font-size: 1em;
    line-height: 1;
}

.why-item:hover .w-ico {
    background: var(--green);
    transform: scale(1.05);
}

.w-t {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.w-d {
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    font-weight: 400;
}

/* ── TESTIMONIAL ── */
.testi-sec {
    background: var(--forest);
    padding: 90px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testi-sec::before {
    content: '"';
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    font-size: 400px;
    color: rgba(255, 255, 255, 0.03);
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    line-height: 1;
}

.testi-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    max-width: 700px;
    margin: 24px auto;
    line-height: 1.5;
}

.testi-author {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: var(--earth-l);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 20px;
}

.testi-carousel {
    max-width: 760px;
    margin: 24px auto 0;
}

.testi-item {
    text-align: center;
    padding: 10px 20px 0;
}

/* Owl dots inside testi-sec */
.testi-sec .owl-dots {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testi-sec .owl-dot span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition:
        background 0.3s,
        transform 0.3s,
        width 0.3s;
    margin: 0;
}

.testi-sec .owl-dot.active span {
    background: var(--earth-l);
    width: 22px;
    border-radius: 4px;
    transform: none;
}

/* Owl fade animation */
.testi-sec .owl-item {
    will-change: opacity;
}

/* ── CTA ── */
.cta {
    background: var(--green);
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "BUILD";
    position: absolute;
    right: -20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 220px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}

.cta-t {
    position: relative;
    z-index: 1;
}

.cta-t p {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cta-t h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
}

.cta-t h2 em {
    font-style: italic;
    color: var(--earth-l);
}

.btn-cream {
    background: var(--cream);
    color: var(--forest);
    padding: 16px 36px;
    font-family: "Syne", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    border: none;
    cursor: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.btn-cream::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-cream:hover::before {
    transform: scaleX(1);
}

.btn-cream:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(28, 58, 42, 0.3);
}

.btn-cream span {
    position: relative;
    z-index: 1;
}

/* ── FOOTER ── */
footer {
    background: #0d0d0b;
    padding: 60px 60px 28px;
}

.f-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.f-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.f-mark {
    width: 36px;
    height: 36px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-mark svg {
    width: 20px;
    height: 20px;
}

.f-abbr {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
}

.f-tagline {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 15px;
    color: var(--earth-l);
    display: block;
    margin-bottom: 10px;
}

.f-p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.7;
    font-weight: 400;
    max-width: 220px;
}

.f-col h5 {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--green-l);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.f-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f-col a {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s;
}

.f-col a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.f-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
}

.f-copy {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
}

.socials {
    display: flex;
    gap: 10px;
}

.soc {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    font-family: "DM Mono", monospace;
    transition:
        border-color 0.3s,
        color 0.3s,
        transform 0.2s;
}

.soc:hover {
    border-color: var(--green-l);
    color: var(--green-l);
    transform: translateY(-2px);
}

.f-contact-link {
    display: flex;
    align-items: center;
    gap: 9px;
}

.f-contact-link i {
    width: 14px;
    text-align: center;
    color: var(--green-l);
    flex-shrink: 0;
    font-size: 12px;
}

/* ── ANIMATIONS ── */
@keyframes wordUp {
    from {
        transform: translateY(105%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.08);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes counterUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* scroll reveal classes */
.sr {
    opacity: 0;
    transform: translateY(44px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr.in {
    opacity: 1;
    transform: translateY(0);
}

.sr-l {
    opacity: 0;
    transform: translateX(-44px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-l.in {
    opacity: 1;
    transform: translateX(0);
}

.sr-r {
    opacity: 0;
    transform: translateX(44px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-r.in {
    opacity: 1;
    transform: translateX(0);
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

/* ── RTL / ARABIC SUPPORT ── */
.is-rtl {
    font-family: "Cairo", sans-serif;
}

.is-rtl .n-sub,
.is-rtl .tag span,
.is-rtl .hero-eyebrow span,
.is-rtl .svc-num,
.is-rtl .hstat-l,
.is-rtl .c-lbl,
.is-rtl .m-item,
.is-rtl .see-all,
.is-rtl .t-num,
.is-rtl .t-sub,
.is-rtl .t-pill,
.is-rtl .proc-prog-lbl,
.is-rtl .ci-label,
.is-rtl .form-group label,
.is-rtl .form-note,
.is-rtl .f-col h5,
.is-rtl .f-copy,
.is-rtl .p-cat,
.is-rtl .p-chip {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
}

.is-rtl .hero-h1 {
    font-family: "Cairo", sans-serif;
    font-size: clamp(44px, 6vw, 80px);
}

.is-rtl .h2 {
    font-family: "Cairo", sans-serif;
    font-size: clamp(36px, 4vw, 56px);
}

.is-rtl .hstat-n,
.is-rtl .c-num {
    font-family: "Cairo", sans-serif;
}

.is-rtl .t-title {
    font-family: "Cairo", sans-serif;
}

.is-rtl .svc-t,
.is-rtl .w-t {
    font-family: "Cairo", sans-serif;
}

.is-rtl .btn-g,
.is-rtl .btn-cream,
.is-rtl .form-submit,
.is-rtl .n-cta {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    text-transform: none;
}

.is-rtl .form-group input,
.is-rtl .form-group select,
.is-rtl .form-group textarea {
    font-family: "Cairo", sans-serif;
}

.is-rtl .n-links a {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 13px;
    text-transform: none;
}

.is-rtl .f-tagline {
    font-family: "Cairo", sans-serif;
    font-style: normal;
}

.is-rtl .testi-quote {
    font-family: "Cairo", sans-serif;
}

.is-rtl .testi-author {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
}

.is-rtl .cta-t h2,
.is-rtl .cta-t h2 em {
    font-family: "Cairo", sans-serif;
}

.is-rtl .f-col a,
.is-rtl .f-p {
    font-family: "Cairo", sans-serif;
}

.is-rtl .svc-arrow {
    right: auto;
    left: 36px;
}

.is-rtl .why-badge {
    right: auto;
    left: 0;
}

.is-rtl .btn-g::before,
.is-rtl .btn-cream::before {
    transform-origin: right;
}

.is-rtl .btn-ghost2 {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
}

/* ── NAV RIGHT (lang switcher) ── */
.n-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lsw {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 3px;
}

.lbtn {
    padding: 5px 11px;
    font-family: "DM Mono", monospace;
    font-size: 11px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}

.lbtn.on {
    background: var(--green-m);
    color: var(--white);
}

/* ── PROJECTS SCROLL SECTION ── */
.proj-scroll-wrapper {
    position: relative;
    height: 70vh;
    min-height: 450px;
    overflow: hidden;
    border: 1px solid rgba(46, 107, 69, 0.2);
}

.proj-scroll-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.proj-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    pointer-events: none;
}

.proj-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.p-card-full {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.p-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.5) brightness(0.6);
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s;
}

.p-card-full:hover .p-img-full {
    transform: scale(1.05);
    filter: saturate(0.75) brightness(0.7);
}

.p-over-full {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 20, 16, 0.95) 0%,
        transparent 55%
    );
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.p-name-full {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}

.is-rtl .p-name-full {
    font-family: "Cairo", sans-serif;
    font-size: clamp(24px, 3vw, 40px);
}

.proj-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 20;
}

[dir="rtl"] .proj-dots {
    right: auto;
    left: 40px;
}

.proj-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition:
        background 0.3s,
        transform 0.3s;
    padding: 0;
}

.proj-dot.active {
    background: var(--green-l);
    transform: scale(1.4);
}

.proj-counter {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-family: "DM Mono", monospace;
    font-size: 12px;
    color: rgba(245, 240, 232, 0.35);
    letter-spacing: 2px;
    z-index: 20;
}

[dir="rtl"] .proj-counter {
    left: auto;
    right: 40px;
}

[dir="rtl"] .proj-dots {
    right: auto;
    left: 40px;
}

.proj-scroll-wrapper.locked {
    outline: 2px solid rgba(106, 191, 133, 0.15);
}

/* (legacy owl carousel / arc orbit removed — see .proj-show) */

/* ── PROJECT LISTING PAGE ── */
.proj-listing-hero {
    padding: 160px 60px 80px;
    background: var(--ink);
    position: relative;
}

.proj-listing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 30%,
        rgba(46, 107, 69, 0.08),
        transparent 60%
    );
    pointer-events: none;
}

.proj-listing-content {
    position: relative;
    z-index: 1;
}

.proj-listing {
    padding: 0 60px 100px;
    background: var(--ink);
}

.proj-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pl-card {
    display: block;
    text-decoration: none;
    background: #1c1c18;
    border: 1px solid var(--border);
    overflow: hidden;
    transition:
        border-color 0.3s,
        transform 0.3s;
}

.pl-card:hover {
    border-color: var(--green-m);
    transform: translateY(-4px);
}

.pl-img-wrap {
    height: 280px;
    overflow: hidden;
}

.pl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.5) brightness(0.65);
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s;
}

.pl-card:hover .pl-img {
    transform: scale(1.06);
    filter: saturate(0.75) brightness(0.75);
}

.pl-info {
    padding: 28px;
}

.pl-cat {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--earth-l);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.is-rtl .pl-cat {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
}

.pl-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}

.is-rtl .pl-name {
    font-family: "Cairo", sans-serif;
    font-size: 20px;
}

.pl-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 16px;
}

.pl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pl-tag {
    padding: 3px 10px;
    border: 1px solid rgba(46, 107, 69, 0.2);
    font-size: 9px;
    color: var(--green-l);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.is-rtl .pl-tag {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 10px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* ── 1200px ── */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ── 900px (tablet) ── */
@media (max-width: 900px) {
    /* Nav */
    nav {
        padding: 16px 20px;
    }
    nav.s {
        padding: 12px 20px;
    }
    .n-links {
        display: none;
    }

    /* General */
    section {
        padding: 60px 20px;
    }
    .marquee {
        padding: 18px 0;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 100svh;
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 90px;
    }
    .hero-content {
        padding: 32px 20px 0;
        max-width: 100%;
    }
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        flex-wrap: wrap;
        margin-top: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .hstat {
        flex: 0 0 50%;
        padding: 20px 20px;
    }
    .hstat:nth-child(2) {
        border-right: none;
    }
    .hstat:nth-child(3),
    .hstat:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Services */
    .svc-intro,
    .svc-grid {
        grid-template-columns: 1fr;
    }

    /* Counter */
    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Projects gallery */
    .proj-inner {
        padding: 0 20px;
    }

    /* Why */
    .why-sec {
        grid-template-columns: 1fr;
        min-height: auto;
        overflow: hidden;
    }
    .why-vis {
        min-height: 300px;
    }

    /* Process */
    .t-row {
        grid-template-columns: 1fr 50px 1fr;
    }
    .proc-prog-labels {
        gap: 8px;
    }
    .proc-prog-lbl {
        font-size: 9px;
    }

    /* Testimonials */
    .testi-sec {
        padding: 60px 20px;
    }

    /* Contact */
    .contact-sec {
        padding: 60px 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta {
        flex-direction: column;
        gap: 28px;
        padding: 60px 20px;
        text-align: center;
    }

    /* Footer */
    footer {
        padding: 48px 20px 24px;
    }
    .f-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Projects listing */
    .proj-listing-hero {
        padding: 120px 20px 52px;
    }
    .proj-listing {
        padding: 0 20px 64px;
    }
    .proj-listing-grid {
        grid-template-columns: 1fr;
    }
    .pl-img-wrap {
        height: 220px;
    }
}

/* ── 600px (mobile) ── */
@media (max-width: 600px) {
    /* Nav */
    nav {
        padding: 14px 16px;
    }
    nav.s {
        padding: 10px 16px;
    }

    /* Hero */
    .hero {
        padding-top: 80px;
    }
    .hero-content {
        padding: 24px 16px 0;
    }
    .hero-h1 {
        font-size: clamp(32px, 9vw, 52px);
    }
    .is-rtl .hero-h1 {
        font-size: clamp(28px, 8vw, 42px);
    }
    .hero-eyebrow {
        margin-bottom: 20px;
    }
    .hero-p {
        font-size: 13px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .hstat {
        flex: 0 0 50%;
        padding: 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }
    .hstat:nth-child(even) {
        border-right: none;
    }
    .hstat:nth-child(3),
    .hstat:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .hstat-n {
        font-size: 32px;
    }

    /* General */
    section {
        padding: 48px 16px;
    }

    /* Services */
    .svc-card {
        padding: 24px;
    }

    /* Counter */
    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }
    .counter-item {
        padding: 28px 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
    .counter-item:nth-child(even) {
        border-right: none;
    }
    .counter-item:nth-child(3),
    .counter-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Process timeline */
    .t-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .t-mid,
    .t-empty {
        display: none;
    }
    .t-card {
        margin: 4px 0;
        border-radius: 8px;
    }
    .proc-prog-labels {
        flex-wrap: wrap;
        gap: 6px;
    }
    .proc-prog-lbl {
        font-size: 9px;
        padding: 3px 6px;
    }

    /* Why */
    .why-body {
        padding: 40px 16px;
    }
    .why-badge {
        padding: 16px 20px;
    }
    .why-badge strong {
        font-size: 30px;
    }

    /* Testimonials */
    .testi-sec {
        padding: 48px 16px;
    }
    .testi-quote {
        font-size: clamp(18px, 5vw, 26px);
    }

    /* Contact */
    .contact-sec {
        padding: 48px 16px;
    }
    .contact-info-item {
        gap: 12px;
    }

    /* CTA */
    .cta {
        padding: 48px 16px;
    }
    .cta-t p {
        font-size: 12px;
    }

    /* Footer */
    footer {
        padding: 40px 16px 20px;
    }
    .f-top {
        gap: 28px;
    }
    .f-bot {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Projects listing */
    .proj-listing-hero {
        padding: 110px 16px 40px;
    }
    .proj-listing {
        padding: 0 16px 48px;
    }
    .pl-img-wrap {
        height: 200px;
    }
    .pl-tag {
        font-size: 8px;
    }

    /* Marquee */
    .m-item {
        font-size: 11px;
        padding: 0 20px;
    }
}

/* Touch device: disable custom cursor */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }

    .svc-card,
    .counter-item,
    .why-item,
    .p-card-full,
    .btn-g {
        cursor: pointer;
    }

    #cursor,
    #cursor-ring {
        display: none !important;
    }
}
