@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700&family=Cutive+Mono&family=Space+Grotesk:wght@700&display=swap");

:root {
  --bg: #fbfbf8;
  --surface: #ffffff;
  --text: #111111;
  --muted: #707070;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.12);
  --accent: #111111;
  --accent-soft: rgba(17, 17, 17, 0.04);
  --accent-line: rgba(17, 17, 17, 0.18);
  --max-width: 1480px;
  --gutter: 30px;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Cutive Mono", "Courier New", monospace;
  font-weight: 400;
}

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

button {
  font: inherit;
}

.site-frame {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.site-header,
.site-footer,
.hero,
.index-section,
.selected-section,
.about-section,
.cv-page {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 300;
}

.site-header {
  padding-top: 6px;
  padding-bottom: 74px;
}

.site-footer p {
  margin: 0;
}

.site-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-label {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.site-label-text {
  display: inline-block;
}

body.name-style-a .site-label-text {
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

body.name-style-b .site-label-text {
  font-family: "Akzidenz-Grotesk BQ", "Akzidenz-Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

body.name-style-c .site-label-text {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.site-footer p {
  color: var(--muted);
}

.site-nav,
.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a,
.footer-mail {
  position: relative;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-mail:hover,
.footer-mail:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero,
.index-section,
.selected-section,
.about-section {
  border-top: 0;
}

.hero {
  position: relative;
  padding-top: 46px;
  padding-bottom: 140px;
  overflow: hidden;
}

.hero-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
}

.hero-kicker,
.section-label,
.section-note,
.preview-meta span {
  margin: 0;
  font-family: "Cutive Mono", "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.hero-kicker,
.section-label {
  color: var(--accent);
  margin-bottom: 30px;
}

h1 {
  margin: 0;
  max-width: 16ch;
  font-family: "Akzidenz-Grotesk BQ", "Akzidenz-Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.9rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent);
  text-decoration: none;
}

.hero-copy {
  align-self: end;
  max-width: 38ch;
  padding-top: 34px;
}

p,
span {
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-copy p,
.about-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-copy p {
  font-size: 0.9rem;
  line-height: 1.62;
}

.about-copy p {
  font-size: 0.9rem;
  line-height: 1.68;
}

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

.section-note {
  color: var(--muted);
}

.index-layout {
  display: block;
}

.index-section,
.selected-section,
.about-section,
.cv-intro,
.site-footer {
  position: relative;
}

.section-symbol {
  display: none;
  position: absolute;
  z-index: 1;
  color: rgba(17, 17, 17, 0.15);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  pointer-events: none;
}

.section-symbol-selected {
  top: 24px;
  right: 5%;
}

.section-symbol-selected-alt {
  top: 188px;
  left: 6%;
}

.section-symbol-selected-soft {
  top: 92px;
  right: 22%;
}

.section-symbol-selected-extra {
  top: 246px;
  right: 18%;
}

.section-symbol-selected-question {
  top: 150px;
  right: 10%;
}

.section-symbol-about {
  top: 30px;
  right: 6%;
}

.section-symbol-about-alt {
  top: 176px;
  left: 4%;
}

.section-symbol-about-soft {
  top: 88px;
  right: 24%;
}

.section-symbol-about-extra {
  top: 236px;
  right: 20%;
}

.section-symbol-about-equals {
  top: 114px;
  left: 10%;
}

.section-symbol-cv {
  top: 18px;
  right: 4%;
}

.section-symbol-cv-alt {
  top: 168px;
  left: 4%;
}

.section-symbol-cv-soft {
  top: 94px;
  right: 22%;
}

.section-symbol-cv-extra {
  top: 224px;
  right: 18%;
}

.section-symbol-cv-question {
  top: 128px;
  right: 10%;
}

.section-symbol-index {
  top: 26px;
  right: 6%;
}

.section-symbol-index-alt {
  top: 208px;
  left: 5%;
}

.section-symbol-index-soft {
  top: 110px;
  right: 22%;
}

.section-symbol-index-extra {
  top: 284px;
  right: 16%;
}

.section-symbol-index-question {
  top: 150px;
  right: 10%;
}

.section-symbol-contact {
  top: -6px;
  right: 8%;
}

.section-symbol-contact-alt {
  top: 20px;
  left: 18%;
}

.section-symbol-contact-soft {
  top: 34px;
  right: 28%;
}

.section-symbol-contact-extra {
  top: -4px;
  left: 42%;
}

.section-symbol-contact-equals {
  top: 30px;
  right: 18%;
}

.index-head,
.index-row {
  display: grid;
  grid-template-columns: 0.9fr 2.2fr 1.1fr 1.2fr 1.1fr;
  gap: 12px;
}

.index-head {
  padding: 20px 0 24px;
  font-size: 0.9rem;
  border-bottom: 0;
  color: var(--text);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.index-head span {
  color: var(--text);
  font-family: "Cutive Mono", "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.index-row {
  width: 100%;
  padding: 20px 0;
  border: 0;
  border-bottom: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.index-row span,
.index-head span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index-row:hover,
.index-row.is-active {
  color: var(--accent);
}

.index-row span:first-child {
  font-family: "Akzidenz-Grotesk BQ", "Akzidenz-Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
}

.index-row span:nth-child(2) {
  font-family: "Akzidenz-Grotesk BQ", "Akzidenz-Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  font-weight: 600;
  text-transform: uppercase;
}

.index-row span:nth-child(3),
.index-row span:nth-child(4),
.index-row span:nth-child(5) {
  font-size: 0.9rem;
  color: var(--muted);
}

.index-row:hover span:nth-child(2),
.index-row.is-active span:nth-child(2) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.preview-image,
.selected-media {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: #efefe9;
}

.preview-image {
  aspect-ratio: 4 / 5;
}

.preview-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
}

.preview-meta p,
.selected-card p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 400;
}

.selected-card p {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-family: "Akzidenz-Grotesk BQ", "Akzidenz-Grotesk", "Helvetica Neue", Arial, sans-serif;
}

.preview-meta span {
  color: var(--muted);
}

.selected-section,
.about-section {
  padding-bottom: 88px;
}

.selected-section {
  position: relative;
}

.selected-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.selected-card {
  position: relative;
}

.selected-media {
  aspect-ratio: 3 / 4.4;
  margin-bottom: 16px;
}

.selected-card span {
  margin-right: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
}

.selected-card p.selected-meta {
  margin-top: 4px;
  color: var(--text);
  font-family: "Cutive Mono", "Courier New", monospace;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  font-style: normal;
  text-decoration: none;
}

.about-large {
  margin: 0;
  max-width: 17ch;
  font-family: "Akzidenz-Grotesk BQ", "Akzidenz-Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.about-copy {
  max-width: 40ch;
  padding-top: 34px;
}

.site-footer {
  border-top: 0;
  padding-top: 64px;
  color: var(--text);
}

.footer-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.footer-meta p {
  font-size: 0.8rem;
  color: var(--text);
}

.footer-cta {
  font-size: 0.8rem;
  color: var(--text);
}

.footer-cta-link {
  color: var(--text);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-self: start;
  text-align: left;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--text);
  font-family: "Cutive Mono", "Courier New", monospace;
  font-size: 0.8rem;
  line-height: 1.2;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social .icon-fill {
  fill: currentColor;
  stroke: none;
}

.hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: min(24vw, 320px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.hover-preview.is-visible {
  opacity: 1;
}

.hover-preview-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #efefe9;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--accent-line);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
}



















.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .selected-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

}

@media (max-width: 760px) {
  .site-frame {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-label {
    font-size: 1rem;
  }

  body.name-style-b .site-label-text {
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .site-header {
    gap: 14px;
    padding-bottom: 34px;
  }

  .site-header,
  .site-footer,
  .hero,
  .index-section,
  .selected-section,
  .about-section,
  .cv-page {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero,
  .selected-section,
  .about-section,
  .index-section,
  .cv-page {
    padding-top: 18px;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-grid,
  .about-grid {
    gap: 20px;
  }

  .hero-kicker,
  .section-label {
    margin-bottom: 18px;
    font-size: 0.72rem;
  }

  .section-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .index-head {
    display: none;
  }

  .index-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .index-row span:nth-child(1),
  .index-row span:nth-child(3),
  .index-row span:nth-child(4),
  .index-row span:nth-child(5) {
    color: var(--muted);
    font-size: 0.84rem;
  }

  .index-row span:nth-child(2) {
    font-size: 0.98rem;
    color: var(--text);
  }

  .selected-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-symbol {
    font-size: 1rem;
  }

  .section-symbol-selected,
  .section-symbol-selected-alt,
  .section-symbol-selected-soft,
  .section-symbol-selected-extra,
  .section-symbol-selected-question,
  .section-symbol-about,
  .section-symbol-about-alt,
  .section-symbol-about-soft,
  .section-symbol-about-extra,
  .section-symbol-about-equals,
  .section-symbol-cv,
  .section-symbol-cv-alt,
  .section-symbol-cv-soft,
  .section-symbol-cv-extra,
  .section-symbol-cv-question,
  .section-symbol-index,
  .section-symbol-index-alt,
  .section-symbol-index-soft,
  .section-symbol-index-extra,
  .section-symbol-index-question,
  .section-symbol-contact,
  .section-symbol-contact-alt,
  .section-symbol-contact-soft,
  .section-symbol-contact-extra,
  .section-symbol-contact-equals {
    top: 10px;
    right: 12px;
    left: auto;
    bottom: auto;
  }

  .section-symbol-selected-alt,
  .section-symbol-about-alt,
  .section-symbol-cv-alt,
  .section-symbol-index-alt,
  .section-symbol-contact-alt {
    right: 26%;
  }

  .section-symbol-selected-soft,
  .section-symbol-selected-extra,
  .section-symbol-selected-question,
  .section-symbol-about-soft,
  .section-symbol-about-extra,
  .section-symbol-about-equals,
  .section-symbol-cv-soft,
  .section-symbol-cv-extra,
  .section-symbol-cv-question,
  .section-symbol-index-soft,
  .section-symbol-index-extra,
  .section-symbol-index-question,
  .section-symbol-contact-soft,
  .section-symbol-contact-equals {
    right: 42%;
  }

  .selected-media {
    margin-bottom: 10px;
  }

  .hover-preview {
    display: none;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(1.1rem, 6vw, 1.55rem);
    line-height: 1.2;
  }

  .about-large {
    max-width: 15ch;
    font-size: clamp(1.1rem, 5.6vw, 1.5rem);
    line-height: 1.2;
  }

  .hero-copy,
  .about-copy {
    max-width: 100%;
    padding-top: 16px;
  }

  .hero-copy p,
  .about-copy p {
    margin-bottom: 14px;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .footer-links,
  .site-nav {
    gap: 12px 18px;
  }

  .site-footer {
    gap: 10px;
    padding-top: 18px;
  }

  .footer-social {
    gap: 10px 12px;
  }
}

.cv-page {
  padding-top: 46px;
  padding-bottom: 96px;
}

.cv-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  margin-bottom: 84px;
}

.cv-intro h1 {
  max-width: 12ch;
}

.cv-lead {
  max-width: 50ch;
}

.cv-label {
  margin: 0;
  color: var(--accent);
  font-family: "Cutive Mono", "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.cv-archive {
  display: grid;
  gap: 56px;
}

.cv-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.cv-section-heading {
  position: static;
  align-self: start;
}

.cv-section h2 {
  margin: 0;
  font-family: "Akzidenz-Grotesk BQ", "Akzidenz-Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.18;
  font-weight: 700;
  text-transform: uppercase;
}

.cv-section-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.cv-group {
  display: grid;
  gap: 16px;
}

.cv-group p,
.cv-entry-body p,
.cv-bullets li {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.74;
}

.cv-subhead {
  color: var(--text);
  font-family: "Akzidenz-Grotesk BQ", "Akzidenz-Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cv-subhead-secondary {
  margin-top: 8px;
}

.cv-entry {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.cv-entry-year {
  margin: 0;
  color: var(--text);
  font-family: "Cutive Mono", "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.45;
}

.cv-entry-body {
  display: grid;
  gap: 6px;
}

.cv-entry-body strong {
  color: var(--text);
  font-family: "Akzidenz-Grotesk BQ", "Akzidenz-Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.cv-bullets {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.cv-bullets a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .cv-intro,
  .cv-section,
  .cv-section-body,
  .cv-entry {
    grid-template-columns: 1fr;
  }

  .cv-intro {
    gap: 24px;
    margin-bottom: 56px;
  }

  .cv-archive {
    gap: 42px;
  }

  .cv-section-body {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .cv-page {
    padding-bottom: 56px;
  }

  .cv-intro {
    gap: 18px;
    margin-bottom: 34px;
  }

  .cv-intro h1 {
    max-width: 12ch;
  }

  .cv-lead,
  .cv-group p,
  .cv-entry-body p,
  .cv-bullets li {
    max-width: 100%;
  }

  .cv-label {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .cv-archive {
    gap: 30px;
  }

  .cv-section h2 {
    font-size: 0.94rem;
  }

  .cv-group p,
  .cv-entry-body p,
  .cv-bullets li {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .cv-entry {
    gap: 6px;
    padding-top: 8px;
  }

  .cv-entry-year {
    font-size: 0.72rem;
  }
}
