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

:root {
  --ink: #11110f;
  --paper: #f1f0eb;
  --acid: #d9ff43;
  --orange: #f04b23;
  --line: rgba(17, 17, 15, 0.24);
  --pad: clamp(20px, 2.7vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { color: inherit; }
a { text-decoration: none; }
button { font: inherit; }
::selection { color: var(--paper); background: var(--ink); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: difference;
  color: white;
}
.wordmark { font-size: clamp(20.57px, 1.694vw, 27.83px); font-weight: 600; letter-spacing: -0.06em; }
.wordmark span { display: inline-block; padding-left: 0; }
.site-nav { display: flex; gap: clamp(24px, 3vw, 52px); font-size: 14px; }
.site-nav a, .project-list-toggle { position: relative; }
.project-list-toggle { border: 0; padding: 0; color: inherit; background: none; cursor: pointer; }
.site-nav a::after, .project-list-toggle::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.site-nav a:hover::after, .project-list-toggle:hover::after, .project-list-toggle[aria-expanded="true"]::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: none; }

.hero {
  min-height: 100svh;
  padding: 112px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-kicker, .studio-label { display: flex; justify-content: space-between; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.hero h1 {
  margin: auto 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(61px, 10.7vw, 190px);
  font-weight: 500;
  line-height: .83;
  letter-spacing: -.065em;
  font-kerning: normal;
}
em { font-family: Georgia, serif; font-weight: 400; }
.hero h1 em { position: relative; top: .08em; display: inline-block; padding-left: 8.5vw; }
.hero h1 .hero-c { display: inline-block; margin-right: .018em; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; }
.hero-copy p { margin: 0; font-size: clamp(14px, 1.15vw, 19px); line-height: 1.45; }
.hero-copy .hero-copy-ko { margin-top: 9px; font-size: 12px; line-height: 1.55; opacity: .58; }
.round-link { width: 110px; aspect-ratio: 1; border: 1px solid var(--ink); border-radius: 50%; padding: 19px; display: flex; flex-direction: column; justify-content: space-between; transition: color .35s, background .35s, transform .35s; }
.round-link b { align-self: flex-end; font-size: 21px; }
.round-link span { font-size: 12px; line-height: 1.1; }
.round-link:hover { color: var(--paper); background: var(--ink); transform: rotate(5deg); }

.work-section { padding: 130px var(--pad) 160px; background: var(--ink); color: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: start; }
.eyebrow { margin: 0; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.section-heading h2 { margin: 0 0 100px; font-size: clamp(58px, 9.3vw, 154px); font-weight: 500; line-height: .86; letter-spacing: -.075em; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid rgba(241,240,235,.3); }
.filter { border: 1px solid rgba(241,240,235,.45); background: transparent; color: inherit; border-radius: 100px; padding: 9px 15px; cursor: pointer; transition: all .25s; }
.filter sup { padding-left: 4px; font-size: 9px; }
.filter:hover, .filter.is-active { background: var(--paper); color: var(--ink); }

.project-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; column-gap: clamp(24px, 2.5vw, 44px); row-gap: clamp(80px, 7vw, 120px); padding-top: 46px; align-items: start; }
.project { grid-column: 1 / -1; min-width: 0; transition: opacity .35s, transform .45s; }
.project--wide { grid-column: span 8; }
.project--tall { grid-column: span 4; }
.project.is-hidden { display: none; }
.project-link { width: 100%; border: 0; padding: 0; color: inherit; background: transparent; text-align: left; cursor: none; }
.project-visual { position: relative; aspect-ratio: 16/8.5; overflow: hidden; isolation: isolate; }
.project-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.project--tall .project-visual, .project--wide .project-visual { height: clamp(360px, 38vw, 720px); aspect-ratio: auto; }
.project-grid:not([data-filter="all"]) .project { grid-column: span 6; }
.project-grid:not([data-filter="all"]) .project-visual { height: clamp(320px, 32vw, 560px); aspect-ratio: auto; }
.project-visual::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.12); opacity: 0; transition: opacity .4s; }
.project-link:hover .project-visual::after { opacity: 1; }
.project-visual > * { transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.project-link:hover .project-visual > * { transform: scale(1.035); }
.project-meta { display: grid; grid-template-columns: 1fr 1fr auto; gap: 15px; padding-top: 14px; font-size: 12px; }
.project-meta h3, .project-meta p { margin: 0; font-size: inherit; font-weight: 400; }
.project-meta h3 { font-weight: 600; }

.visual-nue { background: #f23a2e; display: flex; align-items: center; justify-content: center; color: #111; }
.visual-nue > span { font-size: clamp(100px, 21vw, 360px); font-weight: 600; line-height: .8; letter-spacing: -.18em; }
.visual-nue > span:nth-child(2) { color: #f4c4d4; transform: translateY(-5%); }
.visual-nue i { position: absolute; right: 4%; bottom: 5%; font: 500 9px/1.2 "DM Sans", sans-serif; text-align: right; }
.visual-morrow { background: #f2a31b; color: #57230f; padding: 6%; }
.visual-morrow .sun { position: absolute; width: 75%; aspect-ratio: 1; border-radius: 50%; background: #ffdd3a; left: 12%; top: 11%; }
.visual-morrow strong { position: relative; font-size: clamp(60px, 11vw, 170px); letter-spacing: -.1em; line-height: .72; }
.visual-morrow small { position: absolute; bottom: 5%; right: 5%; font-size: 10px; text-transform: uppercase; }
.visual-orbit { background: #b7a5ff; display: grid; place-items: center; color: #231b50; }
.visual-orbit .orbit-ring { position: absolute; width: 65%; aspect-ratio: 1; border: 1px solid #231b50; border-radius: 50%; box-shadow: 0 0 0 20px #d6ceff, 0 0 0 21px #231b50, 0 0 0 43px #a195de; }
.visual-orbit b { font-family: Georgia, serif; font-size: clamp(160px, 25vw, 410px); font-weight: 400; line-height: 1; }
.visual-orbit p { position: absolute; left: 5%; bottom: 3%; font-size: 10px; }
.visual-field { background: #e7e2ce; color: #153d29; padding: 4%; }
.visual-field > span { display: block; font-family: Georgia, serif; font-size: clamp(70px, 13vw, 210px); line-height: .68; letter-spacing: -.08em; }
.visual-field > span:nth-child(2) { padding-left: 18%; }
.visual-field .flower { position: absolute; right: 5%; bottom: 4%; font-size: clamp(70px, 10vw, 160px); color: #ef4c2f; }
.visual-field small { position: absolute; left: 4%; bottom: 5%; font-size: 9px; }
.visual-maru { background: #efe9dd; color: #191818; display: flex; align-items: center; justify-content: center; }
.visual-maru::before { content: ""; position: absolute; width: 66%; height: 82%; border-radius: 50% 50% 46% 44%; background: #226b4a; }
.visual-maru .hanja { position: relative; color: #f1d74a; font-size: clamp(100px, 19vw, 300px); font-weight: 600; line-height: .72; letter-spacing: -.16em; writing-mode: vertical-rl; }
.visual-maru span { position: absolute; bottom: 4%; right: 4%; font-size: 8px; }
.visual-night { background: #132858; color: #fb633d; padding: 5%; }
.visual-night .moon { position: absolute; right: -15%; top: -5%; width: 75%; aspect-ratio: 1; background: #d9ff43; border-radius: 50%; }
.visual-night strong { position: relative; font-size: clamp(58px, 10vw, 160px); line-height: .78; letter-spacing: -.08em; }
.visual-night small { position: absolute; bottom: 5%; right: 5%; text-align: right; font-size: 9px; }
.visual-common { background: #d9ff43; color: #121212; padding: 4%; }
.visual-common strong { position: relative; font-size: clamp(54px, 10.5vw, 160px); line-height: .75; letter-spacing: -.09em; z-index: 2; }
.visual-common .cg-shape { position: absolute; border-radius: 50%; background: #4a52e7; width: 45%; aspect-ratio: 1; right: 7%; top: 8%; }
.visual-common .cg-shape.two { background: #f15131; right: 19%; top: 22%; mix-blend-mode: multiply; }
.visual-common small { position: absolute; right: 4%; bottom: 5%; text-align: right; }
.visual-oi { background: #ede2c7; color: #4a281b; padding: 4%; }
.visual-oi b { position: relative; font-family: Georgia, serif; font-size: clamp(160px, 25vw, 380px); font-weight: 400; letter-spacing: -.12em; line-height: .8; }
.visual-oi .bean { position: absolute; width: 25%; aspect-ratio: .7; border-radius: 50%; background: #e0462d; right: 13%; bottom: 10%; transform: rotate(24deg); }
.visual-oi p { position: absolute; bottom: 4%; left: 4%; font-size: 9px; }

.statement { padding: 130px var(--pad); background: #d9ff43; min-height: 82vh; display: flex; flex-direction: column; justify-content: space-between; }
.statement blockquote { margin: 80px 0; max-width: 1450px; font-size: clamp(50px, 8.7vw, 145px); line-height: .91; letter-spacing: -.07em; }
.statement-foot { display: grid; grid-template-columns: 2fr 1fr; align-items: end; font-size: 13px; }
.statement-foot p { margin: 0; max-width: 430px; line-height: 1.45; }
.statement-foot .statement-foot-ko { margin-top: 9px; font-size: 12px; line-height: 1.6; opacity: .6; word-break: keep-all; }

.studio-section { padding: 130px var(--pad); }
.studio-copy { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin: 120px 0 150px; align-items: end; }
.studio-copy h2 { margin: 0; font-size: clamp(67px, 11.2vw, 185px); font-weight: 500; line-height: .82; letter-spacing: -.08em; }
.studio-copy p { margin: 0; max-width: 510px; font-size: clamp(17px, 1.6vw, 26px); line-height: 1.45; word-break: keep-all; }
.studio-copy .studio-copy-ko { margin-top: 24px; font-size: 14px; line-height: 1.7; opacity: .65; }
.services { display: grid; grid-template-columns: 1fr 2fr; border-top: 1px solid var(--line); }
.services h3 { margin: 24px 0; font-size: 13px; font-weight: 500; }
.services ol { margin: 0; padding: 0; list-style: none; }
.services li { display: grid; grid-template-columns: 60px 1fr; border-bottom: 1px solid var(--line); padding: 20px 0; font-size: clamp(18px, 2vw, 30px); }
.services li span { font-size: 10px; padding-top: 7px; }
.project-list-reveal { width: 100%; margin-top: 100px; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0 30px; display: flex; align-items: flex-end; justify-content: space-between; color: var(--ink); background: none; text-align: left; cursor: pointer; transition: color .3s, padding .3s; }
.project-list-reveal > span { display: grid; gap: 13px; font-size: clamp(38px, 6.2vw, 96px); line-height: .92; letter-spacing: -.06em; }
.project-list-reveal small { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.project-list-reveal b { width: clamp(58px, 7vw, 92px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; color: var(--paper); background: var(--orange); font-size: clamp(25px, 3vw, 42px); transition: transform .35s, background .35s; }
.project-list-reveal:hover { color: var(--orange); padding-left: 12px; }
.project-list-reveal:hover b { transform: rotate(45deg); background: var(--ink); }

.project-list-section { display: grid; grid-template-rows: 0fr; border-top: 1px solid transparent; background: var(--paper); transition: grid-template-rows .65s cubic-bezier(.7,0,.2,1), border-color .35s; }
.project-list-section.is-open { grid-template-rows: 1fr; border-color: var(--line); }
.project-list-shell { min-height: 0; overflow: hidden; }
.project-list-section.is-open .project-list-shell { padding: 110px var(--pad) 130px; }
.project-list-head { display: flex; align-items: center; justify-content: space-between; }
.project-list-head p { margin: 0; }
.project-list-close { border: 1px solid currentColor; border-radius: 100px; padding: 8px 12px; color: inherit; background: none; cursor: pointer; }
.project-list-close span { margin-left: 14px; font-size: 18px; }
.project-list-section h2 { margin: 55px 0 72px; font-size: clamp(66px, 10vw, 165px); font-weight: 500; line-height: .9; letter-spacing: -.075em; }
.project-list-section h2 em { letter-spacing: -.055em; }
.project-list-section h2::after { content: ""; display: inline-block; width: .11em; aspect-ratio: 1; margin-left: .12em; border-radius: 50%; background: var(--orange); vertical-align: .12em; }
.project-list-note { margin: 0 0 78px; max-width: 360px; font-size: 12px; line-height: 1.6; opacity: .55; }
.project-list-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(34px, 5vw, 90px); }
.project-list-year + .project-list-year { margin-top: 44px; }
.project-list-year h3 { display: flex; align-items: center; gap: 9px; margin: 0 0 12px; font-size: 15px; font-weight: 650; }
.project-list-year h3::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.project-list-year ul { margin: 0; padding: 0; list-style: none; }
.project-list-year li { margin: 0; font-size: 13px; line-height: 1.72; color: rgba(17,17,15,.58); word-break: keep-all; }
.project-list-year a { color: var(--orange); font-weight: 500; text-decoration: none; transition: color .25s, opacity .25s; }
.project-list-year a::after { content: " ↗"; font-size: .8em; }
.project-list-year a:hover { color: var(--ink); opacity: 1; }

.contact-section { min-height: 90vh; padding: 100px var(--pad) 35px; display: flex; flex-direction: column; color: var(--paper); background: #4731d3; }
.inquiry-trigger { margin: auto 0; border: 0; padding: 0; color: inherit; background: none; font: inherit; font-size: clamp(53px, 9.6vw, 158px); line-height: .87; letter-spacing: -.075em; text-align: left; cursor: pointer; }
.inquiry-trigger span { display: inline-block; font-size: .4em; margin-left: .15em; transition: transform .3s; }
.inquiry-trigger:hover span { transform: translate(12px, -12px); }
.contact-meta { display: grid; grid-template-columns: 2fr 1fr 1fr; align-items: end; gap: 30px; font-size: 12px; line-height: 1.5; }
.contact-meta p { margin: 0; }
.contact-meta p:last-child { text-align: right; }
.contact-meta a { text-decoration: underline; text-underline-offset: 3px; }

.inquiry-dialog { width: min(1120px, calc(100% - 36px)); max-width: none; max-height: calc(100% - 36px); border: 0; padding: 0; color: var(--paper); background: #11110f; }
.inquiry-dialog::backdrop { background: rgba(12, 10, 34, .72); backdrop-filter: blur(8px); }
.inquiry-dialog[open] { animation: dialogIn .35s ease both; }
.inquiry-panel { position: relative; padding: clamp(30px, 5vw, 72px); }
.inquiry-close { position: absolute; top: 24px; right: 24px; border: 1px solid currentColor; border-radius: 100px; padding: 8px 12px; color: inherit; background: transparent; cursor: pointer; }
.inquiry-close span { margin-left: 14px; font-size: 18px; }
.inquiry-panel h2 { margin: 58px 0 64px; font-size: clamp(50px, 7vw, 104px); font-weight: 500; line-height: .88; letter-spacing: -.07em; }
.inquiry-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 34px; }
.inquiry-fields label { display: grid; gap: 10px; }
.inquiry-fields label > span { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.inquiry-fields input, .inquiry-fields textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.45); border-radius: 0; padding: 7px 0 12px; color: inherit; background: transparent; font: inherit; font-size: 18px; outline: 0; }
.inquiry-fields textarea { resize: vertical; line-height: 1.5; }
.inquiry-fields input:focus, .inquiry-fields textarea:focus { border-color: var(--acid); }
.inquiry-fields input::placeholder { color: rgba(255,255,255,.35); }
.field-wide { grid-column: 1 / -1; }
.inquiry-actions { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 38px; }
.inquiry-actions button { border: 0; border-radius: 100px; padding: 15px 22px; color: var(--ink); background: var(--acid); font: inherit; cursor: pointer; }
.inquiry-actions button:disabled { opacity: .55; cursor: wait; }
.form-status { margin: 0; font-size: 13px; }
.form-honeypot { position: absolute; left: -9999px; }

.project-dialog { width: 100%; max-width: none; height: 100%; max-height: none; border: 0; margin: 0; padding: 0 var(--pad) var(--pad); overflow-y: auto; color: var(--paper); background: #4731d3; }
.project-dialog::backdrop { background: rgba(0,0,0,.5); }
.project-dialog[open] { display: block; animation: dialogIn .45s ease both; }
@keyframes dialogIn { from { opacity: 0; transform: translateY(4%); } }
.dialog-close { position: fixed; z-index: 2; top: 24px; right: var(--pad); border: 1px solid currentColor; border-radius: 100px; padding: 8px 12px; background: color-mix(in srgb, currentColor 8%, transparent); color: inherit; backdrop-filter: blur(12px); cursor: pointer; }
.dialog-close span { font-size: 18px; margin-left: 14px; }
.dialog-content { min-height: 100svh; padding: 130px 0 70px; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px, 8vw, 150px); align-items: center; }
.dialog-heading { min-width: 0; }
.dialog-number { margin-top: 18px; font-size: 12px; }
.dialog-type { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.dialog-content h2 { margin: 45px 0 0; font-size: clamp(55.1px, 9.975vw, 171px); font-weight: 500; line-height: .95; letter-spacing: -.08em; overflow-wrap: anywhere; }
@media (min-width: 761px) {
  .project-dialog[data-project="together"] .dialog-content h2 { font-size: min(8.1vw, 160px); white-space: nowrap; overflow-wrap: normal; }
}
.dialog-info { align-self: end; padding-bottom: 4vh; }
.dialog-description { max-width: 680px; margin: 0; font-size: clamp(18px, 1.55vw, 25px); line-height: 1.5; word-break: keep-all; }
.dialog-awards { margin: 30px 0 0; padding: 18px 0 0; border-top: 1px solid currentColor; list-style: none; font-size: 13px; line-height: 1.65; }
.dialog-awards[hidden] { display: none; }
.dialog-english { max-width: 680px; margin: 28px 0 0; font-size: 13px; line-height: 1.5; opacity: .68; }
.dialog-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.dialog-tags span { border: 1px solid currentColor; border-radius: 100px; padding: 8px 12px; font-size: 11px; }
.dialog-tags a { border-radius: 100px; padding: 8px 12px; font-size: 11px; color: var(--paper); background: var(--ink); }
.dialog-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(8px, 1.4vw, 24px); padding-bottom: 10vh; }
.dialog-image { grid-column: 1 / -1; margin: 0; background: rgba(0,0,0,.08); }
.dialog-image--half { grid-column: auto; }
.dialog-image img { width: 100%; height: auto; display: block; }
.dialog-navigation { border-top: 1px solid currentColor; padding: 36px 0 44px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 24px; }
.dialog-navigation button { border: 0; padding: 0; color: inherit; background: none; cursor: pointer; }
.dialog-prev, .dialog-next { display: grid; gap: 8px; text-align: left; }
.dialog-next { text-align: right; }
.dialog-navigation button > span { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; opacity: .65; }
.dialog-navigation strong { font-size: clamp(20px, 2.5vw, 38px); font-weight: 500; line-height: 1.1; letter-spacing: -.04em; }
.dialog-top { width: 86px; aspect-ratio: 1; border: 1px solid currentColor !important; border-radius: 50% !important; display: grid; place-content: center; gap: 3px; transition: transform .3s, background .3s, color .3s; }
.dialog-top b { font-size: 23px; font-weight: 400; line-height: .9; }
.dialog-navigation .dialog-top > span { font-family: Georgia, serif; font-size: 18px; font-style: italic; line-height: 1; text-transform: none; letter-spacing: -.04em; opacity: 1; }
.dialog-top:hover { color: var(--ink); background: var(--paper); transform: translateY(-5px); }
.dialog-prev:hover strong, .dialog-next:hover strong { text-decoration: underline; text-underline-offset: 6px; }

.cursor { position: fixed; z-index: 50; pointer-events: none; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); background: var(--acid); transform: translate(-50%,-50%) scale(0); transition: transform .2s; }
.cursor.is-visible { transform: translate(-50%,-50%) scale(1); }
.cursor span { font-size: 10px; text-transform: uppercase; }

@media (max-width: 760px) {
  .site-header { height: 64px; }
  .menu-toggle { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; color: inherit; }
  .menu-toggle i, .menu-toggle i::after { display: block; width: 16px; height: 1px; background: currentColor; transition: transform .3s; }
  .menu-toggle i::after { content: ""; transform: translateY(5px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { transform: rotate(-90deg); }
  .site-nav { position: fixed; inset: 0; padding: 120px 20px 40px; flex-direction: column; justify-content: center; color: var(--paper); background: var(--ink); font-size: 14vw; line-height: 1; transform: translateY(-100%); transition: transform .45s cubic-bezier(.7,0,.2,1); }
  .project-list-toggle { font-size: inherit; line-height: inherit; text-align: left; }
  .site-nav.is-open { transform: translateY(0); }
  .hero { padding-top: 86px; }
  .hero h1 { font-size: 17vw; line-height: .88; }
  .hero h1 em { padding-left: 0; }
  .hero-bottom { align-items: end; }
  .round-link { width: 84px; padding: 14px; }
  .section-heading, .studio-copy, .services { grid-template-columns: 1fr; }
  .section-heading h2 { margin: 55px 0 70px; }
  .project-grid { grid-template-columns: 1fr; gap: 72px; }
  .project, .project--wide, .project--tall, .project-grid:not([data-filter="all"]) .project { grid-column: 1; }
  .project-visual, .project--wide .project-visual, .project--tall .project-visual, .project-grid:not([data-filter="all"]) .project-visual { height: auto; aspect-ratio: 4/3; }
  .project--tall .project-visual { aspect-ratio: 4/5.25; }
  .project-meta { grid-template-columns: 1fr auto; }
  .project-meta p { grid-row: 2; }
  .project-meta span { grid-column: 2; grid-row: 1; }
  .statement { min-height: 70vh; }
  .statement blockquote { margin: 60px 0; }
  .statement-foot { grid-template-columns: 1fr; gap: 26px; }
  .studio-copy { margin: 80px 0 100px; }
  .studio-description { margin-top: 50px; }
  .services h3 { border-bottom: 1px solid var(--line); padding-bottom: 20px; }
  .project-list-reveal { margin-top: 70px; padding: 24px 0; }
  .project-list-reveal > span { max-width: 70%; }
  .project-list-section.is-open .project-list-shell { padding: 85px 20px 100px; }
  .project-list-section h2 { margin-top: 45px; }
  .project-list-note { margin-bottom: 50px; }
  .project-list-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-section { min-height: 80vh; }
  .contact-meta { grid-template-columns: 1fr 1fr; }
  .contact-meta p:last-child { display: none; }
  .inquiry-dialog { width: 100%; max-height: 100%; height: 100%; }
  .inquiry-panel { min-height: 100%; padding: 80px 20px 35px; }
  .inquiry-panel h2 { margin: 50px 0; }
  .inquiry-fields { grid-template-columns: 1fr; }
  .field-wide { grid-column: 1; }
  .inquiry-actions { align-items: flex-start; flex-direction: column; }
  .dialog-content { min-height: auto; padding: 130px 0 80px; grid-template-columns: 1fr; gap: 65px; }
  .dialog-info { padding-bottom: 0; }
  .dialog-content h2 { margin: 40px 0; }
  .dialog-gallery { grid-template-columns: 1fr; }
  .dialog-image, .dialog-image--half { grid-column: 1; }
  .dialog-navigation { grid-template-columns: 1fr 68px 1fr; gap: 12px; padding-bottom: 24px; }
  .dialog-top { width: 68px; }
  .dialog-navigation strong { font-size: 16px; }
  .cursor { display: none; }
  .project-link { cursor: pointer; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
