:root {
  --bg: #080b0f;
  --panel: #101824;
  --panel-2: #0d131c;
  --text: #edf2fa;
  --muted: #adbbcf;
  --brand: #52dfb4;
  --brand-2: #ffce65;
  --line: #243244;
  --shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(82, 223, 180, 0.14), transparent 38%),
    radial-gradient(circle at 82% 22%, rgba(255, 206, 101, 0.1), transparent 32%),
    radial-gradient(circle at 50% 120%, rgba(95, 125, 255, 0.08), transparent 40%),
    var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  z-index: -1;
  filter: blur(78px);
  opacity: 0.26;
}

.ambient-one {
  background: #16d2a3;
  top: -13rem;
  right: -10rem;
}

.ambient-two {
  background: #f4ba45;
  bottom: -15rem;
  left: -12rem;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(8, 11, 15, 0.74);
  border-bottom: 1px solid rgba(173, 187, 207, 0.12);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
}

nav {
  display: flex;
  gap: 0.9rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

nav a:hover {
  color: var(--text);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.2rem 4rem;
}

section {
  margin-top: 4rem;
}

.hero {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.hero > * {
  min-width: 0;
}

.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
}

h1 {
  margin-top: 0.6rem;
  font-size: clamp(2rem, 5.4vw, 4.25rem);
  line-height: 0.98;
  max-width: 13ch;
  letter-spacing: -0.02em;
}

h1 span {
  color: var(--brand-2);
}

.hero-copy {
  margin-top: 1rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  padding: 0.76rem 1.05rem;
  border-radius: 0.75rem;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #061016;
  background: linear-gradient(120deg, var(--brand), #85f2d6);
  box-shadow: 0 10px 30px rgba(82, 223, 180, 0.2);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.micro-proof {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.micro-proof span {
  border: 1px solid rgba(82, 223, 180, 0.16);
  background: rgba(82, 223, 180, 0.06);
  color: #d8fff2;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.portrait-panel {
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 0.9rem;
  box-shadow: var(--shadow);
}

.portrait-stage {
  position: relative;
  padding: 0.25rem;
}

.portrait-stage::before,
.portrait-stage::after {
  content: "";
  position: absolute;
  border-radius: 1rem;
  pointer-events: none;
}

.portrait-stage::before {
  inset: -0.15rem 0.55rem 0.65rem -0.15rem;
  border: 1px solid rgba(82, 223, 180, 0.22);
  transform: rotate(-1.2deg);
}

.portrait-stage::after {
  inset: 0.55rem -0.15rem -0.15rem 0.65rem;
  border: 1px solid rgba(255, 206, 101, 0.2);
  transform: rotate(1.1deg);
}

.portrait-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.portrait-badge-top {
  top: -0.35rem;
  right: 0.55rem;
  background: rgba(17, 64, 104, 0.65);
  color: #d7eeff;
  transform: rotate(4deg);
}

.portrait-badge-bottom {
  left: 0.35rem;
  bottom: 0.65rem;
  background: rgba(13, 95, 80, 0.72);
  color: #dffff4;
  transform: rotate(-3deg);
}

.portrait-shell {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  min-height: 430px;
  background:
    radial-gradient(circle at 25% 12%, rgba(82, 223, 180, 0.24), transparent 46%),
    radial-gradient(circle at 80% 15%, rgba(255, 206, 101, 0.18), transparent 35%),
    linear-gradient(160deg, #141f2e, #0c1118);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(82, 223, 180, 0.16), transparent 30%, transparent 70%, rgba(255, 206, 101, 0.15)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.16), transparent 38%);
  mix-blend-mode: screen;
}

.portrait-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(8, 11, 15, 0.7), rgba(8, 11, 15, 0));
  pointer-events: none;
}

.portrait-shell img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(1.02) contrast(1.05);
  transform: scale(1.02);
}

.portrait-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
}

.portrait-shell.missing .portrait-fallback {
  display: flex;
}

.portrait-shell.missing::before {
  display: none;
}

.fallback-mark {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: var(--text);
  background: linear-gradient(135deg, rgba(82, 223, 180, 0.25), rgba(255, 206, 101, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portrait-fallback code {
  color: #dce8fb;
}

.profile-chip,
.hero-stat {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--panel-2);
  padding: 0.8rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.chip-label {
  margin: 0;
  color: var(--brand);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.chip-value {
  margin: 0.35rem 0 0;
  color: var(--text);
  font-weight: 600;
}

.impact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.impact article,
.timeline article,
.contact,
.sources,
.work-card,
.timeline,
.work {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.impact article,
.contact,
.sources,
.timeline,
.work {
  padding: 1.1rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
}

.impact p,
.timeline p,
.contact p,
.sources li,
.sources .note,
.work-card p {
  color: var(--muted);
}

.timeline-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.timeline article {
  padding: 0.95rem;
}

.year {
  margin: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.84rem;
}

h3 {
  font-size: 1.06rem;
  margin-top: 0.35rem;
}

.work-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.work-card {
  padding: 1rem;
}

.work-card-featured {
  background:
    linear-gradient(180deg, rgba(82, 223, 180, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.work-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: start;
}

.project-art {
  height: 112px;
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.7rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -30px 60px rgba(0, 0, 0, 0.25);
}

.project-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.14), transparent 42%);
}

.project-art span {
  position: relative;
  z-index: 1;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.45rem;
  color: #f8fbff;
  background: rgba(8, 11, 15, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.art-wwf {
  background:
    radial-gradient(circle at 18% 75%, rgba(255, 214, 92, 0.3), transparent 45%),
    linear-gradient(135deg, #0c1630, #123e7f 45%, #1f8dd4);
}

.art-wwf::after {
  content: "WORDS WITH FRIENDS";
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  color: rgba(240, 248, 255, 0.8);
  font-weight: 700;
}

.art-halo {
  background:
    radial-gradient(circle at 80% 35%, rgba(110, 187, 255, 0.28), transparent 40%),
    linear-gradient(135deg, #111a24, #2a3e52 45%, #556b7d);
}

.art-halo::after {
  content: "HALO WARS";
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(232, 241, 255, 0.84);
  font-weight: 700;
}

.art-disney {
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 227, 148, 0.28), transparent 42%),
    radial-gradient(circle at 88% 70%, rgba(117, 189, 255, 0.26), transparent 48%),
    linear-gradient(135deg, #322155, #5f3db1 50%, #6fc5ff);
}

.art-disney::after {
  content: "SPELLSTRUCK";
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(248, 247, 255, 0.88);
  font-weight: 700;
}

.art-fb {
  background:
    radial-gradient(circle at 85% 18%, rgba(160, 208, 255, 0.24), transparent 42%),
    linear-gradient(135deg, #0c1f43, #1f4ca1 55%, #4f93ff);
}

.art-fb::after {
  content: "CROSSWORD";
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: rgba(242, 248, 255, 0.9);
  font-weight: 700;
}

.art-newtoy {
  background:
    radial-gradient(circle at 12% 30%, rgba(82, 223, 180, 0.24), transparent 45%),
    linear-gradient(135deg, #10252a, #18424a 50%, #23706d);
}

.art-newtoy::after {
  content: "NEWTOY";
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(230, 255, 248, 0.88);
  font-weight: 700;
}

.art-fng {
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 206, 101, 0.24), transparent 40%),
    radial-gradient(circle at 18% 75%, rgba(82, 223, 180, 0.22), transparent 45%),
    linear-gradient(135deg, #0e1f25, #13576a 55%, #1f99a7);
}

.art-fng::after {
  content: "FUN + GAMES";
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: rgba(236, 253, 255, 0.9);
  font-weight: 700;
}

.art-partners {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 206, 101, 0.24), transparent 40%),
    radial-gradient(circle at 18% 75%, rgba(155, 122, 255, 0.2), transparent 48%),
    linear-gradient(135deg, #201727, #403055 55%, #6f58a4);
}

.art-partners::after {
  content: "PARTNERS";
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: rgba(247, 241, 255, 0.9);
  font-weight: 700;
}

.work-kicker {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

.tag-row {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-row span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #d9e4f3;
}

.work-logo {
  display: block;
  width: min(220px, 100%);
  margin: 0.55rem 0 0.35rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.expertise .pill-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-row span {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-weight: 500;
}

.contact {
  text-align: left;
}

.contact-shell {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: start;
}

.contact-form {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--panel-2);
  padding: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.contact-form label {
  display: block;
  margin-top: 0.8rem;
}

.contact-grid label {
  margin-top: 0;
}

.contact-form label span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font: inherit;
  padding: 0.75rem 0.85rem;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(82, 223, 180, 0.45);
  box-shadow: 0 0 0 3px rgba(82, 223, 180, 0.08);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-row {
  margin-top: 0.95rem;
  display: block;
}

.cf-turnstile,
.turnstile-slot {
  min-height: 65px;
  width: 100%;
}

.turnstile-slot {
  border: 1px dashed rgba(173, 187, 207, 0.28);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.015);
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.turnstile-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.contact-form-actions {
  margin-top: 0.8rem;
  display: flex;
  justify-content: flex-start;
}

.form-meta {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.2em;
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status[data-state="pending"] {
  color: #c9ddf7;
}

.form-status[data-state="success"] {
  color: #8ff0d0;
}

.form-status[data-state="error"] {
  color: #ffb1b1;
}

.contact-links {
  margin-top: 0.9rem;
}

.contact-side {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.contact-side h3 {
  margin: 0;
}

.contact-side p {
  margin: 0.6rem 0 0;
}

.contact-links-list {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-links-list .btn {
  justify-content: center;
}

.contact-note {
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.sources ul {
  padding-left: 1rem;
}

.sources a {
  color: #9ed7ff;
}

.press-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.press-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  padding: 0.85rem;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.press-card:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 215, 255, 0.3);
}

.press-thumb {
  height: 92px;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0.55rem;
}

.press-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(to top, rgba(8, 11, 15, 0.35), rgba(8, 11, 15, 0));
}

.press-thumb span {
  position: relative;
  z-index: 1;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: #f7fbff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 11, 15, 0.38);
  border-radius: 0.5rem;
  padding: 0.2rem 0.42rem;
}

.press-meta {
  margin: 0.7rem 0 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-card h3 {
  margin-top: 0.35rem;
  font-size: 0.98rem;
  line-height: 1.15;
}

.press-card p:last-child {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.sources-links {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.sources-links a {
  display: inline-flex;
  text-decoration: none;
  border: 1px solid var(--line);
  color: #cbe4ff;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.86rem;
}

.outlet-techcrunch .press-thumb {
  background: linear-gradient(135deg, #07230f, #0b5f30 55%, #19a94b);
}

.outlet-fng .press-thumb {
  background: linear-gradient(135deg, #0e1f25, #166277 52%, #1fc0b4);
}

.outlet-wired .press-thumb {
  background: linear-gradient(135deg, #161616, #303030 55%, #4e4e4e);
}

.outlet-cnbc .press-thumb {
  background: linear-gradient(135deg, #111b37, #1f3b86 52%, #275fd4);
}

.outlet-dmag .press-thumb {
  background: linear-gradient(135deg, #2a1111, #611f1f 55%, #a73a3a);
}

.outlet-apple .press-thumb {
  background: linear-gradient(135deg, #111111, #2a2a2a 50%, #5d5d5d);
}

.outlet-disney .press-thumb {
  background: linear-gradient(135deg, #27133f, #5d2fa3 50%, #a86bff);
}

.outlet-appstore .press-thumb {
  background: linear-gradient(135deg, #102038, #1f4fa0 50%, #58a8ff);
}

.outlet-gameshub .press-thumb {
  background: linear-gradient(135deg, #23123d, #5032a0 50%, #7f5fff);
}

.outlet-gamesbeat .press-thumb {
  background: linear-gradient(135deg, #0f222c, #17546a 55%, #2ca0bd);
}

.note {
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

footer {
  padding: 1.2rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(173, 187, 207, 0.14);
}

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

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

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

  .portrait-panel {
    max-width: 680px;
  }

  .portrait-badge-bottom {
    bottom: 0.5rem;
  }

  .work-grid,
  .press-grid,
  .impact,
  .timeline-grid,
  .contact-shell {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  nav {
    display: none;
  }

  .work-grid,
  .press-grid,
  .impact,
  .timeline-grid,
  .hero-stat-grid,
  .contact-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .project-art {
    height: 96px;
  }

  .portrait-shell,
  .portrait-shell img {
    min-height: 340px;
  }

  .portrait-badge {
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    padding: 0.28rem 0.5rem;
  }

  .portrait-badge-top {
    top: -0.2rem;
    right: 0.3rem;
  }

  .portrait-badge-bottom {
    left: 0.15rem;
    bottom: 0.4rem;
  }

  section {
    margin-top: 2.8rem;
  }

  .site-header {
    justify-content: center;
  }

  .hero {
    margin-top: 1.4rem;
  }
}
