/* =========================================================
   JAYARA WEB WORKS — GLOBAL RESPONSIVE SYSTEM
   Put this at the VERY END of style.css
========================================================= */

html {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;

    overflow-x: hidden;
}

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


/* Prevent images/videos from creating overflow */

img,
video,
svg,
canvas {
    max-width: 100%;
    height: auto;
}


/* Links/buttons */

button,
a {
    max-width: 100%;
}


/* Text should be allowed to shrink */

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    overflow-wrap: break-word;
}

/* =========================================================
   GLOBAL CONTAINERS
========================================================= */

.hero-container,
.about-container,
.services-container,
.work-container,
.process-container,
.contact-container,
.footer-container {

    width: min(1200px, calc(100% - 48px));

    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;

    min-width: 0;
}
/* =========================================================
   JAYARA WEB WORKS — PREMIUM GLASS NAVBAR
========================================================= */

:root {
    --jw-cream: #f4ede5;
    --jw-cream-light: #faf7f3;
    --jw-brown: #754b35;
    --jw-brown-dark: #3f2a20;
    --jw-gold: #c88a37;
    --jw-gold-light: #d9a45b;
    --jw-border: rgba(117, 75, 53, 0.16);
}


/* =========================================================
   NAVBAR WRAPPER
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    padding: 24px 4%;

    z-index: 1000;

    pointer-events: none;
}


/* =========================================================
   DESKTOP NAVBAR
========================================================= */

.navbar-desktop {
    pointer-events: auto;

    width: 100%;

    display: flex;
    align-items: center;

    gap: 14px;

    animation: navbarReveal 1s cubic-bezier(.16, 1, .3, 1) forwards;
}


/* =========================================================
   LOGO
========================================================= */

.navbar-logo {
    position: relative;

    width: 178px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.72),
            rgba(244,237,229,.58)
        );

    border: 1px solid rgba(117,75,53,.16);

    border-radius: 4px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 15px 45px rgba(63,42,32,.08),
        inset 0 1px 0 rgba(255,255,255,.75);

    overflow: hidden;

    transition:
        transform .5s cubic-bezier(.16,1,.3,1),
        box-shadow .5s ease;
}


/* Moving light */

.navbar-logo::before {
    content: "";

    position: absolute;

    width: 80px;
    height: 180px;

    top: -80px;
    left: -120px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.65),
        transparent
    );

    transform: rotate(25deg);

    transition: left .8s cubic-bezier(.16,1,.3,1);
}


.navbar-logo:hover::before {
    left: 220px;
}


.navbar-logo:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 55px rgba(63,42,32,.13),
        inset 0 1px 0 rgba(255,255,255,.9);
}


.navbar-logo img {
    width: 145px;

    height: auto;

    display: block;

    position: relative;

    z-index: 2;

    transition:
        transform .5s cubic-bezier(.16,1,.3,1);
}


.navbar-logo:hover img {
    transform: scale(1.035);
}


/* =========================================================
   MAIN MENU
========================================================= */

.navbar-menu {
    position: relative;

    flex: 1;

    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(30px, 5vw, 72px);

    padding: 0 35px;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,.64),
            rgba(244,237,229,.48)
        );

    border: 1px solid var(--jw-border);

    border-radius: 5px;

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 15px 50px rgba(63,42,32,.07),
        inset 0 1px 0 rgba(255,255,255,.8);

    overflow: hidden;
}


/* Soft moving glow */

.navbar-menu::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -120px;
    left: 20%;

    background: rgba(200,138,55,.10);

    filter: blur(50px);

    border-radius: 50%;

    pointer-events: none;

    animation: menuGlow 7s ease-in-out infinite alternate;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-link {
    position: relative;

    color: var(--jw-brown);

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.4px;

    padding: 27px 4px;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.16,1,.3,1);

    z-index: 2;
}


.nav-link:hover {
    color: var(--jw-gold);

    transform: translateY(-2px);
}


/* =========================================================
   GOLD UNDERLINE
========================================================= */

.nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 13px;

    width: 0;
    height: 2px;

    background: var(--jw-gold);

    transform: translateX(-50%);

    border-radius: 20px;

    box-shadow:
        0 0 10px rgba(200,138,55,.35);

    transition:
        width .45s cubic-bezier(.16,1,.3,1);
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* Small gold dot */

.nav-link::before {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--jw-gold);

    left: 50%;
    bottom: 9px;

    transform: translateX(-50%) scale(0);

    transition:
        transform .35s cubic-bezier(.16,1,.3,1);
}


.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scale(1);
}


/* =========================================================
   START PROJECT BUTTON
========================================================= */

.navbar-cta {
    position: relative;

    height: 78px;

    min-width: 242px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 12px 0 24px;

    background:
        linear-gradient(
            135deg,
            #754b35,
            #67412e
        );

    color: white;

    text-decoration: none;

    border-radius: 5px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(117,75,53,.20);

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        box-shadow .45s ease;
}


/* Gold light sweep */

.navbar-cta::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.14),
        transparent
    );

    transform: skewX(-20deg);

    transition: left .7s cubic-bezier(.16,1,.3,1);
}


.navbar-cta:hover::before {
    left: 150%;
}


.navbar-cta:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 50px rgba(117,75,53,.27);
}


.navbar-cta span:first-child {
    position: relative;

    z-index: 2;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.2px;
}


/* =========================================================
   CTA ARROW BOX
========================================================= */

.cta-arrow {
    position: relative;

    z-index: 2;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 3px;

    font-size: 21px;

    transition:
        background .4s ease,
        transform .4s cubic-bezier(.16,1,.3,1);
}


.navbar-cta:hover .cta-arrow {
    background: var(--jw-gold);

    transform: translate(3px,-3px) rotate(3deg);
}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

.navbar-mobile {
    display: none;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 900px) {

    .navbar {
        padding: 15px 5%;

        pointer-events: none;
    }


    /* Hide desktop */

    .navbar-desktop {
        display: none;
    }


    /* Mobile bar */

    .navbar-mobile {
        pointer-events: auto;

        display: flex;

        align-items: center;
        justify-content: space-between;

        width: 100%;
        height: 64px;

        animation: navbarReveal .8s cubic-bezier(.16,1,.3,1);
    }


    /* =====================================================
       MOBILE LOGO
    ===================================================== */

    .navbar-mobile .navbar-logo {

        width: 145px;
        height: 64px;

        border-radius: 4px;
    }


    .navbar-mobile .navbar-logo img {
        width: 118px;
    }


    /* =====================================================
       MOBILE MENU BUTTON
    ===================================================== */

    .mobile-menu-btn {

        position: relative;

        width: 52px;
        height: 52px;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 7px;

        border: 1px solid rgba(117,75,53,.18);

        border-radius: 4px;

        background:
            rgba(250,247,243,.72);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        box-shadow:
            0 12px 30px rgba(63,42,32,.08),
            inset 0 1px 0 rgba(255,255,255,.8);

        cursor: pointer;

        overflow: hidden;
    }


    /* Gold hover glow */

    .mobile-menu-btn::before {
        content: "";

        position: absolute;

        width: 0;
        height: 0;

        border-radius: 50%;

        background: rgba(200,138,55,.15);

        transition:
            width .5s ease,
            height .5s ease;
    }


    .mobile-menu-btn:hover::before {
        width: 100px;
        height: 100px;
    }


    .mobile-menu-btn span {

        position: relative;

        width: 21px;
        height: 2px;

        display: block;

        background: var(--jw-brown);

        border-radius: 10px;

        transition:
            transform .4s cubic-bezier(.16,1,.3,1),
            width .4s ease;
    }


    .mobile-menu-btn span:last-child {
        width: 14px;

        margin-left: 7px;
    }


    .mobile-menu-btn:hover span:first-child {
        width: 26px;
    }


    .mobile-menu-btn:hover span:last-child {
        width: 20px;

        margin-left: 0;
    }


    /* =====================================================
       MOBILE MENU PANEL
    ===================================================== */

    .mobile-menu {

        pointer-events: auto;

        width: 100%;

        margin-top: 12px;

        padding: 28px;

        display: none;

        flex-direction: column;

        gap: 8px;

        background:
            linear-gradient(
                135deg,
                rgba(250,247,243,.92),
                rgba(244,237,229,.82)
            );

        border: 1px solid rgba(117,75,53,.16);

        border-radius: 5px;

        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);

        box-shadow:
            0 25px 70px rgba(63,42,32,.14),
            inset 0 1px 0 rgba(255,255,255,.85);
    }


    .mobile-menu a {

        position: relative;

        padding: 15px 10px;

        color: var(--jw-brown);

        text-decoration: none;

        font-family: "Inter", sans-serif;

        font-size: 12px;

        font-weight: 700;

        letter-spacing: 1.5px;

        border-bottom: 1px solid rgba(117,75,53,.08);

        transition:
            padding-left .35s ease,
            color .35s ease;
    }


    .mobile-menu a:hover {
        color: var(--jw-gold);

        padding-left: 18px;
    }


    .mobile-menu a:last-child {
        margin-top: 12px;

        border: none;

        background: var(--jw-brown);

        color: white;

        border-radius: 3px;

        padding: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .navbar {
        padding: 12px 4%;
    }


    .navbar-mobile {
        height: 58px;
    }


    .navbar-mobile .navbar-logo {
        width: 132px;
        height: 58px;
    }


    .navbar-mobile .navbar-logo img {
        width: 108px;
    }


    .mobile-menu-btn {
        width: 47px;
        height: 47px;
    }
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes navbarReveal {

    from {
        opacity: 0;

        transform:
            translateY(-25px)
            scale(.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


@keyframes menuGlow {

    0% {
        transform: translateX(-30px);
    }

    100% {
        transform: translateX(350px);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .navbar-desktop,
    .navbar-mobile,
    .navbar-logo,
    .navbar-cta,
    .nav-link,
    .mobile-menu-btn,
    .mobile-menu {
        animation: none;
        transition: none;
    }
}



/* =========================================================
   JAYARA WEB WORKS — HERO SECTION
========================================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(200, 138, 55, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(117, 75, 53, 0.07),
            transparent 30%
        ),
        var(--jw-cream);

    color: var(--jw-brown-dark);
}


/* =========================================================
   BACKGROUND GEOMETRIC ELEMENTS
========================================================= */

.hero-bg-shape {
    position: absolute;

    pointer-events: none;

    border: 1px solid rgba(117, 75, 53, 0.10);

    transform: rotate(45deg);
}


.hero-bg-shape-1 {
    width: 430px;
    height: 430px;

    right: -180px;
    top: 25%;

    border-radius: 45px;

    animation:
        heroRotate 25s linear infinite;
}


.hero-bg-shape-2 {
    width: 180px;
    height: 180px;

    left: -80px;
    bottom: 8%;

    border-radius: 25px;

    border-color: rgba(200, 138, 55, 0.18);

    animation:
        heroFloat 7s ease-in-out infinite;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;

    width: min(1400px, 92%);

    min-height: 100vh;

    margin: auto;

    padding:
        170px 0 45px;

    display: grid;

    grid-template-columns:
        180px
        minmax(400px, 1fr)
        300px;

    grid-template-rows:
        1fr
        auto;

    align-items: center;

    column-gap: 40px;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.hero-intro {
    align-self: start;

    padding-top: 55px;

    position: relative;

    top: -55px;

    animation:
        heroLeftReveal 1s
        cubic-bezier(.16, 1, .3, 1)
        .25s both;
}


.hero-eyebrow {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--jw-brown);

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

    writing-mode: vertical-rl;

    transform: rotate(180deg);
}


.hero-dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--jw-gold);

    box-shadow:
        0 0 0 5px rgba(200, 138, 55, .10),
        0 0 15px rgba(200, 138, 55, .35);

    animation:
        goldPulse 2s ease-in-out infinite;
}


.hero-small-text {
    margin-top: 70px;

    color: rgba(63, 42, 32, .48);

    font-family: "Inter", sans-serif;

    font-size: 9px;

    line-height: 1.8;

    letter-spacing: 1.5px;

    writing-mode: vertical-rl;

    transform: rotate(180deg);
}


/* =========================================================
   MAIN HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 5;

    top: -55px;

    animation:
        heroMainReveal 1.1s
        cubic-bezier(.16, 1, .3, 1)
        .15s both;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.hero-title {
    margin: 0;

    color: var(--jw-brown-dark);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(72px, 8.5vw, 138px);

    font-weight: 500;

    line-height: .79;

    letter-spacing: -5px;

    text-transform: uppercase;
}


.hero-title-outline {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1.3px var(--jw-brown);

    margin-left: 8%;

    transition:
        color .6s ease,
        -webkit-text-stroke .6s ease;
}


.hero-title-outline:hover {
    color: rgba(200, 138, 55, .12);

    -webkit-text-stroke-color:
        var(--jw-gold);
}


.hero-title-solid {
    display: block;

    margin-left: 21%;

    color: var(--jw-brown);

    position: relative;
}


.hero-title-solid::after {
    content: "";

    position: absolute;

    left: 2px;

    bottom: -14px;

    width: 110px;
    height: 3px;

    background: var(--jw-gold);

    transform-origin: left;

    animation:
        heroLineReveal 1s
        cubic-bezier(.16, 1, .3, 1)
        1.2s both;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
    width: min(430px, 85%);

    margin-top: 58px;

    margin-left: 22%;

    position: relative;

    top: -10px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;
}


.hero-description p {
    margin: 0;

    color: rgba(63, 42, 32, .65);

    font-family: "Inter", sans-serif;

    font-size: 13px;

    line-height: 1.8;

    max-width: 270px;
}


/* =========================================================
   HERO WORK LINK
========================================================= */

.hero-link {
    position: relative;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--jw-brown);

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.3px;
}


.hero-link::before {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--jw-gold);

    transition:
        width .45s
        cubic-bezier(.16, 1, .3, 1);
}


.hero-link:hover::before {
    width: 100%;
}


.hero-link-arrow {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(117, 75, 53, .20);

    border-radius: 50%;

    font-size: 16px;

    transition:
        transform .45s
        cubic-bezier(.16, 1, .3, 1),
        background .35s ease,
        color .35s ease;
}


.hero-link:hover .hero-link-arrow {
    transform:
        translate(4px, -4px)
        rotate(5deg);

    background: var(--jw-gold);

    color: white;
}


/* =========================================================
   GEOMETRIC J
========================================================= */

.hero-mark {
    position: relative;

    height: 390px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    animation:
        heroMarkReveal 1.2s
        cubic-bezier(.16, 1, .3, 1)
        .45s both;
}


/* Outer rotating frame */

.hero-mark::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border:
        1px solid rgba(117, 75, 53, .13);

    transform: rotate(45deg);

    animation:
        heroRotate 18s linear infinite;
}


/* Inner rotating frame */

.hero-mark::after {
    content: "";

    position: absolute;

    width: 185px;
    height: 185px;

    border:
        1px solid rgba(200, 138, 55, .22);

    transform: rotate(45deg);

    animation:
        heroRotateReverse 14s linear infinite;
}


/* =========================================================
   GEOMETRIC J
========================================================= */

.hero-j {
    position: relative;

    width: 150px;
    height: 180px;

    z-index: 3;

    transform: rotate(-8deg);

    animation:
        jFloat 6s ease-in-out infinite;
}


/* Base blocks */

.j-block {
    position: absolute;

    display: block;

    background: var(--jw-brown);

    transition:
        transform .5s
        cubic-bezier(.16, 1, .3, 1);
}


/* Vertical */

.j-block-1 {
    width: 32px;
    height: 135px;

    right: 25px;
    top: 0;

    border-radius:
        3px 3px 0 0;
}


/* Top horizontal */

.j-block-2 {
    width: 100px;
    height: 32px;

    right: 25px;
    top: 0;

    border-radius:
        3px 3px 3px 0;
}


/* Lower section */

.j-block-3 {
    width: 95px;
    height: 32px;

    left: 25px;
    bottom: 12px;

    border-radius:
        0 0 3px 25px;

    transform: rotate(-45deg);
}


/* Gold accent */

.j-block-4 {
    width: 32px;
    height: 70px;

    left: 20px;
    bottom: 28px;

    background: var(--jw-gold);

    border-radius: 3px;

    transform: rotate(0deg);
}


/* J hover interactions */

.hero-mark:hover .j-block-1 {
    transform:
        translateY(-6px);
}


.hero-mark:hover .j-block-2 {
    transform:
        translateX(6px);
}


.hero-mark:hover .j-block-4 {
    transform:
        translateY(6px)
        rotate(5deg);
}


/* =========================================================
   MARK LABEL
========================================================= */

.hero-mark-label {
    position: absolute;

    bottom: 15px;

    color: rgba(63, 42, 32, .45);

    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.hero-bottom {
    grid-column: 1 / -1;

    width: 100%;

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    align-items: center;

    padding-top: 25px;

    border-top:
        1px solid rgba(117, 75, 53, .13);

    animation:
        heroBottomReveal 1s
        cubic-bezier(.16, 1, .3, 1)
        1s both;
}


.hero-scroll {
    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(63, 42, 32, .50);

    font-family: "Inter", sans-serif;

    font-size: 8px;

    letter-spacing: 1.5px;
}


.scroll-line {
    width: 45px;
    height: 1px;

    background: var(--jw-gold);

    position: relative;

    overflow: hidden;
}


.scroll-line::after {
    content: "";

    position: absolute;

    left: -100%;
    top: 0;

    width: 100%;
    height: 100%;

    background: var(--jw-brown);

    animation:
        scrollLine 2s ease-in-out infinite;
}


.hero-location {
    text-align: center;

    color: rgba(63, 42, 32, .40);

    font-family: "Inter", sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}


.hero-year {
    text-align: right;

    color: rgba(63, 42, 32, .40);

    font-family: "Inter", sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroMainReveal {

    from {
        opacity: 0;

        transform:
            translateY(60px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


@keyframes heroLeftReveal {

    from {
        opacity: 0;

        transform:
            translateX(-30px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }
}


@keyframes heroMarkReveal {

    from {
        opacity: 0;

        transform:
            translateX(50px)
            scale(.8);
    }

    to {
        opacity: 1;

        transform:
            translateX(0)
            scale(1);
    }
}


@keyframes heroBottomReveal {

    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


@keyframes heroLineReveal {

    from {
        transform:
            scaleX(0);
    }

    to {
        transform:
            scaleX(1);
    }
}


@keyframes goldPulse {

    0%,
    100% {
        transform: scale(1);

        box-shadow:
            0 0 0 5px rgba(200, 138, 55, .10),
            0 0 15px rgba(200, 138, 55, .30);
    }

    50% {
        transform: scale(1.3);

        box-shadow:
            0 0 0 9px rgba(200, 138, 55, .03),
            0 0 25px rgba(200, 138, 55, .45);
    }
}


@keyframes jFloat {

    0%,
    100% {
        transform:
            rotate(-8deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-5deg)
            translateY(-10px);
    }
}


@keyframes heroRotate {

    from {
        transform:
            rotate(45deg);
    }

    to {
        transform:
            rotate(405deg);
    }
}


@keyframes heroRotateReverse {

    from {
        transform:
            rotate(45deg);
    }

    to {
        transform:
            rotate(-315deg);
    }
}


@keyframes heroFloat {

    0%,
    100% {
        transform:
            rotate(45deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(55deg)
            translateY(-15px);
    }
}


@keyframes scrollLine {

    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-container {

        grid-template-columns:
            100px
            1fr
            220px;

        column-gap: 20px;
    }


    .hero-title {

        font-size:
            clamp(65px, 9vw, 100px);
    }


    .hero-mark {

        transform: scale(.8);
    }


    .hero-description {

        margin-left: 12%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .hero {

        min-height: 100svh;
    }


    .hero-container {

        width: 90%;

        min-height: 100svh;

        padding:
            125px 0 30px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 0;
    }


    /* Left intro */

    .hero-intro {

        padding: 0;

        margin-bottom: 30px;

        top: 0;
    }


    .hero-eyebrow {

        writing-mode: horizontal-tb;

        transform: none;

        font-size: 9px;
    }


    .hero-small-text {

        display: none;
    }


    /* Main content */

    .hero-content {

        top: -35px;
    }


    .hero-title {

        font-size:
            clamp(55px, 16vw, 88px);

        line-height: .82;

        letter-spacing: -3px;
    }


    .hero-title-outline {

        margin-left: 5%;

        -webkit-text-stroke-width: 1px;
    }


    .hero-title-solid {

        margin-left: 12%;
    }


    .hero-title-solid::after {

        width: 75px;

        bottom: -10px;
    }


    /* Description */

    .hero-description {

        width: 100%;

        margin:
            45px 0 0;

        top: -5px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .hero-description p {

        font-size: 12px;

        max-width: 280px;
    }


    /* J */

    .hero-mark {

        position: absolute;

        right: -45px;

        bottom: 110px;

        width: 190px;

        height: 230px;

        transform:
            scale(.65);

        transform-origin:
            center;
    }


    .hero-mark::before {

        width: 210px;
        height: 210px;
    }


    .hero-mark::after {

        width: 155px;
        height: 155px;
    }


    /* Bottom */

    .hero-bottom {

        position: absolute;

        bottom: 25px;

        left: 0;

        display: flex;

        justify-content: space-between;

        padding-top: 18px;
    }


    .hero-location {

        display: none;
    }


    .hero-year {

        text-align: right;
    }


    /* Background */

    .hero-bg-shape-1 {

        width: 260px;
        height: 260px;

        right: -170px;

        top: 35%;
    }


    .hero-bg-shape-2 {

        width: 100px;
        height: 100px;

        left: -55px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero-container {

        padding-top: 115px;
    }


    .hero-content {

        top: -25px;
    }


    .hero-title {

        font-size: 52px;
    }


    .hero-mark {

        right: -65px;

        bottom: 105px;

        transform:
            scale(.52);
    }


    .hero-description {

        margin-top: 35px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero *,
    .hero::before,
    .hero::after {

        animation: none !important;

        transition: none !important;
    }
}


/* =========================================================
   JAYARA WEB WORKS
   MOBILE HERO — COMPLETE OVERRIDE
========================================================= */


/* =========================================================
   GLOBAL MOBILE FIX
========================================================= */

@media (max-width: 700px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

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


    /* =====================================================
       NAVBAR
    ===================================================== */

    .navbar {
        position: fixed;

        top: 0;
        left: 0;

        width: 100%;

        padding: 12px 16px;

        overflow: visible;
    }


    .navbar-mobile {
        width: 100%;

        height: 58px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        gap: 12px;
    }


    .navbar-mobile .navbar-logo {
        width: 132px;
        height: 58px;

        flex-shrink: 0;

        border-radius: 5px;
    }


    .navbar-mobile .navbar-logo img {
        width: 108px;
        max-width: 100%;
    }


    /* =====================================================
       MOBILE MENU BUTTON
    ===================================================== */

    .mobile-menu-btn {
        width: 48px;
        height: 48px;

        flex-shrink: 0;

        padding: 0;

        border-radius: 6px;
    }


    .mobile-menu-btn span {
        width: 21px;
    }


    .mobile-menu-btn span:last-child {
        width: 14px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        width: 100%;
        min-height: 100svh;

        overflow: hidden;

        position: relative;
    }


    .hero-container {

        width: 100%;
        max-width: 100%;

        min-height: 100svh;

        margin: 0;

        padding:
            150px 30px 90px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        position: relative;

        overflow: hidden;
    }


    /* =====================================================
       LEFT INTRO
    ===================================================== */

    .hero-intro {

        position: relative;

        top: 0;

        left: 0;

        width: 100%;

        margin: 0 0 22px;

        padding: 0;

        z-index: 10;

        animation:
            heroLeftReveal .8s
            cubic-bezier(.16,1,.3,1)
            .15s both;
    }


    .hero-eyebrow {

        writing-mode: horizontal-tb;

        transform: none;

        display: flex;

        align-items: center;

        gap: 10px;

        font-size: 10px;

        letter-spacing: 2px;
    }


    .hero-dot {
        width: 7px;
        height: 7px;
    }


    .hero-small-text {
        display: none;
    }


    /* =====================================================
       MAIN CONTENT
    ===================================================== */

    .hero-content {

        position: relative;

        top: 0;

        left: 0;

        width: 100%;

        max-width: 100%;

        margin: 0;

        padding: 0;

        z-index: 10;

        animation:
            heroMainReveal .9s
            cubic-bezier(.16,1,.3,1)
            .25s both;
    }


    /* =====================================================
       HERO TITLE
    ===================================================== */

    .hero-title {

        width: 100%;
        max-width: 100%;

        margin: 0;

        padding: 0;

        font-size:
            clamp(46px, 14.2vw, 65px);

        line-height: .84;

        letter-spacing: -2.8px;

        word-break: normal;

        overflow: visible;
    }


    .hero-title-outline {

        display: block;

        width: max-content;
        max-width: 100%;

        margin-left: 5%;

        white-space: nowrap;

        -webkit-text-stroke:
            1px var(--jw-brown);
    }


    .hero-title-solid {

        display: block;

        width: max-content;
        max-width: 100%;

        margin-left: 11%;

        white-space: nowrap;
    }


    .hero-title-solid::after {

        left: 2px;

        bottom: -10px;

        width: 65px;

        height: 2px;
    }


    /* =====================================================
       DESCRIPTION
    ===================================================== */

    .hero-description {

        position: relative;

        top: 0;

        left: 0;

        width: 100%;
        max-width: 300px;

        margin:
            38px 0 0 11%;

        padding: 0;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 24px;

        z-index: 12;
    }


    .hero-description p {

        width: 100%;
        max-width: 290px;

        margin: 0;

        font-size: 12px;

        line-height: 1.75;

        color:
            rgba(63,42,32,.67);
    }


    /* =====================================================
       EXPLORE LINK
    ===================================================== */

    .hero-link {

        display: flex;

        align-items: center;

        gap: 12px;

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .hero-link-arrow {

        width: 38px;
        height: 38px;

        font-size: 17px;
    }


    /* =====================================================
       J GRAPHIC
    ===================================================== */

    .hero-mark {

        position: absolute;

        width: 150px;
        height: 180px;

        right: -65px;

        bottom: 65px;

        margin: 0;

        z-index: 2;

        opacity: .48;

        transform:
            scale(.62);

        transform-origin:
            center center;

        pointer-events: none;

        animation:
            heroMarkReveal 1s
            cubic-bezier(.16,1,.3,1)
            .5s both;
    }


    .hero-mark::before {

        width: 210px;
        height: 210px;

        border-color:
            rgba(117,75,53,.10);
    }


    .hero-mark::after {

        width: 155px;
        height: 155px;

        border-color:
            rgba(200,138,55,.16);
    }


    .hero-j {

        transform:
            rotate(-8deg)
            scale(.9);
    }


    .hero-mark-label {

        display: none;
    }


    /* =====================================================
       BACKGROUND SHAPES
    ===================================================== */

    .hero-bg-shape-1 {

        width: 260px;
        height: 260px;

        right: -190px;
        top: 40%;

        opacity: .55;

        border-radius: 30px;
    }


    .hero-bg-shape-2 {

        width: 100px;
        height: 100px;

        left: -65px;
        bottom: 12%;

        opacity: .55;
    }


    /* =====================================================
       BOTTOM INFORMATION
    ===================================================== */

    .hero-bottom {

        position: absolute;

        left: 30px;
        right: 30px;

        bottom: 25px;

        width: auto;

        display: flex;

        align-items: center;
        justify-content: space-between;

        gap: 20px;

        padding-top: 15px;

        border-top:
            1px solid
            rgba(117,75,53,.13);

        z-index: 10;
    }


    .hero-scroll {

        display: flex;

        align-items: center;

        gap: 9px;

        font-size: 7px;

        letter-spacing: 1.3px;
    }


    .scroll-line {

        width: 32px;
    }


    .hero-location {

        display: none;
    }


    .hero-year {

        display: block;

        font-size: 7px;

        letter-spacing: 1.5px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .navbar {
        padding:
            10px 14px;
    }


    .navbar-mobile .navbar-logo {

        width: 125px;
        height: 55px;
    }


    .navbar-mobile .navbar-logo img {

        width: 103px;
    }


    .mobile-menu-btn {

        width: 45px;
        height: 45px;
    }


    .hero-container {

        padding:
            140px 26px 85px;
    }


    .hero-title {

        font-size:
            clamp(41px, 13.5vw, 54px);

        letter-spacing:
            -2.3px;

        line-height:
            .86;
    }


    .hero-title-outline {

        margin-left: 4%;
    }


    .hero-title-solid {

        margin-left: 9%;
    }


    .hero-description {

        margin-left: 9%;

        margin-top: 34px;

        max-width: 270px;
    }


    .hero-description p {

        font-size: 11.5px;

        line-height: 1.7;
    }


    .hero-mark {

        right: -75px;

        bottom: 70px;

        transform:
            scale(.52);

        opacity: .40;
    }


    .hero-bottom {

        left: 26px;
        right: 26px;
    }
}


/* =========================================================
   EXTRA SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .hero-container {

        padding:
            135px 22px 80px;
    }


    .hero-title {

        font-size: 39px;

        letter-spacing: -2px;
    }


    .hero-description {

        margin-left: 7%;

        margin-top: 30px;
    }


    .hero-description p {

        max-width: 245px;

        font-size: 11px;
    }


    .hero-mark {

        right: -90px;

        bottom: 65px;

        transform:
            scale(.46);

        opacity: .32;
    }


    .hero-bottom {

        left: 22px;
        right: 22px;
    }
}
/* =========================================================
   MOBILE — REMOVE FLOATING J
========================================================= */

@media (max-width: 700px) {

    .hero-mark {
        display: none !important;
    }

}


/* =========================================================
   JAYARA WEB WORKS — ABOUT SECTION
========================================================= */

.about-section {
    position: relative;

    width: 100%;

    padding: 150px 0 70px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(200, 138, 55, .08),
            transparent 25%
        ),
        var(--jw-cream-light);

    color: var(--jw-brown-dark);
}


/* =========================================================
   CONTAINER
========================================================= */

.about-container {
    width: min(1400px, 90%);

    margin: 0 auto;

    position: relative;
}


/* =========================================================
   TOP META
========================================================= */

.about-meta {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 85px;
}


.about-number {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(117, 75, 53, .18);

    border-radius: 50%;

    color: var(--jw-gold);

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    background:
        rgba(255, 255, 255, .35);

    backdrop-filter: blur(10px);
}


.about-label {
    color: var(--jw-brown);

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.about-meta-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(117,75,53,.20),
            transparent
        );
}


/* =========================================================
   MAIN GRID
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 100px;

    align-items: center;
}


/* =========================================================
   LEFT TITLE
========================================================= */

.about-title-wrap {
    position: relative;

    padding-left: 55px;
}


.about-title-wrap::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 2px;
    height: 125px;

    background:
        linear-gradient(
            to bottom,
            var(--jw-gold),
            transparent
        );
}


.about-kicker {
    margin: 0 0 28px;

    color: rgba(63,42,32,.48);

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.about-title {

    margin: 0;

    max-width: none;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(75px, 8vw, 125px);

    font-weight: 500;

    line-height: .80;

    letter-spacing: -4px;

    text-transform: uppercase;

    color: var(--jw-brown-dark);
}


.about-title span {

    display: block;

    margin-left: 13%;

    color: transparent;

    -webkit-text-stroke:
        1.2px var(--jw-brown);
}


.about-title em {

    display: block;

    margin-left: 28%;

    color: var(--jw-brown);

    font-style: normal;

    position: relative;
}


.about-title em::after {

    content: "";

    position: absolute;

    left: 5px;
    bottom: -18px;

    width: 85px;
    height: 3px;

    background: var(--jw-gold);

    transform-origin: left;

    animation:
        aboutLine 1s
        cubic-bezier(.16,1,.3,1)
        both;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.about-copy {

    position: relative;

    padding: 50px 45px;

    border: 1px solid rgba(117,75,53,.13);

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.52),
            rgba(244,237,229,.30)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 25px 70px rgba(63,42,32,.06),
        inset 0 1px 0 rgba(255,255,255,.75);

    overflow: hidden;
}


/* Decorative corner */

.about-copy::before {

    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -35px;
    top: -35px;

    border: 1px solid rgba(200,138,55,.20);

    transform: rotate(45deg);

    transition:
        transform .7s
        cubic-bezier(.16,1,.3,1);
}


.about-copy:hover::before {

    transform:
        rotate(90deg)
        scale(1.15);
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.about-lead {

    margin: 0 0 25px;

    max-width: 440px;

    color: var(--jw-brown);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 30px;

    line-height: 1.15;

    font-weight: 500;
}


.about-description {

    margin: 0;

    max-width: 430px;

    color: rgba(63,42,32,.62);

    font-family: "Inter", sans-serif;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.about-capabilities {

    margin-top: 45px;

    display: flex;

    flex-direction: column;

    border-top:
        1px solid rgba(117,75,53,.12);
}


.capability {

    min-height: 55px;

    display: grid;

    grid-template-columns: 40px 1fr;

    align-items: center;

    border-bottom:
        1px solid rgba(117,75,53,.12);

    transition:
        padding-left .4s
        cubic-bezier(.16,1,.3,1),
        background .4s ease;
}


.capability:hover {

    padding-left: 10px;

    background:
        rgba(200,138,55,.05);
}


.capability span {

    color: var(--jw-gold);

    font-family: "Inter", sans-serif;

    font-size: 8px;

    letter-spacing: 1px;
}


.capability strong {

    color: var(--jw-brown);

    font-family: "Inter", sans-serif;

    font-size: 10px;

    letter-spacing: 1.5px;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {

    width: fit-content;

    margin-top: 35px;

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--jw-brown);

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.about-cta-arrow {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(117,75,53,.20);

    border-radius: 50%;

    font-size: 17px;

    transition:
        transform .45s
        cubic-bezier(.16,1,.3,1),
        background .35s ease,
        color .35s ease;
}


.about-cta:hover .about-cta-arrow {

    transform:
        translate(4px,-4px)
        rotate(5deg);

    background: var(--jw-gold);

    color: #fff;
}


/* =========================================================
   ABOUT FOOTER
========================================================= */

.about-footer {

    margin-top: 100px;

    padding-top: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:
        1px solid rgba(117,75,53,.12);
}


.about-marquee {

    display: flex;

    align-items: center;

    gap: 22px;

    color: rgba(117,75,53,.42);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

    letter-spacing: 3px;
}


.about-marquee i {

    color: var(--jw-gold);

    font-style: normal;

    font-family: "Inter", sans-serif;

    font-size: 10px;
}


.about-code {

    color: rgba(63,42,32,.38);

    font-family: "Inter", sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}


/* =========================================================
   HOVER TITLE EFFECT
========================================================= */

.about-title span,
.about-title em {

    transition:
        transform .6s
        cubic-bezier(.16,1,.3,1);
}


.about-title-wrap:hover .about-title span {

    transform:
        translateX(12px);
}


.about-title-wrap:hover .about-title em {

    transform:
        translateX(-8px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-section {

        padding:
            120px 0 60px;
    }


    .about-grid {

        grid-template-columns:
            1fr;

        gap: 70px;
    }


    .about-title {

        font-size:
            clamp(70px, 11vw, 105px);
    }


    .about-copy {

        max-width: 650px;

        margin-left: auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-section {

        padding:
            100px 0 50px;

        overflow: hidden;
    }


    .about-container {

        width: 88%;
    }


    /* Meta */

    .about-meta {

        gap: 12px;

        margin-bottom: 55px;
    }


    .about-number {

        width: 34px;
        height: 34px;

        font-size: 8px;
    }


    .about-label {

        font-size: 8px;

        letter-spacing: 1.5px;
    }


    /* Grid */

    .about-grid {

        display: flex;

        flex-direction: column;

        gap: 55px;

        align-items: stretch;
    }


    /* Title */

    .about-title-wrap {

        padding-left: 25px;
    }


    .about-title-wrap::before {

        height: 90px;
    }


    .about-kicker {

        font-size: 8px;

        margin-bottom: 20px;
    }


    .about-title {

        font-size:
            clamp(52px, 15vw, 72px);

        line-height: .84;

        letter-spacing:
            -2.5px;
    }


    .about-title span {

        margin-left: 6%;

        -webkit-text-stroke:
            1px var(--jw-brown);
    }


    .about-title em {

        margin-left: 14%;
    }


    .about-title em::after {

        width: 60px;

        height: 2px;

        bottom: -11px;
    }


    /* Content card */

    .about-copy {

        width: 100%;

        margin: 0;

        padding:
            30px 24px;

        border-radius: 7px;
    }


    .about-lead {

        font-size: 26px;

        line-height: 1.1;
    }


    .about-description {

        font-size: 11.5px;

        line-height: 1.8;
    }


    /* Capabilities */

    .about-capabilities {

        margin-top: 32px;
    }


    .capability {

        min-height: 50px;
    }


    .capability strong {

        font-size: 9px;
    }


    /* CTA */

    .about-cta {

        margin-top: 28px;

        font-size: 8px;
    }


    .about-cta-arrow {

        width: 36px;
        height: 36px;

        font-size: 15px;
    }


    /* Footer */

    .about-footer {

        margin-top: 65px;

        padding-top: 20px;
    }


    .about-marquee {

        gap: 10px;

        font-size: 15px;

        letter-spacing: 1.5px;
    }


    .about-marquee i {

        font-size: 8px;
    }


    .about-code {

        font-size: 7px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .about-section {

        padding-top: 85px;
    }


    .about-container {

        width: 89%;
    }


    .about-title {

        font-size: 48px;

        letter-spacing: -2px;
    }


    .about-copy {

        padding:
            27px 20px;
    }


    .about-lead {

        font-size: 23px;
    }


    .about-description {

        font-size: 11px;
    }


    .about-marquee span:nth-child(1),
    .about-marquee span:nth-child(5) {

        display: none;
    }
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes aboutLine {

    from {
        transform:
            scaleX(0);
    }

    to {
        transform:
            scaleX(1);
    }
}

/* =========================================================
   JAYARA WEB WORKS — SERVICES SECTION
========================================================= */

.services-section {
    position: relative;
    width: 100%;
    padding: 150px 0 90px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(200, 138, 55, .08),
            transparent 25%
        ),
        var(--jw-cream);
}


/* =========================================================
   CONTAINER
========================================================= */

.services-container {
    width: min(1400px, 90%);
    margin: 0 auto;
}


/* =========================================================
   TOP META
========================================================= */

.services-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 80px;
}


.services-number {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(117, 75, 53, .18);
    border-radius: 50%;

    color: var(--jw-gold);

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
}


.services-label {
    color: var(--jw-brown);

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.services-line {
    flex: 1;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(117, 75, 53, .20),
            transparent
        );
}


.services-side-text {
    color: rgba(63, 42, 32, .35);

    font-family: "Inter", sans-serif;
    font-size: 7px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


/* =========================================================
   HEADER
========================================================= */

.services-header {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 90px;
}


.services-kicker {
    display: block;

    margin-bottom: 22px;

    color: rgba(63, 42, 32, .45);

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


.services-heading h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(80px, 9vw, 140px);

    font-weight: 500;

    line-height: .76;

    letter-spacing: -5px;

    color: var(--jw-brown-dark);

    text-transform: uppercase;
}


.services-heading h2 span {
    display: block;

    margin-left: 18%;

    color: transparent;

    -webkit-text-stroke:
        1.2px var(--jw-brown);
}


.services-intro {
    max-width: 390px;

    margin: 0 0 8px;

    color: rgba(63, 42, 32, .60);

    font-family: "Inter", sans-serif;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   SERVICES LIST
========================================================= */

.services-list {
    width: 100%;

    border-top:
        1px solid rgba(117, 75, 53, .18);
}


/* =========================================================
   SERVICE ITEM
========================================================= */

.service-item {
    position: relative;

    min-height: 145px;

    display: grid;

    grid-template-columns:
        70px
        minmax(300px, 1.3fr)
        minmax(180px, .7fr)
        65px;

    align-items: center;

    gap: 35px;

    padding: 25px 20px;

    border-bottom:
        1px solid rgba(117, 75, 53, .15);

    overflow: hidden;

    transition:
        padding .55s cubic-bezier(.16,1,.3,1),
        background .45s ease;
}


/* Animated background */

.service-item::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(200,138,55,.10),
            rgba(200,138,55,.025),
            transparent
        );

    transition:
        width .7s cubic-bezier(.16,1,.3,1);

    pointer-events: none;
}


.service-item:hover::before {
    width: 100%;
}


/* Gold side line */

.service-item::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background: var(--jw-gold);

    transition:
        height .5s cubic-bezier(.16,1,.3,1);
}


.service-item:hover::after {
    height: 100%;
}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-index {
    position: relative;
    z-index: 2;

    color: rgba(117, 75, 53, .42);

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    transition:
        color .4s ease,
        transform .5s cubic-bezier(.16,1,.3,1);
}


.service-item:hover .service-index {
    color: var(--jw-gold);

    transform:
        translateX(8px);
}


/* =========================================================
   SERVICE MAIN
========================================================= */

.service-main {
    position: relative;
    z-index: 2;
}


.service-main h3 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(35px, 3.5vw, 55px);

    font-weight: 500;

    line-height: .9;

    letter-spacing: -1.5px;

    color: var(--jw-brown-dark);

    transition:
        transform .55s cubic-bezier(.16,1,.3,1);
}


.service-main h3 span {
    color: transparent;

    -webkit-text-stroke:
        1px var(--jw-brown);

    transition:
        color .45s ease;
}


.service-item:hover .service-main h3 {
    transform:
        translateX(12px);
}


.service-item:hover .service-main h3 span {
    color: rgba(200, 138, 55, .08);
}


.service-main p {
    max-width: 440px;

    margin: 12px 0 0;

    color: rgba(63,42,32,.52);

    font-family: "Inter", sans-serif;

    font-size: 10px;

    line-height: 1.7;

    transition:
        color .4s ease;
}


.service-item:hover .service-main p {
    color: rgba(63,42,32,.70);
}


/* =========================================================
   SERVICE TAGS
========================================================= */

.service-tags {
    position: relative;
    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
}


.service-tags span {
    padding: 6px 9px;

    border:
        1px solid rgba(117,75,53,.13);

    border-radius: 30px;

    color: rgba(117,75,53,.55);

    font-family: "Inter", sans-serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 1px;

    background:
        rgba(255,255,255,.25);

    backdrop-filter: blur(8px);

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        background .35s ease,
        border-color .35s ease;
}


.service-item:hover .service-tags span:nth-child(1) {
    transform: translateX(8px);
}


.service-item:hover .service-tags span:nth-child(2) {
    transform: translateX(16px);
}


.service-item:hover .service-tags span:nth-child(3) {
    transform: translateX(24px);
}


.service-item:hover .service-tags span {
    border-color:
        rgba(200,138,55,.30);

    background:
        rgba(200,138,55,.06);
}


/* =========================================================
   SERVICE ARROW
========================================================= */

.service-arrow {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(117,75,53,.20);

    border-radius: 50%;

    color: var(--jw-brown);

    font-family: "Inter", sans-serif;

    font-size: 18px;

    transition:
        transform .6s cubic-bezier(.16,1,.3,1),
        background .4s ease,
        color .4s ease,
        border-color .4s ease;
}


.service-item:hover .service-arrow {
    transform:
        translate(5px,-5px)
        rotate(8deg);

    background:
        var(--jw-gold);

    border-color:
        var(--jw-gold);

    color: #fff;
}


/* =========================================================
   SERVICES FOOTER
========================================================= */

.services-footer {
    margin-top: 80px;

    padding: 30px 0 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border-top:
        1px solid rgba(117,75,53,.14);
}


.services-footer-text {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.services-footer-text span {
    color: rgba(63,42,32,.42);

    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;
}


.services-footer-text strong {
    color: var(--jw-brown);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 30px;

    font-weight: 500;

    letter-spacing: -.5px;
}


/* =========================================================
   CTA
========================================================= */

.services-cta {
    display: flex;

    align-items: center;

    gap: 16px;

    color: var(--jw-brown);

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.services-cta-arrow {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(117,75,53,.20);

    border-radius: 50%;

    font-size: 17px;

    transition:
        transform .5s cubic-bezier(.16,1,.3,1),
        background .35s ease,
        color .35s ease;
}


.services-cta:hover .services-cta-arrow {
    transform:
        translate(5px,-5px)
        rotate(8deg);

    background: var(--jw-gold);

    color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .services-section {
        padding:
            120px 0 70px;
    }


    .services-header {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 60px;
    }


    .services-intro {
        max-width: 500px;
    }


    .service-item {

        grid-template-columns:
            55px
            1fr
            55px;

        gap: 20px;
    }


    .service-tags {
        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .services-section {
        padding:
            95px 0 55px;
    }


    .services-container {
        width: 88%;
    }


    /* Meta */

    .services-meta {
        gap: 11px;

        margin-bottom: 55px;
    }


    .services-number {
        width: 34px;
        height: 34px;

        font-size: 8px;
    }


    .services-label {
        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .services-side-text {
        display: none;
    }


    /* Header */

    .services-header {
        gap: 30px;

        margin-bottom: 55px;
    }


    .services-kicker {
        font-size: 8px;

        margin-bottom: 18px;
    }


    .services-heading h2 {
        font-size:
            clamp(58px, 17vw, 82px);

        line-height: .78;

        letter-spacing: -3px;
    }


    .services-heading h2 span {
        margin-left: 12%;

        -webkit-text-stroke:
            1px var(--jw-brown);
    }


    .services-intro {
        max-width: 290px;

        margin-left: 8%;

        font-size: 11.5px;

        line-height: 1.8;
    }


    /* List */

    .service-item {

        min-height: 165px;

        display: grid;

        grid-template-columns:
            35px 1fr 42px;

        grid-template-rows:
            auto auto;

        gap: 8px 12px;

        padding:
            24px 8px;
    }


    .service-index {
        align-self: start;

        padding-top: 4px;

        font-size: 8px;
    }


    .service-main {
        grid-column: 2;

        min-width: 0;
    }


    .service-main h3 {

        font-size:
            clamp(29px, 9vw, 42px);

        line-height: .88;

        letter-spacing:
            -1px;
    }


    .service-main h3 span {

        -webkit-text-stroke:
            .8px var(--jw-brown);
    }


    .service-main p {

        max-width: 245px;

        margin-top: 12px;

        font-size: 10px;

        line-height: 1.65;
    }


    .service-tags {

        display: none;
    }


    .service-arrow {

        grid-column: 3;
        grid-row: 1;

        width: 40px;
        height: 40px;

        font-size: 15px;

        align-self: start;
    }


    /* Footer */

    .services-footer {

        margin-top: 60px;

        padding-top: 22px;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .services-footer-text strong {

        font-size: 26px;
    }


    .services-cta {

        font-size: 8px;
    }


    .services-cta-arrow {

        width: 40px;
        height: 40px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .services-container {
        width: 89%;
    }


    .services-section {
        padding-top: 80px;
    }


    .services-heading h2 {
        font-size: 55px;

        letter-spacing: -2.5px;
    }


    .service-item {

        min-height: 155px;

        padding:
            22px 5px;
    }


    .service-main h3 {

        font-size: 28px;
    }


    .service-main p {

        max-width: 220px;

        font-size: 9.5px;
    }


    .service-arrow {

        width: 36px;
        height: 36px;

        font-size: 14px;
    }


    .services-footer-text strong {

        font-size: 23px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .services-section *,
    .services-section::before,
    .services-section::after {

        animation: none !important;

        transition: none !important;
    }
}

/* =========================================================
   04. WORK / SELECTED PROJECTS
========================================================= */

.work-section {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    background:
        radial-gradient(circle at 85% 15%, rgba(200, 138, 55, 0.10), transparent 28%),
        radial-gradient(circle at 10% 75%, rgba(117, 75, 53, 0.08), transparent 30%),
        var(--jw-cream-light);
    color: var(--jw-brown-dark);
}

.work-container {
    width: min(1380px, calc(100% - 70px));
    margin: 0 auto;
}


/* =========================================================
   SECTION META
========================================================= */

.work-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 55px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.work-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--jw-gold);
}

.work-label {
    font-weight: 700;
}

.work-line {
    width: 70px;
    height: 1px;
    background: rgba(63, 42, 32, 0.25);
}

.work-side-text {
    color: rgba(63, 42, 32, 0.48);
}


/* =========================================================
   HEADER
========================================================= */

.work-header {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 85px;
}

.work-kicker {
    display: block;
    margin-bottom: 15px;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--jw-gold);
}

.work-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(70px, 9vw, 145px);
    font-weight: 500;
    line-height: 0.78;
    letter-spacing: -0.055em;
}

.work-heading h2 span {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px var(--jw-brown);
}

.work-intro {
    max-width: 420px;
    justify-self: end;
}

.work-intro p {
    margin: 0 0 25px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(63, 42, 32, 0.65);
}

.work-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 15px;
    border: 1px solid rgba(117, 75, 53, 0.18);
    border-radius: 100px;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;

    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(12px);
}


/* =========================================================
   PROJECT CARD
========================================================= */

.project-card {
    position: relative;
    margin-bottom: 110px;
}

.project-card-large {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
    gap: 45px;
    align-items: center;
}

.project-card-reverse {
    grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.45fr);
}

.project-card-reverse .project-visual {
    order: 2;
}

.project-card-reverse .project-info {
    order: 1;
}


/* =========================================================
   PROJECT VISUAL
========================================================= */

.project-visual {
    position: relative;
    min-height: 610px;
    overflow: hidden;

    border-radius: 32px;

    isolation: isolate;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.08)
        );

    border: 1px solid rgba(117, 75, 53, 0.14);

    box-shadow:
        0 30px 80px rgba(63, 42, 32, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.7s ease;
}

.project-visual::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 35%,
            rgba(255,255,255,0.28),
            transparent 65%
        );

    transform: translateX(-120%);
    transition: transform 1s ease;

    z-index: 5;
    pointer-events: none;
}

.project-card:hover .project-visual {
    transform: translateY(-8px);
    box-shadow:
        0 45px 100px rgba(63, 42, 32, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.project-card:hover .project-visual::before {
    transform: translateX(120%);
}


/* =========================================================
   HOUSE THAT VISUAL
========================================================= */

.project-housethat {
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(200, 138, 55, 0.30),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #5a3c2d,
            #8b6046 50%,
            #c69a67
        );
}

.project-housethat::after {
    content: "";
    position: absolute;
    inset: 30px;

    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 22px;

    z-index: 1;
}


/* =========================================================
   PINEAPPLE PRO VISUAL
========================================================= */

.project-pineapple {
    background:
        radial-gradient(
            circle at 25% 30%,
            rgba(217, 164, 91, 0.24),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #30231d,
            #51372a 50%,
            #755039
        );
}

.project-pineapple::after {
    content: "";
    position: absolute;
    inset: 30px;

    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 22px;

    z-index: 1;
}


/* =========================================================
   PROJECT CUP / LOGO MOTIF
========================================================= */

.project-cup {
    position: absolute;

    width: 330px;
    height: 330px;

    right: 7%;
    top: 50%;
    transform: translateY(-50%);

    opacity: 0.85;

    z-index: 2;

    transition:
        transform 0.8s cubic-bezier(.2,.8,.2,1),
        opacity 0.5s ease;
}

.project-card:hover .project-cup {
    transform: translateY(-50%) rotate(5deg) scale(1.05);
    opacity: 1;
}


/* C-shaped top */

.cup-top {
    position: absolute;

    width: 230px;
    height: 230px;

    left: 40px;
    top: 45px;

    border: 2px solid rgba(255,255,255,0.55);
    border-right-color: transparent;
    border-bottom-color: transparent;

    border-radius: 50%;

    transform: rotate(-42deg);
}


/* vertical / side geometry */

.cup-side {
    position: absolute;

    width: 120px;
    height: 230px;

    left: 82px;
    top: 47px;

    border-left: 2px solid rgba(255,255,255,0.42);
    border-bottom: 2px solid rgba(255,255,255,0.42);

    border-bottom-left-radius: 75px;

    transform: skewX(-8deg);
}


/* gold accent */

.cup-accent {
    position: absolute;

    width: 65px;
    height: 65px;

    right: 20px;
    bottom: 38px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #e5b56e,
            var(--jw-gold)
        );

    box-shadow:
        0 0 0 12px rgba(200,138,55,0.10),
        0 20px 40px rgba(0,0,0,0.18);

    animation: cupFloat 5s ease-in-out infinite;
}

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

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


/* =========================================================
   PROJECT OVERLAY
========================================================= */

.project-overlay {
    position: absolute;

    top: 45px;
    left: 45px;
    right: 45px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 6;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.78);
}

.project-overlay strong {
    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   PROJECT PLACEHOLDER
========================================================= */

.project-placeholder {
    position: absolute;

    left: 45px;
    bottom: 50px;

    display: flex;
    flex-direction: column;

    z-index: 4;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(65px, 8vw, 120px);
    line-height: 0.72;
    letter-spacing: -0.06em;

    color: rgba(255,255,255,0.92);
}

.project-placeholder span:nth-child(2) {
    margin-left: 55px;

    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.75);
}


/* =========================================================
   PROJECT INFO
========================================================= */

.project-info {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 25px;

    padding: 15px 5px;
}

.project-index {
    padding-top: 7px;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;

    color: var(--jw-gold);
}

.project-details {
    max-width: 440px;
}

.project-category {
    display: block;
    margin-bottom: 20px;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.6;

    color: rgba(63,42,32,0.48);
}

.project-details h3 {
    margin: 0 0 18px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(50px, 5vw, 76px);
    font-weight: 500;
    line-height: 0.8;
    letter-spacing: -0.05em;
}

.project-details h3 em {
    font-style: normal;

    color: transparent;
    -webkit-text-stroke: 1px var(--jw-brown);
}

.project-details p {
    margin: 0 0 25px;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.8;

    color: rgba(63,42,32,0.64);
}


/* =========================================================
   PROJECT TAGS
========================================================= */

.project-services {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.project-services span {
    padding: 8px 11px;

    border: 1px solid rgba(117,75,53,0.16);
    border-radius: 100px;

    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;

    background: rgba(255,255,255,0.32);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.project-services span:hover {
    transform: translateY(-2px);

    background: rgba(200,138,55,0.12);
    border-color: rgba(200,138,55,0.35);
}


/* =========================================================
   VIEW PROJECT
========================================================= */

.project-view {
    grid-column: 2;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 440px;

    margin-top: 35px;
    padding: 17px 0;

    border-top: 1px solid rgba(63,42,32,0.18);
    border-bottom: 1px solid rgba(63,42,32,0.18);

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;

    color: var(--jw-brown-dark);

    text-decoration: none;

    transition:
        padding 0.35s ease,
        color 0.35s ease;
}

.project-view span:last-child {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border: 1px solid rgba(117,75,53,0.25);
    border-radius: 50%;

    font-size: 15px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.project-view:hover {
    padding-left: 8px;
    color: var(--jw-gold);
}

.project-view:hover span:last-child {
    transform: rotate(45deg);

    background: var(--jw-brown);
    color: var(--jw-cream-light);
}


/* =========================================================
   CURRENTLY BUILDING
========================================================= */

.project-card-upcoming {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
    gap: 45px;
    align-items: center;

    opacity: 0.98;
}


/* visual */

.project-upcoming-visual {
    min-height: 500px;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(200,138,55,0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 25% 75%,
            rgba(117,75,53,0.12),
            transparent 35%
        ),
        rgba(255,255,255,0.25);
}


/* subtle grid */

.project-upcoming-visual::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(117,75,53,0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(117,75,53,0.06) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    transform: none;
    opacity: 0.65;

    z-index: 1;
}


/* status pill */

.upcoming-status {
    position: absolute;

    top: 40px;
    left: 40px;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 10px 15px;

    border: 1px solid rgba(117,75,53,0.15);
    border-radius: 100px;

    background: rgba(255,255,255,0.42);
    backdrop-filter: blur(14px);

    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;

    z-index: 6;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--jw-gold);

    box-shadow:
        0 0 0 5px rgba(200,138,55,0.12);

    animation: statusPulse 2s ease-in-out infinite;
}

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

    50% {
        opacity: 0.45;
        transform: scale(0.8);
    }
}


/* number */

.upcoming-number {
    position: absolute;

    right: 40px;
    top: 38px;

    font-family: "Cormorant Garamond", serif;
    font-size: 110px;
    line-height: 1;

    color: transparent;
    -webkit-text-stroke: 1px rgba(117,75,53,0.16);

    z-index: 2;
}


/* center text */

.upcoming-text {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 80%;

    text-align: center;

    z-index: 4;
}

.upcoming-text span {
    display: block;
    margin-bottom: 12px;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;

    color: var(--jw-gold);
}

.upcoming-text strong {
    display: block;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 7vw, 105px);
    font-weight: 500;
    line-height: 0.78;
    letter-spacing: -0.05em;

    color: var(--jw-brown-dark);
}

.project-upcoming-visual .project-cup {
    opacity: 0.18;
}

.project-card-upcoming:hover .project-cup {
    opacity: 0.35;
}


/* disabled CTA */

.project-view-disabled {
    cursor: default;
    color: rgba(63,42,32,0.45);
}

.project-view-disabled:hover {
    padding-left: 0;
    color: rgba(63,42,32,0.45);
}

.project-view-disabled:hover span:last-child {
    transform: none;

    background: transparent;
    color: inherit;
}


/* =========================================================
   STATEMENT
========================================================= */

.work-statement {
    position: relative;

    display: flex;
    align-items: center;
    gap: 55px;

    margin: 30px 0 90px;
    padding: 65px 0;

    border-top: 1px solid rgba(63,42,32,0.14);
    border-bottom: 1px solid rgba(63,42,32,0.14);
}

.statement-mark {
    position: relative;

    width: 80px;
    height: 80px;

    flex-shrink: 0;
}

.statement-mark span:nth-child(1) {
    position: absolute;

    width: 62px;
    height: 62px;

    border: 1px solid var(--jw-gold);
    border-right-color: transparent;

    border-radius: 50%;

    transform: rotate(-35deg);
}

.statement-mark span:nth-child(2) {
    position: absolute;

    width: 40px;
    height: 60px;

    left: 18px;
    top: 10px;

    border-left: 1px solid var(--jw-brown);
    border-bottom: 1px solid var(--jw-brown);

    border-bottom-left-radius: 40px;
}

.statement-mark span:nth-child(3) {
    position: absolute;

    width: 13px;
    height: 13px;

    right: 0;
    bottom: 3px;

    border-radius: 50%;

    background: var(--jw-gold);
}

.work-statement p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.work-statement p span {
    color: transparent;
    -webkit-text-stroke: 1px var(--jw-brown);
}

.work-statement p strong {
    font-weight: 600;
    color: var(--jw-gold);
}


/* =========================================================
   WORK FOOTER
========================================================= */

.work-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 15px;
}

.work-footer-label {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: rgba(63,42,32,0.48);
}

.work-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;

    color: var(--jw-brown-dark);

    text-decoration: none;
}

.work-footer-link span:last-child {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--jw-brown);
    color: var(--jw-cream-light);

    font-size: 17px;

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.work-footer-link:hover span:last-child {
    transform: rotate(45deg);
    background: var(--jw-gold);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .work-section {
        padding: 120px 0 80px;
    }

    .work-header {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .work-intro {
        justify-self: start;
        max-width: 600px;
    }

    .project-card-large,
    .project-card-upcoming {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .project-card-reverse .project-visual {
        order: 1;
    }

    .project-card-reverse .project-info {
        order: 2;
    }

    .project-visual {
        min-height: 540px;
    }

    .project-info {
        padding-left: 5px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .work-section {
        padding: 95px 0 65px;
    }

    .work-container {
        width: min(100% - 34px, 1380px);
    }

    /* meta */

    .work-meta {
        gap: 10px;
        margin-bottom: 40px;
    }

    .work-side-text {
        display: none;
    }

    .work-line {
        width: 40px;
    }


    /* heading */

    .work-header {
        margin-bottom: 55px;
        gap: 28px;
    }

    .work-heading h2 {
        font-size: clamp(57px, 17vw, 90px);
        line-height: 0.8;
    }

    .work-intro p {
        font-size: 13px;
        line-height: 1.75;
    }

    .work-count {
        font-size: 7px;
    }


    /* projects */

    .project-card,
    .project-card-upcoming {
        margin-bottom: 75px;
    }

    .project-visual {
        min-height: 410px;
        border-radius: 23px;
    }

    .project-visual::after {
        inset: 18px;
        border-radius: 15px;
    }

    .project-overlay {
        top: 28px;
        left: 28px;
        right: 28px;
    }

    .project-placeholder {
        left: 28px;
        bottom: 35px;

        font-size: clamp(55px, 16vw, 80px);
    }

    .project-placeholder span:nth-child(2) {
        margin-left: 30px;
    }


    /* logo cup */

    .project-cup {
        width: 220px;
        height: 220px;

        right: -5%;
    }

    .cup-top {
        width: 155px;
        height: 155px;

        left: 30px;
        top: 32px;
    }

    .cup-side {
        width: 80px;
        height: 155px;

        left: 55px;
        top: 34px;
    }

    .cup-accent {
        width: 45px;
        height: 45px;

        right: 10px;
        bottom: 20px;
    }


    /* info */

    .project-info {
        display: block;
        padding: 5px 2px;
    }

    .project-index {
        margin-bottom: 15px;
    }

    .project-details {
        max-width: none;
    }

    .project-category {
        font-size: 8px;
        margin-bottom: 15px;
    }

    .project-details h3 {
        font-size: clamp(48px, 15vw, 70px);
        margin-bottom: 20px;
    }

    .project-details p {
        font-size: 13px;
        line-height: 1.75;
    }

    .project-services {
        gap: 5px;
    }

    .project-services span {
        padding: 7px 9px;
        font-size: 7px;
    }

    .project-view {
        display: flex;
        max-width: none;

        margin-top: 28px;
    }


    /* upcoming */

    .project-upcoming-visual {
        min-height: 380px;
    }

    .upcoming-status {
        top: 27px;
        left: 27px;

        padding: 9px 12px;

        font-size: 7px;
    }

    .upcoming-number {
        top: 25px;
        right: 25px;

        font-size: 70px;
    }

    .upcoming-text {
        width: 90%;
    }

    .upcoming-text span {
        font-size: 7px;
        letter-spacing: 0.2em;
    }

    .upcoming-text strong {
        font-size: clamp(50px, 15vw, 75px);
    }


    /* statement */

    .work-statement {
        display: block;

        margin: 10px 0 60px;
        padding: 50px 0;
    }

    .statement-mark {
        margin-bottom: 30px;
    }

    .work-statement p {
        font-size: clamp(37px, 11vw, 58px);
    }


    /* footer */

    .work-footer {
        display: block;
    }

    .work-footer-label {
        display: block;
        margin-bottom: 22px;
    }

    .work-footer-link {
        width: 100%;
        justify-content: space-between;
    }

    .work-footer-link span:last-child {
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .work-container {
        width: calc(100% - 28px);
    }

    .project-visual {
        min-height: 350px;
    }

    .project-placeholder {
        font-size: 51px;
    }

    .project-cup {
        transform: translateY(-50%) scale(0.85);
        right: -12%;
    }

    .project-card:hover .project-cup {
        transform: translateY(-50%) rotate(4deg) scale(0.9);
    }

    .upcoming-text strong {
        font-size: 48px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .project-card *,
    .project-visual,
    .project-cup,
    .cup-accent,
    .status-dot {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================================
   WORK SECTION — FINAL FIX
========================================================= */

/*
   IMPORTANT:
   Keeps Work completely separated from Services above it.
*/

.work-section {
    position: relative;
    isolation: isolate;
    clear: both;

    display: block;

    width: 100%;

    padding-top: 160px;
    padding-bottom: 120px;

    overflow: hidden;

    z-index: 1;
}


/* Make sure every child stays inside Work */

.work-section *,
.work-section *::before,
.work-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   PROJECT CARD SAFETY
========================================================= */

.project-card {
    position: relative;

    display: grid;

    width: 100%;

    clear: both;

    margin-top: 0;
    margin-bottom: 120px;

    float: none;

    transform: none;
}


/* Never allow project visual to escape */

.project-visual {
    position: relative;

    width: 100%;

    overflow: hidden;

    flex-shrink: 0;

    transform: translateZ(0);
}


/* =========================================================
   LIVE PROJECT VISUAL
========================================================= */

.project-housethat,
.project-pineapple {

    position: relative;

    min-height: 620px;

    cursor: pointer;

    text-decoration: none;

    overflow: hidden;
}


/* HouseThat */

.project-housethat {

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(221,181,126,.35),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #503428 0%,
            #79513b 48%,
            #b98b5e 100%
        );
}


/* PineapplePro */

.project-pineapple {

    background:
        radial-gradient(
            circle at 25% 25%,
            rgba(217,164,91,.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #241b17 0%,
            #493127 50%,
            #775039 100%
        );
}


/* =========================================================
   PROJECT INNER FRAME
========================================================= */

.project-housethat::after,
.project-pineapple::after {

    content: "";

    position: absolute;

    inset: 28px;

    border: 1px solid rgba(255,255,255,.22);

    border-radius: 25px;

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   PROJECT OVERLAY
========================================================= */

.project-overlay {

    position: absolute;

    top: 48px;
    left: 48px;
    right: 48px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    z-index: 8;

    color: rgba(255,255,255,.78);

    font-family: "Inter", sans-serif;

    font-size: 9px;

    letter-spacing: .18em;

    text-transform: uppercase;
}

.project-overlay strong {
    font-size: 9px;
}


/* =========================================================
   LIVE BADGE
========================================================= */

.live-badge {

    position: absolute;

    left: 48px;
    bottom: 48px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 15px;

    border-radius: 100px;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.12);

    backdrop-filter: blur(15px);

    color: rgba(255,255,255,.9);

    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .15em;

    z-index: 8;
}


.live-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #e8c98f;

    box-shadow:
        0 0 0 5px rgba(232,201,143,.13);

    animation: livePulse 2s ease-in-out infinite;
}


@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(.75);
        opacity: .5;
    }

}


/* =========================================================
   PROJECT BRAND
========================================================= */

.project-brand {

    position: absolute;

    left: 48px;
    bottom: 100px;

    display: flex;

    flex-direction: column;

    z-index: 7;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(70px, 8vw, 125px);

    line-height: .68;

    letter-spacing: -.06em;

    color: rgba(255,255,255,.95);
}


.project-brand strong {

    margin-left: 65px;

    font-weight: 500;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,.8);
}


/* =========================================================
   PROJECT ARROW
========================================================= */

.project-view-circle {

    position: absolute;

    top: 50%;
    right: 55px;

    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.4);

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(12px);

    color: white;

    font-size: 22px;

    z-index: 9;

    transform: translateY(-50%);

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        background .4s ease;
}


.project-visual:hover .project-view-circle {

    transform:
        translateY(-50%)
        rotate(45deg)
        scale(1.12);

    background: rgba(255,255,255,.18);
}


/* =========================================================
   PROJECT HOVER
========================================================= */

.project-housethat,
.project-pineapple {

    transition:
        transform .65s cubic-bezier(.2,.8,.2,1),
        box-shadow .65s ease;
}


.project-housethat:hover,
.project-pineapple:hover {

    transform: translateY(-8px);

    box-shadow:
        0 40px 100px rgba(63,42,32,.18);
}


/* =========================================================
   CUP MOTIF
========================================================= */

.project-cup {

    pointer-events: none;

    position: absolute;

    width: 330px;
    height: 330px;

    right: 9%;
    top: 50%;

    transform: translateY(-50%);

    z-index: 4;

    opacity: .8;

    transition:
        transform .8s cubic-bezier(.2,.8,.2,1),
        opacity .5s ease;
}


.project-visual:hover .project-cup {

    transform:
        translateY(-50%)
        rotate(5deg)
        scale(1.06);

    opacity: 1;
}


.cup-top {

    position: absolute;

    width: 230px;
    height: 230px;

    left: 40px;
    top: 45px;

    border: 2px solid rgba(255,255,255,.48);

    border-right-color: transparent;
    border-bottom-color: transparent;

    border-radius: 50%;

    transform: rotate(-42deg);
}


.cup-side {

    position: absolute;

    width: 120px;
    height: 230px;

    left: 82px;
    top: 47px;

    border-left: 2px solid rgba(255,255,255,.4);

    border-bottom: 2px solid rgba(255,255,255,.4);

    border-bottom-left-radius: 75px;

    transform: skewX(-8deg);
}


.cup-accent {

    position: absolute;

    width: 65px;
    height: 65px;

    right: 20px;
    bottom: 38px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #e4b66e,
            var(--jw-gold)
        );

    box-shadow:
        0 0 0 12px rgba(200,138,55,.12),
        0 20px 40px rgba(0,0,0,.18);

    animation: cupFloat 5s ease-in-out infinite;
}


@keyframes cupFloat {

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

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

}


/* =========================================================
   UPCOMING CARD
========================================================= */

.project-card-upcoming {

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(340px, .75fr);

    gap: 45px;

    align-items: center;

    margin-top: 20px;
}


.project-upcoming-visual {

    position: relative;

    min-height: 500px;

    overflow: hidden;

    border-radius: 32px;

    border: 1px solid rgba(117,75,53,.14);

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(200,138,55,.16),
            transparent 30%
        ),
        #f8f2eb;
}


/* grid */

.upcoming-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(117,75,53,.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(117,75,53,.055) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    z-index: 1;
}


/* upcoming cup */

.project-upcoming-visual .project-cup {

    opacity: .16;

    z-index: 2;
}


/* =========================================================
   UPCOMING TEXT
========================================================= */

.upcoming-status {

    position: absolute;

    top: 40px;
    left: 40px;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 15px;

    border-radius: 100px;

    border: 1px solid rgba(117,75,53,.15);

    background: rgba(255,255,255,.55);

    backdrop-filter: blur(14px);

    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .14em;
}


.upcoming-number {

    position: absolute;

    right: 40px;
    top: 35px;

    z-index: 3;

    font-family: "Cormorant Garamond", serif;

    font-size: 110px;

    color: transparent;

    -webkit-text-stroke: 1px rgba(117,75,53,.14);
}


.upcoming-text {

    position: absolute;

    left: 50%;
    top: 50%;

    width: 90%;

    text-align: center;

    z-index: 5;

    transform: translate(-50%, -50%);
}


.upcoming-text span {

    display: block;

    margin-bottom: 15px;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .25em;

    color: var(--jw-gold);
}


.upcoming-text strong {

    display: block;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(60px, 7vw, 105px);

    font-weight: 500;

    line-height: .75;

    letter-spacing: -.055em;

    color: var(--jw-brown-dark);
}


/* =========================================================
   MOBILE — NO OVERLAPPING
========================================================= */

@media (max-width: 700px) {

    .work-section {

        padding-top: 100px;
        padding-bottom: 70px;

        overflow: hidden;
    }


    .work-container {

        width: calc(100% - 30px);

        margin: 0 auto;
    }


    .work-header {

        display: block;

        margin-bottom: 55px;
    }


    .work-intro {

        margin-top: 30px;

        max-width: 100%;
    }


    .project-card,
    .project-card-large,
    .project-card-reverse,
    .project-card-upcoming {

        display: block;

        width: 100%;

        margin-top: 0;
        margin-bottom: 75px;

        transform: none !important;
    }


    .project-visual,
    .project-housethat,
    .project-pineapple,
    .project-upcoming-visual {

        width: 100%;

        min-height: 390px;

        border-radius: 23px;

        transform: none !important;
    }


    .project-housethat::after,
    .project-pineapple::after {

        inset: 18px;

        border-radius: 15px;
    }


    .project-overlay {

        top: 28px;
        left: 28px;
        right: 28px;
    }


    .live-badge {

        left: 28px;
        bottom: 28px;
    }


    .project-brand {

        left: 28px;
        bottom: 75px;

        font-size: 58px;
    }


    .project-brand strong {

        margin-left: 28px;
    }


    .project-view-circle {

        right: 25px;

        width: 50px;
        height: 50px;

        font-size: 17px;
    }


    /* smaller cup */

    .project-cup {

        width: 210px;
        height: 210px;

        right: -8%;
    }


    .cup-top {

        width: 150px;
        height: 150px;

        left: 28px;
        top: 30px;
    }


    .cup-side {

        width: 78px;
        height: 150px;

        left: 54px;
        top: 32px;
    }


    .cup-accent {

        width: 44px;
        height: 44px;

        right: 8px;
        bottom: 20px;
    }


    /* info */

    .project-info {

        display: block;

        width: 100%;

        padding: 20px 3px 0;
    }


    .project-index {

        margin-bottom: 14px;
    }


    .project-details {

        max-width: 100%;
    }


    .project-details h3 {

        font-size: clamp(48px, 15vw, 70px);
    }


    .project-view {

        width: 100%;

        max-width: none;
    }


    /* upcoming */

    .project-upcoming-visual {

        min-height: 370px;
    }


    .upcoming-status {

        top: 26px;
        left: 26px;

        font-size: 7px;
    }


    .upcoming-number {

        top: 25px;
        right: 25px;

        font-size: 70px;
    }


    .upcoming-text strong {

        font-size: 52px;
    }


    /* statement */

    .work-statement {

        margin-top: 10px;

        padding: 50px 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .work-section {

        padding-top: 85px;
    }


    .project-visual,
    .project-housethat,
    .project-pineapple {

        min-height: 340px;
    }


    .project-brand {

        font-size: 48px;
    }


    .project-cup {

        transform:
            translateY(-50%)
            scale(.85);
    }


    .upcoming-text strong {

        font-size: 45px;
    }

}

/* =========================================================
   WORK — PROJECT CARD PROPORTION FIX
========================================================= */

.project-card-large {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 38px;
    align-items: center;
}

.project-card-reverse {
    grid-template-columns: 0.82fr 1.18fr;
}


/* Smaller project visual */

.project-housethat,
.project-pineapple {
    min-height: 500px;
    border-radius: 28px;
}


/* Inner frame */

.project-housethat::after,
.project-pineapple::after {
    inset: 22px;
    border-radius: 20px;
}


/* Project typography */

.project-brand {
    left: 38px;
    bottom: 82px;
    font-size: clamp(60px, 6.5vw, 100px);
}

.project-brand strong {
    margin-left: 48px;
}


/* Top information */

.project-overlay {
    top: 36px;
    left: 38px;
    right: 38px;
}


/* Live badge */

.live-badge {
    left: 38px;
    bottom: 35px;
}


/* Arrow */

.project-view-circle {
    right: 38px;
    width: 56px;
    height: 56px;
}


/* Cup becomes a supporting element */

.project-cup {
    width: 270px;
    height: 270px;
    right: 5%;
}


/* =========================================================
   PROJECT INFO — MORE SPACE
========================================================= */

.project-info {
    padding: 10px 5px;
}

.project-details {
    max-width: 470px;
}

.project-details h3 {
    font-size: clamp(55px, 5vw, 76px);
}


/* =========================================================
   DESKTOP — EVEN MORE BALANCED
========================================================= */

@media (min-width: 1200px) {

    .project-card-large {
        grid-template-columns: minmax(390px, 0.82fr)
                               minmax(620px, 1.18fr);

        gap: 55px;
    }

    .project-housethat,
    .project-pineapple {
        min-height: 510px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .project-card-large,
    .project-card-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-housethat,
    .project-pineapple {
        min-height: 480px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .project-housethat,
    .project-pineapple {
        min-height: 390px;
        border-radius: 22px;
    }

    .project-brand {
        left: 28px;
        bottom: 72px;
        font-size: 55px;
    }

    .project-brand strong {
        margin-left: 28px;
    }

    .project-cup {
        width: 210px;
        height: 210px;
        right: -8%;
    }

}


/* =========================================================
   05. PROCESS SECTION
========================================================= */

.process-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 150px 0 120px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(200, 138, 55, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 70%,
            rgba(117, 75, 53, 0.08),
            transparent 28%
        ),
        var(--jw-cream);

    color: var(--jw-brown-dark);
}


/* =========================================================
   CONTAINER
========================================================= */

.process-container {
    width: min(1380px, calc(100% - 70px));
    margin: 0 auto;
}


/* =========================================================
   SECTION META
========================================================= */

.process-meta {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 60px;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.process-number {
    color: var(--jw-gold);
}

.process-label {
    color: var(--jw-brown-dark);
}

.process-line {
    width: 70px;
    height: 1px;

    background: rgba(63, 42, 32, .22);
}

.process-side-text {
    color: rgba(63, 42, 32, .42);
}


/* =========================================================
   HEADER
========================================================= */

.process-header {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 80px;
    align-items: end;

    margin-bottom: 100px;
}

.process-kicker {
    display: block;

    margin-bottom: 18px;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;

    color: var(--jw-gold);
}

.process-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(70px, 9vw, 140px);
    font-weight: 500;
    line-height: .76;

    letter-spacing: -.055em;
}

.process-heading h2 span {
    display: inline-block;

    color: transparent;

    -webkit-text-stroke: 1px var(--jw-brown);
}

.process-intro {
    max-width: 430px;
    justify-self: end;
}

.process-intro p {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.8;

    color: rgba(63, 42, 32, .62);
}


/* =========================================================
   PROCESS LIST
========================================================= */

.process-list {
    position: relative;

    border-top: 1px solid rgba(63, 42, 32, .16);
}


/* vertical timeline */

.process-list::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 110px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(200,138,55,.55),
            rgba(63,42,32,.12),
            rgba(200,138,55,.35)
        );

    z-index: 0;
}


/* =========================================================
   PROCESS ITEM
========================================================= */

.process-item {
    position: relative;

    display: grid;

    grid-template-columns: 110px 1fr 80px;

    gap: 45px;
    align-items: center;

    min-height: 210px;

    padding: 40px 0;

    border-bottom: 1px solid rgba(63,42,32,.14);

    transition:
        padding .5s cubic-bezier(.2,.8,.2,1),
        background .5s ease;
}


/* =========================================================
   LARGE NUMBER
========================================================= */

.process-number-large {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    margin-left: 20px;

    border-radius: 50%;

    border: 1px solid rgba(117,75,53,.24);

    background: var(--jw-cream);

    font-family: "Cormorant Garamond", serif;
    font-size: 27px;

    color: var(--jw-brown-dark);

    z-index: 2;

    transition:
        transform .5s ease,
        background .5s ease,
        border-color .5s ease;
}


/* =========================================================
   CONTENT
========================================================= */

.process-content {
    max-width: 700px;
}

.process-step-label {
    display: block;

    margin-bottom: 12px;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;

    color: var(--jw-gold);
}

.process-content h3 {
    margin: 0 0 15px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 500;

    line-height: .82;

    letter-spacing: -.045em;
}

.process-content h3 em {
    font-style: normal;

    color: transparent;

    -webkit-text-stroke: 1px var(--jw-brown);
}

.process-content p {
    max-width: 580px;

    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.75;

    color: rgba(63,42,32,.58);
}


/* =========================================================
   PROCESS ICON
========================================================= */

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border: 1px solid rgba(117,75,53,.22);

    border-radius: 50%;

    font-size: 17px;

    color: var(--jw-brown-dark);

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        background .4s ease,
        color .4s ease;
}


/* =========================================================
   HOVER
========================================================= */

.process-item::before {
    content: "";

    position: absolute;

    left: -25px;
    right: -25px;
    top: 8px;
    bottom: 8px;

    border-radius: 24px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.45),
            rgba(255,255,255,.12)
        );

    opacity: 0;

    transform: scaleX(.96);

    transition:
        opacity .5s ease,
        transform .5s cubic-bezier(.2,.8,.2,1);

    z-index: -1;
}

.process-item:hover::before {
    opacity: 1;

    transform: scaleX(1);
}

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

.process-item:hover .process-number-large {
    transform: scale(1.08);

    background: var(--jw-brown);

    border-color: var(--jw-brown);

    color: var(--jw-cream-light);
}

.process-item:hover .process-icon {
    transform: rotate(45deg);

    background: var(--jw-gold);

    border-color: var(--jw-gold);

    color: white;
}


/* =========================================================
   PROCESS STATEMENT
========================================================= */

.process-statement {
    position: relative;

    display: flex;
    align-items: center;

    gap: 55px;

    margin-top: 100px;
    padding: 70px 0;

    border-top: 1px solid rgba(63,42,32,.14);
    border-bottom: 1px solid rgba(63,42,32,.14);
}


/* =========================================================
   ORBIT / BRAND MARK
========================================================= */

.process-orbit {
    position: relative;

    width: 110px;
    height: 110px;

    flex-shrink: 0;
}

.process-orbit span:nth-child(1) {
    position: absolute;

    inset: 8px;

    border: 1px solid var(--jw-gold);

    border-right-color: transparent;

    border-radius: 50%;

    transform: rotate(-35deg);
}

.process-orbit span:nth-child(2) {
    position: absolute;

    left: 35px;
    top: 12px;

    width: 45px;
    height: 85px;

    border-left: 1px solid var(--jw-brown);

    border-bottom: 1px solid var(--jw-brown);

    border-bottom-left-radius: 50px;
}

.process-orbit span:nth-child(3) {
    position: absolute;

    right: 4px;
    bottom: 15px;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--jw-gold);

    animation: processOrbitDot 4s ease-in-out infinite;
}

@keyframes processOrbitDot {

    0%,
    100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-8px,-8px);
    }
}


/* =========================================================
   STATEMENT TEXT
========================================================= */

.process-statement > div:last-child {
    display: flex;
    flex-direction: column;
}

.process-statement > div:last-child > span {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;

    color: var(--jw-gold);
}

.process-statement strong {
    margin-top: 5px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 7vw, 105px);
    font-weight: 500;

    line-height: .75;

    letter-spacing: -.05em;
}

.process-statement p {
    margin: 12px 0 0;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: .18em;

    color: rgba(63,42,32,.45);
}


/* =========================================================
   FOOTER CTA
========================================================= */

.process-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 35px;
}

.process-footer > span {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;

    color: rgba(63,42,32,.45);
}

.process-footer a {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;

    color: var(--jw-brown-dark);
}

.process-footer a b {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: var(--jw-brown);

    color: var(--jw-cream-light);

    font-size: 17px;
    font-weight: 400;

    transition:
        transform .4s ease,
        background .4s ease;
}

.process-footer a:hover b {
    transform: rotate(45deg);

    background: var(--jw-gold);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .process-section {
        padding: 120px 0 90px;
    }

    .process-header {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 70px;
    }

    .process-intro {
        justify-self: start;

        max-width: 600px;
    }

    .process-list::before {
        left: 80px;
    }

    .process-item {
        grid-template-columns: 80px 1fr 60px;

        gap: 30px;
    }

    .process-number-large {
        margin-left: 9px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .process-section {
        padding: 95px 0 70px;
    }

    .process-container {
        width: calc(100% - 30px);
    }


    /* meta */

    .process-meta {
        gap: 10px;

        margin-bottom: 42px;
    }

    .process-side-text {
        display: none;
    }

    .process-line {
        width: 40px;
    }


    /* heading */

    .process-header {
        display: block;

        margin-bottom: 60px;
    }

    .process-heading h2 {
        font-size: clamp(57px, 16vw, 85px);
    }

    .process-intro {
        margin-top: 30px;
    }

    .process-intro p {
        font-size: 13px;
    }


    /* timeline */

    .process-list::before {
        left: 29px;
    }


    .process-item {

        display: grid;

        grid-template-columns: 60px 1fr;

        gap: 20px;

        min-height: auto;

        padding: 38px 0;
    }


    .process-number-large {

        width: 58px;
        height: 58px;

        margin-left: 0;

        font-size: 23px;
    }


    .process-content h3 {

        font-size: clamp(36px, 10vw, 52px);

        line-height: .82;

        margin-bottom: 17px;
    }


    .process-content p {

        font-size: 12px;

        line-height: 1.75;
    }


    .process-icon {

        display: none;
    }


    .process-item::before {

        left: -10px;
        right: -10px;

        border-radius: 18px;
    }


    /* statement */

    .process-statement {

        display: block;

        margin-top: 65px;

        padding: 55px 0;
    }


    .process-orbit {

        margin-bottom: 35px;

        width: 80px;
        height: 80px;
    }


    .process-orbit span:nth-child(2) {

        left: 25px;

        width: 35px;
        height: 62px;
    }


    .process-statement strong {

        font-size: clamp(55px, 15vw, 78px);
    }


    /* footer */

    .process-footer {

        display: block;

        padding-top: 28px;
    }


    .process-footer > span {

        display: block;

        margin-bottom: 22px;
    }


    .process-footer a {

        width: 100%;

        justify-content: space-between;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .process-section {
        padding-top: 80px;
    }

    .process-container {
        width: calc(100% - 26px);
    }

    .process-item {
        grid-template-columns: 52px 1fr;

        gap: 15px;
    }

    .process-number-large {
        width: 52px;
        height: 52px;

        font-size: 21px;
    }

    .process-list::before {
        left: 26px;
    }

    .process-content h3 {
        font-size: 35px;
    }

    .process-content p {
        font-size: 11.5px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .process-section *,
    .process-section *::before,
    .process-section *::after {
        animation: none !important;
        transition: none !important;
    }

}

/* =====================================================
   CONTACT FORM — WHATSAPP ENQUIRY
===================================================== */

.contact-form {
    width: 100%;
    padding: 42px;
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.72),
            rgba(239, 230, 221, 0.48)
        );

    border: 1px solid rgba(117, 75, 53, 0.14);

    box-shadow:
        0 25px 70px rgba(63, 42, 32, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    position: relative;
    overflow: hidden;
}


/* Subtle branded glow */

.contact-form::before {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    right: -80px;

    border-radius: 50%;

    background: rgba(200, 138, 55, 0.10);

    filter: blur(5px);

    pointer-events: none;
}


/* =====================================================
   FORM ROW
===================================================== */

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


/* =====================================================
   FORM FIELD
===================================================== */

.form-field {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}


/* =====================================================
   LABEL
===================================================== */

.form-field label {
    display: block;

    margin-bottom: 10px;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;

    color: var(--jw-brown);

    transition: color 0.3s ease;
}


/* =====================================================
   INPUT / SELECT / TEXTAREA
===================================================== */

.form-field input,
.form-field select,
.form-field textarea {

    width: 100%;

    border: none;
    outline: none;

    background: rgba(255, 255, 255, 0.38);

    border: 1px solid rgba(117, 75, 53, 0.13);

    border-radius: 14px;

    padding: 16px 18px;

    font-family: "Inter", sans-serif;
    font-size: 14px;

    color: var(--jw-brown-dark);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;

    box-sizing: border-box;
}


/* Placeholder */

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(117, 75, 53, 0.48);
}


/* =====================================================
   FOCUS EFFECT
===================================================== */

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {

    background: rgba(255, 255, 255, 0.68);

    border-color: rgba(200, 138, 55, 0.65);

    box-shadow:
        0 0 0 4px rgba(200, 138, 55, 0.08),
        0 8px 25px rgba(63, 42, 32, 0.05);

    transform: translateY(-1px);
}


.form-field:focus-within label {
    color: var(--jw-gold);
}


/* =====================================================
   SELECT
===================================================== */

.form-field select {
    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--jw-brown) 50%),
        linear-gradient(135deg, var(--jw-brown) 50%, transparent 50%);

    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 15px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;

    padding-right: 45px;
}


/* =====================================================
   TEXTAREA
===================================================== */

.form-field textarea {
    resize: vertical;
    min-height: 140px;

    line-height: 1.7;
}


/* =====================================================
   WHATSAPP SUBMIT BUTTON
===================================================== */

.contact-submit {

    width: 100%;

    margin-top: 8px;

    padding: 7px 7px 7px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: none;
    border-radius: 100px;

    background: var(--jw-brown-dark);

    color: var(--jw-cream-light);

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;

    cursor: pointer;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* Button hover */

.contact-submit:hover {

    transform: translateY(-3px);

    background: var(--jw-brown);

    box-shadow:
        0 15px 35px rgba(63, 42, 32, 0.18);
}


/* =====================================================
   BUTTON ARROW
===================================================== */

.contact-submit-arrow {

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--jw-gold);

    color: #fff;

    font-size: 19px;

    transition:
        transform 0.4s ease,
        background 0.3s ease;
}


.contact-submit:hover .contact-submit-arrow {
    transform: rotate(45deg);

    background: var(--jw-gold-light);
}


/* =====================================================
   WHATSAPP-STYLE MICRO DETAIL
===================================================== */

.contact-submit::before {
    content: "";
}


/* =====================================================
   INVALID INPUT
===================================================== */

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(160, 70, 50, 0.35);
}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 900px) {

    .contact-form {
        padding: 32px;
        border-radius: 26px;
    }

    .form-row {
        gap: 20px;
    }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 700px) {

    .contact-form {
        padding: 24px 20px;

        border-radius: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-field {
        margin-bottom: 23px;
    }

    .form-field label {
        font-size: 9px;
        letter-spacing: 0.15em;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 14px 15px;

        font-size: 13px;

        border-radius: 12px;
    }

    .form-field textarea {
        min-height: 120px;
    }

    .contact-submit {
        padding-left: 19px;

        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .contact-submit-arrow {
        width: 43px;
        height: 43px;

        font-size: 17px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .contact-form {
        padding: 20px 16px;
    }

    .contact-submit {
        font-size: 8px;
    }

    .contact-submit-arrow {
        width: 40px;
        height: 40px;
    }

}

/* =========================================================
   HERO — FINAL DESKTOP BALANCE
   EXPERIENCES stays one line without touching the J
========================================================= */

@media (min-width: 1201px) {

    .hero-title {
        font-size: clamp(105px, 7vw, 120px);
    }

    .hero-title-solid {
        display: block;
        width: max-content;
        max-width: none;

        white-space: nowrap;
        word-break: keep-all;
        overflow-wrap: normal;

        margin-left: 17%;
    }

    .hero-mark {
        transform: translateX(70px) scale(.90);
        transform-origin: center;
    }

}

/* =========================================================
   ABOUT — KEEP IMPACT ON ONE LINE
========================================================= */

@media (min-width: 701px) {

    .about-title em {
        display: block !important;
        width: max-content !important;
        max-width: none !important;
        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

}

/* =========================================================
   MOBILE — REMOVE DUPLICATE PROJECT BRAND
========================================================= */

@media (max-width: 700px) {

    .project-brand {
        display: none !important;
    }

}

/* =========================================================
   MOBILE — CLEAN PROJECT CARD
========================================================= */

@media (max-width: 700px) {

    /* Remove 01 / 03 + LIVE PROJECT */
    .project-overlay {
        display: none !important;
    }

    /* Remove LIVE badge */
    .live-badge {
        display: none !important;
    }

}
