:root {
  --ink: #111512;
  --paper: #eeece4;
  --green: #b9eb5f;
  --muted: #696d65;
  --line: rgba(17, 21, 18, .18);
}

* { box-sizing: border-box; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  margin: 0;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 100svh;
  padding: 0 32px;
}

header,
footer {
  align-items: center;
  display: flex;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: .05em;
  text-transform: uppercase;
}

header { border-bottom: 1px solid var(--line); padding: 20px 0; }
footer { border-top: 1px solid var(--line); color: var(--muted); padding: 18px 0; }

.monogram { font-size: 16px; font-weight: 500; letter-spacing: -.08em; }
.monogram span { color: #6ca91d; }
.location { color: var(--muted); }

main {
  align-items: center;
  display: grid;
  gap: clamp(48px, 9vw, 120px);
  grid-template-columns: minmax(0, 1fr) 260px;
  padding: 46px 0;
}

.copy { max-width: 730px; }

.role {
  align-items: center;
  display: flex;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  gap: 9px;
  letter-spacing: .04em;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.role i {
  background: #64af46;
  border: 4px solid rgba(100, 175, 70, .2);
  border-radius: 50%;
  height: 12px;
  width: 12px;
}

h1 {
  font-size: clamp(64px, 9vw, 116px);
  font-weight: 600;
  letter-spacing: -.085em;
  line-height: .78;
  margin: 0;
}

.idea {
  font-size: clamp(20px, 2.15vw, 29px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.35;
  margin: 38px 0 14px;
  max-width: 720px;
}

.history { color: var(--muted); font-size: 13px; line-height: 1.55; margin: 0; max-width: 570px; }

nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

nav a {
  align-items: center;
  border: 1px solid var(--line);
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 18px;
  justify-content: space-between;
  padding: 10px 12px;
  transition: background-color 150ms ease, border-color 150ms ease;
}

nav a:hover { background: var(--green); border-color: var(--green); }
nav a span { font-family: "DM Mono", monospace; font-size: 9px; }

figure { margin: 0; text-align: center; }

.photo-ring {
  background: var(--green);
  border-radius: 50%;
  padding: 8px;
  transform: rotate(2deg);
}

.photo-ring img {
  border-radius: 50%;
  display: block;
  height: 244px;
  object-fit: cover;
  object-position: center 30%;
  transform: rotate(-2deg);
  width: 244px;
}

figcaption {
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: .04em;
  margin-top: 14px;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .page { padding: 0 20px; }
  main { gap: 32px; grid-template-columns: 1fr; padding: 36px 0; }
  .copy { order: 2; }
  figure { justify-self: start; order: 1; text-align: left; }
  .photo-ring img { height: 138px; width: 138px; }
  h1 { font-size: clamp(60px, 20vw, 88px); }
  .idea { margin-top: 30px; }
  footer { margin-top: 18px; }
}

@media (max-height: 700px) and (min-width: 721px) {
  main { padding: 28px 0; }
  h1 { font-size: clamp(58px, 8vw, 92px); }
  .idea { font-size: 21px; margin-top: 28px; }
  .photo-ring img { height: 210px; width: 210px; }
  main { grid-template-columns: minmax(0, 1fr) 226px; }
}

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