@font-face {
  font-family: "Aktiv Grotesk Regular";
  src: url(Aktiv_Grotesk/Aktiv_Grotesk_Regular.otf);
}

@font-face {
  font-family: "Aktiv Grotesk Medium";
  src: url(Aktiv_Grotesk/Aktiv_Grotesk_Medium.otf);
}

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --font: "Aktiv Grotesk Regular", sans-serif;
  --font-medium: "Aktiv Grotesk Medium", sans-serif;
  --gap: 0.4rem;
  --accent: rgb(255, 174, 0);
}

/* ─── BASE ────────────────────────────────────────────── */
body {
  font-family: var(--font);
  background: #f5f4f0;
  color: #111;
  min-height: 100vh;
  padding: 1.25rem 1.25rem 3rem;
}

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

/* ─── HEADER ──────────────────────────────────────────── */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #111;
  margin-bottom: 1.25rem;
}

.site-header .name {
  font-size: clamp(0.85rem, 1.4vw, 1.1rem);
  letter-spacing: 0.01em;
}

.site-header .header-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
}

.site-header a {
  color: var(--accent);
}

/* ─── ARTIST STATEMENT ────────────────────────────────── */
.artist-statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid #111;
  margin-bottom: 1.25rem;
}

.statement-left,
.statement-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.artist-statement p {
  font-family: var(--font-medium);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: #111;
}

/* ─── GALLERY FLEX ────────────────────────────────────── */
.gallery-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--gap);
}

/* ─── PROJECT ITEM ────────────────────────────────────── */
.project-item {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  flex-shrink: 0;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

/* ─── HOVER ───────────────────────────────────────────── */
.project-desc {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #f5f4f0;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.desc-title {
  font-family: var(--font);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  color: #111;
}

.desc-text {
  font-family: var(--font);
  font-size: 8pt;
  color: #111;
  max-width: 24ch;
  line-height: 1.4;
}

.project-item:hover img {
  opacity: 0;
}

.project-item:hover .project-desc {
  opacity: 1;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 700px) {
  .artist-statement {
    grid-template-columns: 1fr;
  }
  .gallery-flex {
    flex-direction: column;
    align-items: stretch;
  }
  .project-item {
    width: 100% !important;
    height: 60vw !important;
  }
}