:root {
  color-scheme: light;
  --bg: #f4f1ea;
  --surface: #ebe7de;
  --surface-blue: #e2e9ed;
  --surface-orange: #f1dfd3;
  --ink: #171714;
  --muted: #6f6d66;
  --line: #d5d0c5;
  --accent: #e0522d;
  --accent-soft: #f3c8b8;
  --display: Georgia, "Times New Roman", "Songti SC", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, "PingFang SC", sans-serif;
  --content-wide: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

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

.site-shell {
  width: min(var(--content-wide), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-height: 44px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.035em;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1;
}

.brand-mark span {
  position: absolute;
  top: .32rem;
  right: .29rem;
  color: var(--accent);
  font-family: var(--sans);
  font-size: .45rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  color: var(--muted);
  font-size: .78rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: .45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, .88fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  min-height: min(720px, calc(100svh - 5.5rem));
  padding: clamp(5rem, 11vw, 10rem) 0 clamp(5rem, 9vw, 8rem);
}

.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--accent);
}

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

h1,
h2,
h3 {
  font-weight: 400;
}

h1,
h2 {
  letter-spacing: -.075em;
}

em {
  color: var(--accent);
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.065em;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 2rem;
  font-size: clamp(3.65rem, 9vw, 8.5rem);
  line-height: .88;
}

.hero-lede {
  max-width: 30rem;
  margin-bottom: 2.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.75rem;
  min-height: 3.2rem;
  padding: .85rem 1rem .85rem 1.15rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-size: .78rem;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

.button-arrow {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-height: 19rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  width: 1px;
  background: var(--line);
  content: "";
}

.hero-visual::before {
  top: 0;
  bottom: 0;
  left: 23%;
}

.hero-visual::after {
  top: 18%;
  right: 22%;
  bottom: 18%;
  opacity: .7;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 57%;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.visual-note,
.visual-caption {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .61rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-note-top {
  top: 1.15rem;
  right: 1.25rem;
  left: 1.25rem;
}

.visual-caption {
  right: 1.25rem;
  bottom: 1.15rem;
  left: 1.25rem;
  color: var(--ink);
}

.visual-caption span:last-child {
  color: var(--accent);
}

.visual-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: .7;
}

.orbit-large {
  width: 80%;
  height: 40%;
  transform: rotate(-38deg);
}

.orbit-small {
  width: 42%;
  height: 21%;
  border-color: var(--ink);
  transform: rotate(24deg);
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr minmax(0, 2.5fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-label,
.strip-index {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.strip-index {
  color: var(--accent);
}

.intro-strip p {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -.04em;
}

.notice-section,
.work-section,
.closing-section {
  padding: clamp(6rem, 12vw, 11rem) 0;
}

.notice-section {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
}

.section-heading .eyebrow {
  margin-bottom: 1.1rem;
}

.section-heading h2,
.about-copy h2,
.closing-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 6vw, 6.25rem);
  line-height: .9;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 3.5rem);
}

.notice-item {
  padding-top: 1.1rem;
  border-top: 1px solid var(--ink);
}

.item-number,
.project-number {
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.notice-item h3 {
  margin: clamp(3.5rem, 9vw, 7rem) 0 1.1rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: -.04em;
}

.notice-item p {
  max-width: 19rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}

.work-section {
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.work-heading {
  align-items: end;
}

.section-note {
  margin: 0 0 .25rem;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
  text-align: right;
}

.project-list {
  display: grid;
  gap: 1rem;
}

.project {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) minmax(10rem, 16rem);
  align-items: stretch;
  gap: clamp(1.25rem, 4vw, 4rem);
  min-height: 19rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid transparent;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.project:hover,
.project:focus-visible {
  border-color: var(--ink);
  box-shadow: .65rem .65rem 0 var(--accent);
  transform: translate(-.25rem, -.25rem);
}

.project-yipa {
  background: var(--surface-blue);
}

.project-tablow {
  background: var(--surface-orange);
}

.project-number {
  padding-top: .25rem;
}

.project-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-type {
  margin-bottom: .7rem;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project h3 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  letter-spacing: -.08em;
  line-height: .8;
}

.project-description {
  max-width: 27rem;
  margin-bottom: 1.5rem;
  color: #595853;
  font-size: .98rem;
  line-height: 1.6;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 2.2rem;
  color: var(--ink);
  font-size: .75rem;
  font-weight: 700;
}

.text-link::after {
  bottom: .18rem;
}

.text-link span {
  color: var(--accent);
  font-size: 1rem;
}

.project-media {
  display: grid;
  place-items: center;
  min-height: 10rem;
  overflow: hidden;
}

.project-media img {
  width: min(100%, 13rem);
  border-radius: 25%;
  box-shadow: 0 1.2rem 2rem rgba(23, 23, 20, .12);
  transition: transform 300ms var(--ease);
}

.project:hover .project-media img,
.project:focus-visible .project-media img {
  transform: rotate(4deg) scale(1.04);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr minmax(0, 2fr);
  gap: 2rem 3rem;
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--ink);
  color: var(--bg);
}

.about-section .eyebrow {
  color: #a9a69e;
}

.about-mark {
  display: block;
  margin-top: clamp(4rem, 9vw, 9rem);
  color: var(--accent);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: .6;
}

.about-copy h2 {
  max-width: 50rem;
  margin-bottom: 2.25rem;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.about-copy h2 em {
  color: var(--accent);
}

.about-copy p {
  max-width: 38rem;
  margin-bottom: 1rem;
  color: #c1beb6;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.about-copy p:last-child {
  margin-bottom: 0;
  color: var(--bg);
}

.about-quote {
  grid-column: 2;
  max-width: 20rem;
  margin: clamp(3rem, 8vw, 7rem) 0 0 auto;
  padding-top: 1rem;
  border-top: 1px solid #4d4c47;
  color: #a9a69e;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.45;
}

.closing-section {
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
}

.closing-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.closing-section h2 {
  font-size: clamp(2.8rem, 7vw, 7rem);
}

.closing-section h2 em {
  color: var(--ink);
}

.circle-link {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.circle-link:hover,
.circle-link:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-3px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .04em;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, .75fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 9vw, 6.5rem);
  }

  .project {
    grid-template-columns: 2.25rem minmax(0, 1fr) minmax(8rem, 12rem);
    gap: 1rem;
  }

  .project-media img {
    width: min(100%, 10rem);
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 1.25rem;
  }

  .site-header {
    min-height: 4.5rem;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 3.5rem;
    padding: 5.5rem 0 5rem;
  }

  .hero h1 {
    max-width: 25rem;
    margin-bottom: 1.65rem;
    font-size: clamp(3.4rem, 16vw, 5.7rem);
    line-height: .88;
  }

  .hero-lede {
    max-width: 25rem;
    font-size: 1rem;
  }

  .hero-visual {
    width: min(100%, 24rem);
    align-self: flex-end;
  }

  .intro-strip {
    grid-template-columns: 1fr auto;
    gap: .8rem 1rem;
  }

  .intro-strip p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .notice-section,
  .work-section,
  .closing-section {
    padding: 5.5rem 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 2.75rem;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .section-note {
    margin-top: 1.5rem;
    text-align: left;
  }

  .notice-grid {
    display: block;
  }

  .notice-item + .notice-item {
    margin-top: 2.5rem;
  }

  .notice-item h3 {
    margin-top: 2.5rem;
  }

  .project {
    grid-template-columns: 2rem minmax(0, 1fr);
    min-height: 0;
    gap: .85rem;
    padding: 1.25rem;
  }

  .project-copy {
    grid-column: 2;
  }

  .project h3 {
    margin-bottom: 1rem;
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .project-description {
    margin-bottom: 1.15rem;
    font-size: .9rem;
  }

  .project-media {
    grid-column: 1 / -1;
    min-height: 0;
    justify-content: end;
    margin-top: .5rem;
  }

  .project-media img {
    width: min(42vw, 10rem);
  }

  .about-section {
    display: block;
    padding: 2rem 1.25rem 2.5rem;
  }

  .about-mark {
    margin: 4rem 0 3rem;
    font-size: 5rem;
  }

  .about-copy h2 {
    margin-bottom: 1.75rem;
    font-size: clamp(2.6rem, 13vw, 4.5rem);
  }

  .about-copy p {
    font-size: 1rem;
  }

  .about-quote {
    margin-top: 3.5rem;
  }

  .closing-row {
    align-items: start;
  }

  .closing-section h2 {
    font-size: clamp(3.1rem, 15vw, 5.25rem);
  }

  .circle-link {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }

  .site-footer {
    flex-direction: column;
    gap: .45rem;
  }
}

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

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