@font-face {
    font-family: Studio;
    src: local("Arial");
    font-display: swap
}

:root {
    --red: #e93240;
    --ink: #18191b;
    --muted: #68696d;
    --paper: #faf9f6;
    --line: #deded9;
    --radius: 12px
}

* {
    box-sizing: border-box
}

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65
}

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

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

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

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

button {
    cursor: pointer
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[contenteditable]:focus-visible {
    outline: 3px solid #e93240;
    outline-offset: 4px
}

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

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -.055em
}

h1 {
    font-size: clamp(44px, 6.7vw, 96px);
    font-weight: 800
}

h2 {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700
}

h3 {
    font-size: 26px;
    letter-spacing: -.035em
}

p {
    color: var(--muted)
}

.container {
    width: min(1280px, 88%);
    margin-inline: auto
}

.section {
    padding-block: 96px
}

.top-small {
    padding-top: 20px
}

.eyebrow {
    display: block;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
    margin-bottom: 22px
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: -80px;
    left: 20px;
    background: white;
    padding: 14px
}

.skip-link:focus {
    top: 10px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #faf9f6f5;
    border-bottom: 1px solid #deded980;
    backdrop-filter: blur(16px)
}

.header-inner {
    width: min(1400px, 92%);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 88px
}

.brand {
    display: inline-flex;
    flex-shrink: 0
}

.brand img {
    width: ;
    height: 90px;
    object-fit: contain
}

.site-header nav {
    display: flex;
    gap: 27px
}

.site-header nav a {
    font-size: 13px;
    font-weight: 600;
    position: relative;
    padding: 27px 0
}

.site-header nav a:hover,
.site-header nav a[aria-current] {
    color: var(--red)
}

.site-header nav a[aria-current]:after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--red);
    color: white;
    padding: 16px 25px;
    border: 1px solid var(--red);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 50px;
    transition: background .2s, transform .2s
}

.button:hover {
    background: #c82230;
    transform: translateY(-2px)
}

.button.small {
    padding: 12px 20px;
    min-height: 46px
}

.button.outline {
    background: transparent;
    border-color: #ffffff65
}

.button.outline:hover {
    background: #ffffff15
}

.button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.menu-toggle {
    display: none
}

.hero {
    position: relative;
    isolation: isolate;
    background: #111318;
    color: white;
    min-height: 690px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden
}

.hero-art {
    position: absolute;
    inset: 0;
    z-index: -2
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(12, 15, 19, .96) 0%, rgba(12, 15, 19, .84) 37%, rgba(12, 15, 19, .16) 100%), linear-gradient(0deg, #111318a0, transparent 40%)
}

.hero-content {
    padding-block: 80px 110px
}

.hero .eyebrow {
    color: #f7b8bd;
    display: flex;
    gap: 10px;
    align-items: center
}

.live-dot {
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: var(--red)
}

.hero h1 {
    max-width: 800px;
    font-size: clamp(48px, 6.5vw, 92px);
    margin-bottom: 28px;
    letter-spacing: -.06em;
    line-height: 1.01
}

.hero p {
    max-width: 560px;
    color: #ced0d4;
    font-size: 17px;
    margin-bottom: 32px
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 26px;
    left: 6%;
    color: #ced0d4;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.service-ribbon {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--red);
    color: white;
    padding: 5px 4%;
    font-size: 14px;
    font-weight: 700;

}

.service-ribbon b {
    font-size: 22px
}

.intro-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 12%;
    align-items: center
}

.intro-section h2 {
    margin-bottom: 0
}

.large-copy {
    font-size: 19px;
    line-height: 1.7
}

.text-link {
    display: inline-flex;
    gap: 24px;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 8px;
    margin-top: 12px
}

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

.expertise {
    background: #eeefea
}

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

.section-heading h2 {
    margin: 0;
    max-width: 750px
}

.section-heading .text-link {
    white-space: nowrap;
    flex-shrink: 0
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px
}

.service-card {
    grid-column: span 2;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #dddeda;
    transition: box-shadow .2s, transform .2s
}

.service-card:nth-last-child(-n+2) {
    grid-column: span 3
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px #2222220d
}

.service-card img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    transition: transform .4s
}

.service-card:hover img {
    transform: scale(1.025)
}

.card-body {
    padding: 27px
}

.card-number {
    font-size: 10px;
    letter-spacing: .14em;
    color: #777;
    display: block;
    margin-bottom: 22px
}

.card-body h3 {
    font-size: 29px;
    margin-bottom: 15px
}

.card-body p {
    font-size: 14px;
    margin-bottom: 25px;
    min-height: 46px
}

.card-link {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700
}

.card-link>span {
    color: var(--red);
    font-size: 22px;
    line-height: 1
}

.discipline-showcase {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: #191b20;
    color: white;
    border-radius: 12px;
    overflow: hidden;
    min-height: 370px
}

.discipline-showcase>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 470px
}

.discipline-showcase>div {
    padding: 55px;
    align-self: center
}

.discipline-showcase h3 {
    font-size: 38px
}

.discipline-showcase p {
    color: #afb1b8
}

.process-section {
    background: #17191e;
    color: white
}

.process-section h2 {
    max-width: 800px
}

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

.process-grid article {
    border-top: 1px solid #45464b;
    padding-top: 30px
}

.step-number {
    display: block;
    color: #ed5f6b;
    font-size: 13px;
    margin-bottom: 45px
}

.process-grid h3 {
    font-size: 28px
}

.process-grid p {
    font-size: 14px;
    color: #b8bac0
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px
}

.post-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 24px
}

.post-card .eyebrow {
    font-size: 10px;
    margin-bottom: 15px
}

.post-card h3 {
    font-size: 27px;
    line-height: 1.2
}

.post-card p {
    font-size: 14px
}

.post-card:hover h3 {
    color: var(--red)
}

.site-footer {
    background: #eeefea
}

.footer-callout {
    padding-block: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid #d5d6d0
}

.footer-callout h2 {
    font-size: clamp(32px, 3vw, 46px);
    margin: 0
}

.footer-callout .eyebrow {
    font-size: 10px;
    margin-bottom: 15px
}

.footer-big-link {
    font-size: clamp(23px, 2.2vw, 32px);
    letter-spacing: -.045em;
    color: var(--red);
    border-bottom: 1px solid var(--red);
    padding-bottom: 8px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .65fr 1fr 1.2fr;
    gap: 45px;
    padding-block: 60px
}

.footer-grid h3 {
    font-size: 14px;
    letter-spacing: 0;
    margin-bottom: 24px
}

.footer-grid p,
.footer-grid>div>a:not(.brand) {
    display: block;
    font-size: 12px;
    color: #63666a;
    overflow-wrap: anywhere;
    margin-bottom: 12px
}

.footer-grid p {
    max-width: 270px
}

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

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 11px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 24px;
    border-top: 1px solid #d5d6d0;
    font-size: 10px;
    color: #65666a
}

.page-hero {
    padding-block: 38px 60px
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: #73757a;
    margin-bottom: 60px
}

.breadcrumb a:hover {
    color: var(--red)
}

.page-hero h1 {
    max-width: 1000px;
    margin-bottom: 25px;
    font-size: clamp(45px, 6vw, 82px)
}

.page-hero>p {
    max-width: 740px;
    font-size: 19px
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start
}

.about-photo {
    width: 100%;
    min-height: 530px;
    object-fit: cover;
    border-radius: 12px
}

.richtext {
    overflow-wrap: anywhere
}

.richtext h2 {
    font-size: 34px;
    margin-top: 38px
}

.richtext h3 {
    font-size: 27px;
    margin-top: 30px
}

.richtext img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-block: 20px
}

.richtext p {
    line-height: 1.8
}

.richtext a {
    color: #c52130;
    text-decoration: underline
}

.richtext a.button {
    color: white;
    text-decoration: none
}

.richtext table {
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    max-width: 100%;
    margin-block: 25px
}

.richtext th,
.richtext td {
    border: 1px solid #bfc0bc;
    padding: 12px;
    min-width: 80px
}

.richtext blockquote {
    border-left: 3px solid var(--red);
    margin: 25px 0;
    padding: 8px 25px;
    font-size: 22px;
    background: #eeeeea
}

.richtext pre {
    overflow-x: auto;
    background: #e9e9e4;
    padding: 18px
}

.richtext iframe {
    border: 0;
    width: 100%;
    aspect-ratio: 16/9
}

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

.filter-bar button {
    padding: 11px 22px;
    border: 1px solid #d9dad4;
    border-radius: 50px;
    background: transparent;
    font-size: 13px
}

.filter-bar button.active {
    background: var(--ink);
    color: white;
    border-color: var(--ink)
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 28px
}

.work-preview {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px
}

.work-preview img {
    width: 100%;
    height: 350px;
    object-fit: cover
}

.work-open {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: white;
    border-radius: 50%;
    font-size: 23px
}

.work-card .eyebrow {
    margin-bottom: 10px
}

.empty-state {
    padding: 60px 30px;
    text-align: center;
    background: #efefea;
    border: 1px dashed #bbbdb6;
    border-radius: 12px
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 80px
}

.contact-layout h2 {
    font-size: 40px
}

.contact-method {
    padding-block: 22px;
    border-bottom: 1px solid var(--line)
}

.contact-method>span {
    display: block;
    font-size: 10px;
    letter-spacing: .12em;
    color: var(--red);
    margin-bottom: 10px
}

.contact-method a {
    font-size: clamp(14px, 1.6vw, 22px);
    overflow-wrap: anywhere
}

.contact-form {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white
}

.contact-form h3 {
    font-size: 25px;
    margin-bottom: 30px
}

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

label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px
}

label>span {
    color: var(--red)
}

input,
select,
textarea {
    display: block;
    width: 100%;
    border: 1px solid #d5d6d1;
    border-radius: 5px;
    padding: 12px;
    background: #fafaf8;
    color: var(--ink);
    margin-top: 8px;
    min-height: 46px;
    font-size: 14px
}

textarea {
    resize: vertical
}

.form-note {
    font-size: 11px;
    line-height: 1.6
}

.form-note a {
    text-decoration: underline
}

.honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.notice {
    padding: 16px;
    background: #e8f4ea;
    color: #205d35;
    border: 1px solid #b3daba;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 24px
}

.notice.error {
    background: #fff0f0;
    color: #a4212b;
    border-color: #e9b4b9
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 65px
}

.detail-image {
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 35px
}

.detail-aside {
    background: #eeefea;
    border-radius: 12px;
    padding: 30px;
    align-self: start;
    position: sticky;
    top: 120px
}

.detail-aside h2 {
    font-size: 32px
}

.detail-aside h3 {
    font-size: 15px;
    letter-spacing: 0;
    margin-top: 35px
}

.aside-link {
    display: block;
    border-bottom: 1px solid #d3d4ce;
    font-size: 13px;
    padding-block: 14px
}

.article-heading {
    max-width: 940px;
    margin: auto;
    text-align: center
}

.article-heading h1 {
    font-size: clamp(40px, 5vw, 68px)
}

.article-heading p {
    font-size: 19px
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 12px;
    color: #6b6d72;
    margin-block: 30px 45px
}

.article-cover {
    width: 100%;
    max-height: 570px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 55px
}

.article-body {
    max-width: 780px;
    margin-inline: auto;
    font-size: 18px
}

.lightbox {
    border: 0;
    border-radius: 12px;
    background: #15171c;
    color: white;
    padding: 40px;
    max-width: 1000px;
    width: 90vw
}

.lightbox::backdrop {
    background: #000c
}

.dialog-close {
    border: 0;
    background: white;
    color: #111;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px
}

.lightbox-media {
    min-height: 250px;
    display: grid;
    place-items: center
}

.lightbox-media img {
    max-height: 70vh;
    object-fit: contain
}

.lightbox-media iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0
}

.lightbox p {
    color: #eee;
    margin: 18px 0 0
}

[hidden] {
    display: none !important
}

@media(min-width:1550px) {
    .hero-bottom {
        left: calc((100% - 1280px)/2)
    }
}

@media(max-width:1050px) {
    .header-inner {
        gap: 20px
    }

    .site-header nav {
        gap: 18px
    }

    .header-cta {
        display: none
    }

    .service-ribbon {
        gap: 15px;
        font-size: 12px
    }

    .footer-grid {
        gap: 25px
    }

    .contact-layout {
        gap: 40px
    }

    .discipline-showcase>div {
        padding: 30px
    }
}

@media(max-width:760px) {
    .container {
        width: 90%
    }

    .section {
        padding-block: 65px
    }

    .top-small {
        padding-top: 5px
    }

    .header-inner {
        min-height: 76px
    }

    .brand img {
        width: 145px;
        height: 57px
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 1px solid #ddd;
        border-radius: 5px
    }

    .menu-toggle span {
        height: 2px;
        background: #222;
        width: 20px
    }

    .site-header nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 15px 5% 24px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 15px 20px #0001
    }

    .site-header nav.open {
        display: flex;
        flex-direction: column;
        gap: 0
    }

    .site-header nav a {
        padding: 12px 0;
        font-size: 15px
    }

    .site-header nav a[aria-current]:after {
        display: none
    }

    .hero {
        min-height: 650px
    }

    .hero-content {
        padding-block: 65px 105px
    }

    .hero h1 {
        max-width: 590px
    }

    .hero:after {
        background: linear-gradient(90deg, #0c0f13e8, #0c0f138c), linear-gradient(0deg, #111318b0, transparent)
    }

    .hero .eyebrow {
        font-size: 9px;
        letter-spacing: .1em
    }

    .hero-bottom {
        left: 5%;
        font-size: 8px
    }

    .hero p {
        font-size: 16px
    }

    .service-ribbon {
        padding: 18px 5%;
        gap: 12px;
        font-size: 10px
    }

    .service-ribbon b {
        font-size: 15px
    }

    .intro-section,
    .about-layout,
    .contact-layout,
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px
    }

    .service-card,
    .service-card:nth-last-child(-n+2) {
        grid-column: auto
    }

    .service-card:last-child {
        grid-column: span 2
    }

    .card-body {
        padding: 22px
    }

    .card-body h3 {
        font-size: 25px
    }

    .service-card img {
        height: 185px
    }

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

    .post-card {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 22px
    }

    .post-card img {
        height: 220px;
        margin: 0
    }

    .post-card p {
        display: none
    }

    .post-card h3 {
        font-size: 25px
    }

    .discipline-showcase {
        grid-template-columns: 1fr
    }

    .discipline-showcase>img {
        height: 300px
    }

    .discipline-showcase>div {
        padding: 35px
    }

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

    .step-number {
        margin-bottom: 25px
    }

    .footer-callout {
        flex-direction: column;
        align-items: flex-start;
        padding-block: 45px
    }

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

    .footer-bottom {
        flex-wrap: wrap
    }

    .footer-bottom>span:nth-child(2) {
        display: none
    }

    .page-hero {
        padding-bottom: 45px
    }

    .breadcrumb {
        margin-bottom: 35px
    }

    .page-hero>p {
        font-size: 17px
    }

    .about-photo {
        min-height: 0;
        height: 370px
    }

    .detail-aside {
        position: static
    }

    .article-meta {
        gap: 15px;
        flex-wrap: wrap
    }

    .article-heading p {
        font-size: 16px
    }

    .article-body {
        font-size: 16px
    }

    .article-cover {
        margin-bottom: 35px
    }

    .work-preview img {
        height: 240px
    }

    .contact-form {
        padding: 28px
    }
}

@media(max-width:480px) {
    .hero {
        min-height: 690px
    }

    .hero h1 {
        font-size: 52px
    }

    .hero-bottom>span {
        max-width: 150px
    }

    .button {
        padding: 14px 19px;
        font-size: 12px;
        gap: 15px
    }

    .service-grid,
    .portfolio-grid {
        grid-template-columns: 1fr
    }

    .service-card:last-child {
        grid-column: auto
    }

    .service-card img {
        height: 230px
    }

    .card-body p {
        min-height: 0
    }

    .process-grid {
        gap: 24px
    }

    .process-grid h3 {
        font-size: 25px
    }

    .post-card {
        display: block
    }

    .post-card img {
        height: 230px;
        margin-bottom: 20px
    }

    .post-card p {
        display: block
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .footer-grid {
        gap: 30px 20px
    }

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

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

    .footer-grid p {
        max-width: none
    }

    .footer-bottom {
        font-size: 10px
    }

    .page-hero h1 {
        font-size: 46px
    }

    .detail-image {
        height: 270px
    }

    .lightbox {
        padding: 40px 15px 20px
    }

    .contact-layout h2 {
        font-size: 34px
    }
}

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

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