:root {
  --paper: #f6efe3;
  --paper-deep: #ece2d2;
  --white: #fffdf8;
  --ink: #211d18;
  --muted: #71685d;
  --line: rgba(33, 29, 24, 0.16);
  --red: #c83b31;
  --red-dark: #a92d25;
  --shell: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  content: "";
}

::selection {
  background: var(--red);
  color: var(--white);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: -80px;
  left: 20px;
  padding: 11px 16px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 3px;
  left: 0;
  width: 100%;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.site-nav,
.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.footer-bottom nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-bottom nav a:hover {
  color: var(--red);
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 86px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 86px;
  left: calc(50% + 205px);
  width: 1px;
  height: calc(100% - 146px);
  background: var(--line);
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 654px;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  gap: 92px;
  align-items: center;
  padding-top: 46px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 52px 0 64px;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(200, 59, 49, 0.1);
}

.hero h1 {
  max-width: 800px;
  margin: 28px 0 30px;
  font-size: clamp(60px, 7.1vw, 102px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.89;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-lede {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 26px;
}

.primary-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 28px;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 730;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms var(--ease);
}

.primary-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.domain {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
}

.mark-frame {
  position: relative;
  width: min(100%, 430px);
}

.mark-frame::before,
.mark-frame::after {
  position: absolute;
  content: "";
}

.mark-frame::before {
  inset: 9.5%;
  border: 1px solid rgba(33, 29, 24, 0.08);
  border-radius: 50%;
  transform: scale(1.3);
}

.mark-frame::after {
  right: 9%;
  bottom: 11%;
  width: 16%;
  height: 16%;
  border-radius: 12px;
  background: rgba(200, 59, 49, 0.08);
  filter: blur(16px);
}

.mark-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.visual-note {
  position: absolute;
  right: 0;
  bottom: 24px;
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.visual-note span {
  margin-bottom: 16px;
  color: var(--red);
}

.hero-meta {
  display: grid;
  min-height: 76px;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-meta span {
  position: relative;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero-meta span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  transform: translate(-50%, -50%);
}

.section-space {
  padding: 132px 0;
}

.manifesto {
  background: var(--white);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
}

.manifesto h2 {
  max-width: 890px;
  margin: -8px 0 28px;
  font-size: clamp(38px, 4.7vw, 66px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.manifesto-grid > div > p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.work {
  background: var(--white);
  padding-top: 28px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.project-list {
  border-top: 1px solid var(--ink);
}

.project {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1.65fr) minmax(185px, 0.65fr) 28px;
  gap: 26px;
  align-items: center;
  min-height: 154px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 260ms var(--ease);
}

.project::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -18px;
  width: 4px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleY(0.25);
  transition: opacity 180ms ease, transform 260ms var(--ease);
}

.project:hover {
  padding-inline: 12px;
}

.project:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.project-number {
  align-self: start;
  padding-top: 5px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.project-main {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(240px, 1.25fr);
  gap: 30px;
  align-items: baseline;
}

.project-main strong {
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 670;
  letter-spacing: -0.045em;
}

.project-main > span {
  max-width: 430px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.project-meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-arrow {
  justify-self: end;
  font-size: 20px;
  transition: color 180ms ease, transform 260ms var(--ease);
}

.project:hover .project-arrow {
  color: var(--red);
  transform: translate(4px, -4px);
}

.site-footer {
  padding: 0 0 22px;
  background: var(--paper);
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.placeholder-toast {
  position: fixed;
  z-index: 150;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 240ms var(--ease);
}

.placeholder-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-list [data-reveal]:nth-child(2) { transition-delay: 50ms; }
.project-list [data-reveal]:nth-child(3) { transition-delay: 100ms; }
.project-list [data-reveal]:nth-child(4) { transition-delay: 150ms; }
.project-list [data-reveal]:nth-child(5) { transition-delay: 200ms; }
.project-list [data-reveal]:nth-child(6) { transition-delay: 250ms; }

@media (max-width: 980px) {
  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
    gap: 34px;
  }

  .project {
    grid-template-columns: 42px minmax(0, 1fr) 26px;
  }

  .project-main {
    grid-template-columns: minmax(170px, 0.75fr) minmax(220px, 1.25fr);
  }

  .project-meta {
    display: none;
  }

}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 38px, var(--shell));
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a:first-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 48px;
  }

  .hero-copy {
    padding: 18px 0 8px;
  }

  .hero h1 {
    margin: 22px 0 24px;
    font-size: clamp(52px, 15.8vw, 78px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .mark-frame {
    width: 320px;
    margin-right: -52px;
  }

  .visual-note {
    right: 4px;
    bottom: 44px;
  }

  .hero-meta {
    min-height: 64px;
  }

  .hero-meta span {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .section-space {
    padding: 88px 0;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 46px;
  }

  .manifesto h2 {
    margin-top: 0;
  }

  .work {
    padding-top: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .project {
    min-height: 176px;
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .project:hover {
    padding-inline: 0;
  }

  .project::before {
    left: -10px;
  }

  .project-main {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-main strong {
    font-size: 27px;
  }

  .project-main > span {
    font-size: 13px;
  }

  .site-footer {
    padding-top: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 24px;
    padding: 24px 0 6px;
  }

  .footer-bottom nav {
    width: 100%;
    justify-content: space-between;
    gap: 18px;
  }
}

@media (max-width: 420px) {
  .site-nav a:nth-child(2) {
    display: none;
  }

  .brand span {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .primary-link {
    width: 100%;
    justify-content: space-between;
  }

}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
