@font-face {
    font-family: "Morrow Sans";
    src: url("/assets/fonts/inter/inter-var.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Morrow Serif";
    src: url("/assets/fonts/instrument-serif/instrument-serif-regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Morrow Serif";
    src: url("/assets/fonts/instrument-serif/instrument-serif-italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

:root {
    --ink: #181416;
    --ink-soft: #302a2d;
    --paper: #f5f0e9;
    --paper-deep: #e8dfd4;
    --white: #fffdf9;
    --coral: #f1593f;
    --coral-dark: #ce402b;
    --acid: #d9f96e;
    --muted: #766e6a;
    --line: rgba(24, 20, 22, 0.18);
    --line-light: rgba(255, 253, 249, 0.24);
    --sans: "Morrow Sans", Arial, sans-serif;
    --serif: "Morrow Serif", Georgia, serif;
    --shell: 1280px;
    --side: 40px;
    --header-height: 88px;
    --transition: 220ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button,
select {
    cursor: pointer;
}

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

h1,
h2,
h3 {
    letter-spacing: 0;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 0.9;
}

h2 em,
h1 em {
    color: var(--coral);
    font-weight: 400;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    transform: translateY(-160%);
    background: var(--acid);
    color: var(--ink);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--acid);
    outline-offset: 4px;
}

.site-shell {
    width: min(calc(100% - (var(--side) * 2)), var(--shell));
    margin-inline: auto;
}

.section-pad {
    padding-block: 140px;
}

.eyebrow,
.footer-label {
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(255, 253, 249, 0.78);
}

.section-number {
    color: var(--muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 22px;
    border: 1px solid transparent;
    background: var(--coral);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.button img,
.text-link img {
    flex: 0 0 auto;
    transition: transform var(--transition);
}

.button img {
    filter: brightness(0) invert(1);
}

.button:hover {
    background: var(--coral-dark);
}

.button:hover img,
.text-link:hover img {
    transform: translateX(3px);
}

.button:active {
    transform: translateY(1px);
}

.button--light {
    background: var(--white);
    color: var(--ink);
}

.button--light img {
    filter: none;
}

.button--light:hover {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
}

.button--light:hover img {
    filter: brightness(0) invert(1);
}

.button--dark {
    width: 100%;
    background: var(--ink);
    color: var(--white);
}

.button--dark:hover {
    background: var(--coral);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.text-link--light {
    color: var(--white);
}

.text-link--light img {
    filter: brightness(0) invert(1);
}

/* Header */

.site-header {
    position: relative;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.site-header--over-hero {
    position: absolute;
    inset: 0 0 auto;
    border-color: var(--line-light);
    background: transparent;
    color: var(--white);
}

.site-header.is-scrolled {
    position: fixed;
    inset: 0 0 auto;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(24, 20, 22, 0.96);
    color: var(--white);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.wordmark__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

.primary-navigation__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.primary-navigation__links a {
    position: relative;
    padding-block: 14px;
    font-size: 14px;
    font-weight: 700;
}

.primary-navigation__links a::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: currentColor;
    content: "";
    transition: transform var(--transition);
}

.primary-navigation__links a:hover::after,
.primary-navigation__links a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.button--header {
    min-height: 46px;
    padding-inline: 18px;
}

.menu-toggle {
    display: none;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
}

.menu-toggle__label {
    font-size: 13px;
    font-weight: 800;
}

.menu-toggle__icon {
    display: grid;
    width: 22px;
    gap: 6px;
}

.menu-toggle__icon i {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Home hero */

.home-hero {
    position: relative;
    min-height: 760px;
    height: 100svh;
    max-height: 980px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.home-hero__media,
.home-hero__veil {
    position: absolute;
    inset: 0;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.home-hero__veil {
    background:
        linear-gradient(90deg, rgba(14, 10, 12, 0.84) 0%, rgba(14, 10, 12, 0.38) 48%, rgba(14, 10, 12, 0.08) 78%),
        linear-gradient(0deg, rgba(14, 10, 12, 0.6) 0%, transparent 35%);
}

.home-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-height);
}

.home-hero h1 {
    max-width: 920px;
    margin-bottom: 14px;
    font-size: 142px;
    line-height: 0.78;
}

.home-hero__statement {
    margin-bottom: 44px;
    font-family: var(--serif);
    font-size: 38px;
    font-style: italic;
    line-height: 1.1;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.home-hero__footer {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 253, 249, 0.75);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Home sections */

.intro-section {
    background: var(--paper);
}

.intro-section__top,
.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.intro-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
    gap: 100px;
    align-items: end;
}

.intro-section h2,
.section-heading h2,
.process-section h2,
.studio-feature h2,
.service-steps h2,
.values-section h2 {
    max-width: 900px;
    margin-bottom: 0;
    font-size: 86px;
}

.intro-section__copy {
    padding-bottom: 8px;
}

.intro-section__copy > p {
    margin-bottom: 36px;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.75;
}

.featured-work {
    padding-block: 130px 150px;
    background: var(--paper-deep);
}

.section-heading {
    gap: 50px;
    margin-bottom: 72px;
}

.section-heading h2 {
    font-size: 72px;
}

.section-heading--light {
    color: var(--white);
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px 32px;
    align-items: start;
}

.project-card {
    display: block;
}

.project-card picture {
    display: block;
    overflow: hidden;
    background: #d4cbc3;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

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

.project-card--wide {
    grid-column: 1 / -1;
}

.project-card--wide picture {
    aspect-ratio: 1.72;
}

.project-card--tall picture {
    aspect-ratio: 1.06;
}

.project-card--offset {
    width: 100%;
}

.project-card > span {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding-top: 16px;
}

.project-card b {
    font-size: 17px;
}

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

.services-preview {
    background: var(--coral);
    color: var(--white);
}

.services-preview .section-heading {
    align-items: flex-end;
}

.services-preview__lede {
    max-width: 390px;
    margin-bottom: 5px;
    color: rgba(255, 253, 249, 0.8);
    font-size: 17px;
}

.service-list {
    border-top: 1px solid var(--line-light);
}

.service-list a {
    display: grid;
    min-height: 150px;
    grid-template-columns: 70px 1.1fr 1fr 30px;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid var(--line-light);
    transition: color var(--transition), padding var(--transition), background var(--transition);
}

.service-list a:hover {
    padding-inline: 18px;
    background: rgba(255, 253, 249, 0.08);
    color: var(--acid);
}

.service-list a > span {
    color: rgba(255, 253, 249, 0.6);
    font-size: 12px;
}

.service-list h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
}

.service-list p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 253, 249, 0.78);
}

.service-list b {
    font-size: 24px;
    font-weight: 400;
}

.process-section {
    background: var(--ink);
    color: var(--white);
}

.process-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 90px;
}

.process-section h2 {
    text-align: right;
}

.process-section h2 em {
    color: var(--acid);
}

.process-list {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-light);
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
}

.process-list li {
    min-height: 290px;
    padding: 26px 30px 30px 0;
    border-right: 1px solid var(--line-light);
}

.process-list li + li {
    padding-left: 30px;
}

.process-list li:last-child {
    border-right: 0;
}

.process-list span {
    display: block;
    margin-bottom: 100px;
    color: rgba(255, 253, 249, 0.5);
    font-size: 12px;
}

.process-list h3 {
    margin-bottom: 12px;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
}

.process-list p {
    margin: 0;
    color: rgba(255, 253, 249, 0.7);
    font-size: 14px;
}

.studio-feature {
    background: var(--paper);
}

.studio-feature__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    gap: 90px;
    align-items: center;
}

.studio-feature__image {
    display: block;
}

.studio-feature__image img {
    width: 100%;
    aspect-ratio: 1.4;
    object-fit: cover;
}

.studio-feature h2 {
    margin-bottom: 40px;
    font-size: 78px;
}

.studio-feature__copy > p:not(.eyebrow) {
    color: var(--ink-soft);
    font-size: 17px;
}

.studio-feature__copy > p + p {
    margin-top: 20px;
}

.studio-feature .text-link {
    margin-top: 24px;
}

.closing-cta {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.closing-cta__media,
.closing-cta__veil {
    position: absolute;
    inset: 0;
}

.closing-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.closing-cta__veil {
    background: linear-gradient(90deg, rgba(11, 9, 10, 0.92), rgba(11, 9, 10, 0.2));
}

.closing-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 720px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.closing-cta h2 {
    max-width: 780px;
    margin-bottom: 50px;
    font-size: 96px;
}

/* Interior page heroes */

.page-hero {
    padding-block: 135px 120px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    gap: 100px;
    align-items: end;
}

.page-hero h1 {
    max-width: 860px;
    margin-bottom: 0;
    font-size: 112px;
}

.page-hero__grid > p {
    margin-bottom: 12px;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.75;
}

/* Services */

.service-detail {
    position: relative;
    display: grid;
    min-height: 780px;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
}

.service-detail--reverse .service-detail__media {
    order: 2;
}

.service-detail__media {
    overflow: hidden;
    background: #d7cdc4;
}

.service-detail__media picture,
.service-detail__media img {
    width: 100%;
    height: 100%;
}

.service-detail__media img {
    object-fit: cover;
}

.service-detail__content {
    display: grid;
    width: 100%;
    max-width: calc(var(--shell) / 2);
    grid-template-columns: 70px 1fr;
    gap: 30px;
    align-content: center;
    padding: 90px 70px;
}

.service-detail:not(.service-detail--reverse) .service-detail__content {
    margin: 0;
}

.service-detail--reverse .service-detail__content {
    margin-right: 0;
    margin-left: auto;
}

.service-detail__number {
    color: var(--muted);
    font-size: 13px;
}

.service-detail h2 {
    margin-bottom: 30px;
    font-size: 82px;
}

.service-detail__content > div > p:not(.eyebrow, .service-detail__note) {
    max-width: 550px;
    color: var(--ink-soft);
    font-size: 18px;
}

.service-detail ul {
    margin-block: 36px;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.service-detail li {
    padding-block: 12px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
}

.service-detail__note {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 13px;
}

.service-steps {
    background: var(--paper-deep);
}

.service-steps__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.service-steps h2 {
    font-size: 76px;
}

.service-steps ol {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.service-steps li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding-block: 24px;
    border-bottom: 1px solid var(--line);
}

.service-steps li > span {
    color: var(--muted);
    font-size: 12px;
}

.service-steps h3 {
    margin-bottom: 8px;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
}

.service-steps li p {
    max-width: 550px;
    margin: 0;
    color: var(--ink-soft);
}

.page-cta {
    background: var(--coral);
    color: var(--white);
}

.page-cta__inner {
    display: flex;
    min-height: 560px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.page-cta h2 {
    max-width: 900px;
    margin-bottom: 48px;
    font-size: 96px;
}

.page-cta h2 em {
    color: var(--acid);
}

/* Work */

.work-index {
    padding-top: 80px;
}

.work-entry {
    padding-bottom: 130px;
}

.work-entry__media {
    width: min(86%, 1400px);
    margin: 0 auto;
    overflow: hidden;
    background: #d6ccc4;
}

.work-entry__media img {
    width: 100%;
    max-height: 840px;
    object-fit: cover;
}

.work-entry--portrait .work-entry__media {
    width: min(58%, 860px);
}

.work-entry--portrait .work-entry__media img {
    aspect-ratio: 0.82;
}

.work-entry__caption {
    display: grid;
    margin-top: 24px;
    grid-template-columns: 0.4fr 0.7fr 0.9fr;
    gap: 40px;
    align-items: baseline;
}

.work-entry__caption > div {
    display: flex;
    gap: 16px;
}

.work-entry__caption span,
.work-entry__caption > div p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.work-entry__caption h2 {
    margin: 0;
    font-size: 54px;
}

.work-entry__caption > p {
    margin: 0;
    color: var(--ink-soft);
}

/* About */

.about-image-band {
    padding-inline: var(--side);
}

.about-image-band picture {
    display: block;
    width: min(100%, 1500px);
    margin: 0 auto;
}

.about-image-band img {
    width: 100%;
    max-height: 820px;
    object-fit: cover;
}

.about-story__grid {
    display: grid;
    grid-template-columns: 0.3fr 1.7fr;
    gap: 80px;
}

.about-story h2 {
    max-width: 1020px;
    margin-bottom: 52px;
    font-size: 92px;
}

.about-story__lead {
    max-width: 750px;
    margin-bottom: 60px;
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1.2;
}

.about-story__columns {
    display: grid;
    max-width: 880px;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    color: var(--ink-soft);
}

.founder-section {
    padding-block: 130px;
    background: var(--ink);
    color: var(--white);
}

.founder-section__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.founder-section picture {
    display: block;
    max-width: 620px;
}

.founder-section picture img {
    width: 100%;
    aspect-ratio: 0.82;
    object-fit: cover;
}

.founder-section h2 {
    margin-bottom: 42px;
    font-size: 86px;
}

.founder-section p:not(.eyebrow) {
    max-width: 560px;
    color: rgba(255, 253, 249, 0.75);
    font-size: 17px;
}

.founder-section .text-link {
    margin-top: 24px;
}

.values-section {
    background: var(--paper-deep);
}

.values-grid {
    display: grid;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
}

.values-grid article {
    min-height: 260px;
    padding: 25px 30px 20px 0;
    border-right: 1px solid var(--line);
}

.values-grid article + article {
    padding-left: 30px;
}

.values-grid article:last-child {
    border-right: 0;
}

.values-grid span {
    display: block;
    margin-bottom: 72px;
    color: var(--muted);
    font-size: 12px;
}

.values-grid h3 {
    margin-bottom: 12px;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
}

.values-grid p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

/* Contact */

.contact-page {
    padding-block: 110px 140px;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
    gap: 110px;
}

.contact-page__intro h1 {
    max-width: 620px;
    margin-bottom: 38px;
    font-size: 88px;
}

.contact-page__intro > p:not(.eyebrow) {
    max-width: 540px;
    color: var(--ink-soft);
    font-size: 18px;
}

.contact-details {
    margin-top: 70px;
    border-top: 1px solid var(--line);
}

.contact-details a,
.contact-details > p {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
}

.contact-details img {
    width: 20px;
    height: 20px;
}

.contact-details span {
    display: grid;
    gap: 2px;
    font-size: 14px;
    font-weight: 700;
}

.contact-details small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.inquiry-panel {
    padding: 56px;
    background: var(--white);
}

.inquiry-form {
    display: grid;
    gap: 28px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.field {
    display: grid;
    gap: 10px;
}

.field label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    background: transparent;
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 2px 0 var(--coral);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9e9793;
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.form-disclosure {
    margin: -10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.form-notice {
    padding: 20px;
    border-left: 3px solid var(--coral);
    background: rgba(241, 89, 63, 0.08);
}

.form-notice--success {
    display: flex;
    min-height: 500px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    border-left: 0;
    background: var(--acid);
}

.form-notice--success h2 {
    margin-bottom: 24px;
    font-size: 64px;
}

.form-notice--success > p:not(.eyebrow) {
    max-width: 480px;
}

.form-notice--success .text-link {
    margin-top: 22px;
}

/* Footer */

.site-footer {
    padding-block: 88px 34px;
    background: var(--ink);
    color: var(--white);
}

.site-footer__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 58px;
    border-bottom: 1px solid var(--line-light);
}

.wordmark--footer {
    font-size: 24px;
}

.wordmark--footer .wordmark__mark {
    width: 48px;
    height: 48px;
    font-size: 28px;
}

.site-footer__top > p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 253, 249, 0.64);
    text-align: right;
}

.site-footer__grid {
    display: grid;
    padding-block: 60px 76px;
    grid-template-columns: 1.1fr 0.7fr 0.9fr 1.3fr;
    gap: 70px;
}

.site-footer__grid > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-label {
    margin-bottom: 10px;
    color: rgba(255, 253, 249, 0.45);
}

.site-footer address,
.site-footer__grid a,
.site-footer__grid p:not(.footer-label) {
    margin: 0;
    color: rgba(255, 253, 249, 0.72);
    font-size: 14px;
    font-style: normal;
}

.site-footer__grid a:hover {
    color: var(--acid);
}

.site-footer__availability {
    padding-left: 40px;
    border-left: 1px solid var(--line-light);
}

.site-footer__availability .text-link {
    margin-top: 18px;
    color: var(--white);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 253, 249, 0.42);
    font-size: 11px;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom a {
    color: rgba(255, 253, 249, 0.74);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1100px) {
    :root {
        --side: 28px;
    }

    .home-hero h1 {
        font-size: 108px;
    }

    .intro-section h2,
    .process-section h2 {
        font-size: 70px;
    }

    .intro-section__grid,
    .page-hero__grid {
        gap: 60px;
    }

    .section-heading h2,
    .service-steps h2 {
        font-size: 62px;
    }

    .service-list a {
        grid-template-columns: 52px 0.9fr 1fr 24px;
    }

    .service-list h3 {
        font-size: 42px;
    }

    .studio-feature__grid,
    .founder-section__grid {
        gap: 60px;
    }

    .studio-feature h2,
    .founder-section h2 {
        font-size: 68px;
    }

    .page-hero h1 {
        font-size: 88px;
    }

    .service-detail__content {
        grid-template-columns: 44px 1fr;
        padding: 70px 45px;
    }

    .service-detail h2 {
        font-size: 68px;
    }

    .contact-page__grid {
        gap: 60px;
    }

    .contact-page__intro h1 {
        font-size: 72px;
    }

    .site-footer__grid {
        gap: 35px;
    }
}

@media (max-width: 880px) {
    :root {
        --header-height: 76px;
    }

    .menu-toggle {
        position: relative;
        z-index: 102;
        display: flex;
    }

    .primary-navigation {
        position: fixed;
        inset: 0;
        z-index: 101;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        justify-content: center;
        gap: 42px;
        padding: 110px var(--side) 50px;
        transform: translateY(-105%);
        background: var(--ink);
        color: var(--white);
        transition: transform 280ms ease;
        visibility: hidden;
    }

    .primary-navigation.is-open {
        transform: translateY(0);
        visibility: visible;
    }

    .primary-navigation__links {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .primary-navigation__links a {
        padding-block: 16px;
        border-bottom: 1px solid var(--line-light);
        font-family: var(--serif);
        font-size: 42px;
        font-weight: 400;
    }

    .primary-navigation__links a::after {
        display: none;
    }

    .button--header {
        align-self: flex-start;
    }

    .home-hero {
        min-height: 760px;
    }

    .home-hero h1 {
        font-size: 82px;
    }

    .home-hero__statement {
        font-size: 30px;
    }

    .intro-section__grid,
    .studio-feature__grid,
    .page-hero__grid,
    .service-steps__grid,
    .founder-section__grid,
    .about-story__grid,
    .contact-page__grid {
        grid-template-columns: 1fr;
    }

    .intro-section__grid,
    .page-hero__grid,
    .service-steps__grid,
    .about-story__grid,
    .contact-page__grid {
        gap: 44px;
    }

    .intro-section h2,
    .process-section h2,
    .about-story h2 {
        font-size: 66px;
    }

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

    .project-card--wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .project-card--offset {
        width: 100%;
    }

    .service-list a {
        grid-template-columns: 40px 1fr 24px;
        padding-block: 24px;
    }

    .service-list a p {
        grid-column: 2 / -1;
    }

    .process-section__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .process-section h2 {
        text-align: left;
    }

    .process-list,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-list li:nth-child(2),
    .values-grid article:nth-child(2) {
        border-right: 0;
    }

    .process-list li:nth-child(n + 3),
    .values-grid article:nth-child(n + 3) {
        border-top: 1px solid var(--line-light);
    }

    .values-grid article:nth-child(n + 3) {
        border-top-color: var(--line);
    }

    .studio-feature__image img {
        aspect-ratio: 1.45;
    }

    .studio-feature__copy {
        max-width: 650px;
    }

    .page-hero h1 {
        font-size: 78px;
    }

    .service-detail {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .service-detail--reverse .service-detail__media {
        order: 0;
    }

    .service-detail__media {
        min-height: 520px;
    }

    .service-detail__content,
    .service-detail--reverse .service-detail__content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 80px var(--side);
    }

    .work-entry__caption {
        grid-template-columns: 0.7fr 1fr;
    }

    .work-entry__caption > p {
        grid-column: 2;
    }

    .about-story__grid > .eyebrow {
        margin-bottom: 0;
    }

    .founder-section picture {
        max-width: 560px;
    }

    .contact-page__grid {
        grid-template-columns: 1fr;
    }

    .inquiry-panel {
        padding: 44px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer__availability {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 620px) {
    :root {
        --side: 18px;
    }

    .section-pad {
        padding-block: 88px;
    }

    .wordmark {
        font-size: 16px;
    }

    .wordmark__mark {
        width: 34px;
        height: 34px;
        font-size: 21px;
    }

    .menu-toggle__label {
        display: none;
    }

    .primary-navigation__links a {
        font-size: 36px;
    }

    .home-hero {
        min-height: 700px;
        max-height: 820px;
    }

    .home-hero__media img {
        object-position: 58% center;
    }

    .home-hero__veil {
        background:
            linear-gradient(90deg, rgba(14, 10, 12, 0.82), rgba(14, 10, 12, 0.18)),
            linear-gradient(0deg, rgba(14, 10, 12, 0.72), transparent 60%);
    }

    .home-hero__content {
        justify-content: flex-end;
        padding-bottom: 150px;
    }

    .home-hero h1 {
        font-size: 60px;
        line-height: 0.86;
    }

    .home-hero__statement {
        margin-bottom: 30px;
        font-size: 26px;
    }

    .home-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .home-hero__footer {
        bottom: 20px;
        flex-direction: column;
        gap: 6px;
    }

    .home-hero__footer p {
        margin: 0;
    }

    .intro-section__top,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-number {
        display: none;
    }

    .intro-section h2,
    .process-section h2,
    .studio-feature h2,
    .section-heading h2,
    .service-steps h2,
    .founder-section h2,
    .about-story h2,
    .values-section h2 {
        font-size: 50px;
    }

    .intro-section__copy > p {
        font-size: 16px;
    }

    .featured-work {
        padding-block: 88px 100px;
    }

    .section-heading {
        gap: 28px;
        margin-bottom: 48px;
    }

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

    .project-card--offset {
        margin-top: 0;
    }

    .project-card--wide picture,
    .project-card--tall picture {
        aspect-ratio: 0.9;
    }

    .project-card > span {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .service-list a {
        min-height: 0;
        grid-template-columns: 32px 1fr 20px;
        gap: 14px;
    }

    .service-list h3 {
        font-size: 36px;
    }

    .service-list p {
        font-size: 14px;
    }

    .process-section__header {
        gap: 22px;
        margin-bottom: 50px;
    }

    .process-list,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .process-list li,
    .process-list li + li,
    .values-grid article,
    .values-grid article + article {
        min-height: 0;
        padding: 24px 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .values-grid article,
    .values-grid article + article {
        border-bottom-color: var(--line);
    }

    .process-list span,
    .values-grid span {
        margin-bottom: 38px;
    }

    .studio-feature__grid {
        gap: 46px;
    }

    .studio-feature__image img {
        aspect-ratio: 0.95;
    }

    .closing-cta,
    .closing-cta__content {
        min-height: 590px;
    }

    .closing-cta__media img {
        object-position: 65% center;
    }

    .closing-cta h2 {
        font-size: 58px;
    }

    .page-hero {
        padding-block: 84px 78px;
    }

    .page-hero h1 {
        font-size: 58px;
    }

    .page-hero__grid > p {
        font-size: 16px;
    }

    .service-detail__media {
        min-height: 420px;
    }

    .service-detail__content {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-block: 65px;
    }

    .service-detail h2 {
        font-size: 56px;
    }

    .service-detail__content > div > p:not(.eyebrow, .service-detail__note) {
        font-size: 16px;
    }

    .service-steps__grid {
        gap: 44px;
    }

    .page-cta__inner {
        min-height: 480px;
    }

    .page-cta h2 {
        font-size: 58px;
    }

    .work-index {
        padding-top: 50px;
    }

    .work-entry {
        padding-bottom: 90px;
    }

    .work-entry__media,
    .work-entry--portrait .work-entry__media {
        width: calc(100% - (var(--side) * 2));
    }

    .work-entry__media img,
    .work-entry--portrait .work-entry__media img {
        aspect-ratio: 0.88;
    }

    .work-entry__caption {
        display: block;
        margin-top: 20px;
    }

    .work-entry__caption > div {
        margin-bottom: 18px;
    }

    .work-entry__caption h2 {
        margin-bottom: 14px;
        font-size: 44px;
    }

    .about-image-band {
        padding-inline: 0;
    }

    .about-image-band img {
        min-height: 500px;
    }

    .about-story__lead {
        font-size: 28px;
    }

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

    .founder-section {
        padding-block: 88px;
    }

    .founder-section__grid {
        gap: 48px;
    }

    .contact-page {
        padding-block: 76px 90px;
    }

    .contact-page__intro h1 {
        font-size: 56px;
    }

    .contact-details {
        margin-top: 44px;
    }

    .inquiry-panel {
        padding: 28px 20px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .form-notice--success {
        min-height: 420px;
        padding: 34px 24px;
    }

    .form-notice--success h2 {
        font-size: 48px;
    }

    .site-footer {
        padding-top: 68px;
    }

    .site-footer__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .site-footer__top > p {
        text-align: left;
    }

    .site-footer__grid {
        padding-block: 50px 60px;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 360px) {
    .home-hero h1 {
        font-size: 52px;
    }

    .page-hero h1,
    .contact-page__intro h1,
    .page-cta h2 {
        font-size: 50px;
    }

    .button {
        width: 100%;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
