/* ============================================================
   PROJECT PAGES — GLOBAL
   All variables inherited from main.css (:root)
   ============================================================ */

.project-page {
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  color: var(--white);
  font-family: var(--font-display);
}

.project-page section {
  margin-top: 100px;
}

.project-page h1,
.project-page h2,
.project-page h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-page h2 {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 20px;
}

.project-page p {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.85;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.divider {
  margin: 100px auto;
  width: 90%;
  border: none;
  border-top: 1px solid var(--border);
}

/* shared eyebrow label */
.section-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}


/* ============================================================
   PROJECT TITLE
   ============================================================ */
.project-title {
  margin-top: 140px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.project-title > div {
  grid-column: 2;
  text-align: center;
}

.project-title h1 {
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1;
  text-shadow: 0 0 40px rgba(217,31,31,0.18);
}

.project-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

.jump2res {
  grid-column: 3;
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border-mid);
  color: var(--muted);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.jump2res:hover {
  border-color: var(--red);
  color: var(--red);
}


/* ============================================================
   SKILLS STRIP
   ============================================================ */
.skills-strip {
  margin-top: 48px !important;
  padding: 13px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(90deg, #5a0000, var(--red), #5a0000);
  background-size: 200%;
  animation: skillsMove 6s linear infinite;
}

@keyframes skillsMove {
  to { background-position: 200%; }
}


/* ============================================================
   PROJECT HERO — image or video
   ============================================================ */
.project-hero {
  display: flex;
  justify-content: center;
  padding: 0 5%;
}

.project-hero img {
  width: 100%;
  max-width: 1200px;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}

/* 16:9 iframe embed */
.video-container {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}


/* ============================================================
   OVERVIEW & APPROACH — two-column
   ============================================================ */
.project-overview,
.project-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-image img,
.approach-image img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.obj-text{
  margin-top: 40px;
}

/* ============================================================
   MEDIA PLACEHOLDERS
   ============================================================ */
.media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-placeholder--tall { aspect-ratio: 4 / 5; }

.media-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}


/* ============================================================
   RESULT ROWS  (generic — project1, project3, etc.)
   ============================================================ */
.project-results h2 { margin-bottom: 48px; }

.result-title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 12pt;
  letter-spacing: 0.5em;
  margin-bottom: 52px !important;
  margin: auto;
  padding: 13px 32px;
  width: fit-content;
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--white);
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}


/* ============================================================
   RESPONSIVE — GLOBAL
   ============================================================ */
@media (max-width: 900px) {
  .project-title {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project-title > div { grid-column: 1; }

  .jump2res {
    grid-column: 1;
    justify-self: center;
    margin-top: 16px;
  }

  .project-overview,
  .project-approach,
  .result-row,
  .prototype-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid { grid-template-columns: 1fr 1fr; }
  .brand-card.brand-top { grid-column: 1 / -1; }

  .project-approach .approach-image { order: -1; }
}

@media (max-width: 600px) {
  .brand-grid { grid-template-columns: 1fr; }

  .prototype-video,
  .prototype-wireframe { min-height: 300px; }

  .prototype-video video { width: 70%; }
}


/* ============================================================
   ////////////////////////////////////////////////////////////
   INDIVIDUAL PROJECT STYLES
   ////////////////////////////////////////////////////////////
   ============================================================ */


/* ============================================================
   PROJECT 2 — Family of Eateries
   
   ============================================================ */
   /* ============================================================
   BRAND RESULTS  (project2)
   ============================================================ */
.brand-results h2 { margin-bottom: 40px; }


.brand-card {
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease;
}

.brand-card img   { width: 100%; display: block; }



/* ============================================================
   PROTOTYPE & WIREFRAME  (project2)
   ============================================================ */
.prototype-section h2  { margin-bottom: 16px; }
.prototype-section > p { margin-bottom: 40px; }

.prototype-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.prototype-video,
.prototype-wireframe {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border-radius: 4px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.prototype-video video {
  width: 42%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.prototype-wireframe img {
  width: 90%;
  max-height: 90%;
  object-fit: contain;
}


/* ============================================================
   PROJECT 4 — Nomad Outdoors
   ============================================================ */

/* Brief block */
.nomad-brief {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: start;
}

.brief-label-row { padding-top: 4px; }

.brief-body p {
  font-size: clamp(13px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--white-dim);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.brief-tags span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border-mid);
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.brief-tags span:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Stations header */
.stations-header-section { margin-bottom: -40px; }

.stations-header {
  border-left: 2px solid var(--red);
  padding-left: 24px;
}

.stations-header h2   { margin-bottom: 10px; }

/* Individual station rows */
.nomad-station {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Flip layout for even stations */
.nomad-station--flip .station-text  { order: 2; }
.nomad-station--flip .station-media { order: 1; }

.station-eyebrow { margin-bottom: 8px; }

.station-num {
  font-family: var(--font-display);
  font-size: 48pt;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
}

.station-name {
  font-size: clamp(20px, 2.8vw, 32px) !important;
  margin-bottom: 16px !important;
  line-height: 1.1 !important;
}

.station-desc { margin-bottom: 28px; }

/* Station detail list */
.station-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.station-details li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.5;
}

.station-details li span {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  padding-top: 1px;
}

/* Station media — 2 images */
.station-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.station-media-grid img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: block;
  transition: border-color 0.25s ease;
}

.station-media-grid img:hover { border-color: var(--border-mid); }

/* Reflection block */
.reflection-inner {
  max-width: 760px;
  border-left: 2px solid var(--red);
  padding-left: 32px;
}

.reflection-inner .section-eyebrow { margin-bottom: 12px; }
.reflection-inner h2               { margin-bottom: 16px; }

/* Responsive — Nomad */
@media (max-width: 900px) {
  .nomad-brief {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nomad-station {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nomad-station--flip .station-text  { order: 1; }
  .nomad-station--flip .station-media { order: 2; }
}

@media (max-width: 600px) {
  .station-media-grid { grid-template-columns: 1fr; }
  .brief-tags         { gap: 6px; }
}


/* ============================================================
   PROJECT 1 — radrex
   ============================================================ */

   .r-obj li{
    color: var(--muted);
    font-size: 10pt;
    line-height: 20pt;
   }