@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #050505;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  height: 90px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #050505;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 32px;
  font-weight: 900;
}

.logo span,
.about-hero span,
.quote-section span,
.eyebrow {
  color: #c1121f;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

nav a:hover {
  color: #c1121f;
}

.about-hero {
  padding: 100px 60px;
  border-bottom: 1px solid #222;
}

.eyebrow {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-size: 90px;
  line-height: .9;
  font-weight: 900;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  border-bottom: 1px solid #222;
}

/* left column of .manifesto — landscape placeholder wrap */
.manifesto-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background-color: #070707;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.012) 0px,
    rgba(255,255,255,0.012) 1px,
    transparent 2px,
    transparent 6px
  );
}

.manifesto-frame {
  width: 100%;
  border: 1px solid #c1121f;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* white corner accents */
.manifesto-frame::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #f5f5f5;
  border-left: 2px solid #f5f5f5;
  z-index: 1;
  pointer-events: none;
}

.manifesto-frame::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid #f5f5f5;
  border-right: 2px solid #f5f5f5;
  z-index: 1;
  pointer-events: none;
}

.manifesto-titlebar {
  height: 28px;
  background: #0c0c0c;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 10px;
  flex-shrink: 0;
}

.manifesto-controls {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.manifesto-filename {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.manifesto-dim {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #2a2a2a;
  flex-shrink: 0;
}

/* 5:4 landscape body — width drives height automatically */
.manifesto-body {
  aspect-ratio: 5 / 4;
  position: relative;
  background: #060606;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.018) 0px,
    rgba(255,255,255,0.018) 1px,
    transparent 2px,
    transparent 6px
  );
}

/* scanline overlay — renders above photography, below pending labels */
.manifesto-body::after,
.portrait-body::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.018) 0px,
    rgba(255,255,255,0.018) 1px,
    transparent 2px,
    transparent 6px
  );
  pointer-events: none;
  z-index: 1;
}

/* image fill — sits behind scanline overlay and pending labels */
.frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* pending labels stay on top of the scanline overlay */
.manifesto-pending,
.manifesto-status,
.portrait-pending,
.portrait-status {
  z-index: 2;
}

.manifesto-pending {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #222;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.manifesto-status {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-transform: uppercase;
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.manifesto-strip {
  height: 26px;
  border-top: 1px solid #1a1a1a;
  background: #090909;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  flex-shrink: 0;
}

.manifesto-strip span {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #333;
  text-transform: uppercase;
}

.text-block {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-block p {
  color: #ccc;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.quote-section {
  padding: 90px 60px;
  text-align: center;
  border-bottom: 1px solid #222;
}

.quote-section h2 {
  font-size: 58px;
  line-height: 1;
  margin-bottom: 20px;
}

.quote-section p {
  color: #aaa;
  font-size: 20px;
}

.creator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #222;
}

.creator-text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.creator-text h2 {
  font-size: 56px;
  margin-bottom: 24px;
}

.creator-text p {
  color: #ccc;
  line-height: 1.7;
  font-size: 19px;
}

/* portrait frame wrap — right column of .creator */
.creator-portrait-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background-color: #070707;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.012) 0px,
    rgba(255,255,255,0.012) 1px,
    transparent 2px,
    transparent 6px
  );
}

.portrait-frame {
  width: 100%;
  max-width: 340px;
  border: 1px solid #c1121f;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* white corner accents */
.portrait-frame::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #f5f5f5;
  border-left: 2px solid #f5f5f5;
  z-index: 1;
  pointer-events: none;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid #f5f5f5;
  border-right: 2px solid #f5f5f5;
  z-index: 1;
  pointer-events: none;
}

.portrait-titlebar {
  height: 28px;
  background: #0c0c0c;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 10px;
  flex-shrink: 0;
}

.portrait-controls {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.pfc {
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid #2a2a2a;
  background: #111;
}

.portrait-filename {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portrait-dim {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #2a2a2a;
  flex-shrink: 0;
}

.portrait-body {
  height: 440px;
  position: relative;
  background: #060606;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.018) 0px,
    rgba(255,255,255,0.018) 1px,
    transparent 2px,
    transparent 6px
  );
}

.portrait-pending {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #222;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.portrait-status {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-transform: uppercase;
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.portrait-strip {
  height: 26px;
  border-top: 1px solid #1a1a1a;
  background: #090909;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  flex-shrink: 0;
}

.portrait-strip span {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #333;
  text-transform: uppercase;
}

.footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid #222;
  color: #777;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer a {
  color: #777;
  text-decoration: none;
}

.footer a:hover {
  color: #c1121f;
}


/* =========================
   ABOUT CTA
========================= */
.about-cta {
  padding: 80px 60px;
  border-top: 1px solid #222;
  text-align: center;
}

.about-cta h2 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 32px;
}

.about-cta h2 span {
  color: #c1121f;
}

.cta-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.about-btn,
.about-btn:visited {
  display: inline-block;
  padding: 12px 26px;
  background: #c1121f;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-btn:hover {
  background: #e11928;
  color: #f5f5f5;
}

.about-btn:active {
  background: #9b0d16;
  color: #f5f5f5;
}

.about-cta-secondary,
.about-cta-secondary:visited {
  color: #c1121f;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 12px;
}

.about-cta-secondary:hover {
  color: #f5f5f5;
}

.about-cta-secondary:active {
  color: #aaa;
}


/* =========================
   SCROLL REVEALS
========================= */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
}

.reveal.is-visible {
  animation: revealUp 0.45s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}


/* =========================
   RESPONSIVE
========================= */

/* --- Tablet wide: 1024px --- */
@media (max-width: 1024px) {
  .about-hero h1       { font-size: 70px; }
  .quote-section h2    { font-size: 46px; }
  .creator-text h2     { font-size: 46px; }

  .text-block          { padding: 60px 50px; }
  .creator-text        { padding: 60px 50px; }
  .manifesto-img-wrap  { padding: 50px; }
}

/* --- Tablet: 768px --- */
@media (max-width: 768px) {
  /* Header */
  .site-header { padding: 0 28px; }

  /* Hero */
  .about-hero {
    padding: 60px 28px;
  }
  .about-hero h1 { font-size: 52px; }

  /* Manifesto — collapse to single column, image on top */
  .manifesto {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .manifesto-img-wrap  { padding: 40px 28px; }
  .text-block          { padding: 50px 28px; }
  .text-block p        { font-size: 17px; }

  /* Quote */
  .quote-section {
    padding: 60px 28px;
  }
  .quote-section h2 { font-size: 34px; }
  .quote-section p  { font-size: 17px; }

  /* Creator — collapse to single column */
  .creator {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .creator-text           { padding: 50px 28px; }
  .creator-text h2        { font-size: 36px; }
  .creator-text p         { font-size: 17px; }
  .creator-portrait-wrap  { padding: 40px 28px; }
  .portrait-frame         { max-width: 100%; }
  .portrait-body          { height: 320px; }

  /* Nav */
  nav { display: none; }
}

/* --- Mobile: 480px --- */
@media (max-width: 480px) {
  .about-hero { padding: 48px 20px; }
  .about-hero h1 { font-size: 38px; letter-spacing: -1px; }

  .quote-section { padding: 48px 20px; }
  .quote-section h2 { font-size: 26px; line-height: 1.15; }

  .text-block  { padding: 40px 20px; }
  .creator-text { padding: 40px 20px; }
  .creator-text h2 { font-size: 30px; }

  .manifesto-img-wrap     { padding: 32px 20px; }
  .creator-portrait-wrap  { padding: 32px 20px; }
  .portrait-body          { height: 280px; }
}


/* =========================
   MOBILE NAV — HAMBURGER
========================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f5f5f5;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   MOBILE NAV — OVERLAY
========================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.mobile-nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 4px;
  transition: color 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
  color: #c1121f;
  outline: none;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
}
