:root {
    --bg: #050505;
    --bg-soft: #090909;
    --bg-elevated: #0e0e0e;

    --white: #ffffff;
    --text: #f5f2ed;
    --muted: rgba(245, 242, 237, .58);
    --muted-light: rgba(245, 242, 237, .76);

    --line: rgba(255, 255, 255, .11);
    --line-light: rgba(255, 255, 255, .18);

    --gold: #c9a86a;

    --container: 1440px;
}


/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--bg);
    color: var(--text);

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    transition:
        background .4s ease,
        border-color .4s ease,
        backdrop-filter .4s ease;
}

.site-header.is-scrolled {
    background: rgba(5, 5, 5, .78);
    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-inner {
    min-height: 96px;

    display: flex;
    align-items: center;

    gap: 50px;
}

.brand {
    width: 118px;

    flex-shrink: 0;

    position: relative;
    z-index: 110;
}

.brand-logo {
    width: 100%;
    height: auto;

    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;

    gap: clamp(20px, 2.3vw, 38px);

    margin-left: auto;
}

.desktop-nav a {
    position: relative;

    padding: 38px 0;

    color: rgba(255,255,255,.70);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .13em;
    text-transform: uppercase;

    transition: color .25s ease;
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 29px;

    width: 0;
    height: 1px;

    background: #fff;

    transition: width .3s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-cta {
    flex-shrink: 0;

    min-height: 44px;

    display: inline-flex;
    align-items: center;

    padding: 0 20px;

    border: 1px solid rgba(255,255,255,.28);
    border-radius: 100px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .12em;
    text-transform: uppercase;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.header-cta:hover {
    background: #fff;
    color: #050505;
    border-color: #fff;
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    border: 1px solid var(--line);
    border-radius: 50%;

    background: transparent;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 6px;

    position: relative;

    z-index: 110;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 18px;
    height: 1px;

    background: #fff;

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.menu-toggle.is-active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}


/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    inset: 0;

    background: #050505;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity .4s ease,
        visibility .4s ease,
        transform .4s ease;

    z-index: 90;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.mobile-menu-inner {
    min-height: 100svh;

    padding:
        130px
        28px
        32px;

    display: flex;
    flex-direction: column;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu nav a {
    padding: 16px 0;

    border-bottom: 1px solid var(--line);

    font-size: clamp(30px, 9vw, 50px);

    line-height: 1;

    letter-spacing: -.04em;
}

.mobile-menu-cta {
    margin-top: 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0;

    color: var(--gold);

    border-bottom: 1px solid var(--line);
}

.mobile-menu-footer {
    margin-top: auto;

    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-size: 10px;

    letter-spacing: .15em;
    text-transform: uppercase;
}


/* HERO */

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 74% 32%,
            rgba(112, 43, 255, .16),
            transparent 30%
        ),
        radial-gradient(
            circle at 28% 75%,
            rgba(236, 26, 138, .09),
            transparent 27%
        ),
        #050505;
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .17;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.45),
            transparent 90%
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.55) 47%,
            rgba(0,0,0,.15) 100%
        );
}

.hero-light {
    position: absolute;

    border-radius: 50%;

    filter: blur(60px);

    opacity: .65;

    pointer-events: none;
}

.hero-light-one {
    width: 550px;
    height: 550px;

    right: -140px;
    top: 10%;

    background:
        radial-gradient(
            circle,
            rgba(139, 73, 255, .23),
            transparent 68%
        );
}

.hero-light-two {
    width: 400px;
    height: 400px;

    left: 25%;
    bottom: -200px;

    background:
        radial-gradient(
            circle,
            rgba(255, 51, 137, .12),
            transparent 70%
        );
}

.hero-content {
    position: relative;
    z-index: 5;

    padding-top: 110px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        180px;

    gap: 80px;

    align-items: center;
}

.hero-copy {
    max-width: 1040px;
}

.hero-label {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 27px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .28em;
    text-transform: uppercase;
}

.hero-label > span {
    width: 36px;
    height: 1px;

    background: currentColor;
}

.hero h1 {
    margin: 0;

    font-size: clamp(74px, 9.2vw, 150px);

    line-height: .82;

    letter-spacing: -.065em;

    font-weight: 500;
}

.hero h1 > span {
    display: block;

    padding-left: clamp(20px, 7vw, 105px);

    color: rgba(255,255,255,.5);

    font-weight: 300;
    font-style: italic;
}

.hero-text {
    max-width: 660px;

    margin:
        42px
        0
        0
        clamp(5px, 7vw, 110px);

    color: var(--muted-light);

    font-size: clamp(16px, 1.4vw, 20px);

    line-height: 1.7;
}

.hero-actions {
    margin:
        38px
        0
        0
        clamp(5px, 7vw, 110px);

    display: flex;

    gap: 13px;
}

.btn {
    min-height: 54px;

    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    border-radius: 100px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: #fff;
    color: #080808;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.24);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,.75);
}

.btn-arrow {
    font-size: 16px;
    font-weight: 400;
}

.hero-side {
    display: flex;
    flex-direction: column;

    gap: 23px;
}

.hero-side-line {
    width: 1px;
    height: 80px;

    margin-left: 14px;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.5),
            transparent
        );
}

.hero-side-item {
    display: flex;
    align-items: center;

    gap: 13px;
}

.hero-side-item strong {
    color: rgba(255,255,255,.35);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: .1em;
}

.hero-side-item span {
    color: rgba(255,255,255,.72);

    font-size: 10px;

    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero-bottom {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    z-index: 7;

    border-top: 1px solid var(--line);
}

.hero-bottom-inner {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-location {
    color: rgba(255,255,255,.45);

    font-size: 9px;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-location span {
    margin: 0 12px;

    color: var(--gold);
}

.scroll-down {
    display: flex;
    align-items: center;

    gap: 20px;

    color: rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: .16em;
    text-transform: uppercase;
}

.scroll-circle {
    width: 43px;
    height: 43px;

    border: 1px solid var(--line-light);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;

    transition:
        background .3s ease,
        color .3s ease;
}

.scroll-down:hover .scroll-circle {
    background: #fff;
    color: #050505;
}


/* EXPERIENCE */

.experience {
    padding: 170px 0 190px;

    background: #080808;
}

.experience-top {
    display: flex;
    justify-content: space-between;

    gap: 60px;

    padding-bottom: 65px;

    border-bottom: 1px solid var(--line);
}

.section-label {
    color: rgba(255,255,255,.55);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-label span {
    margin-right: 18px;

    color: var(--gold);
}

.experience-intro {
    max-width: 430px;

    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}

.experience-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(260px, .7fr);

    gap: 100px;

    padding-top: 75px;
}

.experience h2 {
    margin: 0;

    font-size: clamp(50px, 6.5vw, 104px);

    font-weight: 400;

    line-height: .97;

    letter-spacing: -.055em;
}

.experience h2 em {
    display: block;

    color: rgba(255,255,255,.45);

    font-weight: 300;
}

.experience h2 span {
    display: block;

    padding-left: 9%;

    color: var(--gold);

    font-weight: 300;
}

.experience-description {
    padding-top: 18px;
}

.experience-description p {
    margin: 0 0 23px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 16px;

    margin-top: 20px;

    padding-bottom: 7px;

    border-bottom: 1px solid rgba(255,255,255,.32);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .14em;
    text-transform: uppercase;
}


/* SERVICES */

.services-preview {
    padding: 160px 0;

    background: #050505;
}

.section-heading {
    display: grid;

    grid-template-columns:
        minmax(200px, .5fr)
        minmax(0, 1.5fr);

    gap: 70px;

    margin-bottom: 90px;
}

.section-heading h2 {
    margin: 0;

    max-width: 950px;

    font-size: clamp(48px, 6vw, 88px);

    line-height: .98;

    font-weight: 400;

    letter-spacing: -.05em;
}

.section-heading h2 span {
    display: block;

    color: rgba(255,255,255,.35);
}

.services-grid {
    border-top: 1px solid var(--line);
}

.service-card {
    min-height: 190px;

    padding: 35px 12px;

    display: grid;

    grid-template-columns:
        110px
        minmax(0, 1fr)
        60px;

    align-items: center;

    gap: 35px;

    border-bottom: 1px solid var(--line);

    transition:
        background .4s ease,
        padding .4s ease;
}

.service-card:hover {
    padding-left: 30px;
    padding-right: 30px;

    background: #0a0a0a;
}

.service-number {
    align-self: start;

    padding-top: 6px;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: .12em;
}

.service-content {
    display: grid;

    grid-template-columns:
        minmax(250px, .75fr)
        minmax(260px, 1fr);

    gap: 70px;

    align-items: center;
}

.service-content h3 {
    margin: 0;

    font-size: clamp(27px, 3vw, 46px);

    font-weight: 400;

    letter-spacing: -.035em;
}

.service-content p {
    max-width: 520px;

    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}

.service-arrow {
    width: 46px;
    height: 46px;

    border: 1px solid var(--line);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    justify-self: end;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.service-card:hover .service-arrow {
    background: #fff;

    color: #050505;

    transform: rotate(45deg);
}


/* FOOTER */

.site-footer {
    padding: 42px 0;

    background: #050505;

    border-top: 1px solid var(--line);

    color: var(--muted);

    font-size: 12px;
}


/* TABLET */

@media (max-width: 1100px) {

    .desktop-nav {
        display: none;
    }

    .header-cta {
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-side {
        display: none;
    }

    .experience-content {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .experience-description {
        max-width: 620px;

        margin-left: auto;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-inner {
        min-height: 78px;
    }

    .brand {
        width: 92px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 850px;
    }

    .hero-content {
        padding-top: 75px;
    }

    .hero-label {
        margin-bottom: 20px;

        font-size: 8px;
    }

    .hero h1 {
        font-size: clamp(66px, 20vw, 104px);

        line-height: .86;
    }

    .hero h1 > span {
        padding-left: 0;
    }

    .hero-text {
        margin:
            30px
            0
            0;

        font-size: 15px;
    }

    .hero-actions {
        margin:
            30px
            0
            0;

        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-bottom-inner {
        min-height: 76px;
    }

    .hero-location {
        display: none;
    }

    .scroll-down {
        width: 100%;

        justify-content: space-between;
    }

    .experience {
        padding: 105px 0 115px;
    }

    .experience-top {
        flex-direction: column;

        gap: 30px;

        padding-bottom: 40px;
    }

    .experience-content {
        padding-top: 45px;

        gap: 45px;
    }

    .experience h2 {
        font-size: clamp(48px, 14vw, 72px);
    }

    .experience h2 span {
        padding-left: 0;
    }

    .services-preview {
        padding: 110px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 55px;
    }

    .section-heading h2 {
        font-size: clamp(45px, 13vw, 66px);
    }

    .service-card {
        grid-template-columns:
            45px
            1fr
            44px;

        gap: 13px;

        min-height: auto;

        padding: 30px 0;
    }

    .service-card:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .service-content {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .service-content h3 {
        font-size: 26px;
    }

    .service-content p {
        font-size: 13px;
    }

    .service-arrow {
        width: 38px;
        height: 38px;
    }

}

.desktop-nav a.is-active {
    color: #fff;
}

.desktop-nav a.is-active::after {
    width: 100%;
}

.mobile-menu nav a.is-active {
    color: var(--gold);
}


/* =========================================================
   INNER PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;

    min-height: 72vh;

    display: flex;
    align-items: flex-end;

    padding: 190px 0 95px;

    overflow: hidden;

    background: #050505;

    border-bottom: 1px solid var(--line);
}

.page-hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(115, 47, 255, .14),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 85%,
            rgba(223, 31, 132, .08),
            transparent 30%
        );
}

.page-hero-bg::after {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    opacity: .5;
}

.page-hero-inner {
    position: relative;

    z-index: 2;
}

.page-hero-number {
    margin-bottom: 26px;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: .18em;
}

.page-hero-eyebrow {
    margin-bottom: 18px;

    color: rgba(255,255,255,.45);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .25em;

    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 1200px;

    margin: 0;

    font-size: clamp(70px, 8.7vw, 145px);

    font-weight: 400;

    line-height: .87;

    letter-spacing: -.065em;
}

.page-hero h1 span {
    display: block;

    color: rgba(255,255,255,.4);

    font-weight: 300;
    font-style: italic;
}

.page-hero-description {
    max-width: 650px;

    margin: 38px 0 0;

    color: var(--muted-light);

    font-size: clamp(16px, 1.3vw, 20px);

    line-height: 1.75;
}


/* =========================================================
   GENERIC PAGE CONTENT
   ========================================================= */

.page-section {
    padding: 145px 0;

    background: #080808;
}

.page-intro {
    max-width: 1000px;
}

.page-intro .section-label {
    display: block;

    margin-bottom: 28px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .18em;

    text-transform: uppercase;
}

.page-intro h2 {
    margin: 0;

    font-size: clamp(48px, 6vw, 90px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -.05em;
}

.page-intro p {
    max-width: 650px;

    margin: 32px 0 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


@media (max-width: 700px) {

    .page-hero {
        min-height: 650px;

        padding: 145px 0 70px;
    }

    .page-hero h1 {
        font-size: clamp(58px, 17vw, 88px);
    }

    .page-hero-description {
        margin-top: 28px;

        font-size: 15px;
    }

    .page-section {
        padding: 95px 0;
    }

    .page-intro h2 {
        font-size: clamp(44px, 13vw, 68px);
    }

}

/* =========================================================
   HOME — PWL 2026
   ========================================================= */

.home-hero,
.pwl-experience,
.pwl-services,
.pwl-statement,
.pwl-visual-break,
.home-next {
    position: relative;
}

.home-hero {
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #050505;
}

.home-hero-media,
.home-hero-overlay {
    position: absolute;
    inset: 0;
}

.home-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
}

.home-hero-overlay {
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(3,3,3,.12) 0%,
            rgba(3,3,3,.10) 48%,
            rgba(3,3,3,.80) 100%
        ),
        linear-gradient(
            90deg,
            rgba(3,3,3,.92) 0%,
            rgba(3,3,3,.76) 30%,
            rgba(3,3,3,.35) 61%,
            rgba(3,3,3,.12) 100%
        );
}

.home-hero-inner {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 80px;

    padding-top: 90px;
    padding-bottom: 110px;
}

.home-hero-copy {
    max-width: 920px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;

    color: #d2ac65;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: .27em;
    text-transform: uppercase;
}

.hero-kicker > span {
    width: 42px;
    height: 1px;
    background: currentColor;
}

.home-hero h1 {
    margin: 0;

    max-width: 900px;

    font-family: 'Manrope', sans-serif;
    font-size: clamp(72px, 8.4vw, 146px);

    font-weight: 400;
    line-height: .87;
    letter-spacing: -.075em;
}

.home-hero h1 em {
    display: block;

    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: rgba(255,255,255,.72);

    letter-spacing: -.045em;
}

.hero-lead {
    max-width: 600px;

    margin: 38px 0 0;

    color: rgba(255,255,255,.70);

    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    margin-top: 38px;
}

.pwl-btn {
    min-height: 56px;

    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    border-radius: 100px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .13em;
    text-transform: uppercase;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}

.pwl-btn:hover {
    transform: translateY(-3px);
}

.pwl-btn-light {
    background: #f4f0e9;
    color: #080808;
}

.pwl-btn-glass {
    border: 1px solid rgba(255,255,255,.28);

    background: rgba(255,255,255,.035);

    backdrop-filter: blur(8px);
}

.pwl-btn-glass:hover {
    border-color: rgba(255,255,255,.75);
}

.hero-signature {
    display: flex;
    flex-direction: column;
    gap: 17px;

    min-width: 150px;
}

.hero-signature-line {
    width: 1px;
    height: 95px;

    margin: 0 0 10px 8px;

    background:
        linear-gradient(
            to bottom,
            rgba(210,172,101,.8),
            transparent
        );
}

.hero-signature span {
    color: rgba(255,255,255,.52);

    font-size: 9px;

    letter-spacing: .14em;
}

.home-hero-footer {
    position: absolute;
    z-index: 4;

    left: 0;
    right: 0;
    bottom: 0;

    border-top: 1px solid rgba(255,255,255,.11);
}

.home-hero-footer-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-categories {
    display: flex;
    align-items: center;
    gap: 15px;

    color: rgba(255,255,255,.45);

    font-size: 9px;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-categories i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #d2ac65;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 17px;

    color: rgba(255,255,255,.53);

    font-size: 9px;

    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-scroll-circle {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.20);
    border-radius: 50%;
}


/* EXPERIENCE */

.pwl-experience {
    padding: 150px 0 175px;

    background:
        linear-gradient(
            180deg,
            #050505 0%,
            #080807 100%
        );

    overflow: hidden;
}

.pwl-experience::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -350px;
    top: 120px;

    border: 1px solid rgba(210,172,101,.10);
    border-radius: 50%;
}

.section-intro-row {
    display: flex;
    justify-content: space-between;
    gap: 70px;

    padding-bottom: 45px;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.section-code {
    color: rgba(255,255,255,.48);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .18em;
}

.section-code span {
    margin-right: 18px;

    color: #d2ac65;
}

.section-intro-row > p {
    max-width: 390px;

    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 13px;
    line-height: 1.8;
}

.experience-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(420px, .8fr);

    gap: clamp(70px, 9vw, 150px);

    align-items: center;

    padding-top: 85px;
}

.experience-copy h2 {
    margin: 0;

    font-family: 'Manrope', sans-serif;

    font-size: clamp(58px, 6.2vw, 104px);

    font-weight: 400;
    line-height: .94;

    letter-spacing: -.065em;
}

.experience-copy h2 span {
    display: block;

    color: rgba(255,255,255,.42);
}

.experience-copy h2 em {
    display: block;

    font-family: 'Playfair Display', serif;

    color: #d2ac65;

    font-weight: 400;
    letter-spacing: -.04em;
}

.experience-text {
    max-width: 560px;

    margin-top: 55px;
    margin-left: 12%;
}

.experience-text p {
    margin: 0 0 22px;

    color: rgba(255,255,255,.58);

    font-size: 15px;
    line-height: 1.85;
}

.editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    margin-top: 15px;
    padding-bottom: 7px;

    border-bottom: 1px solid rgba(210,172,101,.55);

    color: #eee9e0;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .15em;
    text-transform: uppercase;
}

.editorial-link span {
    color: #d2ac65;
}

.experience-visual {
    position: relative;

    min-height: 650px;
}

.experience-photo {
    position: absolute;

    inset: 0 0 60px 50px;

    overflow: hidden;

    border-radius: 2px;
}

.experience-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    box-shadow:
        inset 0 0 90px rgba(0,0,0,.48);
}

.experience-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 61% center;

    filter:
        brightness(.73)
        contrast(1.06);
}

.experience-badge {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 190px;
    height: 190px;

    padding: 27px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #d2ac65;
    color: #070707;
}

.experience-badge strong {
    font-size: 38px;
    letter-spacing: -.06em;
}

.experience-badge span {
    font-size: 10px;

    line-height: 1.6;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.experience-caption {
    position: absolute;

    right: -30px;
    bottom: 20px;

    writing-mode: vertical-rl;

    color: rgba(255,255,255,.30);

    font-size: 8px;

    letter-spacing: .25em;
}


/* STATEMENT */

.pwl-statement {
    padding: 110px 0;

    background: #d2ac65;
    color: #080808;

    overflow: hidden;
}

.statement-line {
    width: 100%;
    height: 1px;

    background: rgba(0,0,0,.16);
}

.pwl-statement .container {
    padding-top: 65px;
    padding-bottom: 65px;
}

.pwl-statement p {
    margin: 0 0 15px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: .22em;
    text-transform: uppercase;
}

.pwl-statement h2 {
    margin: 0;

    font-size: clamp(62px, 8vw, 130px);

    font-weight: 400;
    line-height: .9;

    letter-spacing: -.07em;
}

.pwl-statement h2 em {
    font-family: 'Playfair Display', serif;

    font-weight: 400;
}


/* SERVICES */

.pwl-services {
    padding: 165px 0;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(210,172,101,.055),
            transparent 26%
        ),
        #050505;
}

.services-heading {
    display: grid;

    grid-template-columns:
        minmax(170px, .35fr)
        minmax(0, 1.65fr);

    gap: 70px;

    margin-bottom: 80px;
}

.services-heading h2 {
    max-width: 950px;

    margin: 0;

    font-size: clamp(55px, 6vw, 94px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.06em;
}

.services-heading h2 span {
    color: #d2ac65;
}

.services-heading p {
    max-width: 600px;

    margin: 30px 0 0;

    color: rgba(255,255,255,.55);

    font-size: 15px;
    line-height: 1.8;
}

.service-showcase {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}

.service-showcase-card {
    position: relative;

    min-height: 420px;

    padding: 30px;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255,255,255,.09);

    background: #0c0c0b;

    transition:
        transform .4s ease,
        border-color .4s ease;
}

.service-showcase-card:hover {
    transform: translateY(-6px);

    border-color: rgba(210,172,101,.45);
}

.service-large {
    min-height: 620px;

    grid-row: span 2;
}

.service-card-bg,
.service-card-overlay,
.service-card-surface {
    position: absolute;
    inset: 0;
}

.service-card-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(.47)
        saturate(.72);

    transition:
        transform .8s ease,
        filter .6s ease;
}

.service-showcase-card:hover .service-card-bg img {
    transform: scale(1.05);

    filter:
        brightness(.62)
        saturate(.9);
}

.service-card-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.12),
            rgba(0,0,0,.79)
        );
}

.service-card-surface {
    background:
        radial-gradient(
            circle at 75% 22%,
            rgba(210,172,101,.12),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #11110f,
            #080808
        );
}

.service-gold .service-card-surface {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(210,172,101,.26),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #18150f,
            #080808 65%
        );
}

.service-card-top,
.service-card-bottom {
    position: relative;
    z-index: 2;
}

.service-card-top {
    display: flex;
    justify-content: space-between;

    color: rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: .18em;
}

.service-card-top span:first-child {
    color: #d2ac65;
}

.service-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 25px;
}

.service-card-bottom h3 {
    margin: 0;

    max-width: 500px;

    font-size: clamp(34px, 3.2vw, 55px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -.05em;
}

.service-card-bottom p {
    max-width: 330px;

    margin: 15px 0 0;

    color: rgba(255,255,255,.56);

    font-size: 13px;
}

.service-circle {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;

    transition:
        background .3s ease,
        color .3s ease;
}

.service-showcase-card:hover .service-circle {
    background: #d2ac65;
    border-color: #d2ac65;

    color: #070707;
}

.service-wide {
    grid-column: 1 / -1;

    min-height: 260px;

    background:
        linear-gradient(
            100deg,
            #0b0b0a,
            #15120c
        );
}

.service-wide::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -80px;
    top: -210px;

    border: 1px solid rgba(210,172,101,.18);
    border-radius: 50%;
}

.service-wide-content {
    position: relative;
    z-index: 2;

    min-height: 200px;

    display: grid;

    grid-template-columns:
        1fr
        minmax(260px, .6fr)
        auto;

    align-items: end;

    gap: 60px;
}

.service-overline {
    display: block;

    margin-bottom: 22px;

    color: #d2ac65;

    font-size: 9px;

    letter-spacing: .2em;
}

.service-wide h3 {
    margin: 0;

    font-size: clamp(45px, 5vw, 82px);

    line-height: .9;

    letter-spacing: -.06em;
}

.service-wide h3 em {
    display: block;

    font-family: 'Playfair Display', serif;

    color: rgba(255,255,255,.52);

    font-weight: 400;
}

.service-wide p {
    margin: 0;

    color: rgba(255,255,255,.53);

    font-size: 14px;
    line-height: 1.8;
}

.services-bottom {
    display: flex;
    justify-content: flex-end;

    padding-top: 45px;
}


/* VISUAL BREAK */

.pwl-visual-break {
    min-height: 72vh;

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    background: #050505;
}

.pwl-visual-break > img,
.visual-break-overlay {
    position: absolute;
    inset: 0;
}

.pwl-visual-break > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        brightness(.58)
        contrast(1.08);
}

.visual-break-overlay {
    background:
        linear-gradient(
            to right,
            rgba(5,5,5,.80),
            rgba(5,5,5,.20)
        ),
        linear-gradient(
            to bottom,
            rgba(5,5,5,.05),
            rgba(5,5,5,.70)
        );
}

.visual-break-content {
    position: relative;
    z-index: 2;

    padding-bottom: 85px;
}

.visual-break-content > span {
    color: #d2ac65;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .22em;
}

.visual-break-content h2 {
    max-width: 950px;

    margin: 22px 0 0;

    font-size: clamp(55px, 7vw, 105px);

    line-height: .92;

    font-weight: 400;

    letter-spacing: -.06em;
}

.visual-break-content h2 em {
    display: block;

    font-family: 'Playfair Display', serif;

    font-weight: 400;

    color: rgba(255,255,255,.62);
}


/* NEXT PLACEHOLDER */

.home-next {
    padding: 140px 0;

    background: #080808;
}

.home-next > .container > span {
    color: #d2ac65;

    font-size: 10px;

    letter-spacing: .2em;
    text-transform: uppercase;
}

.home-next h2 {
    margin: 24px 0 0;

    font-size: clamp(60px, 7vw, 110px);

    line-height: .9;

    font-weight: 400;

    letter-spacing: -.065em;
}

.home-next h2 em {
    display: block;

    font-family: 'Playfair Display', serif;

    color: rgba(255,255,255,.42);

    font-weight: 400;
}

.home-next p {
    max-width: 500px;

    margin-top: 30px;

    color: rgba(255,255,255,.5);

    line-height: 1.8;
}


/* =========================================================
   HOME RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .home-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-signature {
        display: none;
    }

    .experience-layout {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .experience-visual {
        max-width: 720px;

        width: 100%;

        margin-left: auto;
    }

}


@media (max-width: 760px) {

    .home-hero {
        min-height: 820px;
    }

    .home-hero-inner {
        padding-top: 100px;
    }

    .home-hero-media img {
        object-position: 60% center;
    }

    .home-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3,3,3,.32),
                rgba(3,3,3,.48) 55%,
                #050505 100%
            ),
            linear-gradient(
                90deg,
                rgba(3,3,3,.83),
                rgba(3,3,3,.32)
            );
    }

    .home-hero h1 {
        font-size: clamp(62px, 18vw, 90px);
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .pwl-btn {
        width: 100%;
    }

    .hero-categories {
        display: none;
    }

    .home-hero-footer-inner {
        justify-content: flex-end;
    }

    .pwl-experience {
        padding: 100px 0 120px;
    }

    .section-intro-row {
        flex-direction: column;

        gap: 28px;
    }

    .experience-layout {
        padding-top: 55px;
    }

    .experience-copy h2 {
        font-size: clamp(50px, 14vw, 72px);
    }

    .experience-text {
        margin-left: 0;
    }

    .experience-visual {
        min-height: 500px;
    }

    .experience-photo {
        inset:
            0
            0
            70px
            20px;
    }

    .experience-badge {
        width: 150px;
        height: 150px;

        padding: 22px;
    }

    .experience-badge strong {
        font-size: 30px;
    }

    .experience-caption {
        display: none;
    }

    .pwl-statement {
        padding: 70px 0;
    }

    .pwl-statement .container {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .pwl-statement h2 {
        font-size: clamp(54px, 15vw, 82px);
    }

    .pwl-services {
        padding: 105px 0;
    }

    .services-heading {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 55px;
    }

    .services-heading h2 {
        font-size: clamp(48px, 14vw, 70px);
    }

    .service-showcase {
        grid-template-columns: 1fr;
    }

    .service-large {
        min-height: 500px;

        grid-row: auto;
    }

    .service-showcase-card {
        min-height: 350px;
    }

    .service-wide {
        grid-column: auto;
    }

    .service-wide-content {
        grid-template-columns: 1fr;

        align-items: start;

        gap: 30px;
    }

    .pwl-visual-break {
        min-height: 620px;
    }

    .visual-break-content {
        padding-bottom: 60px;
    }

    .visual-break-content h2 {
        font-size: clamp(48px, 14vw, 75px);
    }

}


/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-intro-section {
    position: relative;
    padding: 140px 0 160px;
    background: #080808;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: end;
}

.services-intro-heading h2 {
    margin: 35px 0 0;

    font-size: clamp(55px, 6vw, 96px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.06em;
}

.services-intro-heading h2 em {
    display: block;

    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #d2ac65;
}

.services-intro-copy p {
    margin: 0 0 22px;

    color: rgba(255,255,255,.58);
    font-size: 15px;
    line-height: 1.85;
}


/* CATALOG */

.services-catalog {
    padding: 30px 0 160px;
    background: #050505;
}

.services-catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.services-catalog-card {
    position: relative;

    min-height: 450px;

    padding: 30px;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255,255,255,.09);

    background: #0c0c0b;

    transition:
        transform .4s ease,
        border-color .4s ease;
}

.services-catalog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210,172,101,.45);
}

.services-catalog-card-large {
    min-height: 650px;
    grid-row: span 2;
}

.services-catalog-media,
.services-catalog-overlay,
.services-catalog-surface,
.services-card-glow {
    position: absolute;
    inset: 0;
}

.services-catalog-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(.48)
        saturate(.75);

    transition:
        transform .8s ease,
        filter .6s ease;
}

.services-catalog-card:hover .services-catalog-media img {
    transform: scale(1.05);

    filter:
        brightness(.63)
        saturate(.92);
}

.services-catalog-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.10),
            rgba(0,0,0,.82)
        );
}

.services-catalog-top,
.services-catalog-bottom {
    position: relative;
    z-index: 3;
}

.services-catalog-top {
    display: flex;
    justify-content: space-between;

    color: rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: .17em;
}

.services-catalog-top span:first-child {
    color: #d2ac65;
}

.services-catalog-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.services-catalog-bottom h3 {
    margin: 0;

    max-width: 520px;

    font-size: clamp(34px, 3vw, 54px);

    font-weight: 400;
    line-height: 1;

    letter-spacing: -.05em;
}

.services-catalog-bottom p {
    max-width: 430px;

    margin: 16px 0 0;

    color: rgba(255,255,255,.57);

    font-size: 13px;
    line-height: 1.75;
}

.services-catalog-arrow {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.services-catalog-card:hover .services-catalog-arrow {
    background: #d2ac65;
    color: #080808;
    border-color: #d2ac65;

    transform: rotate(45deg);
}


/* DARK CARDS */

.services-catalog-dark {
    background:
        linear-gradient(
            135deg,
            #11110f,
            #080808
        );
}

.services-card-glow {
    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(210,172,101,.13),
            transparent 28%
        );
}

.services-catalog-gold {
    background:
        radial-gradient(
            circle at 76% 25%,
            rgba(210,172,101,.24),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #18140d,
            #080808 70%
        );
}


/* WIDE CO2 */

.services-catalog-wide {
    grid-column: 1 / -1;
    min-height: 290px;

    background:
        radial-gradient(
            circle at 84% 20%,
            rgba(210,172,101,.13),
            transparent 25%
        ),
        linear-gradient(
            100deg,
            #0a0a09,
            #17130c
        );
}

.services-catalog-wide::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -120px;
    top: -210px;

    border: 1px solid rgba(210,172,101,.16);
    border-radius: 50%;
}

.services-catalog-wide-inner {
    position: relative;
    z-index: 3;

    min-height: 225px;

    display: grid;
    grid-template-columns: 1fr minmax(260px, .55fr) auto;

    gap: 70px;

    align-items: end;
}

.services-catalog-wide-title > span {
    display: block;

    margin-bottom: 20px;

    color: #d2ac65;

    font-size: 9px;

    letter-spacing: .2em;
}

.services-catalog-wide-title h3 {
    margin: 0;

    font-size: clamp(48px, 5vw, 82px);

    line-height: .9;

    font-weight: 400;

    letter-spacing: -.06em;
}

.services-catalog-wide-title h3 em {
    display: block;

    font-family: 'Playfair Display', serif;

    color: rgba(255,255,255,.48);

    font-weight: 400;
}

.services-catalog-wide-inner > p {
    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 14px;
    line-height: 1.8;
}


/* GOBO */

.services-card-gobo {
    position: absolute;

    right: 7%;
    top: 12%;

    width: 260px;
    height: 260px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: rgba(210,172,101,.14);

    font-family: 'Playfair Display', serif;

    font-size: 80px;

    background:
        radial-gradient(
            circle,
            rgba(210,172,101,.07),
            transparent 70%
        );

    border: 1px solid rgba(210,172,101,.11);
}


/* WHITE FLOOR CARD */

.services-catalog-surface-light {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            #f4f2ec,
            #d9d7d0
        );
}

.services-catalog-top-dark,
.services-catalog-bottom-dark {
    color: #111;
}

.services-catalog-top-dark span:first-child {
    color: #705526;
}

.services-catalog-bottom-dark p {
    color: rgba(0,0,0,.60);
}

.services-catalog-arrow-dark {
    border-color: rgba(0,0,0,.22);
}


/* DISCO BALL */

.services-card-orbit {
    position: absolute;

    right: 7%;
    top: 10%;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255,255,255,.36),
            rgba(255,255,255,.06) 25%,
            rgba(210,172,101,.08) 55%,
            transparent 70%
        );

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 0 80px rgba(255,255,255,.04);
}


/* PHILOSOPHY */

.services-philosophy {
    padding: 160px 0;

    background: #d2ac65;
    color: #080808;
}

.services-philosophy-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, .7fr);

    gap: clamp(80px, 11vw, 170px);
}

.services-philosophy .section-code {
    color: rgba(0,0,0,.55);
}

.services-philosophy .section-code span {
    color: #080808;
}

.services-philosophy h2 {
    margin: 35px 0 0;

    font-size: clamp(55px, 6vw, 94px);

    font-weight: 400;
    line-height: .95;

    letter-spacing: -.06em;
}

.services-philosophy h3 {
    margin: 0 0 28px;

    font-family: 'Playfair Display', serif;

    font-size: clamp(30px, 3vw, 44px);

    font-weight: 400;
}

.services-philosophy p {
    margin: 0;

    color: rgba(0,0,0,.68);

    font-size: 15px;
    line-height: 1.85;
}

.services-philosophy .editorial-link {
    color: #080808;

    border-bottom-color: rgba(0,0,0,.45);
}

.services-philosophy .editorial-link span {
    color: #080808;
}


/* FINAL CTA */

.services-final-cta {
    position: relative;

    min-height: 70vh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #050505;
}

.services-final-cta-bg,
.services-final-cta-overlay {
    position: absolute;
    inset: 0;
}

.services-final-cta-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(.52)
        contrast(1.08);
}

.services-final-cta-overlay {
    background:
        linear-gradient(
            to right,
            rgba(5,5,5,.86),
            rgba(5,5,5,.18)
        ),
        linear-gradient(
            to bottom,
            rgba(5,5,5,.12),
            rgba(5,5,5,.72)
        );
}

.services-final-cta-inner {
    position: relative;
    z-index: 3;

    padding-bottom: 85px;
}

.services-final-cta-inner > span {
    color: #d2ac65;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .22em;
}

.services-final-cta h2 {
    max-width: 1000px;

    margin: 24px 0 38px;

    font-size: clamp(55px, 7vw, 105px);

    font-weight: 400;
    line-height: .92;

    letter-spacing: -.06em;
}

.services-final-cta h2 em {
    display: block;

    font-family: 'Playfair Display', serif;

    color: rgba(255,255,255,.62);

    font-weight: 400;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .services-intro-grid,
    .services-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .services-intro-copy,
    .services-philosophy-grid > div:last-child {
        max-width: 650px;
        margin-left: auto;
    }

}


@media (max-width: 760px) {

    .services-intro-section {
        padding: 95px 0 110px;
    }

    .services-intro-heading h2 {
        font-size: clamp(48px, 14vw, 70px);
    }

    .services-catalog {
        padding-bottom: 105px;
    }

    .services-catalog-grid {
        grid-template-columns: 1fr;
    }

    .services-catalog-card,
    .services-catalog-card-large {
        min-height: 390px;

        grid-row: auto;
    }

    .services-catalog-wide {
        grid-column: auto;
    }

    .services-catalog-wide-inner {
        grid-template-columns: 1fr;

        align-items: start;

        gap: 30px;
    }

    .services-philosophy {
        padding: 105px 0;
    }

    .services-philosophy h2 {
        font-size: clamp(48px, 14vw, 70px);
    }

    .services-final-cta {
        min-height: 620px;
    }

    .services-final-cta-inner {
        padding-bottom: 60px;
    }

    .services-final-cta h2 {
        font-size: clamp(48px, 14vw, 75px);
    }

}