@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

/* HEADER */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
}

.nav-shell {
    width: min(1520px, 94%);
    min-height: 76px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 55px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
}

.brand strong {
    font-size: 30px;
    letter-spacing: -1.5px;
    font-weight: 900;
}

.brand span {
    color: #176cff;
    font-size: 8px;
    letter-spacing: 4px;
}

.nav-links {
    justify-self: center;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #d3d3d3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-button {
    padding: 11px 18px;
    border: 1px solid rgba(255,255,255,0.45);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.menu-button {
    width: 34px;
    height: 34px;

    display: grid;
    place-content: center;
    gap: 5px;

    border: none;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    width: 18px;
    height: 1px;
    display: block;
    background: #ffffff;
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;

    filter:
        brightness(0.53)
        contrast(1.16)
        saturate(0.55);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.95) 0%,
            rgba(0,0,0,0.70) 32%,
            rgba(0,0,0,0.18) 67%,
            rgba(0,0,0,0.35) 100%
        ),
        linear-gradient(
            to top,
            rgba(0,0,0,0.65),
            transparent 40%
        );
}

.hero-shell {
    width: min(1520px, 94%);
    min-height: 100vh;
    margin: 0 auto;

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 610px;
    padding-top: 60px;
}

.hero-kicker {
    color: #c1c1c1;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 12px;

    font-size: clamp(62px, 7vw, 104px);
    line-height: 0.9;
    letter-spacing: -4px;
    text-transform: uppercase;

    font-weight: 900;
}

.hero h1 span {
    display: block;
}

.hero-rule {
    width: 320px;
    height: 2px;
    margin: 18px 0 18px;

    background:
        linear-gradient(
            90deg,
            #176cff 0 70%,
            rgba(255,255,255,0.25) 70%
        );
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.service-tags span {
    position: relative;

    padding-right: 20px;
    margin-right: 20px;

    color: #f1f1f1;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-tags span:not(:last-child)::after {
    content: "•";

    position: absolute;
    right: -2px;

    color: #176cff;
}

.hero-cta {
    width: fit-content;

    margin-top: 32px;

    display: flex;
    align-items: stretch;

    border: 1px solid rgba(255,255,255,0.5);

    text-transform: uppercase;
}

.hero-cta > span {
    padding: 13px 20px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero-cta strong {
    width: 42px;

    display: grid;
    place-items: center;

    background: #176cff;

    font-size: 18px;
}

.hero-location {
    position: absolute;
    left: 0;
    bottom: 26px;

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

    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.pin {
    font-size: 14px;
}

.hero-scroll {
    position: absolute;
    right: 0;
    bottom: 24px;

    display: flex;
    align-items: flex-end;
    gap: 10px;

    color: #b8b8b8;

    font-size: 9px;
    text-transform: uppercase;
}

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

    background:
        linear-gradient(
            to bottom,
            #176cff,
            rgba(255,255,255,0.35)
        );
}

.concept-badge {
    position: absolute;
    right: 2%;
    top: 90px;
    z-index: 2;

    color: rgba(255,255,255,0.25);

    font-size: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* SERVICES PREVIEW */

.services-preview {
    display: grid;
    grid-template-columns: 130px 1fr;

    min-height: 520px;

    border-top: 1px solid #262626;
    border-bottom: 1px solid #262626;

    background: #080808;
}

.section-rail {
    padding: 30px 32px;

    border-right: 1px solid #262626;
}

.section-number {
    display: block;

    font-size: 38px;
    font-weight: 300;
}

.section-rail p {
    margin-top: 12px;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rail-line {
    width: 28px;
    height: 1px;

    margin-top: 20px;

    background: #176cff;
}

.service-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.preview-card {
    min-width: 0;

    position: relative;

    border-right: 1px solid #262626;

    overflow: hidden;
}

.preview-card:last-child {
    border-right: none;
}

.preview-image {
    position: absolute;
    inset: 0;
}

.preview-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.96) 0%,
            rgba(0,0,0,0.65) 42%,
            rgba(0,0,0,0.18) 100%
        );
}

.preview-image img {
    height: 100%;
    object-fit: cover;

    filter:
        grayscale(0.35)
        contrast(1.1)
        brightness(0.75);

    transition: transform 0.8s ease;
}

.preview-card:hover .preview-image img {
    transform: scale(1.035);
}

.preview-copy {
    min-height: 520px;

    position: relative;
    z-index: 2;

    padding: 235px 24px 28px;

    display: flex;
    flex-direction: column;
}

.preview-icon {
    color: #ffffff;
    font-size: 26px;
}

.preview-copy h2 {
    margin-top: 18px;

    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: -0.6px;
}

.preview-copy p {
    max-width: 230px;

    margin-top: 8px;

    color: #c1c1c1;

    font-size: 11px;
    line-height: 1.55;
}

.preview-copy a {
    margin-top: auto;

    color: #2b7cff;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

/* BEFORE / AFTER */

.before-after-section {
    display: grid;
    grid-template-columns: 130px 1fr;

    background: #080808;
    border-bottom: 1px solid #262626;
}

.before-after-content {
    padding: 55px 45px 60px;
}

.before-after-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;

    margin-bottom: 35px;
}

.section-kicker {
    color: #176cff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.before-after-heading h2 {
    margin-top: 10px;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.before-after-heading h2 span {
    display: block;
    color: #737373;
}

.before-after-intro {
    max-width: 310px;

    color: #9b9b9b;
    font-size: 11px;
    line-height: 1.6;
}

.compare-wrap {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: #050505;
}

.compare-image {
    position: absolute;
    inset: 0;
}

.compare-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #050505;
}

.compare-before img {
    filter:
        grayscale(0.8)
        brightness(0.62)
        contrast(0.88);
}

.compare-after {
    width: 50%;
    overflow: hidden;
}

.compare-after img {
    width: 100vw;
    max-width: none;

    filter:
        saturate(0.8)
        contrast(1.15)
        brightness(0.92);
}

.compare-label {
    position: absolute;
    top: 18px;

    padding: 7px 10px;

    background: rgba(0, 0, 0, 0.74);
    color: #ffffff;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.compare-label-left {
    left: 18px;
}

.compare-label-right {
    right: 18px;
}

.compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;

    width: 1px;

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

    pointer-events: none;
}

.compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 46px;
    height: 46px;

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

    border-radius: 50%;
    border: 1px solid #ffffff;

    background: #0a0a0a;
    color: #ffffff;

    font-size: 16px;
}

.compare-range {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    cursor: ew-resize;
}

.before-after-footer {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 30px;

    padding-top: 16px;

    color: #666666;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.before-after-footer a {
    color: #176cff;
}

/* SELECTED WORK */

.selected-work-section {
    display: grid;
    grid-template-columns: 130px 1fr;

    background: #080808;
    border-bottom: 1px solid #262626;
}

.selected-work-content {
    padding: 60px 45px 65px;
}

.selected-work-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;

    margin-bottom: 42px;
}

.selected-work-heading h2 {
    margin-top: 10px;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.selected-work-heading h2 span {
    display: block;
    color: #737373;
}

.selected-work-intro {
    max-width: 300px;

    color: #969696;
    font-size: 11px;
    line-height: 1.6;
}


/* GALLERY */

.editorial-gallery {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(0, 0.65fr);

    grid-template-rows:
        360px
        250px
        350px;

    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;

    background: #111111;
}

.gallery-main {
    grid-row: 1 / span 2;
}

.gallery-tall {
    grid-row: 1;
}

.gallery-wide {
    grid-column: 2;
    grid-row: 2;
}

.gallery-detail {
    grid-column: 1 / -1;
    grid-row: 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(0.6)
        contrast(1.12)
        brightness(0.78);

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

.gallery-item:hover img {
    transform: scale(1.035);

    filter:
        saturate(0.9)
        contrast(1.12)
        brightness(0.88);
}

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

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.78) 0%,
            rgba(0,0,0,0.10) 45%,
            transparent 70%
        );

    pointer-events: none;
}

.gallery-item figcaption {
    position: absolute;
    z-index: 2;

    left: 18px;
    right: 18px;
    bottom: 16px;

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

    color: #ffffff;
}

.gallery-item figcaption > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gallery-item figcaption div span {
    color: #5d91ff;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-item figcaption strong {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.gallery-item figcaption > span {
    color: #a7a7a7;

    font-size: 9px;
    font-weight: 800;
}


/* FOOTER */

.selected-work-footer {
    padding-top: 18px;

    display: flex;
    justify-content: space-between;

    color: #666666;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.selected-work-footer a {
    color: #176cff;
}

/* =========================================
   04 / WHY MWD
========================================= */

.why-section {
    display: grid;
    grid-template-columns: 130px 1fr;

    background: #050505;
    border-bottom: 1px solid #262626;
}

.why-content {
    padding: 70px 45px 40px;
}


/* HEADING */

.why-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;

    padding-bottom: 55px;
}

.why-heading h2 {
    margin-top: 10px;

    font-size: clamp(40px, 4.2vw, 62px);
    line-height: 0.92;

    letter-spacing: -2.5px;
    text-transform: uppercase;
}

.why-heading h2 span {
    display: block;
    color: #6f6f6f;
}

.why-intro {
    max-width: 330px;

    color: #858585;

    font-size: 11px;
    line-height: 1.7;
}


/* FOUR PRINCIPLES */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;
}

.why-item {
    min-height: 340px;

    padding: 24px 22px 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-right: 1px solid #292929;

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

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

.why-item:hover {
    background: #0c0c0c;
}

.why-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-number {
    color: #666666;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.why-mark {
    color: #176cff;

    font-size: 20px;
    font-weight: 300;
}

.why-bottom h3 {
    font-size: 22px;
    font-weight: 800;

    letter-spacing: -0.7px;
    text-transform: uppercase;
}

.why-bottom p {
    max-width: 220px;

    margin-top: 12px;

    color: #777777;

    font-size: 10px;
    line-height: 1.65;
}


/* TESTIMONIAL */

.testimonial {
    min-height: 330px;

    display: grid;
    grid-template-columns: 0.38fr 1.62fr;

    border-bottom: 1px solid #292929;
}

.testimonial-side {
    padding: 35px 30px 30px 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-right: 1px solid #292929;
}

.quote-mark {
    color: #176cff;

    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 0.7;
}

.testimonial-side div > span {
    color: #777777;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.testimonial-side div p {
    margin-top: 5px;

    color: #404040;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
}

.testimonial-main {
    padding: 48px 0 38px 50px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    max-width: 820px;

    font-size: clamp(30px, 3.4vw, 50px);
    font-weight: 800;

    line-height: 1;
    letter-spacing: -1.8px;

    text-transform: uppercase;
}

.testimonial-text span {
    display: block;
    color: #686868;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.testimonial-meta > span {
    color: #176cff;

    font-size: 12px;
    letter-spacing: 3px;
}

.testimonial-meta p {
    max-width: 320px;

    color: #5f5f5f;

    font-size: 8px;
    line-height: 1.6;

    text-align: right;
}


/* BOTTOM METADATA */

.why-footer {
    padding-top: 18px;

    display: flex;
    justify-content: space-between;

    color: #454545;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
   05 / PROCESS
========================================= */

.process-section {
    display: grid;
    grid-template-columns: 130px 1fr;

    background: #080808;
    border-bottom: 1px solid #262626;
}

.process-content {
    padding: 70px 45px 45px;
}


/* HEADING */

.process-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;

    padding-bottom: 65px;
}

.process-heading h2 {
    margin-top: 10px;

    font-size: clamp(40px, 4.2vw, 62px);
    line-height: 0.92;
    letter-spacing: -2.4px;
    text-transform: uppercase;
}

.process-heading h2 span {
    display: block;
    color: #707070;
}

.process-intro {
    max-width: 320px;

    color: #858585;

    font-size: 11px;
    line-height: 1.7;
}


/* TIMELINE */

.process-timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid #2b2b2b;
    border-bottom: 1px solid #2b2b2b;
}

.process-timeline::before {
    content: "";

    position: absolute;
    top: 55px;
    left: 0;
    right: 0;

    height: 1px;

    background: #262626;
}

.process-step {
    min-height: 320px;

    padding: 28px 22px 30px;

    border-right: 1px solid #262626;

    display: flex;
    flex-direction: column;

    position: relative;
}

.process-step:last-child {
    border-right: none;
}

.process-step-top {
    min-height: 56px;

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

    position: relative;
    z-index: 2;
}

.process-step-number {
    color: #5f5f5f;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.process-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #176cff;

    box-shadow: 0 0 0 4px #080808;
}

.process-step-copy {
    margin-top: auto;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 800;

    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.process-step p {
    max-width: 200px;

    margin-top: 12px;

    color: #707070;

    font-size: 10px;
    line-height: 1.65;
}


/* HOVER */

.process-step {
    transition: background 0.3s ease;
}

.process-step:hover {
    background: #0d0d0d;
}

.process-step:hover .process-dot {
    box-shadow:
        0 0 0 4px #0d0d0d,
        0 0 16px rgba(23,108,255,0.45);
}


/* FOOTER */

.process-footer {
    padding-top: 18px;

    display: flex;
    justify-content: space-between;

    color: #454545;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
   06 / FINAL CTA
========================================= */

.final-cta {
    display: grid;
    grid-template-columns: 130px 1fr;

    background: #050505;
}

.final-cta-content {
    min-width: 0;
}


/* CINEMATIC IMAGE */

.final-cta-media {
    min-height: 720px;

    position: relative;
    overflow: hidden;
}

.final-cta-media > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        brightness(0.52)
        saturate(0.55)
        contrast(1.15);

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

.final-cta-media:hover > img {
    transform: scale(1.025);
}

.final-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.92) 0%,
            rgba(0,0,0,0.58) 45%,
            rgba(0,0,0,0.12) 78%
        ),
        linear-gradient(
            to top,
            rgba(0,0,0,0.75),
            transparent 50%
        );
}


/* CTA COPY */

.final-cta-copy {
    position: absolute;
    z-index: 2;

    left: 50px;
    top: 50%;

    transform: translateY(-50%);

    max-width: 680px;
}

.final-cta-copy h2 {
    margin-top: 12px;

    font-size: clamp(46px, 5.3vw, 76px);
    line-height: 0.9;

    letter-spacing: -3px;
    text-transform: uppercase;
}

.final-cta-copy h2 span {
    display: block;
    color: #888888;
}

.final-cta-description {
    max-width: 410px;

    margin-top: 25px;

    color: #b2b2b2;

    font-size: 12px;
    line-height: 1.7;
}


/* BUTTONS */

.final-actions {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.final-primary,
.final-whatsapp {
    display: flex;
    align-items: stretch;

    border: 1px solid rgba(255,255,255,0.45);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.final-primary {
    background: #176cff;
    border-color: #176cff;
}

.final-primary span,
.final-whatsapp span {
    padding: 13px 18px;
}

.final-primary strong,
.final-whatsapp strong {
    width: 42px;

    display: grid;
    place-items: center;

    border-left: 1px solid rgba(255,255,255,0.28);

    font-size: 15px;
}

.final-whatsapp {
    background: rgba(0,0,0,0.45);
}


/* META */

.final-meta {
    position: absolute;
    z-index: 2;

    left: 50px;
    right: 50px;
    bottom: 24px;

    display: flex;
    justify-content: space-between;

    color: rgba(255,255,255,0.45);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* FOOTER */

.mwd-footer {
    min-height: 110px;

    padding: 28px 42px;

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

    align-items: center;
    gap: 30px;

    border-top: 1px solid #262626;

    background: #050505;
}

.footer-brand {
    color: white;

    font-size: 24px;
    font-weight: 900;

    letter-spacing: -1px;
}

.footer-brand span {
    margin-left: 4px;

    color: #176cff;

    font-size: 7px;

    letter-spacing: 3px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: #777777;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: white;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;

    color: #4d4d4d;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* =========================================
   MOBILE — SECTIONS 02–06
========================================= */

@media (max-width: 650px) {

    /* GLOBAL SECTION STRUCTURE */

    .before-after-section,
    .selected-work-section,
    .why-section,
    .process-section,
    .final-cta {
        grid-template-columns: 1fr;
        width: 100%;
        min-width: 0;
    }

    .before-after-content,
    .selected-work-content,
    .why-content,
    .process-content {
        width: 100%;
        min-width: 0;
        padding: 42px 20px;
    }


    /* 02 — BEFORE / AFTER */

    .before-after-heading {
        display: block;
        margin-bottom: 25px;
    }

    .before-after-heading h2 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .before-after-intro {
        max-width: 100%;
        margin-top: 20px;
    }

    .compare-wrap {
        width: 100%;
        height: 430px;
    }

    .compare-image img {
        object-position: center;
    }

    .compare-after img {
        width: calc(100vw - 40px);
        height: 430px;
    }

    .before-after-footer {
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .before-after-footer span:nth-child(2) {
        display: none;
    }


    /* 03 — SELECTED WORK */

    .selected-work-heading {
        display: block;
        margin-bottom: 28px;
    }

    .selected-work-heading h2 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .selected-work-intro {
        max-width: 100%;
        margin-top: 20px;
    }

    .editorial-gallery {
        display: grid;

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

        gap: 8px;
    }

    .gallery-main {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 420px;
    }

    .gallery-tall,
    .gallery-wide {
        grid-column: auto;
        grid-row: auto;
        height: 230px;
    }

    .gallery-detail {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 260px;
    }

    .gallery-item figcaption {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .selected-work-footer {
        gap: 15px;
    }


    /* 04 — WHY MWD */

    .why-heading {
        display: block;
        padding-bottom: 35px;
    }

    .why-heading h2 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .why-intro {
        max-width: 100%;
        margin-top: 20px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-item {
        min-height: 230px;
        padding: 20px 16px;
    }

    .why-item:nth-child(2) {
        border-right: none;
    }

    .why-item:nth-child(-n+2) {
        border-bottom: 1px solid #292929;
    }

    .why-bottom h3 {
        font-size: 17px;
    }

    .testimonial {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .testimonial-side {
        min-height: 130px;

        padding: 30px 0 20px;

        border-right: none;
        border-bottom: 1px solid #292929;

        flex-direction: row;
        align-items: flex-end;
    }

    .quote-mark {
        font-size: 60px;
    }

    .testimonial-main {
        padding: 35px 0 30px;
    }

    .testimonial-text {
        font-size: 29px;
        letter-spacing: -1.3px;
    }

    .testimonial-meta {
        margin-top: 35px;
        display: block;
    }

    .testimonial-meta p {
        max-width: 100%;
        margin-top: 15px;
        text-align: left;
    }


    /* 05 — PROCESS */

    .process-heading {
        display: block;
        padding-bottom: 35px;
    }

    .process-heading h2 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .process-intro {
        max-width: 100%;
        margin-top: 20px;
    }

    .process-timeline {
        display: block;

        border-top: 1px solid #292929;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;

        width: 1px;
        height: auto;
    }

    .process-step {
        min-height: 180px;

        padding:
            25px
            15px
            25px
            60px;

        border-right: none;
        border-bottom: 1px solid #262626;
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .process-step-top {
        min-height: 25px;
        display: block;
    }

    .process-step-number {
        position: absolute;
        left: 0;
        top: 27px;
    }

    .process-dot {
        position: absolute;

        left: -40px;
        top: 29px;
    }

    .process-step-copy {
        margin-top: auto;
    }

    .process-step p {
        max-width: 260px;
    }


    /* 06 — FINAL CTA */

    .final-cta-content {
        width: 100%;
        min-width: 0;
    }

    .final-cta-media {
        min-height: 650px;
    }

    .final-cta-media > img {
        object-position: 65% center;
    }

    .final-cta-overlay {
        background:
            linear-gradient(
                to top,
                rgba(0,0,0,0.96) 0%,
                rgba(0,0,0,0.70) 55%,
                rgba(0,0,0,0.20) 100%
            );
    }

    .final-cta-copy {
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 95px;

        max-width: none;

        transform: none;
    }

    .final-cta-copy h2 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .final-cta-description {
        font-size: 11px;
    }

    .final-actions {
        align-items: flex-start;
    }

    .final-meta {
        left: 20px;
        right: 20px;
        bottom: 20px;

        gap: 15px;
    }


    /* FOOTER */

    .mwd-footer {
        min-height: 190px;

        padding: 30px 20px;

        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-right {
        align-items: flex-start;
    }
}

/* RESPONSIVE */

@media (max-width: 1000px) {

    .nav-links {
        display: none;
    }

    .hero-copy {
        max-width: 520px;
    }

    .hero h1 {
        font-size: clamp(58px, 9vw, 88px);
    }

    .services-preview {
        grid-template-columns: 90px 1fr;
    }

    .section-rail {
        padding-left: 22px;
        padding-right: 22px;
    }

    .service-preview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .preview-card {
        min-height: 460px;
        border-bottom: 1px solid #262626;
    }
}


@media (max-width: 650px) {

    .nav-shell {
        width: 90%;
        min-height: 68px;
    }

    .quote-button {
        display: none;
    }

    .hero-shell {
        width: 90%;
    }

    .hero-media img {
        object-position: 63% center;
    }

    .hero-copy {
        max-width: 100%;
        padding-top: 90px;
    }

    .hero-kicker {
        font-size: 10px;
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -2.5px;
    }

    .hero-rule {
        width: 230px;
    }

    .service-tags {
        max-width: 320px;
        gap: 8px 0;
    }

    .service-tags span {
        font-size: 10px;
    }

    .hero-location {
        bottom: 20px;
    }

    .hero-scroll {
        display: none;
    }

    .services-preview {
        grid-template-columns: 1fr;
    }

    .section-rail {
        min-height: 120px;

        border-right: none;
        border-bottom: 1px solid #262626;

        display: flex;
        align-items: center;
        gap: 20px;
    }

    .section-number {
        font-size: 30px;
    }

    .section-rail p {
        margin-top: 0;
    }

    .rail-line {
        margin-top: 0;
        margin-left: auto;
    }

    .service-preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-card {
        min-height: 470px;
        border-right: none;
    }
}

/* =========================================
   FINAL TYPOGRAPHY + SPACING REFINEMENT
========================================= */

/* DESKTOP */

.hero-kicker {
    font-size: 13px;
}

.hero-description {
    font-size: 13.5px;
    max-width: 430px;
}

.preview-copy p,
.before-after-intro,
.selected-work-intro,
.why-intro,
.process-intro,
.final-cta-description {
    font-size: 11px;
}

.preview-copy a,
.before-after-footer,
.selected-work-footer,
.why-footer,
.process-footer {
    letter-spacing: 0.8px;
}

.why-bottom p,
.process-step p {
    font-size: 10.5px;
}

.testimonial-meta p {
    font-size: 8.5px;
}

.footer-links a,
.footer-right {
    font-size: 8px;
}


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

@media (max-width: 650px) {

    /* HERO */

    .hero h1 {
        font-size: 58px;
        line-height: 0.88;
    }

    .hero-kicker {
        font-size: 10.5px;
    }

    .service-tags span {
        font-size: 10.5px;
    }

    .hero-cta > span {
        font-size: 9px;
    }


    /* SERVICES */

    .preview-card {
        min-height: 410px;
    }

    .preview-copy {
        min-height: 410px;
        padding: 195px 20px 22px;
    }

    .preview-copy h2 {
        font-size: 20px;
    }

    .preview-copy p {
        font-size: 11px;
        max-width: 260px;
    }


    /* SECTION HEADINGS */

    .before-after-heading h2,
    .selected-work-heading h2,
    .why-heading h2,
    .process-heading h2 {
        font-size: 36px;
        line-height: 0.96;
    }

    .before-after-heading,
    .selected-work-heading,
    .why-heading,
    .process-heading {
        margin-bottom: 30px;
    }


    /* BEFORE / AFTER */

    .compare-wrap {
        height: 400px;
    }

    .compare-after img {
        height: 400px;
    }


    /* WHY MWD */

    .why-grid {
        gap: 0;
    }

    .why-item {
        min-height: 215px;
        padding: 18px 15px;
    }

    .why-bottom p {
        font-size: 10.5px;
    }

    .testimonial-main {
        padding-top: 30px;
    }

    .testimonial-text {
        font-size: 27px;
        line-height: 0.98;
    }


    /* PROCESS */

    .process-step {
        min-height: 170px;
    }

    .process-step h3 {
        font-size: 19px;
    }

    .process-step p {
        font-size: 10.5px;
        line-height: 1.6;
    }


    /* FINAL CTA */

    .final-cta-media > img {
        filter:
            brightness(0.64)
            saturate(0.62)
            contrast(1.12);
    }

    .final-cta-copy h2 {
        font-size: 42px;
        line-height: 0.92;
    }

    .final-cta-description {
        font-size: 11px;
    }


    /* FOOTER */

    .footer-links a {
        font-size: 8.5px;
    }

    .footer-right {
        font-size: 7.5px;
        line-height: 1.5;
    }
}

/* =========================================
   MOTION SYSTEM
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* STAGGER */

.preview-card:nth-child(2),
.gallery-item:nth-child(2),
.why-item:nth-child(2),
.process-step:nth-child(2) {
    transition-delay: 0.08s;
}

.preview-card:nth-child(3),
.gallery-item:nth-child(3),
.why-item:nth-child(3),
.process-step:nth-child(3) {
    transition-delay: 0.16s;
}

.preview-card:nth-child(4),
.gallery-item:nth-child(4),
.why-item:nth-child(4),
.process-step:nth-child(4) {
    transition-delay: 0.24s;
}

.process-step:nth-child(5) {
    transition-delay: 0.32s;
}


/* HEADER GLASS EFFECT */

.site-header {
    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease,
        border-color 0.3s ease;
}

.site-header.header-scrolled {
    background: rgba(5, 5, 5, 0.84);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* BUTTON MICRO-INTERACTIONS */

.hero-cta,
.quote-button,
.final-primary,
.final-whatsapp {
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.hero-cta:hover,
.quote-button:hover,
.final-primary:hover,
.final-whatsapp:hover {
    transform: translateY(-2px);
}


/* ACCESSIBILITY */

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================
   CINEMATIC POLISH
========================================= */

/* HERO SLOW DRIFT */

.hero-media img {
    animation: heroDrift 14s ease-in-out infinite alternate;
}

@keyframes heroDrift {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.06);
    }
}


/* GALLERY DEPTH */

.gallery-item {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}


/* PROCESS ACTIVE STATE */

.process-step.is-visible .process-dot {
    box-shadow:
        0 0 0 4px #080808,
        0 0 18px rgba(23, 108, 255, 0.55);
}

.process-step.is-visible .process-step-number {
    color: #176cff;
}


/* KEEP MOBILE CALMER */

@media (max-width: 650px) {
    .hero-media img {
        animation-duration: 18s;
    }

    .gallery-item:hover {
        transform: none;
        box-shadow: none;
    }
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
    .hero-media img {
        animation: none;
        transform: none;
    }
}

/* =========================================================
   FINAL PREMIUM THEME — CONSOLIDATED
   ========================================================= */

/* TYPOGRAPHY + PALETTE */

body {
    font-family: "Manrope", sans-serif;
    background: #080808;
    color: #ece9e2;
}

.before-after-heading h2,
.selected-work-heading h2,
.why-heading h2,
.process-heading h2,
.final-cta-copy h2 {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #ece9e2;
}

.before-after-heading h2 span,
.selected-work-heading h2 span,
.why-heading h2 span,
.process-heading h2 span,
.final-cta-copy h2 span {
    color: #8d8a84;
}

.section-kicker,
.eyebrow,
.section-number,
.process-step-number {
    color: #6f86a6;
}

.section-kicker,
.section-rail,
.nav-links,
.quote-button,
.service-tags,
.preview-card,
.process-step,
.footer-links {
    font-family: "Manrope", sans-serif;
}

.before-after-section,
.selected-work-section,
.why-section,
.process-section,
.final-cta {
    border-color: rgba(255, 255, 255, 0.07);
}


/* SECTION 04 ICON SYSTEM */

.why-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 24px;

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

.why-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: #b89a62;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* BEFORE / AFTER — CORRECT REVEAL DIRECTION */

.compare-after {
    width: 100%;
    clip-path: inset(0 0 0 50%);
}


@media (min-width: 901px) {

    /* GLOBAL DESKTOP REFINEMENT */

    .hero h1 {
        font-size: clamp(64px, 6vw, 104px);
        line-height: 0.9;
    }

    .before-after-heading h2,
    .selected-work-heading h2,
    .why-heading h2,
    .process-heading h2,
    .final-cta-copy h2 {
        font-size: clamp(42px, 4vw, 68px);
        line-height: 0.95;
    }

    .section-rail {
        border-right-color: rgba(255, 255, 255, 0.055);
    }

    .before-after-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .selected-work-section {
        padding-top: 110px;
        padding-bottom: 120px;
    }

    .why-section,
    .process-section {
        padding-top: 110px;
        padding-bottom: 110px;

        background:
            linear-gradient(
                180deg,
                #080808 0%,
                #0a0a0a 50%,
                #080808 100%
            );
    }


    /* SECTION 01 — PREMIUM SERVICE CARDS */

    .preview-card {
        min-height: 500px;

        position: relative;
        overflow: hidden;

        background: #0a0a0a;
        border: 1px solid rgba(255, 255, 255, 0.045);
    }

    .preview-card img {
        transition:
            transform 0.7s cubic-bezier(.2,.6,.2,1),
            filter 0.5s ease;

        filter:
            brightness(0.72)
            saturate(0.82)
            contrast(1.04);
    }

    .preview-card:hover img {
        transform: scale(1.035);

        filter:
            brightness(0.86)
            saturate(0.92)
            contrast(1.05);
    }

    .preview-card::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;

        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.05) 20%,
                rgba(0,0,0,0.32) 62%,
                rgba(0,0,0,0.82) 100%
            );
    }

    .preview-card p {
        color: rgba(236, 233, 226, 0.62);
        line-height: 1.65;
    }


    /* SECTION 02 — PREMIUM BEFORE / AFTER */

    .compare-wrap {
        width: min(100%, 1180px);
        height: auto;
        aspect-ratio: 16 / 9;

        margin: 30px auto -90px;

        transform: scale(0.76);
        transform-origin: center top;

        background: #070707;
        border: none;

        box-shadow:
            0 0 0 10px #0d0d0d,
            0 0 0 11px rgba(255, 255, 255, 0.10),
            0 32px 90px rgba(0, 0, 0, 0.75);
    }

    .compare-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .compare-label {
        padding: 11px 16px;

        background: rgba(8, 8, 8, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.12);

        backdrop-filter: blur(8px);

        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.16em;
    }

    .compare-handle {
        width: 52px;
        height: 52px;

        background: #0b0b0b;
        border: 1px solid rgba(236, 233, 226, 0.85);

        backdrop-filter: blur(8px);

        box-shadow:
            0 0 0 5px rgba(255, 255, 255, 0.035),
            0 12px 35px rgba(0, 0, 0, 0.60);
    }


    /* SECTION 03 — PREMIUM SELECTED WORK */

    .selected-work-content {
        width: 84%;
        justify-self: center;

        padding-left: 0;
        padding-right: 0;
    }

    .selected-work-heading {
        margin-bottom: 48px;
    }

    .selected-work-content .gallery-item {
        min-height: 250px;

        overflow: hidden;

        border: 1px solid rgba(255, 255, 255, 0.05);

        box-shadow:
            0 22px 55px rgba(0, 0, 0, 0.38);
    }

    .selected-work-content .gallery-item img {
        filter:
            brightness(0.74)
            saturate(0.58)
            contrast(1.08);

        transition:
            transform 0.7s cubic-bezier(.2,.6,.2,1),
            filter 0.5s ease;
    }

    .selected-work-content .gallery-item:hover img {
        transform: scale(1.025);

        filter:
            brightness(0.88)
            saturate(0.76)
            contrast(1.06);
    }


    /* SECTIONS 04 + 05 — QUIET PREMIUM GRID */

    .why-item,
    .process-step,
    .testimonial {
        border-color: rgba(255, 255, 255, 0.055);
    }

    .why-item,
    .process-step {
        padding-top: 34px;
        padding-bottom: 34px;

        background: transparent;

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

    .why-item:hover,
    .process-step:hover {
        transform: translateY(-4px);

        background: rgba(255, 255, 255, 0.015);
        border-color: rgba(255, 255, 255, 0.09);
    }

    .why-item h3,
    .process-step h3 {
        margin-bottom: 14px;

        color: #ece9e2;

        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .why-item p,
    .process-step p {
        max-width: 240px;

        color: rgba(236, 233, 226, 0.58);

        font-size: 13px;
        line-height: 1.7;
    }

    .process-step-number {
        font-size: 11px;
        letter-spacing: 0.18em;
        opacity: 0.75;
    }

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

        box-shadow: 0 0 0 4px #080808;
    }

    .testimonial {
        margin-top: 28px;
        padding-top: 34px;
        padding-bottom: 38px;

        background: rgba(255, 255, 255, 0.012);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .testimonial h3,
    .testimonial blockquote {
        letter-spacing: -0.025em;
    }


    /* SECTION 04 — PERFECT CARD ALIGNMENT */

    .why-grid .why-item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .why-grid .why-top {
        margin: 0;
        padding: 0;
        transform: none;
    }

    .why-grid .why-bottom {
        margin-top: 90px;
        padding-top: 0;
        transform: none;
    }


    /* SECTION 06 — FINAL CINEMATIC POLISH */

    .final-cta-media > img {
        filter:
            brightness(1.12)
            contrast(1.04)
            saturate(0.88);
    }

    .final-actions {
        margin-top: 28px;
    }

    .mwd-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

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

@media (max-width: 1000px) {

    .site-header.menu-open {
        background: rgba(5, 5, 5, 0.94);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-header.menu-open .nav-links {
        position: absolute;
        top: 76px;
        left: 3%;
        right: 3%;

        display: flex;
        flex-direction: column;
        gap: 0;

        padding: 10px;

        background: rgba(8, 8, 8, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);

        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    }

    .site-header.menu-open .nav-links a {
        padding: 14px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-header.menu-open .nav-links a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 650px) {
    .site-header.menu-open .nav-links {
        top: 68px;
        left: 5%;
        right: 5%;
    }
}