:root {
  --yellow: #FAAF3B;
  --ink: #1A1A1A;
  --paper: #F7F5F1;
  --image-radius: 16px;
  --line: rgba(26, 26, 26, .18);
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, a { color: inherit; }
button { font: inherit; }
a { text-decoration: none; }
::selection { background: var(--yellow); color: var(--ink); }

.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 100; padding: .8rem 1rem; background: var(--ink); color: var(--paper); transition: top .2s; }
.skip-link:focus { top: 1rem; }
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 30;
  min-height: 84px; padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, min-height .3s;
}
.site-header.is-scrolled { min-height: 68px; background: rgba(247,245,241,.9); backdrop-filter: blur(16px); border-color: var(--line); }
.brand { display: block; line-height: 0; }
.brand-logo { display: block; width: 42px; height: 42px; }
.site-nav { display: flex; gap: clamp(1.4rem, 3vw, 3rem); font-size: .82rem; font-weight: 600; }
.site-nav a { position: relative; padding: .6rem 0; }
.site-nav a::after { content:""; position: absolute; left: 0; right: 100%; bottom: .35rem; height: 2px; background: var(--ink); transition: right .25s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; }

.hero { min-height: 100svh; padding: 10rem clamp(1.25rem, 4vw, 4.5rem) 0; display: flex; flex-direction: column; overflow: hidden; background: var(--yellow); }
.hero-kicker, .eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-kicker { display: flex; gap: .6rem; align-items: center; }
.status-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; display: inline-block; background: #2aa84a; box-shadow: 0 0 0 4px rgba(42,168,74,.15); }
.hero h1 { margin: auto 0 2.2rem; max-width: 1400px; font-size: clamp(4rem, 11.5vw, 11rem); line-height: .86; letter-spacing: -.065em; font-weight: 800; }
.hero-foot { display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding-bottom: clamp(3rem, 6vw, 6rem); }
.hero-foot p { margin: 0; max-width: 520px; font-size: clamp(1rem, 1.55vw, 1.4rem); line-height: 1.5; font-weight: 500; }
.round-link { width: 68px; height: 68px; flex: 0 0 auto; border: 1.5px solid var(--ink); border-radius: 50%; display: grid; place-items: center; transition: background .25s, color .25s, transform .25s; }
.round-link:hover { background: var(--ink); color: var(--yellow); transform: translateY(4px); }
.round-link svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.discipline-bar { margin-inline: calc(clamp(1.25rem, 4vw, 4.5rem) * -1); border-top: 1px solid rgba(26,26,26,.28); }
.discipline-list { list-style: none; margin: 0; padding: .82rem clamp(1.25rem, 4vw, 4.5rem); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.discipline-list li { text-align: center; font-size: .72rem; font-weight: 800; letter-spacing: .06em; line-height: 1.4; text-transform: uppercase; }
.discipline-list li + li { border-left: 1px solid rgba(26,26,26,.28); }

.section { padding: clamp(5.5rem, 10vw, 10rem) clamp(1.25rem, 4vw, 4.5rem); }
.section-head { display: grid; grid-template-columns: 1.5fr .7fr; align-items: end; gap: 3rem; margin-bottom: 4rem; }
.section h2 { margin: 1.1rem 0 0; font-size: clamp(2.7rem, 6vw, 6rem); line-height: .98; letter-spacing: -.065em; }
.section-head > p { max-width: 480px; margin: 0; font-size: 1rem; line-height: 1.55; }
.project-open:focus-visible, .availability:focus-visible, .dialog-close:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2.5rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem); }
.project-card { min-width: 0; transition: opacity .35s, transform .35s; }
.project-card.is-hidden { display: none; }
.project-open { display: block; width: 100%; padding: 0; border: 0; background: none; text-align: left; cursor: pointer; }
.project-art { position: relative; min-height: clamp(340px, 48vw, 690px); overflow: hidden; isolation: isolate; }
.project-art--image { min-height: 0; aspect-ratio: 4 / 3; background: var(--paper); border-radius: var(--image-radius); }
.project-art--image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.project-meta { padding-top: 1rem; display: flex; justify-content: space-between; gap: 2rem; align-items: start; }
.project-meta h3 { margin: 0 0 .35rem; font-size: clamp(1.15rem, 2vw, 1.55rem); letter-spacing: -.04em; }
.project-meta p { margin: 0; color: #666; font-size: .78rem; }
.arrow { flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; }
.icon-arrow { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-up { width: 14px; height: 14px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.15em; }
.project-open:hover .arrow { transform: rotate(45deg); background: var(--ink); color: var(--paper); }
.project-open:hover .project-art img { transform: scale(1.02); }

.method { background: var(--ink); color: var(--paper); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(4rem, 10vw, 10rem); }
.method-intro { position: sticky; top: 9rem; align-self: start; }
.method-intro h2 { color: var(--yellow); }
.method-list { list-style: none; margin: 0; padding: 0; }
.method-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 2.2rem 0; border-top: 1px solid rgba(247,245,241,.25); }
.method-list li:last-child { border-bottom: 1px solid rgba(247,245,241,.25); }
.method-list > li > span { color: var(--yellow); font-size: .7rem; font-weight: 700; }
.method-list h3 { margin: 0 0 .8rem; font-size: clamp(1.5rem, 3vw, 2.5rem); letter-spacing: -.05em; }
.method-list p { max-width: 480px; margin: 0; color: rgba(247,245,241,.65); line-height: 1.6; }

.profile { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; }
.profile-image { margin: 0; height: 540px; overflow: hidden; border-radius: var(--image-radius); background: var(--yellow); display: flex; align-items: flex-start; justify-content: center; }
.profile-image img { display: block; width: 90%; height: auto; flex: 0 0 auto; transform: translateY(-3%); }
.profile-copy > p { max-width: 650px; font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.65; }
.profile-links { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.profile-links > a, .availability { border: 0; background: none; padding: .8rem 0; font-size: .78rem; font-weight: 700; }
.profile-links > a { border-bottom: 1px solid var(--ink); }.profile-links > a .icon-up { margin-left: .5rem; }
.availability { display: flex; align-items: center; gap: .65rem; cursor: pointer; }

.contact-section { background: var(--yellow); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.contact-heading h2 { font-size: clamp(4.5rem, 10vw, 10rem); }
.contact-heading, .contact-list { min-width: 0; }
.contact-heading h2 { overflow-wrap: anywhere; }
.contact-heading > p { max-width: 520px; margin: 2rem 0 0; font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.6; }
.contact-list { border-top: 1px solid var(--ink); }
.contact-list > a { min-height: 120px; padding: 1.4rem 0; display: grid; grid-template-columns: 7rem 1fr auto; gap: 1rem; align-items: center; border-bottom: 1px solid var(--ink); transition: padding .3s var(--ease), background .3s; }
.contact-list > a:hover, .contact-list > a:focus-visible { padding-inline: 1rem; background: rgba(247,245,241,.28); outline: none; }
.contact-list > a > span { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-list strong { font-size: clamp(1.1rem, 2.1vw, 2rem); letter-spacing: -.045em; overflow-wrap: anywhere; }
.contact-list i { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-style: normal; transition: transform .3s, background .3s, color .3s; }
.contact-list > a:hover i { transform: rotate(45deg); background: var(--ink); color: var(--yellow); }
.contact-list > p { margin: 1.4rem 0 0; display: flex; align-items: center; gap: .65rem; font-size: .72rem; font-weight: 700; }

footer { padding: 1.5rem clamp(1.25rem, 4vw, 4.5rem); border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
footer a, .dialog-close-bottom { display: inline-flex; align-items: center; gap: .35rem; }

dialog { max-width: none; border: 0; padding: 0; color: var(--ink); background: var(--paper); }
dialog::backdrop { background: rgba(26,26,26,.72); backdrop-filter: blur(5px); }
.project-dialog { width: min(1120px, calc(100vw - 2rem)); max-height: calc(100svh - 2rem); overscroll-behavior: contain; }
.dialog-close { position: absolute; z-index: 5; top: 1rem; right: 1rem; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; background: var(--paper); cursor: pointer; font-size: 1.6rem; line-height: 1; }
.dialog-visual { aspect-ratio: 3508 / 2480; background: #38b6af; position: relative; overflow: hidden; }
.dialog-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.dialog-content { padding: clamp(2rem, 5vw, 5rem); }
.dialog-topline { display: flex; justify-content: space-between; text-transform: uppercase; letter-spacing: .08em; font-size: .65rem; font-weight: 700; }
.dialog-content h2 { margin: 1.5rem 0; font-size: clamp(3rem, 8vw, 7.5rem); line-height: .92; letter-spacing: -.065em; }
.dialog-lead { max-width: 780px; font-size: clamp(1.1rem, 2vw, 1.6rem); line-height: 1.55; }
.dialog-story-block { margin-top: 3rem; padding-top: 2rem; display: grid; grid-template-columns: minmax(110px, .38fr) 1fr; gap: clamp(2rem, 5vw, 5rem); border-top: 1px solid var(--line); }
.dialog-section-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.dialog-story { max-width: 720px; }
.dialog-story p { margin: 0 0 1.35rem; font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.68; }
.dialog-story p:last-child { margin-bottom: 0; }
.dialog-tags { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .5rem; }.dialog-tags span { border: 1px solid var(--ink); border-radius: 999px; padding: .45rem .7rem; font-size: .66rem; font-weight: 700; }
.dialog-gallery { padding: 0 clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem); display: grid; gap: clamp(.65rem, 1.5vw, 1rem); }
.dialog-gallery:empty { display: none; }
.dialog-gallery figure { margin: 0; overflow: hidden; background: #e7e4de; }
.dialog-gallery figure[data-orientation="portrait"] { width: min(76%, 760px); justify-self: center; }
.dialog-gallery img { display: block; width: 100%; height: auto; }
.dialog-end { margin: 0 clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem); padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid var(--line); text-transform: uppercase; letter-spacing: .08em; font-size: .65rem; font-weight: 700; }
.dialog-close-bottom { padding: .7rem 0; border: 0; border-bottom: 1px solid var(--ink); background: none; cursor: pointer; font: inherit; text-transform: inherit; letter-spacing: inherit; }
.dialog-close-bottom:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.reveal { opacity: 1; transform: none; }
.reveal.reveal-pending { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 1100px) {
  .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .site-header { min-height: 70px; }
  .menu-toggle { display: flex; align-items: center; gap: .65rem; cursor: pointer; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
  .menu-icon, .menu-icon::before { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .25s; }.menu-icon::before { content:""; transform: translateY(-6px); }
  .menu-toggle[aria-expanded="true"] .menu-icon { transform: rotate(45deg); }.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: rotate(-90deg); }
  .site-nav { display: none; position: absolute; inset: 69px 0 auto; padding: 2rem 1.25rem; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; font-size: 1.4rem; }.site-nav.is-open { display: flex; }
  .hero { padding-top: 8rem; }.hero h1 { margin-top: auto; font-size: clamp(4.2rem, 21vw, 8rem); }.hero-foot { align-items: center; }.round-link { width: 54px; height: 54px; }
  .discipline-list { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-block: .7rem; row-gap: .7rem; }
  .discipline-list li:nth-child(3) { border-left: 0; }
  .discipline-list li:nth-child(n + 3) { padding-top: .7rem; border-top: 1px solid rgba(26,26,26,.28); }
  .section-head, .method, .profile, .contact-section { grid-template-columns: 1fr; }.section-head { gap: 1.5rem; margin-bottom: 2.5rem; }
  .project-grid { gap: 2.5rem 1rem; }.project-art { min-height: 420px; }.project-art--image { min-height: 0; }
  .method-intro { position: static; }.profile-image { height: 420px; }.profile-copy { padding-top: 1rem; }
  .contact-section { grid-template-columns: minmax(0, 1fr); }
  .contact-heading h2 { font-size: clamp(2.75rem, 15vw, 4.5rem); }
  .contact-list > a { grid-template-columns: minmax(0, 1fr) auto; gap: .5rem 1rem; }.contact-list > a > span { grid-column: 1 / -1; }.contact-list strong { min-width: 0; font-size: 1.1rem; }
  footer { flex-direction: column; }.dialog-story-block { grid-template-columns: 1fr; gap: 1rem; }.dialog-gallery figure[data-orientation="portrait"] { width: 100%; }
}

@media (max-width: 540px) {
  .hero-foot p { max-width: 270px; font-size: .9rem; }.project-grid { grid-template-columns: 1fr; }
  .project-art { min-height: min(118vw, 500px); }.project-art--image { min-height: 0; }.section { padding-block: 5rem; }
  .contact-list i { margin-right: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal.reveal-pending { opacity: 1; transform: none; }
}
footer { flex-wrap: wrap; }
@media (min-width: 781px) {
  footer { align-items: flex-end; align-items: last baseline; }
}
footer .fiscal-details { font-size: .875rem; line-height: 1.7; text-transform: none; letter-spacing: normal; overflow-wrap: anywhere; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('./assets/fonts/inter-400.woff') format('woff'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('./assets/fonts/inter-500.woff') format('woff'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('./assets/fonts/inter-600.woff') format('woff'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('./assets/fonts/inter-700.woff') format('woff'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('./assets/fonts/inter-800.woff') format('woff'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 900; font-display: swap; src: url('./assets/fonts/inter-900.woff') format('woff'); }
