@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap');

:root {
    --bg: #101112;
    --panel: #191b1d;
    --panel2: #222426;
    --ink: #f2f0eb;
    --muted: #a4a5a4;
    --line: #323435;
    --accent: #ff744a;
    --font: 'DM Sans', Arial, sans-serif;
    --heading: 'Manrope', Arial, sans-serif;
    color-scheme: dark
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font: 16px/1.65 var(--font);
    -webkit-font-smoothing: antialiased
}

::selection {
    background: var(--accent);
    color: var(--bg)
}

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

button,
input,
select,
textarea {
    font: inherit
}

button,
a,
input,
select,
textarea,
summary {
    -webkit-tap-highlight-color: transparent
}

button {
    cursor: pointer
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 5px
}

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

h1,
h2,
h3,
p {
    margin: 0
}

h1,
h2,
h3 {
    font-family: var(--heading);
    font-weight: 500;
    line-height: 1.09;
    letter-spacing: -.055em
}

h1 {
    font-size: clamp(3.3rem, 6.7vw, 7rem)
}

h2 {
    font-size: clamp(2.6rem, 4.3vw, 4.7rem)
}

h3 {
    font-size: 1.7rem;
    letter-spacing: -.035em
}

p {
    color: var(--muted)
}

.wrap {
    width: calc(100% - 88px);
    max-width: 1512px;
    margin: auto
}

.accent {
    color: var(--accent)
}

.eyebrow {
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 600;
    color: #b8b9b6
}

.eyebrow .star {
    color: var(--accent);
    margin-right: 10px
}

.nav {
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    gap: 30px
}

.brand {
    font: 700 25px var(--heading);
    letter-spacing: -1.2px;
    display: inline-flex;
    gap: 11px;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 48px;
    width: auto;
    max-height: 48px;
    object-fit: contain;
    display: block;
    transition: opacity .2s ease, transform .2s ease;
}

.brand:hover .brand-logo {
    opacity: .92;
    transform: scale(1.02);
}

.brand-icon {
    color: var(--accent);
    font-size: 35px;
    line-height: 1
}

.brand small {
    font-size: 12px;
    align-self: flex-start;
    margin-left: -8px;
    margin-top: 1px
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    font-size: 14px
}

.nav-links a {
    color: #c1c1be;
    transition: color .2s
}

.nav-links a:hover,
.nav-links a[aria-current=page] {
    color: var(--accent)
}

.nav-right {
    display: flex;
    gap: 22px;
    align-items: center
}

.nav-cta {
    border: 1px solid #575753;
    border-radius: 100px;
    padding: 11px 22px;
    font-size: 14px;
    transition: .25s
}

.nav-cta:hover {
    background: var(--ink);
    color: var(--bg)
}

.menu-toggle {
    background: transparent;
    border: 0;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 13px
}

.menu-lines {
    width: 22px;
    display: grid;
    gap: 5px
}

.menu-lines i {
    height: 1px;
    background: currentColor
}

.menu-panel {
    display: none;
    background: #202224;
    border: 1px solid var(--line);
    padding: 26px;
    position: absolute;
    right: 44px;
    top: 83px;
    z-index: 100;
    width: 320px;
    box-shadow: 0 20px 50px #0008
}

.menu-panel.open {
    display: grid;
    gap: 10px
}

.menu-panel a {
    font-size: 22px;
    padding: 5px 0
}

.menu-panel a:hover {
    color: var(--accent)
}

.skip {
    position: absolute;
    top: -100px;
    background: var(--accent);
    color: #111;
    z-index: 200;
    padding: 12px
}

.skip:focus {
    top: 5px
}

.hero {
    padding: 52px 0 0
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 33px
}

.location {
    display: flex;
    gap: 22px;
    font-size: 12px;
    color: var(--muted)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.32fr 1fr;
    gap: 4%;
    align-items: center
}

.hero-title {
    position: relative;
    z-index: 2;
    margin-bottom: 28px
}

.hero-title .line {
    display: block
}

.hero-description {
    max-width: 430px;
    font-size: 17px;
    line-height: 1.65
}

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

.btn {
    border: 1px solid transparent;
    background: var(--accent);
    color: #161616;
    border-radius: 100px;
    display: inline-flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, transform .2s
}

.btn:hover {
    background: #ff946f;
    transform: translateY(-3px)
}

.btn .arrow {
    font-size: 20px;
    line-height: 1
}

.text-link {
    font-size: 14px;
    border-bottom: 1px solid #777;
    padding: 6px 0;
    display: inline-flex;
    gap: 20px;
    align-items: center
}

.text-link:hover {
    color: var(--accent);
    border-color: var(--accent)
}

.hero-art {
    position: relative;
    height: 490px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #111214;
    overflow: hidden
}

.hero-art img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 66% 50%;
    transition: transform 1s
}

.hero-art:hover img {
    transform: scale(1.05)
}

.art-top {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 21px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    font-size: 11px;
    letter-spacing: .13em;
    color: #cdcfcc
}

.art-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, #0b0c0dee);
    padding: 60px 25px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.art-bottom p {
    font-size: 14px;
    color: #dddfda
}

.art-bottom strong {
    font-size: 27px;
    font-weight: 500;
    letter-spacing: -1px
}

.art-asterisk {
    font-size: 45px;
    color: var(--accent);
    line-height: 1
}

.hero-bottom {
    border-top: 1px solid var(--line);
    margin-top: 48px;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.small-note {
    font-size: 12px;
    color: var(--muted)
}

.mini-metrics {
    display: flex;
    gap: 42px
}

.mini-metrics div {
    display: flex;
    gap: 10px;
    align-items: center
}

.mini-metrics strong {
    font-family: var(--heading);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -1px
}

.mini-metrics span {
    font-size: 11px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted)
}

.scroll-link {
    font-size: 12px;
    color: var(--muted)
}

.ticker {
    border-block: 1px solid var(--line);
    padding: 24px 0;
    overflow: hidden;
    margin-top: 14px
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 38px;
    animation: ticker 35s linear infinite;
    font: 500 22px var(--heading);
    color: #c5c5c0;
    letter-spacing: -.5px
}

.ticker .star {
    color: var(--accent)
}

@keyframes ticker {
    to {
        transform: translateX(-50%)
    }
}

.section {
    padding: 105px 0
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 2.55fr;
    gap: 50px;
    margin-bottom: 50px
}

.section-head>.eyebrow {
    padding-top: 12px
}

.section-head .intro {
    margin-top: 23px;
    max-width: 550px
}

.head-inline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px
}

.head-inline .text-link {
    flex-shrink: 0;
    margin-bottom: 4px
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px
}

.work-card {
    display: block;
    min-width: 0
}

.work-cover {
    height: 345px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--panel2);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .3s
}

.work-card:hover .work-cover {
    transform: translateY(-5px)
}

.work-cover.orange {
    background: #de693f;
    color: #191611
}

.work-cover.silver {
    background: #d8d7d1;
    color: #252828
}

.work-cover.dark {
    background: #222625
}

.work-cover.blue {
    background: #303f52
}

.work-cover.purple {
    background: #423b4d
}

.cover-meta {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between
}

.cover-middle {
    font: 500 clamp(3.8rem, 7vw, 6.5rem)/1 var(--heading);
    letter-spacing: -.075em
}

.cover-middle span {
    display: block;
    font: 400 15px/1.7 var(--font);
    letter-spacing: 0;
    margin-top: 8px;
    max-width: 230px
}

.cover-end {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.cover-end span {
    font-size: 12px;
    letter-spacing: .05em
}

.circle-arrow {
    border: 1px solid currentColor;
    border-radius: 50%;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    font-size: 23px
}

.work-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px
}

.work-info h3 {
    font-size: 21px;
    letter-spacing: -.04em
}

.work-info p {
    margin-top: 5px;
    font-size: 13px
}

.work-info>span {
    font-size: 12px;
    color: var(--muted)
}

.work-grid .work-card:nth-child(even) {
    margin-top: 65px
}

.work-grid.all .work-card:nth-child(even) {
    margin-top: 0
}

.rule {
    border-top: 1px solid var(--line)
}

.service-row {
    display: grid;
    grid-template-columns: 60px 1fr 1fr 44px;
    gap: 30px;
    padding: 31px 0;
    border-top: 1px solid var(--line);
    align-items: center
}

.service-row:last-child {
    border-bottom: 1px solid var(--line)
}

.service-row .num {
    font-size: 12px;
    color: var(--accent)
}

.service-row h3 {
    font-size: 27px
}

.service-row p {
    font-size: 14px;
    max-width: 360px
}

.service-row .circle-arrow {
    color: #b5b5af;
    transition: .2s
}

.service-row:hover h3,
.service-row:hover .circle-arrow {
    color: var(--accent)
}

.about-band {
    background: #e5e3dc;
    color: #191c1b;
    padding: 82px 0
}

.about-band p {
    color: #626561
}

.about-band .eyebrow {
    color: #5d625e
}

.about-band h2 {
    font-size: clamp(2.6rem, 4.4vw, 4.7rem);
    line-height: 1.16
}

.about-band .text-link {
    border-color: #71736f
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2.55fr;
    gap: 50px
}

.about-copy {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px
}

.about-copy p {
    max-width: 530px
}

.about-copy a {
    flex-shrink: 0
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px
}

.metric {
    border-top: 1px solid var(--line);
    padding-top: 25px
}

.metric strong {
    font: 500 clamp(2.8rem, 5vw, 5rem) var(--heading);
    letter-spacing: -.07em;
    display: block
}

.metric span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px
}

.about-band .metric {
    border-color: #b9bcb4
}

.about-band .metric span {
    color: #5e625d
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

.process-step {
    border-top: 1px solid #545653;
    padding: 24px 0
}

.process-step .num {
    color: var(--accent);
    font-size: 13px
}

.process-step h3 {
    font-size: 21px;
    margin: 45px 0 15px
}

.process-step p {
    font-size: 14px
}

.quote-section {
    background: var(--panel);
    border-block: 1px solid var(--line);
    padding: 75px 0
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 2.55fr;
    gap: 50px
}

.quote {
    font: 400 clamp(1.8rem, 3vw, 3rem)/1.35 var(--heading);
    letter-spacing: -.035em;
    color: var(--ink);
    margin: 0
}

.quote:before {
    content: '“';
    color: var(--accent)
}

.quote:after {
    content: '”';
    color: var(--accent)
}

.quote-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 34px
}

.quote-meta p {
    font-size: 14px
}

.quote-meta strong {
    display: block;
    color: var(--ink);
    font-weight: 500
}

.quote-controls {
    display: flex;
    gap: 10px
}

.quote-controls button {
    background: transparent;
    color: var(--ink);
    border: 1px solid #575a59;
    border-radius: 50%;
    height: 44px;
    width: 44px
}

.quote-controls button:hover {
    background: var(--accent);
    color: #111
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 10%
}

.faq-layout h2 {
    margin: 20px 0 28px
}

.faq-item {
    border-top: 1px solid var(--line);
    padding: 23px 0
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line)
}

summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 17px
}

summary::-webkit-details-marker {
    display: none
}

summary:after {
    content: '+';
    color: var(--accent);
    font-size: 24px;
    line-height: 1
}

details[open]>summary:after {
    content: '−'
}

.faq-item p {
    margin-top: 20px;
    font-size: 15px;
    max-width: 580px
}

.cta {
    padding: 72px 0 60px;
    background: var(--accent);
    color: #181a18
}

.cta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px
}

.cta .eyebrow {
    color: #4d3025
}

.cta h2 {
    font-size: clamp(3rem, 7vw, 7rem);
    max-width: 1000px;
    margin: 28px 0;
    letter-spacing: -.06em
}

.cta .large-arrow {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border: 1px solid #6f402c;
    border-radius: 50%;
    font-size: 65px;
    flex-shrink: 0;
    transition: .3s
}

.cta a:hover .large-arrow {
    transform: rotate(45deg);
    background: #151817;
    color: var(--accent)
}

.cta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #b95534;
    padding-top: 24px
}

.cta-bottom p {
    color: #4b3027;
    font-size: 14px
}

.cta-bottom a {
    border-color: #6f402c
}

.footer {
    padding: 52px 0 22px
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 45px
}

.footer .brand {
    margin-bottom: 15px
}

.footer p {
    font-size: 13px;
    max-width: 270px
}

.footer-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 18px
}

.footer-links {
    display: grid;
    gap: 8px;
    font-size: 14px
}

.footer-links a:hover {
    color: var(--accent)
}

.footer-word {
    font: 600 clamp(4rem, 15vw, 15rem)/1.15 var(--heading);
    letter-spacing: -.08em;
    color: #27292a;
    overflow: hidden;
    white-space: nowrap;
    margin-left: -.01em
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    color: var(--muted)
}

.page-hero {
    padding: 72px 0 62px
}

.page-hero h1 {
    max-width: 1100px;
    margin: 24px 0 28px
}

.page-hero p {
    max-width: 630px;
    font-size: 18px
}

.page-hero .btn {
    margin-top: 30px
}

.breadcrumbs {
    display: flex;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 34px
}

.breadcrumbs a:hover {
    color: var(--accent)
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px
}

.filter {
    border: 1px solid #454846;
    background: transparent;
    color: #d1d3cd;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px
}

.filter.active,
.filter:hover {
    background: var(--accent);
    color: #151515;
    border-color: var(--accent)
}

[hidden] {
    display: none !important
}

.service-detail {
    border-top: 1px solid var(--line);
    padding: 27px 0
}

.service-detail summary {
    align-items: center;
    font: 500 27px var(--heading);
    letter-spacing: -.03em
}

.service-detail summary span:first-child {
    color: var(--accent);
    font: 400 12px var(--font);
    width: 54px
}

.service-detail summary span:nth-child(2) {
    flex: 1
}

.service-expanded {
    padding: 24px 0 10px 54px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.service-expanded p {
    margin-bottom: 20px
}

.list {
    padding-left: 20px;
    color: var(--muted)
}

.list li {
    margin-bottom: 8px
}

.list li::marker {
    color: var(--accent)
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 32px;
    border-radius: 4px
}

.card h3 {
    margin: 18px 0
}

.card p {
    font-size: 15px
}

.card .btn {
    margin-top: 23px
}

.card.featured {
    border-color: var(--accent)
}

.card-top {
    display: flex;
    justify-content: space-between
}

.tag {
    font-size: 11px;
    letter-spacing: .07em;
    border: 1px solid #646760;
    border-radius: 100px;
    padding: 4px 9px;
    align-self: start
}

.featured .tag {
    border-color: var(--accent);
    color: var(--accent)
}

.callout {
    border-left: 2px solid var(--accent);
    padding: 16px 25px;
    background: var(--panel);
    margin: 30px 0;
    color: var(--muted);
    font-size: 14px
}

.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

.prose {
    max-width: 800px
}

.prose p {
    margin: 18px 0;
    line-height: 1.85
}

.prose h2 {
    font-size: 37px;
    margin: 50px 0 20px
}

.prose h3 {
    font-size: 25px;
    margin: 35px 0 15px
}

.prose li {
    color: var(--muted);
    margin-bottom: 10px
}

.prose .eyebrow {
    margin-top: 30px
}

.case-heading {
    font-size: clamp(3.5rem, 6.5vw, 6rem) !important
}

.case-banner {
    margin-bottom: 45px
}

.case-banner .work-cover {
    height: 390px
}

.case-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px
}

.case-meta {
    border-top: 1px solid var(--line);
    padding-top: 20px
}

.case-meta p {
    font-size: 14px;
    margin: 8px 0 22px
}

.case-content .prose h2:first-child {
    margin-top: 0
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.testimonial {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 34px
}

.testimonial blockquote {
    font: 400 23px/1.5 var(--heading);
    letter-spacing: -.025em;
    margin: 20px 0 28px
}

.testimonial .result {
    color: var(--accent);
    font: 500 36px var(--heading);
    letter-spacing: -.04em
}

.testimonial .role {
    font-size: 14px
}

.testimonial .company {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px
}

.leadership {
    display: grid;
    grid-template-columns: minmax(0, 580px);
    gap: 30px
}

.leader {
    border-top: 1px solid var(--line);
    padding-top: 28px
}

.leader-top {
    background: var(--panel);
    height: 230px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px
}

.initials {
    font: 500 125px/1 var(--heading);
    letter-spacing: -.08em;
    color: #454a46
}

.leader h3 {
    font-size: 33px;
    margin-bottom: 5px
}

.leader p {
    margin: 20px 0
}

.leader .eyebrow {
    color: var(--accent)
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 10%;
    padding-bottom: 90px
}

.contact-block {
    padding: 24px 0;
    border-top: 1px solid var(--line)
}

.contact-block a {
    display: block;
    font-size: 22px;
    letter-spacing: -.03em;
    margin-top: 10px
}

.contact-block a:hover {
    color: var(--accent)
}

.contact-form {
    padding: 35px;
    background: var(--panel);
    border: 1px solid var(--line)
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 12px
}

.contact-form>p {
    font-size: 14px;
    margin-bottom: 24px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
}

.field {
    display: grid;
    gap: 8px;
    font-size: 13px;
    color: #c3c5be
}

.field.full {
    grid-column: 1/-1
}

input,
textarea,
select {
    width: 100%;
    min-width: 0;
    background: #111414;
    border: 1px solid #464a46;
    border-radius: 3px;
    color: var(--ink);
    padding: 13px;
    font-size: 15px
}

textarea {
    resize: vertical;
    min-height: 130px
}

.contact-form .btn {
    margin-top: 22px
}

.form-status {
    margin-top: 18px;
    color: var(--ink);
    font-size: 14px
}

.article-list {
    display: grid;
    gap: 0
}

.article-row {
    padding: 32px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 140px 1fr 50px;
    gap: 30px;
    align-items: center
}

.article-row h3 {
    font-size: 30px
}

.article-row .eyebrow {
    font-size: 11px
}

.article-row:hover h3 {
    color: var(--accent)
}

.reveal {
    transition: opacity .65s, transform .65s
}

.motion .reveal {
    opacity: 0;
    transform: translateY(22px)
}

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

.progress {
    position: fixed;
    left: 0;
    top: 0;
    height: 2px;
    background: var(--accent);
    z-index: 150;
    width: 0
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 20px;
    border: 1px solid #656760;
    background: #1a1c1c;
    color: #efeee9;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: .2s
}

.back-top.shown {
    opacity: 1;
    pointer-events: auto
}

@media(min-width:1600px) {
    .hero-art {
        height: 550px
    }

    .hero {
        padding-top: 64px
    }
}

@media(max-width:1100px) {
    .wrap {
        width: calc(100% - 48px)
    }

    .nav-links {
        gap: 20px
    }

    .nav-links a:nth-child(4) {
        display: none
    }

    .hero-grid {
        gap: 20px
    }

    .hero-art {
        height: 430px
    }

    .mini-metrics {
        gap: 22px
    }

    .section-head,
    .about-grid,
    .quote-layout {
        grid-template-columns: 1fr 2fr;
        gap: 30px
    }

    .head-inline {
        display: block
    }

    .head-inline .text-link {
        margin-top: 25px
    }

    .service-row {
        grid-template-columns: 35px 1fr 1fr 42px;
        gap: 18px
    }

    .service-row h3 {
        font-size: 23px
    }

    .process-grid {
        gap: 20px;
        grid-template-columns: repeat(3, 1fr)
    }

    .cards-3 {
        grid-template-columns: 1fr 1fr
    }

    .footer-top {
        grid-template-columns: 1.3fr 1fr 1fr
    }

    .footer-top>div:last-child {
        grid-column: 2/4
    }

    .contact-layout {
        gap: 40px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .menu-panel {
        right: 24px
    }
}

@media(max-width:760px) {
    .wrap {
        width: calc(100% - 36px)
    }

    .nav {
        height: 78px;
        gap: 15px
    }

    .brand {
        font-size: 22px;
        gap: 8px
    }

    .brand-icon {
        font-size: 30px
    }

    .brand-logo {
        height: 38px;
        max-height: 38px;
    }

    .nav-links,
    .nav-cta {
        display: none
    }

    .menu-panel {
        right: 18px;
        top: 70px;
        width: calc(100% - 36px)
    }

    .menu-toggle {
        font-size: 13px
    }

    .hero {
        padding-top: 32px
    }

    .hero-top {
        align-items: flex-start;
        margin-bottom: 28px
    }

    .hero-top .location {
        display: none
    }

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

    .hero-title {
        font-size: clamp(3.45rem, 10.5vw, 5rem);
        line-height: 1.02;
        letter-spacing: -.065em
    }

    .hero-description {
        font-size: 16px;
        max-width: 360px
    }

    .hero-actions {
        gap: 20px
    }

    .hero-art {
        height: 360px
    }

    .hero-bottom {
        margin-top: 25px;
        padding: 23px 0
    }

    .hero-bottom>.small-note,
    .hero-bottom>.scroll-link {
        display: none
    }

    .mini-metrics {
        width: 100%;
        justify-content: space-between;
        gap: 10px
    }

    .mini-metrics div {
        display: block
    }

    .mini-metrics strong {
        font-size: 29px
    }

    .mini-metrics span {
        display: block;
        margin-top: 4px;
        font-size: 10px
    }

    .ticker {
        padding: 20px 0
    }

    .ticker-track {
        font-size: 18px;
        gap: 24px
    }

    .section {
        padding: 68px 0
    }

    .section-head,
    .about-grid,
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 23px;
        margin-bottom: 32px
    }

    .section-head .intro {
        font-size: 16px
    }

    .head-inline {
        display: block
    }

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

    .work-grid .work-card:nth-child(even) {
        margin-top: 0
    }

    .work-cover {
        height: 320px;
        padding: 23px
    }

    .cover-middle {
        font-size: 80px
    }

    .work-info h3 {
        font-size: 21px
    }

    .service-row {
        grid-template-columns: 25px 1fr 40px;
        padding: 26px 0;
        gap: 15px
    }

    .service-row p {
        display: none
    }

    .service-row h3 {
        font-size: 23px
    }

    .about-band {
        padding: 60px 0
    }

    .about-copy {
        display: block;
        margin-top: 22px
    }

    .about-copy a {
        margin-top: 22px
    }

    .metrics {
        grid-template-columns: 1fr 1fr;
        margin-top: 36px;
        gap: 28px 22px
    }

    .metric strong {
        font-size: 48px
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 23px
    }

    .process-step h3 {
        margin-top: 28px
    }

    .quote-section {
        padding: 55px 0
    }

    .quote-layout {
        margin-bottom: 0
    }

    .quote-meta {
        gap: 15px
    }

    .quote {
        font-size: 26px
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .faq-layout h2 {
        margin-bottom: 18px
    }

    .cta {
        padding: 50px 0 32px
    }

    .cta-top {
        gap: 12px
    }

    .cta h2 {
        font-size: clamp(2.8rem, 9vw, 4rem)
    }

    .cta .large-arrow {
        width: 62px;
        height: 62px;
        font-size: 38px
    }

    .cta-bottom {
        display: block
    }

    .cta-bottom a {
        margin-top: 18px
    }

    .footer {
        padding-top: 38px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }

    .footer-top>div:first-child {
        grid-column: 1/-1
    }

    .footer-top>div:last-child {
        grid-column: 1/-1
    }

    .footer-word {
        font-size: 14.8vw
    }

    .footer-bottom {
        font-size: 11px;
        flex-wrap: wrap;
        gap: 10px
    }

    .page-hero {
        padding: 40px 0
    }

    .page-hero h1 {
        font-size: 3.5rem
    }

    .page-hero p {
        font-size: 16px
    }

    .cards-3,
    .two-cols,
    .leadership,
    .testimonials-grid,
    .contact-layout {
        grid-template-columns: 1fr
    }

    .service-detail summary {
        font-size: 22px
    }

    .service-expanded {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-left: 0
    }

    .service-detail summary span:first-child {
        width: 27px
    }

    .case-content {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .case-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px
    }

    .case-banner .work-cover {
        height: 320px
    }

    .card {
        padding: 26px
    }

    .contact-layout {
        gap: 35px;
        padding-bottom: 65px
    }

    .contact-form {
        padding: 25px
    }

    .article-row {
        grid-template-columns: 1fr 35px;
        gap: 10px
    }

    .article-row>.eyebrow {
        grid-column: 1/-1
    }

    .article-row h3 {
        font-size: 25px
    }

    .testimonials-grid {
        gap: 18px
    }

    .testimonial {
        padding: 26px
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .destination-card {
        padding: 24px 20px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }

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

.leader-top {
    height: 430px;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #262926
}

.leader-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: saturate(.3);
    transition: filter .5s, transform .7s
}

.leader-top:hover img {
    filter: saturate(1);
    transform: scale(1.025)
}

.leader-top>.eyebrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 8px 12px;
    background: #101112de;
    color: var(--ink)
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 12px;
    margin-top: 12px
}

.hero-title {
    font-size: clamp(3.3rem, 6.05vw, 6.2rem)
}

.hero-title .line:nth-child(2) {
    white-space: normal
}

.cover-meta>span:last-child {
    text-align: right
}

.work-cover .cover-middle {
    font-size: clamp(3.8rem, 6.3vw, 6rem)
}

.article-row p {
    max-width: 850px
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px
}

.prose h2 {
    letter-spacing: -.035em
}

.form-status:empty {
    display: none
}

@media(max-width:760px) {
    .leader-top {
        height: 390px
    }

    .hero-title {
        font-size: clamp(3.2rem, 10vw, 4.9rem)
    }

    .hero-title .line:nth-child(2) {
        max-width: 520px
    }

    .work-cover .cover-middle {
        font-size: clamp(3.5rem, 16vw, 5rem)
    }

    .cover-meta {
        font-size: 10px;
        gap: 20px
    }

    .hero-art {
        height: 340px
    }
}

.audit-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end
}

.audit-form .btn {
    height: 52px
}

.audit-form .form-status:empty {
    display: none
}

@media(max-width:760px) {
    .audit-form {
        grid-template-columns: 1fr
    }

    .audit-form .btn {
        justify-self: start
    }
}

.leadership {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

.leader-top {
    height: 360px;
    position: relative;
    overflow: hidden;
    padding: 24px;
    background: #1a1c1d;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-radius: 4px
}

.leader-top .initials {
    font: 600 80px/1 var(--heading);
    letter-spacing: -.05em;
    color: #3e4240;
    z-index: 1
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 35px
}

.pathway-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .3s, border-color .3s;
    position: relative
}

.pathway-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent)
}

.pathway-card h3 {
    font-size: 26px;
    margin: 16px 0 12px;
    color: var(--ink)
}

.pathway-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px
}

.flow-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
    align-items: center;
    justify-content: center;
    margin: 36px 0;
    width: 100%;
    text-align: center
}

.flow-step {
    background: var(--panel2);
    border: 1px solid var(--line);
    padding: 11px 20px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all .2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25)
}

.flow-step:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .35)
}

.flow-arrow {
    color: var(--accent);
    font-weight: bold;
    font-size: 16px;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 38px 0
}

.destination-card {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 30px 26px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), border-color .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden
}

.destination-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .35)
}

.destination-flag-wrap {
    width: 50px;
    height: 33px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .15);
    background: #1a1c1d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s ease, box-shadow .25s ease
}

.destination-card:hover .destination-flag-wrap {
    transform: scale(1.06);
    box-shadow: 0 4px 14px rgba(255, 116, 74, .25)
}

.destination-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.destination-title {
    font-family: var(--heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.025em;
    margin: 0 0 10px 0;
    line-height: 1.25
}

.destination-desc {
    font-size: 14px;
    line-height: 1.62;
    color: var(--muted);
    margin: 0;
    flex-grow: 1
}

.start-here-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px
}

.start-card {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 35px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.start-card h3 {
    font-size: 24px;
    margin: 12px 0
}

.start-card p {
    margin-bottom: 24px;
    font-size: 15px
}

.start-card .btn {
    align-self: flex-start
}

@media(max-width:960px) {

    .pathways-grid,
    .start-here-grid {
        grid-template-columns: 1fr
    }
}