.landing .hero {
    position: relative;
    isolation: isolate;
    min-height: 610px;
    background: linear-gradient(120deg, #FBF9F4 0%, #F2EEE5 60%, #DDF3F1 100%)
}

.landing .hero:before,
.landing .hero:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(1px)
}

.landing .hero:before {
    width: 300px;
    height: 300px;
    background: #1FA6A022;
    top: -110px;
    left: 39%;
    animation: drift 9s ease-in-out infinite
}

.landing .hero:after {
    width: 180px;
    height: 180px;
    background: #F5B30120;
    right: 6%;
    bottom: 5%;
    animation: drift 7s ease-in-out infinite reverse
}

.hero-copy {
    animation: enter-left .8s ease both
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-size: .78rem
}

.hero-kicker:before {
    content: '';
    height: 2px;
    width: 38px;
    background: var(--teal)
}

.hero h1 strong {
    color: var(--teal);
    font-weight: inherit
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 28px
}

.text-link {
    font-weight: bold;
    color: var(--ink);
    border-bottom: 2px solid var(--teal);
    padding-bottom: 4px
}

.landing .hero-video {
    width: min(470px, 100%);
    height: 350px;
    box-shadow: 18px 18px 0 var(--teal), -14px -14px 0 #fff;
    animation: enter-right .9s .12s ease both
}

.video-label {
    position: absolute;
    right: 7%;
    top: 10%;
    background: var(--ink);
    color: #fff;
    border-radius: 99px;
    padding: 10px 14px;
    font-size: .78rem;
    font-weight: bold;
    z-index: 2;
    animation: float 3.5s ease-in-out infinite
}

.video-label span {
    color: var(--teal)
}

.hero-scroll {
    position: absolute;
    bottom: 18px;
    left: 50%;
    font-size: .75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateX(-50%);
    color: #6B7280
}

.hero-scroll:after {
    content: '↓';
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: var(--teal);
    animation: bob 1.4s infinite
}

.quick-links {
    width: min(1100px, 90%);
    margin: -38px auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 14px 35px #0F2A3F10
}

.quick-links a {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--line);
    transition: .25s
}

.quick-links a:last-child {
    border: 0
}

.quick-links a:hover {
    background: #E4F4F2;
    color: var(--ink)
}

.quick-links span {
    font-size: 1.8rem
}

.quick-links b {
    display: block
}

.quick-links small {
    color: #6B7280
}

.landing-section {
    padding: 92px 0
}

.split-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 25px;
    margin-bottom: 32px
}

.split-heading h2 {
    font: clamp(2rem, 4vw, 3.2rem)/1.1 Georgia, serif;
    color: var(--ink);
    margin: 0;
    max-width: 580px
}

.split-heading p {
    color: #6B7280;
    line-height: 1.6;
    max-width: 360px;
    margin: 0
}

.category-grid.landing-cats {
    grid-template-columns: repeat(4, 1fr)
}

.landing-cats .category {
    min-height: 210px;
    position: relative;
    overflow: hidden
}

.landing-cats .category:after {
    content: '→';
    position: absolute;
    right: 18px;
    bottom: 16px;
    color: var(--teal);
    font-size: 1.5rem;
    transition: .25s
}

.landing-cats .category:hover:after {
    transform: translateX(6px)
}

.editorial {
    background: var(--ink);
    color: #fff;
    overflow: hidden
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center
}

.editorial h2 {
    font: clamp(2rem, 4vw, 3.5rem)/1.1 Georgia, serif;
    margin: 14px 0
}

.editorial p {
    color: #d2dde3;
    line-height: 1.7
}

.editorial .eyebrow {
    color: var(--teal)
}

.editorial .btn {
    background: var(--teal);
    margin-top: 10px
}

.editorial-art {
    height: 340px;
    background: linear-gradient(135deg, #1FA6A0, #0F2A3F);
    border-radius: 26px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden
}

.editorial-art div {
    font-size: 9rem;
    filter: drop-shadow(12px 16px 4px #0F2A3F88);
    animation: float 4s ease-in-out infinite
}

.editorial-art:before {
    content: 'WORK  •  CREATE  •  FOCUS';
    position: absolute;
    color: #fff8;
    letter-spacing: 3px;
    transform: rotate(-28deg);
    font-size: .8rem
}

.metric-strip {
    background: #F2EEE5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 44px 8%;
    gap: 20px
}

.metric-strip b {
    font: clamp(2rem, 4vw, 3.3rem) Georgia, serif;
    color: var(--teal);
    display: block
}

.metric-strip span {
    color: #6B7280;
    font-size: .9rem
}

.featured-wrap {
    background: #fff
}

.testimonials {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center
}

.quote-mark {
    font: 5rem Georgia, serif;
    color: var(--teal);
    line-height: .5
}

.testimonial-card {
    background: #F2EEE5;
    border-radius: 16px;
    padding: 38px;
    min-height: 200px
}

.testimonial-card blockquote {
    font: 1.35rem/1.55 Georgia, serif;
    margin: 0 0 20px
}

.testimonial-card cite {
    font-style: normal;
    color: #6B7280
}

.dots {
    display: flex;
    gap: 8px;
    margin-top: 25px
}

.dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: #b8c1c5;
    cursor: pointer
}

.dots button.active {
    width: 28px;
    border-radius: 8px;
    background: var(--teal)
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease
}

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

@keyframes drift {
    50% {
        transform: translate(26px, 26px)
    }
}

@keyframes enter-left {
    from {
        opacity: 0;
        transform: translateX(-26px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes enter-right {
    from {
        opacity: 0;
        transform: translateX(26px) scale(.96)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes float {
    50% {
        transform: translateY(-12px)
    }
}

@keyframes bob {
    50% {
        transform: translateY(6px)
    }
}

@media(max-width:760px) {
    .landing .hero {
        min-height: 520px
    }

    .landing .hero-video,
    .video-label,
    .hero-scroll {
        display: none
    }

    .quick-links {
        grid-template-columns: 1fr;
        margin-top: -22px
    }

    .quick-links a {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .split-heading,
    .editorial-grid,
    .testimonials {
        display: block
    }

    .split-heading p {
        margin-top: 15px
    }

    .category-grid.landing-cats {
        grid-template-columns: repeat(2, 1fr)
    }

    .landing-cats .category {
        min-height: 160px
    }

    .editorial-grid>*+* {
        margin-top: 35px
    }

    .metric-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .testimonials>div:first-child {
        margin-bottom: 24px
    }
}