:root {
  --bg: #f5f3ee;
  --ink: #0a0a0a;
  --accent: #e63312;
  --line: 3px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "JetBrains Mono", "SF Mono", monospace;
  line-height: 1.5;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2 {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0; }

a {
  color: var(--ink);
  text-decoration: none;
}

/* Hero */

.hero {
  border-bottom: var(--line) solid var(--ink);
  padding: 24px 0 28px;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.mono-tag {
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(3rem, 11vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.role {
  margin-top: 16px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent);
}

.tagline {
  margin-top: 8px;
  max-width: 520px;
  font-size: 1.05rem;
}

/* Sections */

main section {
  padding-top: 28px;
  padding-bottom: 42px;
  border-bottom: var(--line) solid var(--ink);
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.num {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Reel */

.reel-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--ink);
  border: var(--line) solid var(--ink);
}

.reel-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tiles */

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: var(--line) solid var(--ink);
  border-right: 0;
  border-bottom: 0;
}

.tile {
  border-right: var(--line) solid var(--ink);
  border-bottom: var(--line) solid var(--ink);
  padding: 16px;
}

.tile-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
  background: var(--ink);
}

.tile-index {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  color: var(--bg);
  opacity: 0.35;
}

.ph-1 { background: #0a0a0a; }
.ph-2 { background: #1c1c1c; }
.ph-3 { background: #0a0a0a; }
.ph-4 { background: #1c1c1c; }

.tile-title {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.tile-meta {
  font-size: 0.8rem;
}

.tiles-note {
  margin-top: 20px;
  font-size: 0.8rem;
  font-style: italic;
}

/* Contact */

.contact p:first-of-type {
  margin-bottom: 16px;
}

.mail-link {
  display: inline-block;
  max-width: 100%;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(0.85rem, 3.2vw, 1.4rem);
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  padding: clamp(8px, 2vw, 14px) clamp(10px, 2.5vw, 22px);
  border: var(--line) solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 6px;
  white-space: normal;
  word-break: break-word;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.mail-link:hover {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--ink);
  text-decoration: none;
}

/* About */

.about-text {
  max-width: 640px;
  font-size: 1rem;
}

/* Footer */

footer {
  padding-top: 24px;
  padding-bottom: 32px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
