:root {
  color-scheme: light;
  --paper: #f5f4ef;
  --ink: #203b33;
  --muted: #59665e;
  --line: #d6dbd3;
  --accent: #b7d76d;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

a { color: inherit; }

a:focus-visible {
  outline: 3px solid #286cbd;
  outline-offset: 6px;
}

.shell {
  width: min(1040px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 1;
  padding: 10px 18px;
  background: white;
  transform: translateY(-200%);
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.brand-dot { color: #527721; }
.header-note { font-size: 13px; color: var(--muted); }

.intro { padding-block: 86px 68px; }

.eyebrow {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .06em;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 750;
  line-height: 1.22;
  letter-spacing: -.055em;
}

.intro-copy {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-heading h2 { margin: 0; font-size: 18px; }
.section-heading > span { color: var(--muted); font-size: 13px; }

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s;
}

.project-card:hover {
  border-color: #7b9587;
  box-shadow: 0 12px 30px #203b3310;
}

.project-card + .project-card { margin-top: 24px; }

.project-art {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  min-height: 310px;
  padding: 32px 36px;
  color: #f3f5ed;
  background: var(--ink);
}

.art-label { font-size: 13px; letter-spacing: .08em; }
.art-word { font-size: clamp(66px, 9vw, 108px); line-height: 1; font-weight: 750; letter-spacing: -.07em; }
.art-dot { color: var(--accent); }
.art-caption { color: #d3ddcf; font-size: 13px; }

.project-art--travel {
  color: #fff7eb;
  background-color: #704333;
  background-image: repeating-linear-gradient(135deg, transparent 0 47px, #fff7eb0c 47px 48px);
}

.art-city {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.055em;
}

.art-year {
  display: block;
  margin-top: 12px;
  color: #f0cb91;
  font-size: .4em;
  letter-spacing: .2em;
}

.project-art--travel .art-caption {
  width: 100%;
  padding-top: 16px;
  border-top: 1px dashed #f0cb9180;
  color: #f5ddc5;
}

.project-content { align-self: center; padding: 36px 40px; }
.project-category { margin: 0 0 10px; font-size: 12px; color: var(--muted); letter-spacing: .07em; }
.project-content h3 { margin: 0 0 12px; font-size: 32px; line-height: 1.3; letter-spacing: -.03em; }
.project-content > p:last-of-type { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.project-link { display: inline-flex; align-items: center; gap: 16px; margin-top: 28px; font-size: 14px; font-weight: 700; }
.project-card:hover .project-link { text-decoration: underline; text-underline-offset: 5px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 80px;
  padding-block: 24px 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer > span { font-weight: 700; }
.site-footer p { margin: 0; }

@media (max-width: 640px) {
  .shell { width: calc(100% - 40px); }
  .site-header { flex-wrap: wrap; gap: 4px 16px; padding-block: 20px; }
  .header-note { font-size: 12px; }
  .intro { padding-block: 58px 44px; }
  .intro-copy { font-size: 15px; }
  .project-card { grid-template-columns: 1fr; }
  .project-art { min-height: 250px; padding: 28px; }
  .project-content { padding: 28px; }
  .site-footer { margin-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  .project-card { transition: none; }
}
