@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;1,6..72,300&family=Nunito+Sans:opsz,wght@6..12,300;400;500;600&display=swap");

:root {
  --ink: #171714;
  --paper: #ffffff;
  --line: #d4d4cc;
  --muted: #6f6f68;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Nunito Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 15px; font-weight: 300; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  height: 88px; padding: 0 3.25vw; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); position: relative; z-index: 20; background: var(--paper);
}
.brand { width: 190px; display: block; }
.brand img { display: block; width: 100%; height: auto; }
.nav { display: flex; gap: clamp(25px, 3.4vw, 58px); }
.nav a { text-transform: capitalize; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right .25s; }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }

.hero { min-height: 710px; padding: 7vw 3.25vw 5vw; display: grid; grid-template-columns: 1fr 2fr 1fr; align-content: space-between; }
.eyebrow, .section-label { text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 500; }
.hero-kicker { grid-column: 1; align-self: start; line-height: 1.5; max-width: 180px; }
.hero h1, .page-intro h1, .contact-intro h1 {
  grid-column: 1 / 4; margin: 4.5vw 0; font-size: clamp(70px, 10.4vw, 158px); line-height: .96;
  letter-spacing: -.065em; font-weight: 300;
}
em { font-family: var(--serif); font-weight: 300; }
.hero-aside p,
.large-copy,
.section-heading > p:last-child,
.project-description,
.intro-note,
.service-row > p:nth-child(3),
.process-copy li p,
.copy-columns p,
.value-grid p,
.contact-intro > p:last-child,
.case-summary,
.case-columns article > p:last-child {
  font-family: var(--serif);
}
.hero h1 em { margin-left: 17vw; }
.hero-aside { grid-column: 3; width: 90%; line-height: 1.5; }
.hero-aside p { margin: 0 0 25px; }
.text-link { display: inline-flex; justify-content: space-between; gap: 45px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-weight: 400; }
.ui-arrow { position: relative; display: inline-block; width: 13px; height: 13px; flex: 0 0 auto; }
.ui-arrow::before { content: ""; position: absolute; left: 4%; bottom: 4%; width: 118%; height: 1px; background: currentColor; transform: rotate(-45deg); transform-origin: left center; }
.ui-arrow::after { content: ""; position: absolute; top: 0; right: 0; width: 48%; height: 48%; border-top: 1px solid currentColor; border-right: 1px solid currentColor; }

.hero-project { padding: 0 3.25vw; }
.hero-project > a { display: block; position: relative; }
.project-visual { position: relative; overflow: hidden; min-height: 42vw; background: #d4d0c4; }
.project-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-visual::before, .project-visual::after { content: ""; position: absolute; }
.visual-word { position: absolute; z-index: 3; text-transform: uppercase; letter-spacing: .14em; font-weight: 500; }
.visual-detail { position: absolute; z-index: 2; }
.visual-northline { background: linear-gradient(120deg, #c9c2b4 0 49%, #e2ded5 49%); }
.visual-northline::before { width: 52%; height: 58%; left: 25%; top: 20%; background: #efeee9; box-shadow: 15px 20px 45px #7775; }
.visual-northline::after { width: 1px; height: 58%; left: 50%; top: 20%; background: #b2aea4; }
.visual-northline .visual-word { top: 45%; left: 39%; font-size: clamp(13px, 2.1vw, 34px); }
.visual-northline .visual-detail { width: 30%; height: 10px; background: #272824; left: 35%; bottom: 20%; }
.floating-caption { position: absolute; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 25px; color: white; font-size: 12px; }
.floating-caption span:last-child { text-align: right; }

.split-section { padding: 12vw 3.25vw; display: grid; grid-template-columns: 1fr 3fr; }
.split-section h2, .process-copy h2 { margin: 0 0 55px; font-size: clamp(45px, 6.2vw, 94px); line-height: .95; letter-spacing: -.055em; font-weight: 300; }
.split-section > div { max-width: 1050px; }
.large-copy { font-size: clamp(22px, 2.3vw, 36px); line-height: 1.3; max-width: 800px; margin: 0 0 55px; }

.selected-work { padding: 0 3.25vw 12vw; }
.section-heading { display: grid; grid-template-columns: 1fr 3fr; border-top: 1px solid var(--ink); padding: 22px 0 65px; }
.section-heading > p:last-child { margin: 0; font-size: 18px; line-height: 1.4; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8vw 2vw; }
.project-card a { display: block; }
.project-card:nth-child(3n) { grid-column: span 2; width: 68%; margin-left: auto; }
.project-card .project-visual { min-height: 35vw; transition: transform .45s ease; }
.project-card a:hover .project-visual { transform: scale(.985); }
.project-card a:hover .project-visual img { transform: scale(1.025); }
.project-meta { display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; border-top: 1px solid var(--ink); margin-top: 15px; padding-top: 10px; }
.project-meta h3, .project-meta p { margin: 0; font-size: 13px; font-weight: 400; }
.project-meta p { color: var(--muted); }
.project-description { max-width: 560px; margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.outline-link { margin: 90px auto 0; width: 170px; height: 170px; border: 1px solid var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: 20px; transition: .3s; }
.outline-link .ui-arrow { width: 15px; height: 15px; }
.outline-link:hover { background: var(--ink); color: var(--paper); }

.visual-morrow { background: #b85e45; }
.visual-morrow::before { inset: 10% 12%; background: linear-gradient(90deg, #df8b70 50%, #ac4d37 50%); transform: rotate(-3deg); }
.visual-morrow::after { width: 25%; height: 82%; background: #ece5d6; left: 37%; top: 9%; }
.visual-morrow .visual-word { color: #9b3f2c; left: 41%; top: 45%; font-size: 2.6vw; transform: rotate(-90deg); }
.visual-fieldhouse { background: #94a092; }
.visual-fieldhouse::before { width: 55%; height: 100%; left: 22%; background: #e2dfd3; clip-path: polygon(0 0, 100% 0, 72% 100%, 28% 100%); }
.visual-fieldhouse::after { left: 50%; top: 12%; width: 2px; height: 76%; background: #2b302c; }
.visual-fieldhouse .visual-word { left: 43%; top: 46%; writing-mode: vertical-rl; }
.visual-common { background: linear-gradient(135deg, #a9b5ba, #d7dcda); }
.visual-common::before { inset: 13% 8%; border: 13px solid #e9ece8; background: linear-gradient(90deg, transparent 49.7%, #eef0ed 49.7% 50.3%, transparent 50.3%); }
.visual-common .visual-word { left: 38%; top: 48%; color: #f4f5f1; font-size: 2vw; }
.visual-lumen { background: #d4cfc3; }
.visual-lumen::before { inset: 8%; background: repeating-linear-gradient(90deg, #b4aea0 0 2px, #e8e4dc 2px 8%); }
.visual-lumen::after { width: 38%; height: 38%; border-radius: 50%; background: #e45d33; left: 31%; top: 31%; }
.visual-lumen .visual-word { z-index: 3; left: 39%; top: 47%; color: white; font-size: 2vw; }
.visual-archive { background: #282925; }
.visual-archive::before { width: 60%; height: 60%; left: 20%; top: 20%; border: 1px solid #9d9d94; }
.visual-archive::after { width: 34%; height: 34%; left: 33%; top: 33%; border: 1px solid #9d9d94; }
.visual-archive .visual-word { left: 40%; top: 48%; color: #eeeade; }

.statement { padding: 12vw 3.25vw; background: #dbddd4; text-align: center; min-height: 630px; display: flex; flex-direction: column; justify-content: center; }
.statement blockquote { margin: 60px 0 0; font-size: clamp(48px, 7.4vw, 112px); line-height: 1; letter-spacing: -.055em; }
.site-footer { padding: 10vw 3.25vw 35px; background: var(--ink); color: #f1f0e9; }
.footer-lead > a { display: flex; justify-content: space-between; align-items: end; font-size: clamp(62px, 9.5vw, 145px); line-height: .84; letter-spacing: -.065em; border-bottom: 1px solid #65655f; padding-bottom: 70px; }
.footer-lead .arrow { position: relative; width: .36em; height: .36em; flex: 0 0 auto; margin-bottom: .06em; }
.footer-lead .arrow::before { content: ""; position: absolute; left: 8%; bottom: 8%; width: 112%; height: 1px; background: currentColor; transform: rotate(-45deg); transform-origin: left center; }
.footer-lead .arrow::after { content: ""; position: absolute; top: 0; right: 0; width: 48%; height: 48%; border-top: 1px solid currentColor; border-right: 1px solid currentColor; }
.footer-meta { display: grid; grid-template-columns: 2fr 1fr 1fr; padding-top: 35px; line-height: 1.6; color: #aaa9a1; }
.footer-meta p { margin: 0; }

.page-main { min-height: 80vh; }
.page-intro { min-height: 640px; padding: 8vw 3.25vw 5vw; display: grid; grid-template-columns: 1fr 3fr; align-content: start; }
.page-intro h1 { grid-column: 1 / 3; margin-top: 8vw; }
.page-intro h1 em { margin-left: 12vw; }
body[data-page="work"] .page-intro h1 { line-height: .9; }
.work-index { padding: 0 3.25vw 12vw; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 0 70px; }
.filters button { border: 1px solid var(--line); border-radius: 30px; background: transparent; padding: 10px 17px; cursor: pointer; transition: .2s; }
.filters button:hover, .filters button.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.project-card[hidden] { display: none; }
.work-grid .project-card:nth-child(3n) { width: 100%; margin: 0; }

.services-intro { grid-template-columns: 1fr 2fr 1fr; }
.services-intro h1 { grid-column: 1 / 4; }
.intro-note { grid-column: 3; font-size: 17px; line-height: 1.45; }
.services-list { padding: 0 3.25vw 12vw; }
.service-row { border-top: 1px solid var(--line); color: inherit; display: grid; grid-template-columns: 1fr 2fr 2fr auto; gap: 35px; align-items: start; padding: 35px 0 60px; text-decoration: none; }
.service-row h2 { margin: 0; font-size: clamp(28px, 3vw, 45px); letter-spacing: -.04em; font-weight: 300; }
.service-row p { margin: 0; line-height: 1.6; max-width: 400px; }
.service-row > p:first-child { font-size: 11px; }
.process { display: grid; grid-template-columns: 1fr 1fr; background: #e5e2d8; }
.process-visual { min-height: 850px; background: linear-gradient(135deg, #9a9f8d 0 50%, #bcc1af 50%); position: relative; }
.process-visual::after { content: ""; position: absolute; inset: 15%; border: 1px solid #676c5f; border-radius: 50% 50% 0 0; }
.process-visual span { position: absolute; bottom: 30px; left: 30px; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; }
.process-copy { padding: 7vw 5vw; }
.process-copy ol { list-style: none; padding: 0; margin: 0; }
.process-copy li { display: grid; grid-template-columns: 55px 1fr; border-top: 1px solid #b3b1a8; padding: 20px 0; }
.process-copy li span { font-size: 10px; }
.process-copy strong { font-size: 19px; font-weight: 400; }
.process-copy li p { margin: 7px 0 0; color: var(--muted); max-width: 380px; line-height: 1.5; }

.about-image { padding: 0 3.25vw; }
.studio-image { display: block; height: 62vw; max-height: 900px; overflow: hidden; }
.studio-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.copy-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; font-size: 19px; line-height: 1.5; }
.values { border-top: 1px solid var(--line); margin: 0 3.25vw; padding: 30px 0 12vw; display: grid; grid-template-columns: 1fr 3fr; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3vw; }
.value-grid article { border-top: 1px solid var(--ink); padding-top: 15px; }
.value-grid span { font-size: 10px; }
.value-grid h3 { margin: 70px 0 15px; font-size: 25px; font-weight: 300; }
.value-grid p { color: var(--muted); line-height: 1.5; }

.contact-main { padding: 8vw 3.25vw 12vw; }
.contact-intro { display: grid; grid-template-columns: 3fr 1fr; }
.contact-intro .eyebrow { grid-column: 1 / 3; }
.contact-intro h1 { grid-column: 1 / 3; margin: 7vw 0; }
.contact-intro h1 em { margin-left: 13vw; }
.contact-intro > p:last-child { grid-column: 2; font-size: 17px; line-height: 1.5; }
.contact-layout { display: grid; grid-template-columns: 3fr 1fr; gap: 8vw; margin-top: 10vw; }
.contact-form { max-width: 900px; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.contact-form label { display: block; border-top: 1px solid var(--line); padding: 20px 0 45px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.contact-form label span { float: right; color: var(--muted); }
.contact-form input, .contact-form textarea, .contact-form select { display: block; width: 100%; border: 0; background: transparent; padding: 20px 0 0; outline: none; font-size: 29px; letter-spacing: -.03em; resize: vertical; color: var(--ink); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #aaa9a1; }
.contact-form button { width: 180px; height: 180px; border: 0; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; gap: 25px; align-items: center; justify-content: center; cursor: pointer; }
.contact-form button .ui-arrow { width: 16px; height: 16px; }
.form-status { min-height: 22px; margin-top: 22px; }
.contact-details > div { margin-bottom: 65px; }
.contact-details .section-label { color: var(--muted); }
.contact-details a, .contact-details p { display: block; line-height: 1.7; margin: 0; }

.project-page { padding-bottom: 10vw; }
.case-intro { min-height: 620px; padding: 4vw 3.25vw 6vw; display: grid; grid-template-columns: 1fr 3fr; align-content: space-between; }
.back-link { grid-column: 1 / 3; width: max-content; padding-bottom: 5px; border-bottom: 1px solid var(--ink); }
.case-intro > .eyebrow { align-self: end; margin: 0; }
.case-intro h1 { grid-column: 2; margin: 10vw 0 25px; font-size: clamp(70px, 10vw, 150px); line-height: .86; letter-spacing: -.065em; font-weight: 300; }
.case-summary { grid-column: 2; max-width: 720px; margin: 0; font-size: clamp(20px, 2.2vw, 34px); line-height: 1.35; }
.case-hero { margin: 0 3.25vw; height: 68vw; max-height: 950px; overflow: hidden; }
.case-hero img, .case-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-hero-well-rounded img { transform: scale(1.34) translate(1%, 1%); transform-origin: 42% center; }
@media (min-width: 761px) {
  .case-hero-ninth-floor { height: 90vw; max-height: 1100px; }
}
.case-story { margin: 10vw 3.25vw; padding-top: 25px; border-top: 1px solid var(--ink); display: grid; grid-template-columns: 1fr 3fr; }
.case-columns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4vw; }
.case-columns article > p:last-child { font-size: 21px; line-height: 1.48; margin: 35px 0 0; }
.case-challenge { grid-column: 1 / 3; border-top: 1px solid var(--line); margin-top: 3vw; padding-top: 30px; }
.case-challenge > p:last-child { max-width: 760px; }
.materials ul { list-style: none; padding: 0; margin: 35px 0 0; border-top: 1px solid var(--line); }
.materials li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.case-gallery { padding: 0 3.25vw; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw 2vw; }
.case-gallery figure { margin: 0; height: 50vw; max-height: 720px; }
.case-gallery .gallery-wide { grid-column: 1 / 3; height: 62vw; max-height: 900px; }
.case-gallery .gallery-portrait { height: 70vw; max-height: 920px; }
.case-gallery .gallery-contain { background: #f2f1ed; }
.case-gallery .gallery-contain img { object-fit: contain; }
.case-gallery .gallery-reference { height: 22vw; max-height: 320px; background: #f3efe6; }
.case-gallery .gallery-reference img { object-fit: contain; padding: 3vw; }
.case-gallery figcaption { display: flex; justify-content: space-between; border-top: 1px solid var(--ink); margin-top: 12px; padding-top: 10px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.next-project { margin: 12vw 3.25vw 0; padding-top: 25px; border-top: 1px solid var(--ink); }
.next-project a { margin-top: 5vw; display: flex; justify-content: space-between; font-size: clamp(50px, 8vw, 120px); letter-spacing: -.06em; }
.next-project .ui-arrow { width: .34em; height: .34em; margin-top: .08em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .site-header { height: 70px; padding: 0 20px; }
  .brand { width: 160px; }
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; }
  .menu-toggle span { width: 24px; height: 1px; background: var(--ink); }
  .nav { display: none; position: fixed; inset: 70px 0 0; background: var(--paper); padding: 50px 20px; flex-direction: column; gap: 25px; font-size: 34px; }
  .menu-open .nav { display: flex; }
  .hero { min-height: 640px; padding: 55px 20px 45px; display: block; }
  .hero h1, .page-intro h1, .contact-intro h1 { font-size: 17vw; line-height: 1.02; margin: 70px 0; }
  .hero h1 em, .page-intro h1 em, .contact-intro h1 em { margin-left: 0; }
  .hero-aside { width: 75%; margin-left: auto; }
  .hero-project, .selected-work, .work-index, .services-list, .about-image { padding-left: 20px; padding-right: 20px; }
  .project-visual, .project-card .project-visual { min-height: 85vw; }
  .floating-caption { grid-template-columns: 35px 1fr; padding: 15px; }
  .floating-caption span:last-child { display: none; }
  .split-section, .section-heading, .values { padding: 100px 20px; display: block; }
  .section-label { margin-bottom: 55px; }
  .split-section h2 { font-size: 13vw; }
  .project-grid { display: block; }
  .project-card, .project-card:nth-child(3n) { width: 100%; margin: 0 0 70px; }
  .project-meta { grid-template-columns: 1fr auto; }
  .project-meta p:nth-child(2) { display: none; }
  .statement { min-height: 460px; padding: 80px 20px; }
  .site-footer { padding: 90px 20px 30px; }
  .footer-lead > a { position: relative; display: block; font-size: 16vw; padding: 0 52px 45px 0; }
  .footer-lead .arrow { position: absolute; right: 2px; bottom: 49px; width: 28px; height: 28px; margin: 0; }
  .footer-meta { grid-template-columns: 1fr 1fr; gap: 35px; }
  .page-intro, .services-intro { min-height: 550px; display: block; padding: 70px 20px; }
  .intro-note { width: 75%; margin-left: auto; }
  .filters { flex-wrap: nowrap; overflow-x: auto; }
  .filters button { white-space: nowrap; }
  .service-row { grid-template-columns: 35px 1fr auto; padding-bottom: 40px; }
  .service-row > p:nth-child(3) { grid-column: 2 / 4; }
  .process { display: block; }
  .process-visual { min-height: 115vw; }
  .process-copy { padding: 90px 20px; }
  .studio-image { height: 120vw; }
  .about-copy { padding-left: 20px; padding-right: 20px; }
  .copy-columns, .value-grid { display: block; }
  .copy-columns p { margin-bottom: 30px; }
  .values { margin: 0; }
  .value-grid article { margin-bottom: 55px; }
  .value-grid h3 { margin-top: 35px; }
  .contact-main { padding: 70px 20px 100px; }
  .contact-intro, .contact-layout { display: block; }
  .contact-intro > p:last-child { width: 75%; margin-left: auto; }
  .contact-form { margin: 100px 0; }
  .contact-form input, .contact-form textarea, .contact-form select { font-size: 22px; }
  .case-intro { min-height: 580px; display: block; padding: 45px 20px 70px; }
  .case-intro > .eyebrow { margin-top: 70px; }
  .case-intro h1 { margin: 45px 0 30px; font-size: 17vw; }
  .case-summary { font-size: 21px; }
  .case-hero { margin: 0 20px; height: 110vw; }
  .case-story { margin: 100px 20px; display: block; }
  .case-story > .section-label { margin-bottom: 65px; }
  .case-columns { display: block; }
  .case-columns article { margin-bottom: 65px; }
  .case-challenge { margin-top: 0; padding-top: 30px; }
  .case-columns article > p:last-child { font-size: 17px; }
  .case-gallery { padding: 0 20px; display: block; }
  .case-gallery figure, .case-gallery figure:nth-child(1), .case-gallery figure:nth-child(3), .case-gallery .gallery-wide { height: 110vw; margin-bottom: 70px; }
  .case-gallery .gallery-portrait { height: 135vw; }
  .case-gallery .gallery-reference { height: 48vw; }
  .case-gallery .gallery-reference img { padding: 24px; }
  .next-project { margin: 100px 20px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
